3748 lines
100 KiB
JavaScript
3748 lines
100 KiB
JavaScript
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
const {
|
|
Decimal,
|
|
objectEnumValues,
|
|
makeStrictEnum,
|
|
Public,
|
|
getRuntime,
|
|
} = require('./runtime/index-browser.js')
|
|
|
|
|
|
const Prisma = {}
|
|
|
|
exports.Prisma = Prisma
|
|
exports.$Enums = {}
|
|
|
|
/**
|
|
* Prisma Client JS version: 5.15.1
|
|
* Query Engine version: 34ace0eb2704183d2c05b60b52fba5c43c13f303
|
|
*/
|
|
Prisma.prismaVersion = {
|
|
client: "5.15.1",
|
|
engine: "34ace0eb2704183d2c05b60b52fba5c43c13f303"
|
|
}
|
|
|
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)};
|
|
Prisma.PrismaClientUnknownRequestError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientRustPanicError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientInitializationError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.PrismaClientValidationError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.NotFoundError = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`NotFoundError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.Decimal = Decimal
|
|
|
|
/**
|
|
* Re-export of sql-template-tag
|
|
*/
|
|
Prisma.sql = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.empty = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.join = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.raw = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.validator = Public.validator
|
|
|
|
/**
|
|
* Extensions
|
|
*/
|
|
Prisma.getExtensionContext = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
Prisma.defineExtension = () => {
|
|
const runtimeName = getRuntime().prettyName;
|
|
throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
|
|
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
|
|
)}
|
|
|
|
/**
|
|
* Shorthand utilities for JSON filtering
|
|
*/
|
|
Prisma.DbNull = objectEnumValues.instances.DbNull
|
|
Prisma.JsonNull = objectEnumValues.instances.JsonNull
|
|
Prisma.AnyNull = objectEnumValues.instances.AnyNull
|
|
|
|
Prisma.NullTypes = {
|
|
DbNull: objectEnumValues.classes.DbNull,
|
|
JsonNull: objectEnumValues.classes.JsonNull,
|
|
AnyNull: objectEnumValues.classes.AnyNull
|
|
}
|
|
|
|
/**
|
|
* Enums
|
|
*/
|
|
|
|
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
ReadUncommitted: 'ReadUncommitted',
|
|
ReadCommitted: 'ReadCommitted',
|
|
RepeatableRead: 'RepeatableRead',
|
|
Serializable: 'Serializable'
|
|
});
|
|
|
|
exports.Prisma.Aime_cardScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
access_code: 'access_code',
|
|
created_date: 'created_date',
|
|
last_login_date: 'last_login_date',
|
|
is_locked: 'is_locked',
|
|
is_banned: 'is_banned',
|
|
idm: 'idm',
|
|
chip_id: 'chip_id'
|
|
};
|
|
|
|
exports.Prisma.Aime_userScalarFieldEnum = {
|
|
id: 'id',
|
|
username: 'username',
|
|
email: 'email',
|
|
password: 'password',
|
|
permissions: 'permissions',
|
|
created_date: 'created_date',
|
|
last_login_date: 'last_login_date',
|
|
suspend_expire_time: 'suspend_expire_time'
|
|
};
|
|
|
|
exports.Prisma.Alembic_versionScalarFieldEnum = {
|
|
version_num: 'version_num'
|
|
};
|
|
|
|
exports.Prisma.ArcadeScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
nickname: 'nickname',
|
|
country: 'country',
|
|
country_id: 'country_id',
|
|
state: 'state',
|
|
city: 'city',
|
|
region_id: 'region_id',
|
|
timezone: 'timezone',
|
|
ip: 'ip'
|
|
};
|
|
|
|
exports.Prisma.Arcade_ownerScalarFieldEnum = {
|
|
user: 'user',
|
|
arcade: 'arcade',
|
|
permissions: 'permissions'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_characterScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
characterId: 'characterId',
|
|
level: 'level',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
isValid: 'isValid',
|
|
skillId: 'skillId',
|
|
isNewMark: 'isNewMark',
|
|
playCount: 'playCount',
|
|
friendshipExp: 'friendshipExp',
|
|
assignIllust: 'assignIllust',
|
|
exMaxLv: 'exMaxLv'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_cmissionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
missionId: 'missionId',
|
|
point: 'point'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_cmission_progressScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
missionId: 'missionId',
|
|
order: 'order',
|
|
stage: 'stage',
|
|
progress: 'progress'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_duelScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
duelId: 'duelId',
|
|
progress: 'progress',
|
|
point: 'point',
|
|
isClear: 'isClear',
|
|
lastPlayDate: 'lastPlayDate',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
param3: 'param3',
|
|
param4: 'param4'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_favoriteScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
favId: 'favId',
|
|
favKind: 'favKind'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_gachaScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
gachaId: 'gachaId',
|
|
totalGachaCnt: 'totalGachaCnt',
|
|
ceilingGachaCnt: 'ceilingGachaCnt',
|
|
dailyGachaCnt: 'dailyGachaCnt',
|
|
fiveGachaCnt: 'fiveGachaCnt',
|
|
elevenGachaCnt: 'elevenGachaCnt',
|
|
dailyGachaDate: 'dailyGachaDate'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
itemId: 'itemId',
|
|
itemKind: 'itemKind',
|
|
stock: 'stock',
|
|
isValid: 'isValid'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_login_bonusScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
presetId: 'presetId',
|
|
bonusCount: 'bonusCount',
|
|
lastUpdateDate: 'lastUpdateDate',
|
|
isWatched: 'isWatched',
|
|
isFinished: 'isFinished'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_mapScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
mapId: 'mapId',
|
|
position: 'position',
|
|
isClear: 'isClear',
|
|
areaId: 'areaId',
|
|
routeNumber: 'routeNumber',
|
|
eventId: 'eventId',
|
|
rate: 'rate',
|
|
statusCount: 'statusCount',
|
|
isValid: 'isValid'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_map_areaScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
mapAreaId: 'mapAreaId',
|
|
rate: 'rate',
|
|
isClear: 'isClear',
|
|
isLocked: 'isLocked',
|
|
position: 'position',
|
|
statusCount: 'statusCount',
|
|
remainGridCount: 'remainGridCount'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_matchingScalarFieldEnum = {
|
|
roomId: 'roomId',
|
|
user: 'user',
|
|
version: 'version',
|
|
restMSec: 'restMSec',
|
|
isFull: 'isFull',
|
|
matchingMemberInfoList: 'matchingMemberInfoList'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_print_detailScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
cardId: 'cardId',
|
|
printDate: 'printDate',
|
|
serialId: 'serialId',
|
|
placeId: 'placeId',
|
|
clientId: 'clientId',
|
|
printerSerialId: 'printerSerialId',
|
|
printOption1: 'printOption1',
|
|
printOption2: 'printOption2',
|
|
printOption3: 'printOption3',
|
|
printOption4: 'printOption4',
|
|
printOption5: 'printOption5',
|
|
printOption6: 'printOption6',
|
|
printOption7: 'printOption7',
|
|
printOption8: 'printOption8',
|
|
printOption9: 'printOption9',
|
|
printOption10: 'printOption10',
|
|
created: 'created'
|
|
};
|
|
|
|
exports.Prisma.Chuni_item_print_stateScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
hasCompleted: 'hasCompleted',
|
|
limitDate: 'limitDate',
|
|
placeId: 'placeId',
|
|
cardId: 'cardId',
|
|
gachaId: 'gachaId'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_activityScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
kind: 'kind',
|
|
activityId: 'activityId',
|
|
sortNumber: 'sortNumber',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
param3: 'param3',
|
|
param4: 'param4'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_chargeScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chargeId: 'chargeId',
|
|
stock: 'stock',
|
|
purchaseDate: 'purchaseDate',
|
|
validDate: 'validDate',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
paramDate: 'paramDate'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
exp: 'exp',
|
|
level: 'level',
|
|
point: 'point',
|
|
frameId: 'frameId',
|
|
isMaimai: 'isMaimai',
|
|
trophyId: 'trophyId',
|
|
userName: 'userName',
|
|
isWebJoin: 'isWebJoin',
|
|
playCount: 'playCount',
|
|
lastGameId: 'lastGameId',
|
|
totalPoint: 'totalPoint',
|
|
characterId: 'characterId',
|
|
firstGameId: 'firstGameId',
|
|
friendCount: 'friendCount',
|
|
lastPlaceId: 'lastPlaceId',
|
|
nameplateId: 'nameplateId',
|
|
totalMapNum: 'totalMapNum',
|
|
lastAllNetId: 'lastAllNetId',
|
|
lastClientId: 'lastClientId',
|
|
lastPlayDate: 'lastPlayDate',
|
|
lastRegionId: 'lastRegionId',
|
|
playerRating: 'playerRating',
|
|
totalHiScore: 'totalHiScore',
|
|
webLimitDate: 'webLimitDate',
|
|
firstPlayDate: 'firstPlayDate',
|
|
highestRating: 'highestRating',
|
|
lastPlaceName: 'lastPlaceName',
|
|
multiWinCount: 'multiWinCount',
|
|
acceptResCount: 'acceptResCount',
|
|
lastRegionName: 'lastRegionName',
|
|
lastRomVersion: 'lastRomVersion',
|
|
multiPlayCount: 'multiPlayCount',
|
|
firstRomVersion: 'firstRomVersion',
|
|
lastDataVersion: 'lastDataVersion',
|
|
requestResCount: 'requestResCount',
|
|
successResCount: 'successResCount',
|
|
eventWatchedDate: 'eventWatchedDate',
|
|
firstDataVersion: 'firstDataVersion',
|
|
reincarnationNum: 'reincarnationNum',
|
|
playedTutorialBit: 'playedTutorialBit',
|
|
totalBasicHighScore: 'totalBasicHighScore',
|
|
totalExpertHighScore: 'totalExpertHighScore',
|
|
totalMasterHighScore: 'totalMasterHighScore',
|
|
totalRepertoireCount: 'totalRepertoireCount',
|
|
firstTutorialCancelNum: 'firstTutorialCancelNum',
|
|
totalAdvancedHighScore: 'totalAdvancedHighScore',
|
|
masterTutorialCancelNum: 'masterTutorialCancelNum',
|
|
ext1: 'ext1',
|
|
ext2: 'ext2',
|
|
ext3: 'ext3',
|
|
ext4: 'ext4',
|
|
ext5: 'ext5',
|
|
ext6: 'ext6',
|
|
ext7: 'ext7',
|
|
ext8: 'ext8',
|
|
ext9: 'ext9',
|
|
ext10: 'ext10',
|
|
extStr1: 'extStr1',
|
|
extStr2: 'extStr2',
|
|
extLong1: 'extLong1',
|
|
extLong2: 'extLong2',
|
|
mapIconId: 'mapIconId',
|
|
compatibleCmVersion: 'compatibleCmVersion',
|
|
medal: 'medal',
|
|
voiceId: 'voiceId',
|
|
teamId: 'teamId',
|
|
eliteRankPoint: 'eliteRankPoint',
|
|
stockedGridCount: 'stockedGridCount',
|
|
netBattleLoseCount: 'netBattleLoseCount',
|
|
netBattleHostErrCnt: 'netBattleHostErrCnt',
|
|
netBattle4thCount: 'netBattle4thCount',
|
|
overPowerRate: 'overPowerRate',
|
|
battleRewardStatus: 'battleRewardStatus',
|
|
netBattle1stCount: 'netBattle1stCount',
|
|
charaIllustId: 'charaIllustId',
|
|
userNameEx: 'userNameEx',
|
|
netBattleWinCount: 'netBattleWinCount',
|
|
netBattleCorrection: 'netBattleCorrection',
|
|
classEmblemMedal: 'classEmblemMedal',
|
|
overPowerPoint: 'overPowerPoint',
|
|
netBattleErrCnt: 'netBattleErrCnt',
|
|
battleRankId: 'battleRankId',
|
|
netBattle3rdCount: 'netBattle3rdCount',
|
|
netBattleConsecutiveWinCount: 'netBattleConsecutiveWinCount',
|
|
overPowerLowerRank: 'overPowerLowerRank',
|
|
classEmblemBase: 'classEmblemBase',
|
|
battleRankPoint: 'battleRankPoint',
|
|
netBattle2ndCount: 'netBattle2ndCount',
|
|
totalUltimaHighScore: 'totalUltimaHighScore',
|
|
skillId: 'skillId',
|
|
lastCountryCode: 'lastCountryCode',
|
|
isNetBattleHost: 'isNetBattleHost',
|
|
battleRewardCount: 'battleRewardCount',
|
|
battleRewardIndex: 'battleRewardIndex',
|
|
netBattlePlayCount: 'netBattlePlayCount',
|
|
exMapLoopCount: 'exMapLoopCount',
|
|
netBattleEndState: 'netBattleEndState',
|
|
rankUpChallengeResults: 'rankUpChallengeResults',
|
|
avatarBack: 'avatarBack',
|
|
avatarFace: 'avatarFace',
|
|
avatarPoint: 'avatarPoint',
|
|
avatarItem: 'avatarItem',
|
|
avatarWear: 'avatarWear',
|
|
avatarFront: 'avatarFront',
|
|
avatarSkin: 'avatarSkin',
|
|
avatarHead: 'avatarHead'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_data_exScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
ext1: 'ext1',
|
|
ext2: 'ext2',
|
|
ext3: 'ext3',
|
|
ext4: 'ext4',
|
|
ext5: 'ext5',
|
|
ext6: 'ext6',
|
|
ext7: 'ext7',
|
|
ext8: 'ext8',
|
|
ext9: 'ext9',
|
|
ext10: 'ext10',
|
|
ext11: 'ext11',
|
|
ext12: 'ext12',
|
|
ext13: 'ext13',
|
|
ext14: 'ext14',
|
|
ext15: 'ext15',
|
|
ext16: 'ext16',
|
|
ext17: 'ext17',
|
|
ext18: 'ext18',
|
|
ext19: 'ext19',
|
|
ext20: 'ext20',
|
|
medal: 'medal',
|
|
extStr1: 'extStr1',
|
|
extStr2: 'extStr2',
|
|
extStr3: 'extStr3',
|
|
extStr4: 'extStr4',
|
|
extStr5: 'extStr5',
|
|
voiceId: 'voiceId',
|
|
extLong1: 'extLong1',
|
|
extLong2: 'extLong2',
|
|
extLong3: 'extLong3',
|
|
extLong4: 'extLong4',
|
|
extLong5: 'extLong5',
|
|
mapIconId: 'mapIconId',
|
|
compatibleCmVersion: 'compatibleCmVersion'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_emoneyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
ext1: 'ext1',
|
|
ext2: 'ext2',
|
|
ext3: 'ext3',
|
|
type: 'type',
|
|
emoneyBrand: 'emoneyBrand',
|
|
emoneyCredit: 'emoneyCredit'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_net_battleScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
isRankUpChallengeFailed: 'isRankUpChallengeFailed',
|
|
highestBattleRankId: 'highestBattleRankId',
|
|
battleIconId: 'battleIconId',
|
|
battleIconNum: 'battleIconNum',
|
|
avatarEffectPoint: 'avatarEffectPoint'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
speed: 'speed',
|
|
bgInfo: 'bgInfo',
|
|
rating: 'rating',
|
|
privacy: 'privacy',
|
|
judgePos: 'judgePos',
|
|
matching: 'matching',
|
|
guideLine: 'guideLine',
|
|
headphone: 'headphone',
|
|
optionSet: 'optionSet',
|
|
fieldColor: 'fieldColor',
|
|
guideSound: 'guideSound',
|
|
successAir: 'successAir',
|
|
successTap: 'successTap',
|
|
judgeAttack: 'judgeAttack',
|
|
playerLevel: 'playerLevel',
|
|
soundEffect: 'soundEffect',
|
|
judgeJustice: 'judgeJustice',
|
|
successExTap: 'successExTap',
|
|
successFlick: 'successFlick',
|
|
successSkill: 'successSkill',
|
|
successSlideHold: 'successSlideHold',
|
|
successTapTimbre: 'successTapTimbre',
|
|
ext1: 'ext1',
|
|
ext2: 'ext2',
|
|
ext3: 'ext3',
|
|
ext4: 'ext4',
|
|
ext5: 'ext5',
|
|
ext6: 'ext6',
|
|
ext7: 'ext7',
|
|
ext8: 'ext8',
|
|
ext9: 'ext9',
|
|
ext10: 'ext10',
|
|
categoryDetail: 'categoryDetail',
|
|
judgeTimingOffset_120: 'judgeTimingOffset_120',
|
|
resultVoiceShort: 'resultVoiceShort',
|
|
judgeAppendSe: 'judgeAppendSe',
|
|
judgeCritical: 'judgeCritical',
|
|
trackSkip: 'trackSkip',
|
|
selectMusicFilterLv: 'selectMusicFilterLv',
|
|
sortMusicFilterLv: 'sortMusicFilterLv',
|
|
sortMusicGenre: 'sortMusicGenre',
|
|
speed_120: 'speed_120',
|
|
judgeTimingOffset: 'judgeTimingOffset',
|
|
mirrorFumen: 'mirrorFumen',
|
|
playTimingOffset_120: 'playTimingOffset_120',
|
|
hardJudge: 'hardJudge',
|
|
notesThickness: 'notesThickness',
|
|
fieldWallPosition: 'fieldWallPosition',
|
|
playTimingOffset: 'playTimingOffset',
|
|
fieldWallPosition_120: 'fieldWallPosition_120'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_option_exScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
ext1: 'ext1',
|
|
ext2: 'ext2',
|
|
ext3: 'ext3',
|
|
ext4: 'ext4',
|
|
ext5: 'ext5',
|
|
ext6: 'ext6',
|
|
ext7: 'ext7',
|
|
ext8: 'ext8',
|
|
ext9: 'ext9',
|
|
ext10: 'ext10',
|
|
ext11: 'ext11',
|
|
ext12: 'ext12',
|
|
ext13: 'ext13',
|
|
ext14: 'ext14',
|
|
ext15: 'ext15',
|
|
ext16: 'ext16',
|
|
ext17: 'ext17',
|
|
ext18: 'ext18',
|
|
ext19: 'ext19',
|
|
ext20: 'ext20'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_overpowerScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
genreId: 'genreId',
|
|
difficulty: 'difficulty',
|
|
rate: 'rate',
|
|
point: 'point'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
type: 'type',
|
|
index: 'index',
|
|
musicId: 'musicId',
|
|
difficultId: 'difficultId',
|
|
romVersionCode: 'romVersionCode',
|
|
score: 'score'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_recent_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
recentRating: 'recentRating'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_regionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
regionId: 'regionId',
|
|
playCount: 'playCount'
|
|
};
|
|
|
|
exports.Prisma.Chuni_profile_teamScalarFieldEnum = {
|
|
id: 'id',
|
|
teamName: 'teamName',
|
|
teamPoint: 'teamPoint'
|
|
};
|
|
|
|
exports.Prisma.Chuni_score_bestScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
playCount: 'playCount',
|
|
scoreMax: 'scoreMax',
|
|
resRequestCount: 'resRequestCount',
|
|
resAcceptCount: 'resAcceptCount',
|
|
resSuccessCount: 'resSuccessCount',
|
|
missCount: 'missCount',
|
|
maxComboCount: 'maxComboCount',
|
|
isFullCombo: 'isFullCombo',
|
|
isAllJustice: 'isAllJustice',
|
|
isSuccess: 'isSuccess',
|
|
fullChain: 'fullChain',
|
|
maxChain: 'maxChain',
|
|
scoreRank: 'scoreRank',
|
|
isLock: 'isLock',
|
|
ext1: 'ext1',
|
|
theoryCount: 'theoryCount'
|
|
};
|
|
|
|
exports.Prisma.Chuni_score_courseScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
courseId: 'courseId',
|
|
classId: 'classId',
|
|
playCount: 'playCount',
|
|
scoreMax: 'scoreMax',
|
|
isFullCombo: 'isFullCombo',
|
|
isAllJustice: 'isAllJustice',
|
|
isSuccess: 'isSuccess',
|
|
scoreRank: 'scoreRank',
|
|
eventId: 'eventId',
|
|
lastPlayDate: 'lastPlayDate',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
param3: 'param3',
|
|
param4: 'param4',
|
|
isClear: 'isClear',
|
|
theoryCount: 'theoryCount',
|
|
orderId: 'orderId',
|
|
playerRating: 'playerRating'
|
|
};
|
|
|
|
exports.Prisma.Chuni_score_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
orderId: 'orderId',
|
|
sortNumber: 'sortNumber',
|
|
placeId: 'placeId',
|
|
playDate: 'playDate',
|
|
userPlayDate: 'userPlayDate',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
customId: 'customId',
|
|
playedUserId1: 'playedUserId1',
|
|
playedUserId2: 'playedUserId2',
|
|
playedUserId3: 'playedUserId3',
|
|
playedUserName1: 'playedUserName1',
|
|
playedUserName2: 'playedUserName2',
|
|
playedUserName3: 'playedUserName3',
|
|
playedMusicLevel1: 'playedMusicLevel1',
|
|
playedMusicLevel2: 'playedMusicLevel2',
|
|
playedMusicLevel3: 'playedMusicLevel3',
|
|
playedCustom1: 'playedCustom1',
|
|
playedCustom2: 'playedCustom2',
|
|
playedCustom3: 'playedCustom3',
|
|
track: 'track',
|
|
score: 'score',
|
|
rank: 'rank',
|
|
maxCombo: 'maxCombo',
|
|
maxChain: 'maxChain',
|
|
rateTap: 'rateTap',
|
|
rateHold: 'rateHold',
|
|
rateSlide: 'rateSlide',
|
|
rateAir: 'rateAir',
|
|
rateFlick: 'rateFlick',
|
|
judgeGuilty: 'judgeGuilty',
|
|
judgeAttack: 'judgeAttack',
|
|
judgeJustice: 'judgeJustice',
|
|
judgeCritical: 'judgeCritical',
|
|
eventId: 'eventId',
|
|
playerRating: 'playerRating',
|
|
isNewRecord: 'isNewRecord',
|
|
isFullCombo: 'isFullCombo',
|
|
fullChainKind: 'fullChainKind',
|
|
isAllJustice: 'isAllJustice',
|
|
isContinue: 'isContinue',
|
|
isFreeToPlay: 'isFreeToPlay',
|
|
characterId: 'characterId',
|
|
skillId: 'skillId',
|
|
playKind: 'playKind',
|
|
isClear: 'isClear',
|
|
skillLevel: 'skillLevel',
|
|
skillEffect: 'skillEffect',
|
|
placeName: 'placeName',
|
|
isMaimai: 'isMaimai',
|
|
commonId: 'commonId',
|
|
charaIllustId: 'charaIllustId',
|
|
romVersion: 'romVersion',
|
|
judgeHeaven: 'judgeHeaven',
|
|
regionId: 'regionId',
|
|
machineType: 'machineType',
|
|
ticketId: 'ticketId'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_avatarScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
avatarAccessoryId: 'avatarAccessoryId',
|
|
name: 'name',
|
|
category: 'category',
|
|
iconPath: 'iconPath',
|
|
texturePath: 'texturePath'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_cardsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
cardId: 'cardId',
|
|
charaName: 'charaName',
|
|
charaId: 'charaId',
|
|
presentName: 'presentName',
|
|
rarity: 'rarity',
|
|
labelType: 'labelType',
|
|
difType: 'difType',
|
|
miss: 'miss',
|
|
combo: 'combo',
|
|
chain: 'chain',
|
|
skillName: 'skillName'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_chargeScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
chargeId: 'chargeId',
|
|
name: 'name',
|
|
expirationDays: 'expirationDays',
|
|
consumeType: 'consumeType',
|
|
sellingAppeal: 'sellingAppeal',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_eventsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
eventId: 'eventId',
|
|
type: 'type',
|
|
name: 'name',
|
|
startDate: 'startDate',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_gacha_cardsScalarFieldEnum = {
|
|
id: 'id',
|
|
gachaId: 'gachaId',
|
|
cardId: 'cardId',
|
|
rarity: 'rarity',
|
|
weight: 'weight',
|
|
isPickup: 'isPickup'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_gachasScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
gachaId: 'gachaId',
|
|
gachaName: 'gachaName',
|
|
type: 'type',
|
|
kind: 'kind',
|
|
isCeiling: 'isCeiling',
|
|
ceilingCnt: 'ceilingCnt',
|
|
changeRateCnt1: 'changeRateCnt1',
|
|
changeRateCnt2: 'changeRateCnt2',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate',
|
|
noticeStartDate: 'noticeStartDate',
|
|
noticeEndDate: 'noticeEndDate'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_login_bonusScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
presetId: 'presetId',
|
|
loginBonusId: 'loginBonusId',
|
|
loginBonusName: 'loginBonusName',
|
|
presentId: 'presentId',
|
|
presentName: 'presentName',
|
|
itemNum: 'itemNum',
|
|
needLoginDayCount: 'needLoginDayCount',
|
|
loginBonusCategoryType: 'loginBonusCategoryType'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_login_bonus_presetScalarFieldEnum = {
|
|
presetId: 'presetId',
|
|
version: 'version',
|
|
presetName: 'presetName',
|
|
isEnabled: 'isEnabled'
|
|
};
|
|
|
|
exports.Prisma.Chuni_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
artist: 'artist',
|
|
level: 'level',
|
|
genre: 'genre',
|
|
jacketPath: 'jacketPath',
|
|
worldsEndTag: 'worldsEndTag'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_artemisapi_sessionsScalarFieldEnum = {
|
|
session_id: 'session_id',
|
|
expires: 'expires',
|
|
data: 'data'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_chuni_static_accessoryScalarFieldEnum = {
|
|
id: 'id',
|
|
str: 'str',
|
|
imagePath: 'imagePath',
|
|
sortName: 'sortName',
|
|
category: 'category',
|
|
netOpenName: 'netOpenName',
|
|
rareType: 'rareType'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_chuni_static_mapiconScalarFieldEnum = {
|
|
id: 'id',
|
|
str: 'str',
|
|
imagePath: 'imagePath',
|
|
sortName: 'sortName',
|
|
category: 'category',
|
|
netOpenName: 'netOpenName',
|
|
rareType: 'rareType'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_chuni_static_nameplateScalarFieldEnum = {
|
|
id: 'id',
|
|
str: 'str',
|
|
imagePath: 'imagePath',
|
|
sortName: 'sortName',
|
|
category: 'category',
|
|
netOpenName: 'netOpenName',
|
|
rareType: 'rareType'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_chuni_static_systemvoiceScalarFieldEnum = {
|
|
id: 'id',
|
|
str: 'str',
|
|
imagePath: 'imagePath',
|
|
sortName: 'sortName',
|
|
category: 'category',
|
|
netOpenName: 'netOpenName',
|
|
rareType: 'rareType'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_chuni_static_trophiesScalarFieldEnum = {
|
|
id: 'id',
|
|
str: 'str',
|
|
imagePath: 'imagePath',
|
|
sortName: 'sortName',
|
|
category: 'category',
|
|
netOpenName: 'netOpenName',
|
|
rareType: 'rareType'
|
|
};
|
|
|
|
exports.Prisma.Cozynet_rival_codesScalarFieldEnum = {
|
|
id: 'id',
|
|
rival_code: 'rival_code'
|
|
};
|
|
|
|
exports.Prisma.Cxb_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
song_mcode: 'song_mcode',
|
|
chart_id: 'chart_id',
|
|
score: 'score',
|
|
clear: 'clear',
|
|
flawless: 'flawless',
|
|
super: 'super',
|
|
cool: 'cool',
|
|
fast: 'fast',
|
|
fast2: 'fast2',
|
|
slow: 'slow',
|
|
slow2: 'slow2',
|
|
fail: 'fail',
|
|
combo: 'combo',
|
|
date_scored: 'date_scored',
|
|
grade: 'grade'
|
|
};
|
|
|
|
exports.Prisma.Cxb_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
index: 'index',
|
|
data: 'data'
|
|
};
|
|
|
|
exports.Prisma.Cxb_rankingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
rev_id: 'rev_id',
|
|
song_id: 'song_id',
|
|
score: 'score',
|
|
clear: 'clear'
|
|
};
|
|
|
|
exports.Prisma.Cxb_rev_energyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
energy: 'energy'
|
|
};
|
|
|
|
exports.Prisma.Cxb_scoreScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
game_version: 'game_version',
|
|
song_mcode: 'song_mcode',
|
|
song_index: 'song_index',
|
|
data: 'data'
|
|
};
|
|
|
|
exports.Prisma.Cxb_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
index: 'index',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
artist: 'artist',
|
|
category: 'category',
|
|
level: 'level'
|
|
};
|
|
|
|
exports.Prisma.Diva_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
pv_id: 'pv_id',
|
|
difficulty: 'difficulty',
|
|
edition: 'edition',
|
|
score: 'score',
|
|
atn_pnt: 'atn_pnt',
|
|
clr_kind: 'clr_kind',
|
|
sort_kind: 'sort_kind',
|
|
cool: 'cool',
|
|
fine: 'fine',
|
|
safe: 'safe',
|
|
sad: 'sad',
|
|
worst: 'worst',
|
|
max_combo: 'max_combo',
|
|
date_scored: 'date_scored'
|
|
};
|
|
|
|
exports.Prisma.Diva_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
player_name: 'player_name',
|
|
lv_str: 'lv_str',
|
|
lv_num: 'lv_num',
|
|
lv_pnt: 'lv_pnt',
|
|
vcld_pts: 'vcld_pts',
|
|
hp_vol: 'hp_vol',
|
|
btn_se_vol: 'btn_se_vol',
|
|
btn_se_vol2: 'btn_se_vol2',
|
|
sldr_se_vol2: 'sldr_se_vol2',
|
|
sort_kind: 'sort_kind',
|
|
use_pv_mdl_eqp: 'use_pv_mdl_eqp',
|
|
use_mdl_pri: 'use_mdl_pri',
|
|
use_pv_skn_eqp: 'use_pv_skn_eqp',
|
|
use_pv_btn_se_eqp: 'use_pv_btn_se_eqp',
|
|
use_pv_sld_se_eqp: 'use_pv_sld_se_eqp',
|
|
use_pv_chn_sld_se_eqp: 'use_pv_chn_sld_se_eqp',
|
|
use_pv_sldr_tch_se_eqp: 'use_pv_sldr_tch_se_eqp',
|
|
btn_se_eqp: 'btn_se_eqp',
|
|
sld_se_eqp: 'sld_se_eqp',
|
|
chn_sld_se_eqp: 'chn_sld_se_eqp',
|
|
sldr_tch_se_eqp: 'sldr_tch_se_eqp',
|
|
nxt_pv_id: 'nxt_pv_id',
|
|
nxt_dffclty: 'nxt_dffclty',
|
|
nxt_edtn: 'nxt_edtn',
|
|
cnp_cid: 'cnp_cid',
|
|
cnp_val: 'cnp_val',
|
|
cnp_rr: 'cnp_rr',
|
|
cnp_sp: 'cnp_sp',
|
|
dsp_clr_brdr: 'dsp_clr_brdr',
|
|
dsp_intrm_rnk: 'dsp_intrm_rnk',
|
|
dsp_clr_sts: 'dsp_clr_sts',
|
|
rgo_sts: 'rgo_sts',
|
|
lv_efct_id: 'lv_efct_id',
|
|
lv_plt_id: 'lv_plt_id',
|
|
skn_eqp: 'skn_eqp',
|
|
passwd_stat: 'passwd_stat',
|
|
passwd: 'passwd',
|
|
my_qst_id: 'my_qst_id',
|
|
my_qst_sts: 'my_qst_sts'
|
|
};
|
|
|
|
exports.Prisma.Diva_profile_customize_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
item_id: 'item_id'
|
|
};
|
|
|
|
exports.Prisma.Diva_profile_moduleScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
module_id: 'module_id'
|
|
};
|
|
|
|
exports.Prisma.Diva_profile_pv_customizeScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
pv_id: 'pv_id',
|
|
mdl_eqp_ary: 'mdl_eqp_ary',
|
|
c_itm_eqp_ary: 'c_itm_eqp_ary',
|
|
ms_itm_flg_ary: 'ms_itm_flg_ary',
|
|
skin: 'skin',
|
|
btn_se: 'btn_se',
|
|
sld_se: 'sld_se',
|
|
chsld_se: 'chsld_se',
|
|
sldtch_se: 'sldtch_se'
|
|
};
|
|
|
|
exports.Prisma.Diva_profile_shopScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
mdl_eqp_ary: 'mdl_eqp_ary',
|
|
c_itm_eqp_ary: 'c_itm_eqp_ary',
|
|
ms_itm_flg_ary: 'ms_itm_flg_ary'
|
|
};
|
|
|
|
exports.Prisma.Diva_scoreScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
pv_id: 'pv_id',
|
|
difficulty: 'difficulty',
|
|
edition: 'edition',
|
|
score: 'score',
|
|
atn_pnt: 'atn_pnt',
|
|
clr_kind: 'clr_kind',
|
|
sort_kind: 'sort_kind',
|
|
cool: 'cool',
|
|
fine: 'fine',
|
|
safe: 'safe',
|
|
sad: 'sad',
|
|
worst: 'worst',
|
|
max_combo: 'max_combo'
|
|
};
|
|
|
|
exports.Prisma.Diva_static_itemsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
itemId: 'itemId',
|
|
name: 'name',
|
|
type: 'type',
|
|
points: 'points',
|
|
unknown_0: 'unknown_0',
|
|
start_date: 'start_date',
|
|
end_date: 'end_date',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Diva_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
vocaloid_arranger: 'vocaloid_arranger',
|
|
pv_illustrator: 'pv_illustrator',
|
|
lyrics: 'lyrics',
|
|
bg_music: 'bg_music',
|
|
level: 'level',
|
|
bpm: 'bpm',
|
|
date: 'date'
|
|
};
|
|
|
|
exports.Prisma.Diva_static_questsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
questId: 'questId',
|
|
name: 'name',
|
|
quest_enable: 'quest_enable',
|
|
kind: 'kind',
|
|
unknown_0: 'unknown_0',
|
|
unknown_1: 'unknown_1',
|
|
unknown_2: 'unknown_2',
|
|
quest_order: 'quest_order',
|
|
start_datetime: 'start_datetime',
|
|
end_datetime: 'end_datetime'
|
|
};
|
|
|
|
exports.Prisma.Diva_static_shopScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
shopId: 'shopId',
|
|
name: 'name',
|
|
type: 'type',
|
|
points: 'points',
|
|
unknown_0: 'unknown_0',
|
|
start_date: 'start_date',
|
|
end_date: 'end_date',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Event_logScalarFieldEnum = {
|
|
id: 'id',
|
|
system: 'system',
|
|
type: 'type',
|
|
severity: 'severity',
|
|
message: 'message',
|
|
details: 'details',
|
|
when_logged: 'when_logged',
|
|
user: 'user',
|
|
arcade: 'arcade',
|
|
machine: 'machine',
|
|
ip: 'ip',
|
|
game: 'game',
|
|
version: 'version'
|
|
};
|
|
|
|
exports.Prisma.Idac_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
username: 'username',
|
|
country: 'country',
|
|
store: 'store',
|
|
team_id: 'team_id',
|
|
total_play: 'total_play',
|
|
daily_play: 'daily_play',
|
|
day_play: 'day_play',
|
|
mileage: 'mileage',
|
|
asset_version: 'asset_version',
|
|
last_play_date: 'last_play_date',
|
|
mytitle_id: 'mytitle_id',
|
|
mytitle_efffect_id: 'mytitle_efffect_id',
|
|
sticker_id: 'sticker_id',
|
|
sticker_effect_id: 'sticker_effect_id',
|
|
papercup_id: 'papercup_id',
|
|
tachometer_id: 'tachometer_id',
|
|
aura_id: 'aura_id',
|
|
aura_color_id: 'aura_color_id',
|
|
aura_line_id: 'aura_line_id',
|
|
bgm_id: 'bgm_id',
|
|
keyholder_id: 'keyholder_id',
|
|
start_menu_bg_id: 'start_menu_bg_id',
|
|
use_car_id: 'use_car_id',
|
|
use_style_car_id: 'use_style_car_id',
|
|
bothwin_count: 'bothwin_count',
|
|
bothwin_score: 'bothwin_score',
|
|
subcard_count: 'subcard_count',
|
|
vs_history: 'vs_history',
|
|
stamp_key_assign_0: 'stamp_key_assign_0',
|
|
stamp_key_assign_1: 'stamp_key_assign_1',
|
|
stamp_key_assign_2: 'stamp_key_assign_2',
|
|
stamp_key_assign_3: 'stamp_key_assign_3',
|
|
name_change_category: 'name_change_category',
|
|
factory_disp: 'factory_disp',
|
|
create_date: 'create_date',
|
|
cash: 'cash',
|
|
dressup_point: 'dressup_point',
|
|
avatar_point: 'avatar_point',
|
|
total_cash: 'total_cash'
|
|
};
|
|
|
|
exports.Prisma.Idac_profile_avatarScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
sex: 'sex',
|
|
face: 'face',
|
|
eye: 'eye',
|
|
mouth: 'mouth',
|
|
hair: 'hair',
|
|
glasses: 'glasses',
|
|
face_accessory: 'face_accessory',
|
|
body: 'body',
|
|
body_accessory: 'body_accessory',
|
|
behind: 'behind',
|
|
bg: 'bg',
|
|
effect: 'effect',
|
|
special: 'special'
|
|
};
|
|
|
|
exports.Prisma.Idac_profile_configScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
config_id: 'config_id',
|
|
steering_intensity: 'steering_intensity',
|
|
transmission_type: 'transmission_type',
|
|
default_viewpoint: 'default_viewpoint',
|
|
favorite_bgm: 'favorite_bgm',
|
|
bgm_volume: 'bgm_volume',
|
|
se_volume: 'se_volume',
|
|
master_volume: 'master_volume',
|
|
store_battle_policy: 'store_battle_policy',
|
|
battle_onomatope_display: 'battle_onomatope_display',
|
|
cornering_guide: 'cornering_guide',
|
|
minimap: 'minimap',
|
|
line_guide: 'line_guide',
|
|
ghost: 'ghost',
|
|
race_exit: 'race_exit',
|
|
result_skip: 'result_skip',
|
|
stamp_select_skip: 'stamp_select_skip'
|
|
};
|
|
|
|
exports.Prisma.Idac_profile_rankScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
story_rank_exp: 'story_rank_exp',
|
|
story_rank: 'story_rank',
|
|
time_trial_rank_exp: 'time_trial_rank_exp',
|
|
time_trial_rank: 'time_trial_rank',
|
|
online_battle_rank_exp: 'online_battle_rank_exp',
|
|
online_battle_rank: 'online_battle_rank',
|
|
store_battle_rank_exp: 'store_battle_rank_exp',
|
|
store_battle_rank: 'store_battle_rank',
|
|
theory_exp: 'theory_exp',
|
|
theory_rank: 'theory_rank',
|
|
pride_group_id: 'pride_group_id',
|
|
pride_point: 'pride_point',
|
|
grade_exp: 'grade_exp',
|
|
grade: 'grade',
|
|
grade_reward_dist: 'grade_reward_dist',
|
|
story_rank_reward_dist: 'story_rank_reward_dist',
|
|
time_trial_rank_reward_dist: 'time_trial_rank_reward_dist',
|
|
online_battle_rank_reward_dist: 'online_battle_rank_reward_dist',
|
|
store_battle_rank_reward_dist: 'store_battle_rank_reward_dist',
|
|
theory_rank_reward_dist: 'theory_rank_reward_dist',
|
|
max_attained_online_battle_rank: 'max_attained_online_battle_rank',
|
|
max_attained_pride_point: 'max_attained_pride_point',
|
|
is_last_max: 'is_last_max'
|
|
};
|
|
|
|
exports.Prisma.Idac_profile_stockScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
mytitle_list: 'mytitle_list',
|
|
mytitle_new_list: 'mytitle_new_list',
|
|
avatar_face_list: 'avatar_face_list',
|
|
avatar_face_new_list: 'avatar_face_new_list',
|
|
avatar_eye_list: 'avatar_eye_list',
|
|
avatar_eye_new_list: 'avatar_eye_new_list',
|
|
avatar_hair_list: 'avatar_hair_list',
|
|
avatar_hair_new_list: 'avatar_hair_new_list',
|
|
avatar_body_list: 'avatar_body_list',
|
|
avatar_body_new_list: 'avatar_body_new_list',
|
|
avatar_mouth_list: 'avatar_mouth_list',
|
|
avatar_mouth_new_list: 'avatar_mouth_new_list',
|
|
avatar_glasses_list: 'avatar_glasses_list',
|
|
avatar_glasses_new_list: 'avatar_glasses_new_list',
|
|
avatar_face_accessory_list: 'avatar_face_accessory_list',
|
|
avatar_face_accessory_new_list: 'avatar_face_accessory_new_list',
|
|
avatar_body_accessory_list: 'avatar_body_accessory_list',
|
|
avatar_body_accessory_new_list: 'avatar_body_accessory_new_list',
|
|
avatar_behind_list: 'avatar_behind_list',
|
|
avatar_behind_new_list: 'avatar_behind_new_list',
|
|
avatar_bg_list: 'avatar_bg_list',
|
|
avatar_bg_new_list: 'avatar_bg_new_list',
|
|
avatar_effect_list: 'avatar_effect_list',
|
|
avatar_effect_new_list: 'avatar_effect_new_list',
|
|
avatar_special_list: 'avatar_special_list',
|
|
avatar_special_new_list: 'avatar_special_new_list',
|
|
stamp_list: 'stamp_list',
|
|
stamp_new_list: 'stamp_new_list',
|
|
keyholder_list: 'keyholder_list',
|
|
keyholder_new_list: 'keyholder_new_list',
|
|
papercup_list: 'papercup_list',
|
|
papercup_new_list: 'papercup_new_list',
|
|
tachometer_list: 'tachometer_list',
|
|
tachometer_new_list: 'tachometer_new_list',
|
|
aura_list: 'aura_list',
|
|
aura_new_list: 'aura_new_list',
|
|
aura_color_list: 'aura_color_list',
|
|
aura_color_new_list: 'aura_color_new_list',
|
|
aura_line_list: 'aura_line_list',
|
|
aura_line_new_list: 'aura_line_new_list',
|
|
bgm_list: 'bgm_list',
|
|
bgm_new_list: 'bgm_new_list',
|
|
dx_color_list: 'dx_color_list',
|
|
dx_color_new_list: 'dx_color_new_list',
|
|
start_menu_bg_list: 'start_menu_bg_list',
|
|
start_menu_bg_new_list: 'start_menu_bg_new_list',
|
|
under_neon_list: 'under_neon_list'
|
|
};
|
|
|
|
exports.Prisma.Idac_profile_theoryScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
play_count: 'play_count',
|
|
play_count_multi: 'play_count_multi',
|
|
partner_id: 'partner_id',
|
|
partner_progress: 'partner_progress',
|
|
partner_progress_score: 'partner_progress_score',
|
|
practice_start_rank: 'practice_start_rank',
|
|
general_flag: 'general_flag',
|
|
vs_history: 'vs_history',
|
|
vs_history_multi: 'vs_history_multi',
|
|
win_count: 'win_count',
|
|
win_count_multi: 'win_count_multi'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_carScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
car_id: 'car_id',
|
|
style_car_id: 'style_car_id',
|
|
color: 'color',
|
|
bureau: 'bureau',
|
|
kana: 'kana',
|
|
s_no: 's_no',
|
|
l_no: 'l_no',
|
|
car_flag: 'car_flag',
|
|
tune_point: 'tune_point',
|
|
tune_level: 'tune_level',
|
|
tune_parts: 'tune_parts',
|
|
infinity_tune: 'infinity_tune',
|
|
online_vs_win: 'online_vs_win',
|
|
pickup_seq: 'pickup_seq',
|
|
purchase_seq: 'purchase_seq',
|
|
color_stock_list: 'color_stock_list',
|
|
color_stock_new_list: 'color_stock_new_list',
|
|
parts_stock_list: 'parts_stock_list',
|
|
parts_stock_new_list: 'parts_stock_new_list',
|
|
parts_set_equip_list: 'parts_set_equip_list',
|
|
parts_list: 'parts_list',
|
|
equip_parts_count: 'equip_parts_count',
|
|
total_car_parts_count: 'total_car_parts_count',
|
|
use_count: 'use_count',
|
|
story_use_count: 'story_use_count',
|
|
timetrial_use_count: 'timetrial_use_count',
|
|
vs_use_count: 'vs_use_count',
|
|
net_vs_use_count: 'net_vs_use_count',
|
|
theory_use_count: 'theory_use_count',
|
|
car_mileage: 'car_mileage'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_challengeScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
vs_type: 'vs_type',
|
|
play_difficulty: 'play_difficulty',
|
|
cleared_difficulty: 'cleared_difficulty',
|
|
story_type: 'story_type',
|
|
play_count: 'play_count',
|
|
weak_difficulty: 'weak_difficulty',
|
|
eval_id: 'eval_id',
|
|
advantage: 'advantage',
|
|
sec1_advantage_avg: 'sec1_advantage_avg',
|
|
sec2_advantage_avg: 'sec2_advantage_avg',
|
|
sec3_advantage_avg: 'sec3_advantage_avg',
|
|
sec4_advantage_avg: 'sec4_advantage_avg',
|
|
nearby_advantage_rate: 'nearby_advantage_rate',
|
|
win_flag: 'win_flag',
|
|
result: 'result',
|
|
record: 'record',
|
|
course_id: 'course_id',
|
|
last_play_course_id: 'last_play_course_id',
|
|
style_car_id: 'style_car_id',
|
|
course_day: 'course_day'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_courseScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
course_id: 'course_id',
|
|
run_counts: 'run_counts',
|
|
skill_level_exp: 'skill_level_exp'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_stampScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
m_stamp_event_id: 'm_stamp_event_id',
|
|
select_flag: 'select_flag',
|
|
stamp_masu: 'stamp_masu',
|
|
daily_bonus: 'daily_bonus',
|
|
weekly_bonus: 'weekly_bonus',
|
|
weekday_bonus: 'weekday_bonus',
|
|
weekend_bonus: 'weekend_bonus',
|
|
total_bonus: 'total_bonus',
|
|
day_total_bonus: 'day_total_bonus',
|
|
store_battle_bonus: 'store_battle_bonus',
|
|
story_bonus: 'story_bonus',
|
|
online_battle_bonus: 'online_battle_bonus',
|
|
timetrial_bonus: 'timetrial_bonus',
|
|
fasteststreetlegaltheory_bonus: 'fasteststreetlegaltheory_bonus',
|
|
collaboration_bonus: 'collaboration_bonus',
|
|
add_bonus_daily_flag_1: 'add_bonus_daily_flag_1',
|
|
add_bonus_daily_flag_2: 'add_bonus_daily_flag_2',
|
|
add_bonus_daily_flag_3: 'add_bonus_daily_flag_3',
|
|
create_date_daily: 'create_date_daily',
|
|
create_date_weekly: 'create_date_weekly'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_storyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
story_type: 'story_type',
|
|
chapter: 'chapter',
|
|
loop_count: 'loop_count'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_story_episodeScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chapter: 'chapter',
|
|
episode: 'episode',
|
|
play_status: 'play_status'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_story_episode_difficultyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
episode: 'episode',
|
|
difficulty: 'difficulty',
|
|
play_count: 'play_count',
|
|
clear_count: 'clear_count',
|
|
play_status: 'play_status',
|
|
play_score: 'play_score'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_theory_courseScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
course_id: 'course_id',
|
|
max_victory_grade: 'max_victory_grade',
|
|
run_count: 'run_count',
|
|
powerhouse_lv: 'powerhouse_lv',
|
|
powerhouse_exp: 'powerhouse_exp',
|
|
played_powerhouse_lv: 'played_powerhouse_lv',
|
|
update_dt: 'update_dt'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_theory_partnerScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
partner_id: 'partner_id',
|
|
fellowship_lv: 'fellowship_lv',
|
|
fellowship_exp: 'fellowship_exp'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_theory_runningScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
course_id: 'course_id',
|
|
attack: 'attack',
|
|
defense: 'defense',
|
|
safety: 'safety',
|
|
runaway: 'runaway',
|
|
trick_flag: 'trick_flag'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_ticketScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
ticket_id: 'ticket_id',
|
|
ticket_cnt: 'ticket_cnt'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_time_trialScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
style_car_id: 'style_car_id',
|
|
course_id: 'course_id',
|
|
eval_id: 'eval_id',
|
|
goal_time: 'goal_time',
|
|
section_time_1: 'section_time_1',
|
|
section_time_2: 'section_time_2',
|
|
section_time_3: 'section_time_3',
|
|
section_time_4: 'section_time_4',
|
|
mission: 'mission',
|
|
play_dt: 'play_dt'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_timetrial_eventScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
timetrial_event_id: 'timetrial_event_id',
|
|
point: 'point'
|
|
};
|
|
|
|
exports.Prisma.Idac_user_vs_infoScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
group_key: 'group_key',
|
|
win_flg: 'win_flg',
|
|
style_car_id: 'style_car_id',
|
|
course_id: 'course_id',
|
|
course_day: 'course_day',
|
|
players_num: 'players_num',
|
|
winning: 'winning',
|
|
advantage_1: 'advantage_1',
|
|
advantage_2: 'advantage_2',
|
|
advantage_3: 'advantage_3',
|
|
advantage_4: 'advantage_4',
|
|
select_course_id: 'select_course_id',
|
|
select_course_day: 'select_course_day',
|
|
select_course_random: 'select_course_random',
|
|
matching_success_sec: 'matching_success_sec',
|
|
boost_flag: 'boost_flag',
|
|
vs_history: 'vs_history',
|
|
break_count: 'break_count',
|
|
break_penalty_flag: 'break_penalty_flag'
|
|
};
|
|
|
|
exports.Prisma.MachineScalarFieldEnum = {
|
|
id: 'id',
|
|
arcade: 'arcade',
|
|
serial: 'serial',
|
|
board: 'board',
|
|
game: 'game',
|
|
country: 'country',
|
|
timezone: 'timezone',
|
|
ota_enable: 'ota_enable',
|
|
memo: 'memo',
|
|
is_cab: 'is_cab',
|
|
data: 'data'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_cardScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
cardId: 'cardId',
|
|
cardTypeId: 'cardTypeId',
|
|
charaId: 'charaId',
|
|
mapId: 'mapId',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_characterScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
characterId: 'characterId',
|
|
level: 'level',
|
|
awakening: 'awakening',
|
|
useCount: 'useCount',
|
|
point: 'point'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_chargeScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chargeId: 'chargeId',
|
|
stock: 'stock',
|
|
purchaseDate: 'purchaseDate',
|
|
validDate: 'validDate'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_favoriteScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
itemKind: 'itemKind',
|
|
itemIdList: 'itemIdList'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_friend_season_rankingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
seasonId: 'seasonId',
|
|
point: 'point',
|
|
rank: 'rank',
|
|
rewardGet: 'rewardGet',
|
|
userName: 'userName',
|
|
recordDate: 'recordDate'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
itemId: 'itemId',
|
|
itemKind: 'itemKind',
|
|
stock: 'stock',
|
|
isValid: 'isValid'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_login_bonusScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
bonusId: 'bonusId',
|
|
point: 'point',
|
|
isCurrent: 'isCurrent',
|
|
isComplete: 'isComplete'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_mapScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
mapId: 'mapId',
|
|
distance: 'distance',
|
|
isLock: 'isLock',
|
|
isClear: 'isClear',
|
|
isComplete: 'isComplete'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_print_detailScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
orderId: 'orderId',
|
|
printNumber: 'printNumber',
|
|
printDate: 'printDate',
|
|
serialId: 'serialId',
|
|
placeId: 'placeId',
|
|
clientId: 'clientId',
|
|
printerSerialId: 'printerSerialId',
|
|
cardRomVersion: 'cardRomVersion',
|
|
isHolograph: 'isHolograph',
|
|
printOption1: 'printOption1',
|
|
printOption2: 'printOption2',
|
|
printOption3: 'printOption3',
|
|
printOption4: 'printOption4',
|
|
printOption5: 'printOption5',
|
|
printOption6: 'printOption6',
|
|
printOption7: 'printOption7',
|
|
printOption8: 'printOption8',
|
|
printOption9: 'printOption9',
|
|
printOption10: 'printOption10',
|
|
created: 'created'
|
|
};
|
|
|
|
exports.Prisma.Mai2_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
userId: 'userId',
|
|
orderId: 'orderId',
|
|
playlogId: 'playlogId',
|
|
version: 'version',
|
|
placeId: 'placeId',
|
|
placeName: 'placeName',
|
|
loginDate: 'loginDate',
|
|
playDate: 'playDate',
|
|
userPlayDate: 'userPlayDate',
|
|
type: 'type',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
trackNo: 'trackNo',
|
|
vsMode: 'vsMode',
|
|
vsUserName: 'vsUserName',
|
|
vsStatus: 'vsStatus',
|
|
vsUserRating: 'vsUserRating',
|
|
vsUserAchievement: 'vsUserAchievement',
|
|
vsUserGradeRank: 'vsUserGradeRank',
|
|
vsRank: 'vsRank',
|
|
playerNum: 'playerNum',
|
|
playedUserId1: 'playedUserId1',
|
|
playedUserName1: 'playedUserName1',
|
|
playedMusicLevel1: 'playedMusicLevel1',
|
|
playedUserId2: 'playedUserId2',
|
|
playedUserName2: 'playedUserName2',
|
|
playedMusicLevel2: 'playedMusicLevel2',
|
|
playedUserId3: 'playedUserId3',
|
|
playedUserName3: 'playedUserName3',
|
|
playedMusicLevel3: 'playedMusicLevel3',
|
|
characterId1: 'characterId1',
|
|
characterLevel1: 'characterLevel1',
|
|
characterAwakening1: 'characterAwakening1',
|
|
characterId2: 'characterId2',
|
|
characterLevel2: 'characterLevel2',
|
|
characterAwakening2: 'characterAwakening2',
|
|
characterId3: 'characterId3',
|
|
characterLevel3: 'characterLevel3',
|
|
characterAwakening3: 'characterAwakening3',
|
|
characterId4: 'characterId4',
|
|
characterLevel4: 'characterLevel4',
|
|
characterAwakening4: 'characterAwakening4',
|
|
characterId5: 'characterId5',
|
|
characterLevel5: 'characterLevel5',
|
|
characterAwakening5: 'characterAwakening5',
|
|
achievement: 'achievement',
|
|
deluxscore: 'deluxscore',
|
|
scoreRank: 'scoreRank',
|
|
maxCombo: 'maxCombo',
|
|
totalCombo: 'totalCombo',
|
|
maxSync: 'maxSync',
|
|
totalSync: 'totalSync',
|
|
tapCriticalPerfect: 'tapCriticalPerfect',
|
|
tapPerfect: 'tapPerfect',
|
|
tapGreat: 'tapGreat',
|
|
tapGood: 'tapGood',
|
|
tapMiss: 'tapMiss',
|
|
holdCriticalPerfect: 'holdCriticalPerfect',
|
|
holdPerfect: 'holdPerfect',
|
|
holdGreat: 'holdGreat',
|
|
holdGood: 'holdGood',
|
|
holdMiss: 'holdMiss',
|
|
slideCriticalPerfect: 'slideCriticalPerfect',
|
|
slidePerfect: 'slidePerfect',
|
|
slideGreat: 'slideGreat',
|
|
slideGood: 'slideGood',
|
|
slideMiss: 'slideMiss',
|
|
touchCriticalPerfect: 'touchCriticalPerfect',
|
|
touchPerfect: 'touchPerfect',
|
|
touchGreat: 'touchGreat',
|
|
touchGood: 'touchGood',
|
|
touchMiss: 'touchMiss',
|
|
breakCriticalPerfect: 'breakCriticalPerfect',
|
|
breakPerfect: 'breakPerfect',
|
|
breakGreat: 'breakGreat',
|
|
breakGood: 'breakGood',
|
|
breakMiss: 'breakMiss',
|
|
isTap: 'isTap',
|
|
isHold: 'isHold',
|
|
isSlide: 'isSlide',
|
|
isTouch: 'isTouch',
|
|
isBreak: 'isBreak',
|
|
isCriticalDisp: 'isCriticalDisp',
|
|
isFastLateDisp: 'isFastLateDisp',
|
|
fastCount: 'fastCount',
|
|
lateCount: 'lateCount',
|
|
isAchieveNewRecord: 'isAchieveNewRecord',
|
|
isDeluxscoreNewRecord: 'isDeluxscoreNewRecord',
|
|
comboStatus: 'comboStatus',
|
|
syncStatus: 'syncStatus',
|
|
isClear: 'isClear',
|
|
beforeRating: 'beforeRating',
|
|
afterRating: 'afterRating',
|
|
beforeGrade: 'beforeGrade',
|
|
afterGrade: 'afterGrade',
|
|
afterGradeRank: 'afterGradeRank',
|
|
beforeDeluxRating: 'beforeDeluxRating',
|
|
afterDeluxRating: 'afterDeluxRating',
|
|
isPlayTutorial: 'isPlayTutorial',
|
|
isEventMode: 'isEventMode',
|
|
isFreedomMode: 'isFreedomMode',
|
|
playMode: 'playMode',
|
|
isNewFree: 'isNewFree',
|
|
extNum1: 'extNum1',
|
|
extNum2: 'extNum2',
|
|
extNum4: 'extNum4',
|
|
extBool1: 'extBool1',
|
|
trialPlayAchievement: 'trialPlayAchievement'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_activityScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
kind: 'kind',
|
|
activityId: 'activityId',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
param3: 'param3',
|
|
param4: 'param4',
|
|
sortNumber: 'sortNumber'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_consec_loginsScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
logins: 'logins'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_detailScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
userName: 'userName',
|
|
isNetMember: 'isNetMember',
|
|
iconId: 'iconId',
|
|
plateId: 'plateId',
|
|
titleId: 'titleId',
|
|
partnerId: 'partnerId',
|
|
frameId: 'frameId',
|
|
selectMapId: 'selectMapId',
|
|
totalAwake: 'totalAwake',
|
|
gradeRating: 'gradeRating',
|
|
musicRating: 'musicRating',
|
|
playerRating: 'playerRating',
|
|
highestRating: 'highestRating',
|
|
gradeRank: 'gradeRank',
|
|
classRank: 'classRank',
|
|
courseRank: 'courseRank',
|
|
charaSlot: 'charaSlot',
|
|
charaLockSlot: 'charaLockSlot',
|
|
contentBit: 'contentBit',
|
|
playCount: 'playCount',
|
|
currentPlayCount: 'currentPlayCount',
|
|
renameCredit: 'renameCredit',
|
|
mapStock: 'mapStock',
|
|
eventWatchedDate: 'eventWatchedDate',
|
|
lastGameId: 'lastGameId',
|
|
lastRomVersion: 'lastRomVersion',
|
|
lastDataVersion: 'lastDataVersion',
|
|
lastLoginDate: 'lastLoginDate',
|
|
lastPairLoginDate: 'lastPairLoginDate',
|
|
lastPlayDate: 'lastPlayDate',
|
|
lastTrialPlayDate: 'lastTrialPlayDate',
|
|
lastPlayCredit: 'lastPlayCredit',
|
|
lastPlayMode: 'lastPlayMode',
|
|
lastPlaceId: 'lastPlaceId',
|
|
lastPlaceName: 'lastPlaceName',
|
|
lastAllNetId: 'lastAllNetId',
|
|
lastRegionId: 'lastRegionId',
|
|
lastRegionName: 'lastRegionName',
|
|
lastClientId: 'lastClientId',
|
|
lastCountryCode: 'lastCountryCode',
|
|
lastSelectEMoney: 'lastSelectEMoney',
|
|
lastSelectTicket: 'lastSelectTicket',
|
|
lastSelectCourse: 'lastSelectCourse',
|
|
lastCountCourse: 'lastCountCourse',
|
|
firstGameId: 'firstGameId',
|
|
firstRomVersion: 'firstRomVersion',
|
|
firstDataVersion: 'firstDataVersion',
|
|
firstPlayDate: 'firstPlayDate',
|
|
compatibleCmVersion: 'compatibleCmVersion',
|
|
dailyBonusDate: 'dailyBonusDate',
|
|
dailyCourseBonusDate: 'dailyCourseBonusDate',
|
|
playVsCount: 'playVsCount',
|
|
playSyncCount: 'playSyncCount',
|
|
winCount: 'winCount',
|
|
helpCount: 'helpCount',
|
|
comboCount: 'comboCount',
|
|
totalDeluxscore: 'totalDeluxscore',
|
|
totalBasicDeluxscore: 'totalBasicDeluxscore',
|
|
totalAdvancedDeluxscore: 'totalAdvancedDeluxscore',
|
|
totalExpertDeluxscore: 'totalExpertDeluxscore',
|
|
totalMasterDeluxscore: 'totalMasterDeluxscore',
|
|
totalReMasterDeluxscore: 'totalReMasterDeluxscore',
|
|
totalSync: 'totalSync',
|
|
totalBasicSync: 'totalBasicSync',
|
|
totalAdvancedSync: 'totalAdvancedSync',
|
|
totalExpertSync: 'totalExpertSync',
|
|
totalMasterSync: 'totalMasterSync',
|
|
totalReMasterSync: 'totalReMasterSync',
|
|
totalAchievement: 'totalAchievement',
|
|
totalBasicAchievement: 'totalBasicAchievement',
|
|
totalAdvancedAchievement: 'totalAdvancedAchievement',
|
|
totalExpertAchievement: 'totalExpertAchievement',
|
|
totalMasterAchievement: 'totalMasterAchievement',
|
|
totalReMasterAchievement: 'totalReMasterAchievement',
|
|
playerOldRating: 'playerOldRating',
|
|
playerNewRating: 'playerNewRating',
|
|
dateTime: 'dateTime',
|
|
banState: 'banState'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_extendScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
selectMusicId: 'selectMusicId',
|
|
selectDifficultyId: 'selectDifficultyId',
|
|
categoryIndex: 'categoryIndex',
|
|
musicIndex: 'musicIndex',
|
|
extraFlag: 'extraFlag',
|
|
selectScoreType: 'selectScoreType',
|
|
extendContentBit: 'extendContentBit',
|
|
isPhotoAgree: 'isPhotoAgree',
|
|
isGotoCodeRead: 'isGotoCodeRead',
|
|
selectResultDetails: 'selectResultDetails',
|
|
selectResultScoreViewType: 'selectResultScoreViewType',
|
|
sortCategorySetting: 'sortCategorySetting',
|
|
sortMusicSetting: 'sortMusicSetting',
|
|
selectedCardList: 'selectedCardList',
|
|
encountMapNpcList: 'encountMapNpcList',
|
|
playStatusSetting: 'playStatusSetting'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_ghostScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version_int: 'version_int',
|
|
name: 'name',
|
|
iconId: 'iconId',
|
|
plateId: 'plateId',
|
|
titleId: 'titleId',
|
|
rate: 'rate',
|
|
udemaeRate: 'udemaeRate',
|
|
courseRank: 'courseRank',
|
|
classRank: 'classRank',
|
|
classValue: 'classValue',
|
|
playDatetime: 'playDatetime',
|
|
shopId: 'shopId',
|
|
regionCode: 'regionCode',
|
|
typeId: 'typeId',
|
|
musicId: 'musicId',
|
|
difficulty: 'difficulty',
|
|
version: 'version',
|
|
resultBitList: 'resultBitList',
|
|
resultNum: 'resultNum',
|
|
achievement: 'achievement'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
selectMusicId: 'selectMusicId',
|
|
optionKind: 'optionKind',
|
|
noteSpeed: 'noteSpeed',
|
|
slideSpeed: 'slideSpeed',
|
|
touchSpeed: 'touchSpeed',
|
|
tapDesign: 'tapDesign',
|
|
tapSe: 'tapSe',
|
|
holdDesign: 'holdDesign',
|
|
slideDesign: 'slideDesign',
|
|
starType: 'starType',
|
|
outlineDesign: 'outlineDesign',
|
|
noteSize: 'noteSize',
|
|
slideSize: 'slideSize',
|
|
touchSize: 'touchSize',
|
|
starRotate: 'starRotate',
|
|
dispCenter: 'dispCenter',
|
|
outFrameType: 'outFrameType',
|
|
dispChain: 'dispChain',
|
|
dispRate: 'dispRate',
|
|
dispBar: 'dispBar',
|
|
touchEffect: 'touchEffect',
|
|
submonitorAnimation: 'submonitorAnimation',
|
|
submonitorAchive: 'submonitorAchive',
|
|
submonitorAppeal: 'submonitorAppeal',
|
|
matching: 'matching',
|
|
trackSkip: 'trackSkip',
|
|
brightness: 'brightness',
|
|
mirrorMode: 'mirrorMode',
|
|
dispJudge: 'dispJudge',
|
|
dispJudgePos: 'dispJudgePos',
|
|
dispJudgeTouchPos: 'dispJudgeTouchPos',
|
|
adjustTiming: 'adjustTiming',
|
|
judgeTiming: 'judgeTiming',
|
|
ansVolume: 'ansVolume',
|
|
tapHoldVolume: 'tapHoldVolume',
|
|
criticalSe: 'criticalSe',
|
|
breakSe: 'breakSe',
|
|
breakVolume: 'breakVolume',
|
|
exSe: 'exSe',
|
|
exVolume: 'exVolume',
|
|
slideSe: 'slideSe',
|
|
slideVolume: 'slideVolume',
|
|
breakSlideVolume: 'breakSlideVolume',
|
|
touchVolume: 'touchVolume',
|
|
touchHoldVolume: 'touchHoldVolume',
|
|
damageSeVolume: 'damageSeVolume',
|
|
headPhoneVolume: 'headPhoneVolume',
|
|
sortTab: 'sortTab',
|
|
sortMusic: 'sortMusic'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
rating: 'rating',
|
|
ratingList: 'ratingList',
|
|
newRatingList: 'newRatingList',
|
|
nextRatingList: 'nextRatingList',
|
|
nextNewRatingList: 'nextNewRatingList',
|
|
udemae: 'udemae'
|
|
};
|
|
|
|
exports.Prisma.Mai2_profile_regionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
regionId: 'regionId',
|
|
playCount: 'playCount',
|
|
created: 'created'
|
|
};
|
|
|
|
exports.Prisma.Mai2_score_bestScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
playCount: 'playCount',
|
|
achievement: 'achievement',
|
|
comboStatus: 'comboStatus',
|
|
syncStatus: 'syncStatus',
|
|
deluxscoreMax: 'deluxscoreMax',
|
|
scoreRank: 'scoreRank',
|
|
extNum1: 'extNum1'
|
|
};
|
|
|
|
exports.Prisma.Mai2_score_courseScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
courseId: 'courseId',
|
|
isLastClear: 'isLastClear',
|
|
totalRestlife: 'totalRestlife',
|
|
totalAchievement: 'totalAchievement',
|
|
totalDeluxscore: 'totalDeluxscore',
|
|
playCount: 'playCount',
|
|
clearDate: 'clearDate',
|
|
lastPlayDate: 'lastPlayDate',
|
|
bestAchievement: 'bestAchievement',
|
|
bestAchievementDate: 'bestAchievementDate',
|
|
bestDeluxscore: 'bestDeluxscore',
|
|
bestDeluxscoreDate: 'bestDeluxscoreDate'
|
|
};
|
|
|
|
exports.Prisma.Mai2_static_cardsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
cardId: 'cardId',
|
|
cardName: 'cardName',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate',
|
|
noticeStartDate: 'noticeStartDate',
|
|
noticeEndDate: 'noticeEndDate',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Mai2_static_eventScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
eventId: 'eventId',
|
|
type: 'type',
|
|
name: 'name',
|
|
startDate: 'startDate',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Mai2_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
artist: 'artist',
|
|
genre: 'genre',
|
|
bpm: 'bpm',
|
|
addedVersion: 'addedVersion',
|
|
difficulty: 'difficulty',
|
|
noteDesigner: 'noteDesigner'
|
|
};
|
|
|
|
exports.Prisma.Mai2_static_ticketScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
ticketId: 'ticketId',
|
|
kind: 'kind',
|
|
name: 'name',
|
|
price: 'price',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Maimai_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
orderId: 'orderId',
|
|
sortNumber: 'sortNumber',
|
|
placeId: 'placeId',
|
|
placeName: 'placeName',
|
|
country: 'country',
|
|
regionId: 'regionId',
|
|
playDate: 'playDate',
|
|
userPlayDate: 'userPlayDate',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
gameMode: 'gameMode',
|
|
rivalNum: 'rivalNum',
|
|
track: 'track',
|
|
eventId: 'eventId',
|
|
isFreeToPlay: 'isFreeToPlay',
|
|
playerRating: 'playerRating',
|
|
playedUserId1: 'playedUserId1',
|
|
playedUserId2: 'playedUserId2',
|
|
playedUserId3: 'playedUserId3',
|
|
playedUserName1: 'playedUserName1',
|
|
playedUserName2: 'playedUserName2',
|
|
playedUserName3: 'playedUserName3',
|
|
playedMusicLevel1: 'playedMusicLevel1',
|
|
playedMusicLevel2: 'playedMusicLevel2',
|
|
playedMusicLevel3: 'playedMusicLevel3',
|
|
achievement: 'achievement',
|
|
score: 'score',
|
|
tapScore: 'tapScore',
|
|
holdScore: 'holdScore',
|
|
slideScore: 'slideScore',
|
|
breakScore: 'breakScore',
|
|
syncRate: 'syncRate',
|
|
vsWin: 'vsWin',
|
|
isAllPerfect: 'isAllPerfect',
|
|
fullCombo: 'fullCombo',
|
|
maxFever: 'maxFever',
|
|
maxCombo: 'maxCombo',
|
|
tapPerfect: 'tapPerfect',
|
|
tapGreat: 'tapGreat',
|
|
tapGood: 'tapGood',
|
|
tapBad: 'tapBad',
|
|
holdPerfect: 'holdPerfect',
|
|
holdGreat: 'holdGreat',
|
|
holdGood: 'holdGood',
|
|
holdBad: 'holdBad',
|
|
slidePerfect: 'slidePerfect',
|
|
slideGreat: 'slideGreat',
|
|
slideGood: 'slideGood',
|
|
slideBad: 'slideBad',
|
|
breakPerfect: 'breakPerfect',
|
|
breakGreat: 'breakGreat',
|
|
breakGood: 'breakGood',
|
|
breakBad: 'breakBad',
|
|
judgeStyle: 'judgeStyle',
|
|
isTrackSkip: 'isTrackSkip',
|
|
isHighScore: 'isHighScore',
|
|
isChallengeTrack: 'isChallengeTrack',
|
|
challengeLife: 'challengeLife',
|
|
challengeRemain: 'challengeRemain',
|
|
isAllPerfectPlus: 'isAllPerfectPlus'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_bossScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
pandoraFlagList0: 'pandoraFlagList0',
|
|
pandoraFlagList1: 'pandoraFlagList1',
|
|
pandoraFlagList2: 'pandoraFlagList2',
|
|
pandoraFlagList3: 'pandoraFlagList3',
|
|
pandoraFlagList4: 'pandoraFlagList4',
|
|
pandoraFlagList5: 'pandoraFlagList5',
|
|
pandoraFlagList6: 'pandoraFlagList6',
|
|
emblemFlagList: 'emblemFlagList'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_detailScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
lastDataVersion: 'lastDataVersion',
|
|
userName: 'userName',
|
|
point: 'point',
|
|
totalPoint: 'totalPoint',
|
|
iconId: 'iconId',
|
|
nameplateId: 'nameplateId',
|
|
frameId: 'frameId',
|
|
trophyId: 'trophyId',
|
|
playCount: 'playCount',
|
|
playVsCount: 'playVsCount',
|
|
playSyncCount: 'playSyncCount',
|
|
winCount: 'winCount',
|
|
helpCount: 'helpCount',
|
|
comboCount: 'comboCount',
|
|
feverCount: 'feverCount',
|
|
totalHiScore: 'totalHiScore',
|
|
totalEasyHighScore: 'totalEasyHighScore',
|
|
totalBasicHighScore: 'totalBasicHighScore',
|
|
totalAdvancedHighScore: 'totalAdvancedHighScore',
|
|
totalExpertHighScore: 'totalExpertHighScore',
|
|
totalMasterHighScore: 'totalMasterHighScore',
|
|
totalReMasterHighScore: 'totalReMasterHighScore',
|
|
totalHighSync: 'totalHighSync',
|
|
totalEasySync: 'totalEasySync',
|
|
totalBasicSync: 'totalBasicSync',
|
|
totalAdvancedSync: 'totalAdvancedSync',
|
|
totalExpertSync: 'totalExpertSync',
|
|
totalMasterSync: 'totalMasterSync',
|
|
totalReMasterSync: 'totalReMasterSync',
|
|
playerRating: 'playerRating',
|
|
highestRating: 'highestRating',
|
|
rankAuthTailId: 'rankAuthTailId',
|
|
eventWatchedDate: 'eventWatchedDate',
|
|
webLimitDate: 'webLimitDate',
|
|
challengeTrackPhase: 'challengeTrackPhase',
|
|
firstPlayBits: 'firstPlayBits',
|
|
lastPlayDate: 'lastPlayDate',
|
|
lastPlaceId: 'lastPlaceId',
|
|
lastPlaceName: 'lastPlaceName',
|
|
lastRegionId: 'lastRegionId',
|
|
lastRegionName: 'lastRegionName',
|
|
lastClientId: 'lastClientId',
|
|
lastCountryCode: 'lastCountryCode',
|
|
eventPoint: 'eventPoint',
|
|
totalLv: 'totalLv',
|
|
lastLoginBonusDay: 'lastLoginBonusDay',
|
|
lastSurvivalBonusDay: 'lastSurvivalBonusDay',
|
|
loginBonusLv: 'loginBonusLv'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_grade_statusScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
gradeVersion: 'gradeVersion',
|
|
gradeLevel: 'gradeLevel',
|
|
gradeSubLevel: 'gradeSubLevel',
|
|
gradeMaxId: 'gradeMaxId'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
soudEffect: 'soudEffect',
|
|
mirrorMode: 'mirrorMode',
|
|
guideSpeed: 'guideSpeed',
|
|
bgInfo: 'bgInfo',
|
|
brightness: 'brightness',
|
|
isStarRot: 'isStarRot',
|
|
breakSe: 'breakSe',
|
|
slideSe: 'slideSe',
|
|
hardJudge: 'hardJudge',
|
|
isTagJump: 'isTagJump',
|
|
breakSeVol: 'breakSeVol',
|
|
slideSeVol: 'slideSeVol',
|
|
isUpperDisp: 'isUpperDisp',
|
|
trackSkip: 'trackSkip',
|
|
optionMode: 'optionMode',
|
|
simpleOptionParam: 'simpleOptionParam',
|
|
adjustTiming: 'adjustTiming',
|
|
dispTiming: 'dispTiming',
|
|
timingPos: 'timingPos',
|
|
ansVol: 'ansVol',
|
|
noteVol: 'noteVol',
|
|
dmgVol: 'dmgVol',
|
|
appealFlame: 'appealFlame',
|
|
isFeverDisp: 'isFeverDisp',
|
|
dispJudge: 'dispJudge',
|
|
judgePos: 'judgePos',
|
|
ratingGuard: 'ratingGuard',
|
|
selectChara: 'selectChara',
|
|
sortType: 'sortType',
|
|
filterGenre: 'filterGenre',
|
|
filterLevel: 'filterLevel',
|
|
filterRank: 'filterRank',
|
|
filterVersion: 'filterVersion',
|
|
filterRec: 'filterRec',
|
|
filterFullCombo: 'filterFullCombo',
|
|
filterAllPerfect: 'filterAllPerfect',
|
|
filterDifficulty: 'filterDifficulty',
|
|
filterFullSync: 'filterFullSync',
|
|
filterReMaster: 'filterReMaster',
|
|
filterMaxFever: 'filterMaxFever',
|
|
finalSelectId: 'finalSelectId',
|
|
finalSelectCategory: 'finalSelectCategory'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_recent_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
userRecentRatingList: 'userRecentRatingList'
|
|
};
|
|
|
|
exports.Prisma.Maimai_profile_web_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
isNetMember: 'isNetMember',
|
|
dispRate: 'dispRate',
|
|
dispJudgeStyle: 'dispJudgeStyle',
|
|
dispRank: 'dispRank',
|
|
dispHomeRanker: 'dispHomeRanker',
|
|
dispTotalLv: 'dispTotalLv'
|
|
};
|
|
|
|
exports.Prisma.Maimai_score_bestScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
playCount: 'playCount',
|
|
achievement: 'achievement',
|
|
scoreMax: 'scoreMax',
|
|
syncRateMax: 'syncRateMax',
|
|
isAllPerfect: 'isAllPerfect',
|
|
isAllPerfectPlus: 'isAllPerfectPlus',
|
|
fullCombo: 'fullCombo',
|
|
maxFever: 'maxFever'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_gp_logScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
usedCredit: 'usedCredit',
|
|
placeName: 'placeName',
|
|
trxnDate: 'trxnDate',
|
|
placeId: 'placeId',
|
|
kind: 'kind',
|
|
pattern: 'pattern',
|
|
currentGP: 'currentGP'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_activityScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
kind: 'kind',
|
|
activityId: 'activityId',
|
|
sortNumber: 'sortNumber',
|
|
param1: 'param1',
|
|
param2: 'param2',
|
|
param3: 'param3',
|
|
param4: 'param4'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
userName: 'userName',
|
|
level: 'level',
|
|
reincarnationNum: 'reincarnationNum',
|
|
exp: 'exp',
|
|
point: 'point',
|
|
totalPoint: 'totalPoint',
|
|
playCount: 'playCount',
|
|
jewelCount: 'jewelCount',
|
|
totalJewelCount: 'totalJewelCount',
|
|
medalCount: 'medalCount',
|
|
playerRating: 'playerRating',
|
|
highestRating: 'highestRating',
|
|
battlePoint: 'battlePoint',
|
|
nameplateId: 'nameplateId',
|
|
trophyId: 'trophyId',
|
|
cardId: 'cardId',
|
|
characterId: 'characterId',
|
|
characterVoiceNo: 'characterVoiceNo',
|
|
tabSetting: 'tabSetting',
|
|
tabSortSetting: 'tabSortSetting',
|
|
cardCategorySetting: 'cardCategorySetting',
|
|
cardSortSetting: 'cardSortSetting',
|
|
playedTutorialBit: 'playedTutorialBit',
|
|
firstTutorialCancelNum: 'firstTutorialCancelNum',
|
|
sumTechHighScore: 'sumTechHighScore',
|
|
sumTechBasicHighScore: 'sumTechBasicHighScore',
|
|
sumTechAdvancedHighScore: 'sumTechAdvancedHighScore',
|
|
sumTechExpertHighScore: 'sumTechExpertHighScore',
|
|
sumTechMasterHighScore: 'sumTechMasterHighScore',
|
|
sumTechLunaticHighScore: 'sumTechLunaticHighScore',
|
|
sumBattleHighScore: 'sumBattleHighScore',
|
|
sumBattleBasicHighScore: 'sumBattleBasicHighScore',
|
|
sumBattleAdvancedHighScore: 'sumBattleAdvancedHighScore',
|
|
sumBattleExpertHighScore: 'sumBattleExpertHighScore',
|
|
sumBattleMasterHighScore: 'sumBattleMasterHighScore',
|
|
sumBattleLunaticHighScore: 'sumBattleLunaticHighScore',
|
|
eventWatchedDate: 'eventWatchedDate',
|
|
cmEventWatchedDate: 'cmEventWatchedDate',
|
|
firstGameId: 'firstGameId',
|
|
firstRomVersion: 'firstRomVersion',
|
|
firstDataVersion: 'firstDataVersion',
|
|
firstPlayDate: 'firstPlayDate',
|
|
lastGameId: 'lastGameId',
|
|
lastRomVersion: 'lastRomVersion',
|
|
lastDataVersion: 'lastDataVersion',
|
|
compatibleCmVersion: 'compatibleCmVersion',
|
|
lastPlayDate: 'lastPlayDate',
|
|
lastPlaceId: 'lastPlaceId',
|
|
lastPlaceName: 'lastPlaceName',
|
|
lastRegionId: 'lastRegionId',
|
|
lastRegionName: 'lastRegionName',
|
|
lastAllNetId: 'lastAllNetId',
|
|
lastClientId: 'lastClientId',
|
|
lastUsedDeckId: 'lastUsedDeckId',
|
|
lastPlayMusicLevel: 'lastPlayMusicLevel',
|
|
banStatus: 'banStatus',
|
|
rivalScoreCategorySetting: 'rivalScoreCategorySetting',
|
|
overDamageBattlePoint: 'overDamageBattlePoint',
|
|
bestBattlePoint: 'bestBattlePoint',
|
|
lastEmoneyBrand: 'lastEmoneyBrand',
|
|
lastEmoneyCredit: 'lastEmoneyCredit',
|
|
isDialogWatchedSuggestMemory: 'isDialogWatchedSuggestMemory'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_kopScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
authKey: 'authKey',
|
|
kopId: 'kopId',
|
|
areaId: 'areaId',
|
|
totalTechScore: 'totalTechScore',
|
|
totalPlatinumScore: 'totalPlatinumScore',
|
|
techRecordDate: 'techRecordDate',
|
|
isTotalTechNewRecord: 'isTotalTechNewRecord'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
optionSet: 'optionSet',
|
|
speed: 'speed',
|
|
mirror: 'mirror',
|
|
judgeTiming: 'judgeTiming',
|
|
judgeAdjustment: 'judgeAdjustment',
|
|
abort: 'abort',
|
|
tapSound: 'tapSound',
|
|
volGuide: 'volGuide',
|
|
volAll: 'volAll',
|
|
volTap: 'volTap',
|
|
volCrTap: 'volCrTap',
|
|
volHold: 'volHold',
|
|
volSide: 'volSide',
|
|
volFlick: 'volFlick',
|
|
volBell: 'volBell',
|
|
volEnemy: 'volEnemy',
|
|
volSkill: 'volSkill',
|
|
volDamage: 'volDamage',
|
|
colorField: 'colorField',
|
|
colorLaneBright: 'colorLaneBright',
|
|
colorLane: 'colorLane',
|
|
colorSide: 'colorSide',
|
|
effectDamage: 'effectDamage',
|
|
effectPos: 'effectPos',
|
|
judgeDisp: 'judgeDisp',
|
|
judgePos: 'judgePos',
|
|
judgeBreak: 'judgeBreak',
|
|
judgeHit: 'judgeHit',
|
|
platinumBreakDisp: 'platinumBreakDisp',
|
|
judgeCriticalBreak: 'judgeCriticalBreak',
|
|
matching: 'matching',
|
|
dispPlayerLv: 'dispPlayerLv',
|
|
dispRating: 'dispRating',
|
|
dispBP: 'dispBP',
|
|
headphone: 'headphone',
|
|
stealthField: 'stealthField',
|
|
colorWallBright: 'colorWallBright'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
type: 'type',
|
|
index: 'index',
|
|
musicId: 'musicId',
|
|
difficultId: 'difficultId',
|
|
romVersionCode: 'romVersionCode',
|
|
score: 'score'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_rating_logScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
highestRating: 'highestRating',
|
|
dataVersion: 'dataVersion'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_recent_ratingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
recentRating: 'recentRating'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_regionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
regionId: 'regionId',
|
|
playCount: 'playCount',
|
|
created: 'created'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_rivalScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
rivalUserId: 'rivalUserId'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_profile_training_roomScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
roomId: 'roomId',
|
|
authKey: 'authKey',
|
|
cardId: 'cardId',
|
|
valueDate: 'valueDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_score_bestScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
playCount: 'playCount',
|
|
techScoreMax: 'techScoreMax',
|
|
techScoreRank: 'techScoreRank',
|
|
battleScoreMax: 'battleScoreMax',
|
|
battleScoreRank: 'battleScoreRank',
|
|
maxComboCount: 'maxComboCount',
|
|
maxOverKill: 'maxOverKill',
|
|
maxTeamOverKill: 'maxTeamOverKill',
|
|
isFullBell: 'isFullBell',
|
|
isFullCombo: 'isFullCombo',
|
|
isAllBreake: 'isAllBreake',
|
|
isLock: 'isLock',
|
|
clearStatus: 'clearStatus',
|
|
isStoryWatched: 'isStoryWatched',
|
|
platinumScoreMax: 'platinumScoreMax'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_score_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
sortNumber: 'sortNumber',
|
|
placeId: 'placeId',
|
|
placeName: 'placeName',
|
|
playDate: 'playDate',
|
|
userPlayDate: 'userPlayDate',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
playKind: 'playKind',
|
|
eventId: 'eventId',
|
|
eventName: 'eventName',
|
|
eventPoint: 'eventPoint',
|
|
playedUserId1: 'playedUserId1',
|
|
playedUserId2: 'playedUserId2',
|
|
playedUserId3: 'playedUserId3',
|
|
playedUserName1: 'playedUserName1',
|
|
playedUserName2: 'playedUserName2',
|
|
playedUserName3: 'playedUserName3',
|
|
playedMusicLevel1: 'playedMusicLevel1',
|
|
playedMusicLevel2: 'playedMusicLevel2',
|
|
playedMusicLevel3: 'playedMusicLevel3',
|
|
cardId1: 'cardId1',
|
|
cardId2: 'cardId2',
|
|
cardId3: 'cardId3',
|
|
cardLevel1: 'cardLevel1',
|
|
cardLevel2: 'cardLevel2',
|
|
cardLevel3: 'cardLevel3',
|
|
cardAttack1: 'cardAttack1',
|
|
cardAttack2: 'cardAttack2',
|
|
cardAttack3: 'cardAttack3',
|
|
bossCharaId: 'bossCharaId',
|
|
bossLevel: 'bossLevel',
|
|
bossAttribute: 'bossAttribute',
|
|
clearStatus: 'clearStatus',
|
|
techScore: 'techScore',
|
|
techScoreRank: 'techScoreRank',
|
|
battleScore: 'battleScore',
|
|
battleScoreRank: 'battleScoreRank',
|
|
maxCombo: 'maxCombo',
|
|
judgeMiss: 'judgeMiss',
|
|
judgeHit: 'judgeHit',
|
|
judgeBreak: 'judgeBreak',
|
|
judgeCriticalBreak: 'judgeCriticalBreak',
|
|
rateTap: 'rateTap',
|
|
rateHold: 'rateHold',
|
|
rateFlick: 'rateFlick',
|
|
rateSideTap: 'rateSideTap',
|
|
rateSideHold: 'rateSideHold',
|
|
bellCount: 'bellCount',
|
|
totalBellCount: 'totalBellCount',
|
|
damageCount: 'damageCount',
|
|
overDamage: 'overDamage',
|
|
isTechNewRecord: 'isTechNewRecord',
|
|
isBattleNewRecord: 'isBattleNewRecord',
|
|
isOverDamageNewRecord: 'isOverDamageNewRecord',
|
|
isFullCombo: 'isFullCombo',
|
|
isFullBell: 'isFullBell',
|
|
isAllBreak: 'isAllBreak',
|
|
playerRating: 'playerRating',
|
|
battlePoint: 'battlePoint',
|
|
platinumScore: 'platinumScore',
|
|
platinumScoreMax: 'platinumScoreMax'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_score_tech_countScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
levelId: 'levelId',
|
|
allBreakCount: 'allBreakCount',
|
|
allBreakPlusCount: 'allBreakPlusCount'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_session_logScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
sortNumber: 'sortNumber',
|
|
placeId: 'placeId',
|
|
playDate: 'playDate',
|
|
userPlayDate: 'userPlayDate',
|
|
isPaid: 'isPaid'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_cardsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
cardId: 'cardId',
|
|
name: 'name',
|
|
charaId: 'charaId',
|
|
nickName: 'nickName',
|
|
school: 'school',
|
|
attribute: 'attribute',
|
|
gakunen: 'gakunen',
|
|
rarity: 'rarity',
|
|
levelParam: 'levelParam',
|
|
skillId: 'skillId',
|
|
choKaikaSkillId: 'choKaikaSkillId',
|
|
cardNumber: 'cardNumber'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_client_testmodeScalarFieldEnum = {
|
|
id: 'id',
|
|
regionId: 'regionId',
|
|
placeId: 'placeId',
|
|
clientId: 'clientId',
|
|
updateDate: 'updateDate',
|
|
isDelivery: 'isDelivery',
|
|
groupId: 'groupId',
|
|
groupRole: 'groupRole',
|
|
continueMode: 'continueMode',
|
|
selectMusicTime: 'selectMusicTime',
|
|
advertiseVolume: 'advertiseVolume',
|
|
eventMode: 'eventMode',
|
|
eventMusicNum: 'eventMusicNum',
|
|
patternGp: 'patternGp',
|
|
limitGp: 'limitGp',
|
|
maxLeverMovable: 'maxLeverMovable',
|
|
minLeverMovable: 'minLeverMovable'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_eventsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
eventId: 'eventId',
|
|
type: 'type',
|
|
name: 'name',
|
|
startDate: 'startDate',
|
|
enabled: 'enabled',
|
|
endDate: 'endDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_gacha_cardsScalarFieldEnum = {
|
|
id: 'id',
|
|
gachaId: 'gachaId',
|
|
cardId: 'cardId',
|
|
rarity: 'rarity',
|
|
weight: 'weight',
|
|
isPickup: 'isPickup',
|
|
isSelect: 'isSelect'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_gachasScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
gachaId: 'gachaId',
|
|
gachaName: 'gachaName',
|
|
type: 'type',
|
|
kind: 'kind',
|
|
isCeiling: 'isCeiling',
|
|
maxSelectPoint: 'maxSelectPoint',
|
|
ceilingCnt: 'ceilingCnt',
|
|
changeRateCnt1: 'changeRateCnt1',
|
|
changeRateCnt2: 'changeRateCnt2',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate',
|
|
noticeStartDate: 'noticeStartDate',
|
|
noticeEndDate: 'noticeEndDate',
|
|
convertEndDate: 'convertEndDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_game_pointScalarFieldEnum = {
|
|
id: 'id',
|
|
type: 'type',
|
|
cost: 'cost',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
artist: 'artist',
|
|
genre: 'genre',
|
|
level: 'level'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_music_ranking_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
musicId: 'musicId',
|
|
point: 'point',
|
|
userName: 'userName'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_present_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
presentId: 'presentId',
|
|
presentName: 'presentName',
|
|
rewardId: 'rewardId',
|
|
stock: 'stock',
|
|
message: 'message',
|
|
startDate: 'startDate',
|
|
endDate: 'endDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_rewardsScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
rewardId: 'rewardId',
|
|
rewardname: 'rewardname',
|
|
itemKind: 'itemKind',
|
|
itemId: 'itemId'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_static_tech_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
eventId: 'eventId',
|
|
musicId: 'musicId',
|
|
level: 'level'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_tech_event_rankingScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
date: 'date',
|
|
eventId: 'eventId',
|
|
rank: 'rank',
|
|
totalPlatinumScore: 'totalPlatinumScore',
|
|
totalTechScore: 'totalTechScore'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_bossScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
damage: 'damage',
|
|
isClear: 'isClear',
|
|
eventId: 'eventId'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_cardScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
cardId: 'cardId',
|
|
digitalStock: 'digitalStock',
|
|
analogStock: 'analogStock',
|
|
level: 'level',
|
|
maxLevel: 'maxLevel',
|
|
exp: 'exp',
|
|
printCount: 'printCount',
|
|
useCount: 'useCount',
|
|
isNew: 'isNew',
|
|
kaikaDate: 'kaikaDate',
|
|
choKaikaDate: 'choKaikaDate',
|
|
skillId: 'skillId',
|
|
isAcquired: 'isAcquired',
|
|
created: 'created'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_chapterScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chapterId: 'chapterId',
|
|
jewelCount: 'jewelCount',
|
|
isStoryWatched: 'isStoryWatched',
|
|
isClear: 'isClear',
|
|
lastPlayMusicId: 'lastPlayMusicId',
|
|
lastPlayMusicCategory: 'lastPlayMusicCategory',
|
|
lastPlayMusicLevel: 'lastPlayMusicLevel',
|
|
skipTiming1: 'skipTiming1',
|
|
skipTiming2: 'skipTiming2'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_characterScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
characterId: 'characterId',
|
|
costumeId: 'costumeId',
|
|
attachmentId: 'attachmentId',
|
|
playCount: 'playCount',
|
|
intimateLevel: 'intimateLevel',
|
|
intimateCount: 'intimateCount',
|
|
intimateCountRewarded: 'intimateCountRewarded',
|
|
intimateCountDate: 'intimateCountDate',
|
|
isNew: 'isNew'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_deckScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
deckId: 'deckId',
|
|
cardId1: 'cardId1',
|
|
cardId2: 'cardId2',
|
|
cardId3: 'cardId3'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_event_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
eventId: 'eventId',
|
|
type: 'type',
|
|
musicId: 'musicId',
|
|
level: 'level',
|
|
techScoreMax: 'techScoreMax',
|
|
platinumScoreMax: 'platinumScoreMax',
|
|
techRecordDate: 'techRecordDate',
|
|
isTechNewRecord: 'isTechNewRecord'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_event_pointScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
eventId: 'eventId',
|
|
point: 'point',
|
|
isRankingRewarded: 'isRankingRewarded',
|
|
version: 'version',
|
|
rank: 'rank',
|
|
type: 'type',
|
|
date: 'date'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_gachaScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
gachaId: 'gachaId',
|
|
totalGachaCnt: 'totalGachaCnt',
|
|
ceilingGachaCnt: 'ceilingGachaCnt',
|
|
selectPoint: 'selectPoint',
|
|
useSelectPoint: 'useSelectPoint',
|
|
dailyGachaCnt: 'dailyGachaCnt',
|
|
fiveGachaCnt: 'fiveGachaCnt',
|
|
elevenGachaCnt: 'elevenGachaCnt',
|
|
dailyGachaDate: 'dailyGachaDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_gacha_supplyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
cardId: 'cardId'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
itemKind: 'itemKind',
|
|
itemId: 'itemId',
|
|
stock: 'stock',
|
|
isValid: 'isValid'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_login_bonusScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
bonusId: 'bonusId',
|
|
bonusCount: 'bonusCount',
|
|
lastUpdateDate: 'lastUpdateDate'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_memorychapterScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chapterId: 'chapterId',
|
|
gaugeId: 'gaugeId',
|
|
gaugeNum: 'gaugeNum',
|
|
jewelCount: 'jewelCount',
|
|
isStoryWatched: 'isStoryWatched',
|
|
isBossWatched: 'isBossWatched',
|
|
isDialogWatched: 'isDialogWatched',
|
|
isEndingWatched: 'isEndingWatched',
|
|
isClear: 'isClear',
|
|
lastPlayMusicId: 'lastPlayMusicId',
|
|
lastPlayMusicLevel: 'lastPlayMusicLevel',
|
|
lastPlayMusicCategory: 'lastPlayMusicCategory'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_mission_pointScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
eventId: 'eventId',
|
|
point: 'point',
|
|
version: 'version'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_music_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId',
|
|
status: 'status'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_print_detailScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
cardId: 'cardId',
|
|
cardType: 'cardType',
|
|
printDate: 'printDate',
|
|
serialId: 'serialId',
|
|
placeId: 'placeId',
|
|
clientId: 'clientId',
|
|
printerSerialId: 'printerSerialId',
|
|
isHolograph: 'isHolograph',
|
|
isAutographed: 'isAutographed',
|
|
printOption1: 'printOption1',
|
|
printOption2: 'printOption2',
|
|
printOption3: 'printOption3',
|
|
printOption4: 'printOption4',
|
|
printOption5: 'printOption5',
|
|
printOption6: 'printOption6',
|
|
printOption7: 'printOption7',
|
|
printOption8: 'printOption8',
|
|
printOption9: 'printOption9',
|
|
printOption10: 'printOption10'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_scenerioScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
scenarioId: 'scenarioId',
|
|
playCount: 'playCount'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_storyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
storyId: 'storyId',
|
|
jewelCount: 'jewelCount',
|
|
lastChapterId: 'lastChapterId',
|
|
lastPlayMusicId: 'lastPlayMusicId',
|
|
lastPlayMusicCategory: 'lastPlayMusicCategory',
|
|
lastPlayMusicLevel: 'lastPlayMusicLevel'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_tech_eventScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
eventId: 'eventId',
|
|
totalTechScore: 'totalTechScore',
|
|
totalPlatinumScore: 'totalPlatinumScore',
|
|
techRecordDate: 'techRecordDate',
|
|
isRankingRewarded: 'isRankingRewarded',
|
|
isTotalTechNewRecord: 'isTotalTechNewRecord',
|
|
version: 'version'
|
|
};
|
|
|
|
exports.Prisma.Ongeki_user_trade_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
chapterId: 'chapterId',
|
|
tradeItemId: 'tradeItemId',
|
|
tradeCount: 'tradeCount'
|
|
};
|
|
|
|
exports.Prisma.Pokken_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
category: 'category',
|
|
content: 'content',
|
|
type: 'type'
|
|
};
|
|
|
|
exports.Prisma.Pokken_match_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
num_games: 'num_games',
|
|
play_modes: 'play_modes',
|
|
results: 'results',
|
|
ex_ko_num: 'ex_ko_num',
|
|
wko_num: 'wko_num',
|
|
timeup_win_num: 'timeup_win_num',
|
|
cool_ko_num: 'cool_ko_num',
|
|
perfect_ko_num: 'perfect_ko_num',
|
|
use_navi: 'use_navi',
|
|
use_navi_cloth: 'use_navi_cloth',
|
|
use_aid_skill: 'use_aid_skill',
|
|
play_date: 'play_date'
|
|
};
|
|
|
|
exports.Prisma.Pokken_pokemon_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
char_id: 'char_id',
|
|
illustration_book_no: 'illustration_book_no',
|
|
pokemon_exp: 'pokemon_exp',
|
|
battle_num_vs_wan: 'battle_num_vs_wan',
|
|
win_vs_wan: 'win_vs_wan',
|
|
battle_num_vs_lan: 'battle_num_vs_lan',
|
|
win_vs_lan: 'win_vs_lan',
|
|
battle_num_vs_cpu: 'battle_num_vs_cpu',
|
|
win_cpu: 'win_cpu',
|
|
battle_all_num_tutorial: 'battle_all_num_tutorial',
|
|
battle_num_tutorial: 'battle_num_tutorial',
|
|
bp_point_atk: 'bp_point_atk',
|
|
bp_point_res: 'bp_point_res',
|
|
bp_point_def: 'bp_point_def',
|
|
bp_point_sp: 'bp_point_sp'
|
|
};
|
|
|
|
exports.Prisma.Pokken_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
trainer_name: 'trainer_name',
|
|
home_region_code: 'home_region_code',
|
|
home_loc_name: 'home_loc_name',
|
|
pref_code: 'pref_code',
|
|
navi_newbie_flag: 'navi_newbie_flag',
|
|
navi_enable_flag: 'navi_enable_flag',
|
|
pad_vibrate_flag: 'pad_vibrate_flag',
|
|
trainer_rank_point: 'trainer_rank_point',
|
|
wallet: 'wallet',
|
|
fight_money: 'fight_money',
|
|
score_point: 'score_point',
|
|
grade_max_num: 'grade_max_num',
|
|
extra_counter: 'extra_counter',
|
|
tutorial_progress_flag: 'tutorial_progress_flag',
|
|
total_play_days: 'total_play_days',
|
|
play_date_time: 'play_date_time',
|
|
achievement_flag: 'achievement_flag',
|
|
lucky_box_fail_num: 'lucky_box_fail_num',
|
|
event_reward_get_flag: 'event_reward_get_flag',
|
|
rank_pvp_all: 'rank_pvp_all',
|
|
rank_pvp_loc: 'rank_pvp_loc',
|
|
rank_cpu_all: 'rank_cpu_all',
|
|
rank_cpu_loc: 'rank_cpu_loc',
|
|
rank_event: 'rank_event',
|
|
awake_num: 'awake_num',
|
|
use_support_num: 'use_support_num',
|
|
rankmatch_flag: 'rankmatch_flag',
|
|
rankmatch_max: 'rankmatch_max',
|
|
rankmatch_progress: 'rankmatch_progress',
|
|
rankmatch_success: 'rankmatch_success',
|
|
beat_num: 'beat_num',
|
|
title_text_id: 'title_text_id',
|
|
title_plate_id: 'title_plate_id',
|
|
title_decoration_id: 'title_decoration_id',
|
|
support_pokemon_list: 'support_pokemon_list',
|
|
support_set_1_1: 'support_set_1_1',
|
|
support_set_1_2: 'support_set_1_2',
|
|
support_set_2_1: 'support_set_2_1',
|
|
support_set_2_2: 'support_set_2_2',
|
|
support_set_3_1: 'support_set_3_1',
|
|
support_set_3_2: 'support_set_3_2',
|
|
navi_trainer: 'navi_trainer',
|
|
navi_version_id: 'navi_version_id',
|
|
aid_skill_list: 'aid_skill_list',
|
|
aid_skill: 'aid_skill',
|
|
comment_text_id: 'comment_text_id',
|
|
comment_word_id: 'comment_word_id',
|
|
latest_use_pokemon: 'latest_use_pokemon',
|
|
ex_ko_num: 'ex_ko_num',
|
|
wko_num: 'wko_num',
|
|
timeup_win_num: 'timeup_win_num',
|
|
cool_ko_num: 'cool_ko_num',
|
|
perfect_ko_num: 'perfect_ko_num',
|
|
record_flag: 'record_flag',
|
|
continue_num: 'continue_num',
|
|
avatar_body: 'avatar_body',
|
|
avatar_gender: 'avatar_gender',
|
|
avatar_background: 'avatar_background',
|
|
avatar_head: 'avatar_head',
|
|
avatar_battleglass: 'avatar_battleglass',
|
|
avatar_face0: 'avatar_face0',
|
|
avatar_face1: 'avatar_face1',
|
|
avatar_face2: 'avatar_face2',
|
|
avatar_bodyall: 'avatar_bodyall',
|
|
avatar_wear: 'avatar_wear',
|
|
avatar_accessory: 'avatar_accessory',
|
|
avatar_stamp: 'avatar_stamp',
|
|
event_state: 'event_state',
|
|
event_id: 'event_id',
|
|
sp_bonus_category_id_1: 'sp_bonus_category_id_1',
|
|
sp_bonus_key_value_1: 'sp_bonus_key_value_1',
|
|
sp_bonus_category_id_2: 'sp_bonus_category_id_2',
|
|
sp_bonus_key_value_2: 'sp_bonus_key_value_2',
|
|
last_play_event_id: 'last_play_event_id',
|
|
event_achievement_flag: 'event_achievement_flag',
|
|
event_achievement_param: 'event_achievement_param',
|
|
battle_num_vs_wan: 'battle_num_vs_wan',
|
|
win_vs_wan: 'win_vs_wan',
|
|
battle_num_vs_lan: 'battle_num_vs_lan',
|
|
win_vs_lan: 'win_vs_lan',
|
|
battle_num_vs_cpu: 'battle_num_vs_cpu',
|
|
win_cpu: 'win_cpu',
|
|
battle_num_tutorial: 'battle_num_tutorial'
|
|
};
|
|
|
|
exports.Prisma.Sao_end_sessionsScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
quest_id: 'quest_id',
|
|
play_result_flag: 'play_result_flag',
|
|
reward_data: 'reward_data',
|
|
play_date: 'play_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_equipment_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
equipment_id: 'equipment_id',
|
|
enhancement_value: 'enhancement_value',
|
|
enhancement_exp: 'enhancement_exp',
|
|
awakening_exp: 'awakening_exp',
|
|
awakening_stage: 'awakening_stage',
|
|
possible_awakening_flag: 'possible_awakening_flag',
|
|
get_date: 'get_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_hero_log_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
user_hero_log_id: 'user_hero_log_id',
|
|
log_level: 'log_level',
|
|
log_exp: 'log_exp',
|
|
main_weapon: 'main_weapon',
|
|
sub_equipment: 'sub_equipment',
|
|
skill_slot1_skill_id: 'skill_slot1_skill_id',
|
|
skill_slot2_skill_id: 'skill_slot2_skill_id',
|
|
skill_slot3_skill_id: 'skill_slot3_skill_id',
|
|
skill_slot4_skill_id: 'skill_slot4_skill_id',
|
|
skill_slot5_skill_id: 'skill_slot5_skill_id',
|
|
get_date: 'get_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_hero_partyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
user_party_team_id: 'user_party_team_id',
|
|
user_hero_log_id_1: 'user_hero_log_id_1',
|
|
user_hero_log_id_2: 'user_hero_log_id_2',
|
|
user_hero_log_id_3: 'user_hero_log_id_3'
|
|
};
|
|
|
|
exports.Prisma.Sao_item_dataScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
item_id: 'item_id',
|
|
get_date: 'get_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_play_sessionsScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
user_party_team_id: 'user_party_team_id',
|
|
episode_id: 'episode_id',
|
|
play_mode: 'play_mode',
|
|
quest_drop_boost_apply_flag: 'quest_drop_boost_apply_flag',
|
|
play_date: 'play_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_player_questScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
episode_id: 'episode_id',
|
|
quest_clear_flag: 'quest_clear_flag',
|
|
clear_time: 'clear_time',
|
|
combo_num: 'combo_num',
|
|
total_damage: 'total_damage',
|
|
concurrent_destroying_num: 'concurrent_destroying_num',
|
|
play_date: 'play_date'
|
|
};
|
|
|
|
exports.Prisma.Sao_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
user_type: 'user_type',
|
|
nick_name: 'nick_name',
|
|
rank_num: 'rank_num',
|
|
rank_exp: 'rank_exp',
|
|
own_col: 'own_col',
|
|
own_vp: 'own_vp',
|
|
own_yui_medal: 'own_yui_medal',
|
|
setting_title_id: 'setting_title_id'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_equipment_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
equipmentId: 'equipmentId',
|
|
equipmentType: 'equipmentType',
|
|
weaponTypeId: 'weaponTypeId',
|
|
name: 'name',
|
|
rarity: 'rarity',
|
|
flavorText: 'flavorText',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_hero_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
heroLogId: 'heroLogId',
|
|
name: 'name',
|
|
nickname: 'nickname',
|
|
rarity: 'rarity',
|
|
skillTableSubId: 'skillTableSubId',
|
|
awakeningExp: 'awakeningExp',
|
|
flavorText: 'flavorText',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_item_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
itemId: 'itemId',
|
|
itemTypeId: 'itemTypeId',
|
|
name: 'name',
|
|
rarity: 'rarity',
|
|
flavorText: 'flavorText',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_questScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
questSceneId: 'questSceneId',
|
|
sortNo: 'sortNo',
|
|
name: 'name',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_rare_drop_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
questRareDropId: 'questRareDropId',
|
|
commonRewardId: 'commonRewardId',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_support_log_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
supportLogId: 'supportLogId',
|
|
charaId: 'charaId',
|
|
name: 'name',
|
|
rarity: 'rarity',
|
|
salePrice: 'salePrice',
|
|
skillName: 'skillName',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Sao_static_title_listScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
titleId: 'titleId',
|
|
displayName: 'displayName',
|
|
requirement: 'requirement',
|
|
rank: 'rank',
|
|
imageFilePath: 'imageFilePath',
|
|
enabled: 'enabled'
|
|
};
|
|
|
|
exports.Prisma.Schema_versionsScalarFieldEnum = {
|
|
game: 'game',
|
|
version: 'version'
|
|
};
|
|
|
|
exports.Prisma.Wacca_bingoScalarFieldEnum = {
|
|
user: 'user',
|
|
page_number: 'page_number',
|
|
page_progress: 'page_progress'
|
|
};
|
|
|
|
exports.Prisma.Wacca_favorite_songScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
song_id: 'song_id'
|
|
};
|
|
|
|
exports.Prisma.Wacca_friendScalarFieldEnum = {
|
|
profile_sender: 'profile_sender',
|
|
profile_reciever: 'profile_reciever',
|
|
is_accepted: 'is_accepted'
|
|
};
|
|
|
|
exports.Prisma.Wacca_gateScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
gate_id: 'gate_id',
|
|
page: 'page',
|
|
progress: 'progress',
|
|
loops: 'loops',
|
|
last_used: 'last_used',
|
|
mission_flag: 'mission_flag',
|
|
total_points: 'total_points'
|
|
};
|
|
|
|
exports.Prisma.Wacca_itemScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
item_id: 'item_id',
|
|
type: 'type',
|
|
acquire_date: 'acquire_date',
|
|
use_count: 'use_count'
|
|
};
|
|
|
|
exports.Prisma.Wacca_optionScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
opt_id: 'opt_id',
|
|
value: 'value'
|
|
};
|
|
|
|
exports.Prisma.Wacca_profileScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
username: 'username',
|
|
xp: 'xp',
|
|
wp: 'wp',
|
|
wp_total: 'wp_total',
|
|
wp_spent: 'wp_spent',
|
|
dan_type: 'dan_type',
|
|
dan_level: 'dan_level',
|
|
title_0: 'title_0',
|
|
title_1: 'title_1',
|
|
title_2: 'title_2',
|
|
rating: 'rating',
|
|
vip_expire_time: 'vip_expire_time',
|
|
always_vip: 'always_vip',
|
|
login_count: 'login_count',
|
|
login_count_consec: 'login_count_consec',
|
|
login_count_days: 'login_count_days',
|
|
login_count_days_consec: 'login_count_days_consec',
|
|
login_count_today: 'login_count_today',
|
|
playcount_single: 'playcount_single',
|
|
playcount_multi_vs: 'playcount_multi_vs',
|
|
playcount_multi_coop: 'playcount_multi_coop',
|
|
playcount_stageup: 'playcount_stageup',
|
|
playcount_time_free: 'playcount_time_free',
|
|
friend_view_1: 'friend_view_1',
|
|
friend_view_2: 'friend_view_2',
|
|
friend_view_3: 'friend_view_3',
|
|
last_game_ver: 'last_game_ver',
|
|
last_song_id: 'last_song_id',
|
|
last_song_difficulty: 'last_song_difficulty',
|
|
last_folder_order: 'last_folder_order',
|
|
last_folder_id: 'last_folder_id',
|
|
last_song_order: 'last_song_order',
|
|
last_login_date: 'last_login_date',
|
|
gate_tutorial_flags: 'gate_tutorial_flags'
|
|
};
|
|
|
|
exports.Prisma.Wacca_score_bestScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
song_id: 'song_id',
|
|
chart_id: 'chart_id',
|
|
score: 'score',
|
|
play_ct: 'play_ct',
|
|
clear_ct: 'clear_ct',
|
|
missless_ct: 'missless_ct',
|
|
fullcombo_ct: 'fullcombo_ct',
|
|
allmarv_ct: 'allmarv_ct',
|
|
grade_d_ct: 'grade_d_ct',
|
|
grade_c_ct: 'grade_c_ct',
|
|
grade_b_ct: 'grade_b_ct',
|
|
grade_a_ct: 'grade_a_ct',
|
|
grade_aa_ct: 'grade_aa_ct',
|
|
grade_aaa_ct: 'grade_aaa_ct',
|
|
grade_s_ct: 'grade_s_ct',
|
|
grade_ss_ct: 'grade_ss_ct',
|
|
grade_sss_ct: 'grade_sss_ct',
|
|
grade_master_ct: 'grade_master_ct',
|
|
grade_sp_ct: 'grade_sp_ct',
|
|
grade_ssp_ct: 'grade_ssp_ct',
|
|
grade_sssp_ct: 'grade_sssp_ct',
|
|
best_combo: 'best_combo',
|
|
lowest_miss_ct: 'lowest_miss_ct',
|
|
rating: 'rating'
|
|
};
|
|
|
|
exports.Prisma.Wacca_score_playlogScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
song_id: 'song_id',
|
|
chart_id: 'chart_id',
|
|
score: 'score',
|
|
clear: 'clear',
|
|
grade: 'grade',
|
|
max_combo: 'max_combo',
|
|
marv_ct: 'marv_ct',
|
|
great_ct: 'great_ct',
|
|
good_ct: 'good_ct',
|
|
miss_ct: 'miss_ct',
|
|
fast_ct: 'fast_ct',
|
|
late_ct: 'late_ct',
|
|
season: 'season',
|
|
date_scored: 'date_scored'
|
|
};
|
|
|
|
exports.Prisma.Wacca_score_stageupScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
version: 'version',
|
|
stage_id: 'stage_id',
|
|
clear_status: 'clear_status',
|
|
clear_song_ct: 'clear_song_ct',
|
|
song1_score: 'song1_score',
|
|
song2_score: 'song2_score',
|
|
song3_score: 'song3_score',
|
|
play_ct: 'play_ct'
|
|
};
|
|
|
|
exports.Prisma.Wacca_song_unlockScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
song_id: 'song_id',
|
|
highest_difficulty: 'highest_difficulty',
|
|
acquire_date: 'acquire_date'
|
|
};
|
|
|
|
exports.Prisma.Wacca_static_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
version: 'version',
|
|
songId: 'songId',
|
|
chartId: 'chartId',
|
|
title: 'title',
|
|
artist: 'artist',
|
|
bpm: 'bpm',
|
|
difficulty: 'difficulty',
|
|
chartDesigner: 'chartDesigner',
|
|
jacketFile: 'jacketFile'
|
|
};
|
|
|
|
exports.Prisma.Wacca_ticketScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
ticket_id: 'ticket_id',
|
|
acquire_date: 'acquire_date',
|
|
expire_date: 'expire_date'
|
|
};
|
|
|
|
exports.Prisma.Wacca_trophyScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
trophy_id: 'trophy_id',
|
|
season: 'season',
|
|
progress: 'progress',
|
|
badge_type: 'badge_type'
|
|
};
|
|
|
|
exports.Prisma.Aime_user_game_locksScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
game: 'game',
|
|
expires_at: 'expires_at',
|
|
extra: 'extra'
|
|
};
|
|
|
|
exports.Prisma.Mai2_item_favorite_musicScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
musicId: 'musicId'
|
|
};
|
|
|
|
exports.Prisma.Mai2_playlog_2pScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
userId1: 'userId1',
|
|
userId2: 'userId2',
|
|
userName1: 'userName1',
|
|
userName2: 'userName2',
|
|
regionId: 'regionId',
|
|
placeId: 'placeId',
|
|
user2pPlaylogDetailList: 'user2pPlaylogDetailList'
|
|
};
|
|
|
|
exports.Prisma.Mai2_user_rivalScalarFieldEnum = {
|
|
id: 'id',
|
|
user: 'user',
|
|
rival: 'rival',
|
|
show: 'show'
|
|
};
|
|
|
|
exports.Prisma.SortOrder = {
|
|
asc: 'asc',
|
|
desc: 'desc'
|
|
};
|
|
|
|
exports.Prisma.NullsOrder = {
|
|
first: 'first',
|
|
last: 'last'
|
|
};
|
|
|
|
|
|
exports.Prisma.ModelName = {
|
|
aime_card: 'aime_card',
|
|
aime_user: 'aime_user',
|
|
alembic_version: 'alembic_version',
|
|
arcade: 'arcade',
|
|
arcade_owner: 'arcade_owner',
|
|
chuni_item_character: 'chuni_item_character',
|
|
chuni_item_cmission: 'chuni_item_cmission',
|
|
chuni_item_cmission_progress: 'chuni_item_cmission_progress',
|
|
chuni_item_duel: 'chuni_item_duel',
|
|
chuni_item_favorite: 'chuni_item_favorite',
|
|
chuni_item_gacha: 'chuni_item_gacha',
|
|
chuni_item_item: 'chuni_item_item',
|
|
chuni_item_login_bonus: 'chuni_item_login_bonus',
|
|
chuni_item_map: 'chuni_item_map',
|
|
chuni_item_map_area: 'chuni_item_map_area',
|
|
chuni_item_matching: 'chuni_item_matching',
|
|
chuni_item_print_detail: 'chuni_item_print_detail',
|
|
chuni_item_print_state: 'chuni_item_print_state',
|
|
chuni_profile_activity: 'chuni_profile_activity',
|
|
chuni_profile_charge: 'chuni_profile_charge',
|
|
chuni_profile_data: 'chuni_profile_data',
|
|
chuni_profile_data_ex: 'chuni_profile_data_ex',
|
|
chuni_profile_emoney: 'chuni_profile_emoney',
|
|
chuni_profile_net_battle: 'chuni_profile_net_battle',
|
|
chuni_profile_option: 'chuni_profile_option',
|
|
chuni_profile_option_ex: 'chuni_profile_option_ex',
|
|
chuni_profile_overpower: 'chuni_profile_overpower',
|
|
chuni_profile_rating: 'chuni_profile_rating',
|
|
chuni_profile_recent_rating: 'chuni_profile_recent_rating',
|
|
chuni_profile_region: 'chuni_profile_region',
|
|
chuni_profile_team: 'chuni_profile_team',
|
|
chuni_score_best: 'chuni_score_best',
|
|
chuni_score_course: 'chuni_score_course',
|
|
chuni_score_playlog: 'chuni_score_playlog',
|
|
chuni_static_avatar: 'chuni_static_avatar',
|
|
chuni_static_cards: 'chuni_static_cards',
|
|
chuni_static_charge: 'chuni_static_charge',
|
|
chuni_static_events: 'chuni_static_events',
|
|
chuni_static_gacha_cards: 'chuni_static_gacha_cards',
|
|
chuni_static_gachas: 'chuni_static_gachas',
|
|
chuni_static_login_bonus: 'chuni_static_login_bonus',
|
|
chuni_static_login_bonus_preset: 'chuni_static_login_bonus_preset',
|
|
chuni_static_music: 'chuni_static_music',
|
|
cozynet_artemisapi_sessions: 'cozynet_artemisapi_sessions',
|
|
cozynet_chuni_static_accessory: 'cozynet_chuni_static_accessory',
|
|
cozynet_chuni_static_mapicon: 'cozynet_chuni_static_mapicon',
|
|
cozynet_chuni_static_nameplate: 'cozynet_chuni_static_nameplate',
|
|
cozynet_chuni_static_systemvoice: 'cozynet_chuni_static_systemvoice',
|
|
cozynet_chuni_static_trophies: 'cozynet_chuni_static_trophies',
|
|
cozynet_rival_codes: 'cozynet_rival_codes',
|
|
cxb_playlog: 'cxb_playlog',
|
|
cxb_profile: 'cxb_profile',
|
|
cxb_ranking: 'cxb_ranking',
|
|
cxb_rev_energy: 'cxb_rev_energy',
|
|
cxb_score: 'cxb_score',
|
|
cxb_static_music: 'cxb_static_music',
|
|
diva_playlog: 'diva_playlog',
|
|
diva_profile: 'diva_profile',
|
|
diva_profile_customize_item: 'diva_profile_customize_item',
|
|
diva_profile_module: 'diva_profile_module',
|
|
diva_profile_pv_customize: 'diva_profile_pv_customize',
|
|
diva_profile_shop: 'diva_profile_shop',
|
|
diva_score: 'diva_score',
|
|
diva_static_items: 'diva_static_items',
|
|
diva_static_music: 'diva_static_music',
|
|
diva_static_quests: 'diva_static_quests',
|
|
diva_static_shop: 'diva_static_shop',
|
|
event_log: 'event_log',
|
|
idac_profile: 'idac_profile',
|
|
idac_profile_avatar: 'idac_profile_avatar',
|
|
idac_profile_config: 'idac_profile_config',
|
|
idac_profile_rank: 'idac_profile_rank',
|
|
idac_profile_stock: 'idac_profile_stock',
|
|
idac_profile_theory: 'idac_profile_theory',
|
|
idac_user_car: 'idac_user_car',
|
|
idac_user_challenge: 'idac_user_challenge',
|
|
idac_user_course: 'idac_user_course',
|
|
idac_user_stamp: 'idac_user_stamp',
|
|
idac_user_story: 'idac_user_story',
|
|
idac_user_story_episode: 'idac_user_story_episode',
|
|
idac_user_story_episode_difficulty: 'idac_user_story_episode_difficulty',
|
|
idac_user_theory_course: 'idac_user_theory_course',
|
|
idac_user_theory_partner: 'idac_user_theory_partner',
|
|
idac_user_theory_running: 'idac_user_theory_running',
|
|
idac_user_ticket: 'idac_user_ticket',
|
|
idac_user_time_trial: 'idac_user_time_trial',
|
|
idac_user_timetrial_event: 'idac_user_timetrial_event',
|
|
idac_user_vs_info: 'idac_user_vs_info',
|
|
machine: 'machine',
|
|
mai2_item_card: 'mai2_item_card',
|
|
mai2_item_character: 'mai2_item_character',
|
|
mai2_item_charge: 'mai2_item_charge',
|
|
mai2_item_favorite: 'mai2_item_favorite',
|
|
mai2_item_friend_season_ranking: 'mai2_item_friend_season_ranking',
|
|
mai2_item_item: 'mai2_item_item',
|
|
mai2_item_login_bonus: 'mai2_item_login_bonus',
|
|
mai2_item_map: 'mai2_item_map',
|
|
mai2_item_print_detail: 'mai2_item_print_detail',
|
|
mai2_playlog: 'mai2_playlog',
|
|
mai2_profile_activity: 'mai2_profile_activity',
|
|
mai2_profile_consec_logins: 'mai2_profile_consec_logins',
|
|
mai2_profile_detail: 'mai2_profile_detail',
|
|
mai2_profile_extend: 'mai2_profile_extend',
|
|
mai2_profile_ghost: 'mai2_profile_ghost',
|
|
mai2_profile_option: 'mai2_profile_option',
|
|
mai2_profile_rating: 'mai2_profile_rating',
|
|
mai2_profile_region: 'mai2_profile_region',
|
|
mai2_score_best: 'mai2_score_best',
|
|
mai2_score_course: 'mai2_score_course',
|
|
mai2_static_cards: 'mai2_static_cards',
|
|
mai2_static_event: 'mai2_static_event',
|
|
mai2_static_music: 'mai2_static_music',
|
|
mai2_static_ticket: 'mai2_static_ticket',
|
|
maimai_playlog: 'maimai_playlog',
|
|
maimai_profile_boss: 'maimai_profile_boss',
|
|
maimai_profile_detail: 'maimai_profile_detail',
|
|
maimai_profile_grade_status: 'maimai_profile_grade_status',
|
|
maimai_profile_option: 'maimai_profile_option',
|
|
maimai_profile_recent_rating: 'maimai_profile_recent_rating',
|
|
maimai_profile_web_option: 'maimai_profile_web_option',
|
|
maimai_score_best: 'maimai_score_best',
|
|
ongeki_gp_log: 'ongeki_gp_log',
|
|
ongeki_profile_activity: 'ongeki_profile_activity',
|
|
ongeki_profile_data: 'ongeki_profile_data',
|
|
ongeki_profile_kop: 'ongeki_profile_kop',
|
|
ongeki_profile_option: 'ongeki_profile_option',
|
|
ongeki_profile_rating: 'ongeki_profile_rating',
|
|
ongeki_profile_rating_log: 'ongeki_profile_rating_log',
|
|
ongeki_profile_recent_rating: 'ongeki_profile_recent_rating',
|
|
ongeki_profile_region: 'ongeki_profile_region',
|
|
ongeki_profile_rival: 'ongeki_profile_rival',
|
|
ongeki_profile_training_room: 'ongeki_profile_training_room',
|
|
ongeki_score_best: 'ongeki_score_best',
|
|
ongeki_score_playlog: 'ongeki_score_playlog',
|
|
ongeki_score_tech_count: 'ongeki_score_tech_count',
|
|
ongeki_session_log: 'ongeki_session_log',
|
|
ongeki_static_cards: 'ongeki_static_cards',
|
|
ongeki_static_client_testmode: 'ongeki_static_client_testmode',
|
|
ongeki_static_events: 'ongeki_static_events',
|
|
ongeki_static_gacha_cards: 'ongeki_static_gacha_cards',
|
|
ongeki_static_gachas: 'ongeki_static_gachas',
|
|
ongeki_static_game_point: 'ongeki_static_game_point',
|
|
ongeki_static_music: 'ongeki_static_music',
|
|
ongeki_static_music_ranking_list: 'ongeki_static_music_ranking_list',
|
|
ongeki_static_present_list: 'ongeki_static_present_list',
|
|
ongeki_static_rewards: 'ongeki_static_rewards',
|
|
ongeki_static_tech_music: 'ongeki_static_tech_music',
|
|
ongeki_tech_event_ranking: 'ongeki_tech_event_ranking',
|
|
ongeki_user_boss: 'ongeki_user_boss',
|
|
ongeki_user_card: 'ongeki_user_card',
|
|
ongeki_user_chapter: 'ongeki_user_chapter',
|
|
ongeki_user_character: 'ongeki_user_character',
|
|
ongeki_user_deck: 'ongeki_user_deck',
|
|
ongeki_user_event_music: 'ongeki_user_event_music',
|
|
ongeki_user_event_point: 'ongeki_user_event_point',
|
|
ongeki_user_gacha: 'ongeki_user_gacha',
|
|
ongeki_user_gacha_supply: 'ongeki_user_gacha_supply',
|
|
ongeki_user_item: 'ongeki_user_item',
|
|
ongeki_user_login_bonus: 'ongeki_user_login_bonus',
|
|
ongeki_user_memorychapter: 'ongeki_user_memorychapter',
|
|
ongeki_user_mission_point: 'ongeki_user_mission_point',
|
|
ongeki_user_music_item: 'ongeki_user_music_item',
|
|
ongeki_user_print_detail: 'ongeki_user_print_detail',
|
|
ongeki_user_scenerio: 'ongeki_user_scenerio',
|
|
ongeki_user_story: 'ongeki_user_story',
|
|
ongeki_user_tech_event: 'ongeki_user_tech_event',
|
|
ongeki_user_trade_item: 'ongeki_user_trade_item',
|
|
pokken_item: 'pokken_item',
|
|
pokken_match_data: 'pokken_match_data',
|
|
pokken_pokemon_data: 'pokken_pokemon_data',
|
|
pokken_profile: 'pokken_profile',
|
|
sao_end_sessions: 'sao_end_sessions',
|
|
sao_equipment_data: 'sao_equipment_data',
|
|
sao_hero_log_data: 'sao_hero_log_data',
|
|
sao_hero_party: 'sao_hero_party',
|
|
sao_item_data: 'sao_item_data',
|
|
sao_play_sessions: 'sao_play_sessions',
|
|
sao_player_quest: 'sao_player_quest',
|
|
sao_profile: 'sao_profile',
|
|
sao_static_equipment_list: 'sao_static_equipment_list',
|
|
sao_static_hero_list: 'sao_static_hero_list',
|
|
sao_static_item_list: 'sao_static_item_list',
|
|
sao_static_quest: 'sao_static_quest',
|
|
sao_static_rare_drop_list: 'sao_static_rare_drop_list',
|
|
sao_static_support_log_list: 'sao_static_support_log_list',
|
|
sao_static_title_list: 'sao_static_title_list',
|
|
schema_versions: 'schema_versions',
|
|
wacca_bingo: 'wacca_bingo',
|
|
wacca_favorite_song: 'wacca_favorite_song',
|
|
wacca_friend: 'wacca_friend',
|
|
wacca_gate: 'wacca_gate',
|
|
wacca_item: 'wacca_item',
|
|
wacca_option: 'wacca_option',
|
|
wacca_profile: 'wacca_profile',
|
|
wacca_score_best: 'wacca_score_best',
|
|
wacca_score_playlog: 'wacca_score_playlog',
|
|
wacca_score_stageup: 'wacca_score_stageup',
|
|
wacca_song_unlock: 'wacca_song_unlock',
|
|
wacca_static_music: 'wacca_static_music',
|
|
wacca_ticket: 'wacca_ticket',
|
|
wacca_trophy: 'wacca_trophy',
|
|
aime_user_game_locks: 'aime_user_game_locks',
|
|
mai2_item_favorite_music: 'mai2_item_favorite_music',
|
|
mai2_playlog_2p: 'mai2_playlog_2p',
|
|
mai2_user_rival: 'mai2_user_rival'
|
|
};
|
|
|
|
/**
|
|
* This is a stub Prisma Client that will error at runtime if called.
|
|
*/
|
|
class PrismaClient {
|
|
constructor() {
|
|
return new Proxy(this, {
|
|
get(target, prop) {
|
|
let message
|
|
const runtime = getRuntime()
|
|
if (runtime.isEdge) {
|
|
message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either:
|
|
- Use Prisma Accelerate: https://pris.ly/d/accelerate
|
|
- Use Driver Adapters: https://pris.ly/d/driver-adapters
|
|
`;
|
|
} else {
|
|
message = 'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' + runtime.prettyName + '`).'
|
|
}
|
|
|
|
message += `
|
|
If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report`
|
|
|
|
throw new Error(message)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
exports.PrismaClient = PrismaClient
|
|
|
|
Object.assign(exports, Prisma)
|