@igstack/app-catalog-backend-core 0.3.0 → 0.3.1-alpha-20260305181002
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +721 -721
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/db/client.ts +1 -1
- package/src/db/syncAppCatalog.ts +1 -1
- package/src/db/tableSyncMagazine.ts +1 -1
- package/src/db/tableSyncPrismaAdapter.ts +1 -1
- package/src/middleware/database.ts +1 -1
- package/src/modules/assets/upsertAsset.ts +1 -1
- package/src/db/prisma.ts +0 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _prisma_client_runtime_client0 from "@prisma/client/runtime/client";
|
|
2
2
|
import * as _trpc_server0 from "@trpc/server";
|
|
3
3
|
import { TRPCRootObject } from "@trpc/server";
|
|
4
4
|
import * as better_auth0 from "better-auth";
|
|
@@ -587,6 +587,167 @@ interface IconRestControllerConfig {
|
|
|
587
587
|
*/
|
|
588
588
|
declare function registerIconRestController(router: Router, config: IconRestControllerConfig): void;
|
|
589
589
|
//#endregion
|
|
590
|
+
//#region src/generated/prisma/enums.d.ts
|
|
591
|
+
declare const ApprovalMethodType$1: {
|
|
592
|
+
readonly service: "service";
|
|
593
|
+
readonly personTeam: "personTeam";
|
|
594
|
+
readonly custom: "custom";
|
|
595
|
+
};
|
|
596
|
+
type ApprovalMethodType$1 = (typeof ApprovalMethodType$1)[keyof typeof ApprovalMethodType$1];
|
|
597
|
+
declare const AssetType: {
|
|
598
|
+
readonly icon: "icon";
|
|
599
|
+
readonly screenshot: "screenshot";
|
|
600
|
+
};
|
|
601
|
+
type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
602
|
+
//#endregion
|
|
603
|
+
//#region src/modules/icons/iconService.d.ts
|
|
604
|
+
interface UpsertIconInput {
|
|
605
|
+
name: string;
|
|
606
|
+
content: Buffer;
|
|
607
|
+
mimeType: string;
|
|
608
|
+
fileSize: number;
|
|
609
|
+
}
|
|
610
|
+
/**
|
|
611
|
+
* Upsert an icon to the database.
|
|
612
|
+
* If an icon with the same name exists, it will be updated.
|
|
613
|
+
* Otherwise, a new icon will be created.
|
|
614
|
+
*/
|
|
615
|
+
declare function upsertIcon(input: UpsertIconInput): Promise<{
|
|
616
|
+
id: string;
|
|
617
|
+
createdAt: Date;
|
|
618
|
+
updatedAt: Date;
|
|
619
|
+
name: string;
|
|
620
|
+
assetType: AssetType;
|
|
621
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
622
|
+
checksum: string;
|
|
623
|
+
mimeType: string;
|
|
624
|
+
fileSize: number;
|
|
625
|
+
width: number | null;
|
|
626
|
+
height: number | null;
|
|
627
|
+
}>;
|
|
628
|
+
/**
|
|
629
|
+
* Upsert multiple icons to the database.
|
|
630
|
+
* This is more efficient than calling upsertIcon multiple times.
|
|
631
|
+
*/
|
|
632
|
+
declare function upsertIcons(icons: Array<UpsertIconInput>): Promise<{
|
|
633
|
+
id: string;
|
|
634
|
+
createdAt: Date;
|
|
635
|
+
updatedAt: Date;
|
|
636
|
+
name: string;
|
|
637
|
+
assetType: AssetType;
|
|
638
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
639
|
+
checksum: string;
|
|
640
|
+
mimeType: string;
|
|
641
|
+
fileSize: number;
|
|
642
|
+
width: number | null;
|
|
643
|
+
height: number | null;
|
|
644
|
+
}[]>;
|
|
645
|
+
/**
|
|
646
|
+
* Get an asset (icon or screenshot) by name from the database.
|
|
647
|
+
* Returns the asset content, mimeType, and name if found.
|
|
648
|
+
*/
|
|
649
|
+
declare function getAssetByName(name: string): Promise<{
|
|
650
|
+
name: string;
|
|
651
|
+
content: Uint8Array<ArrayBuffer>;
|
|
652
|
+
mimeType: string;
|
|
653
|
+
} | null>;
|
|
654
|
+
//#endregion
|
|
655
|
+
//#region src/modules/assets/assetRestController.d.ts
|
|
656
|
+
interface AssetRestControllerConfig {
|
|
657
|
+
/**
|
|
658
|
+
* Base path for asset endpoints (e.g., '/api/assets')
|
|
659
|
+
*/
|
|
660
|
+
basePath: string;
|
|
661
|
+
}
|
|
662
|
+
/**
|
|
663
|
+
* Registers REST endpoints for universal asset upload and retrieval
|
|
664
|
+
*
|
|
665
|
+
* Endpoints:
|
|
666
|
+
* - POST {basePath}/upload - Upload a new asset (multipart/form-data)
|
|
667
|
+
* - GET {basePath}/:id - Get asset binary by ID
|
|
668
|
+
* - GET {basePath}/:id/metadata - Get asset metadata only
|
|
669
|
+
* - GET {basePath}/by-name/:name - Get asset binary by name
|
|
670
|
+
*/
|
|
671
|
+
declare function registerAssetRestController(router: Router, config: AssetRestControllerConfig): void;
|
|
672
|
+
//#endregion
|
|
673
|
+
//#region src/modules/assets/screenshotRestController.d.ts
|
|
674
|
+
interface ScreenshotRestControllerConfig {
|
|
675
|
+
/**
|
|
676
|
+
* Base path for screenshot endpoints (e.g., '/api/screenshots')
|
|
677
|
+
*/
|
|
678
|
+
basePath: string;
|
|
679
|
+
}
|
|
680
|
+
/**
|
|
681
|
+
* Registers REST endpoints for screenshot retrieval
|
|
682
|
+
*
|
|
683
|
+
* Endpoints:
|
|
684
|
+
* - GET {basePath}/app/:appId - Get all screenshots for an app
|
|
685
|
+
* - GET {basePath}/:id - Get screenshot binary by ID
|
|
686
|
+
* - GET {basePath}/:id/metadata - Get screenshot metadata only
|
|
687
|
+
*/
|
|
688
|
+
declare function registerScreenshotRestController(router: Router, config: ScreenshotRestControllerConfig): void;
|
|
689
|
+
//#endregion
|
|
690
|
+
//#region src/modules/assets/syncAssets.d.ts
|
|
691
|
+
interface SyncAssetsConfig {
|
|
692
|
+
/**
|
|
693
|
+
* Directory containing icon files to sync
|
|
694
|
+
*/
|
|
695
|
+
iconsDir?: string;
|
|
696
|
+
/**
|
|
697
|
+
* Directory containing screenshot files to sync
|
|
698
|
+
*/
|
|
699
|
+
screenshotsDir?: string;
|
|
700
|
+
}
|
|
701
|
+
/**
|
|
702
|
+
* Sync local asset files (icons and screenshots) from directories into the database.
|
|
703
|
+
*
|
|
704
|
+
* This function allows consuming applications to sync asset files without directly
|
|
705
|
+
* exposing the Prisma client. It handles:
|
|
706
|
+
* - Icon files: Assigned to apps by matching filename to icon name patterns
|
|
707
|
+
* - Screenshot files: Assigned to apps by matching filename to app ID (format: <app-id>_screenshot_<no>.<ext>)
|
|
708
|
+
*
|
|
709
|
+
* @param config Configuration with paths to icon and screenshot directories
|
|
710
|
+
*/
|
|
711
|
+
declare function syncAssets(config: SyncAssetsConfig): Promise<{
|
|
712
|
+
iconsUpserted: number;
|
|
713
|
+
screenshotsUpserted: number;
|
|
714
|
+
}>;
|
|
715
|
+
//#endregion
|
|
716
|
+
//#region src/modules/appCatalog/checkLinks.d.ts
|
|
717
|
+
interface LinkCheck {
|
|
718
|
+
url: string;
|
|
719
|
+
status: number | null;
|
|
720
|
+
error?: string;
|
|
721
|
+
appSlug: string;
|
|
722
|
+
linkType: 'appUrl' | 'sources' | 'accessRequest.urls';
|
|
723
|
+
}
|
|
724
|
+
interface CheckLinksOptions {
|
|
725
|
+
maxConcurrent?: number;
|
|
726
|
+
timeout?: number;
|
|
727
|
+
maxRetries?: number;
|
|
728
|
+
onProgress?: (result: LinkCheck) => void;
|
|
729
|
+
}
|
|
730
|
+
/**
|
|
731
|
+
* Check all links in the app catalog and return a report
|
|
732
|
+
*/
|
|
733
|
+
declare function checkAllLinks(options?: CheckLinksOptions): Promise<{
|
|
734
|
+
total: number;
|
|
735
|
+
working: number;
|
|
736
|
+
broken: number;
|
|
737
|
+
redirects: number;
|
|
738
|
+
checks: Array<LinkCheck>;
|
|
739
|
+
}>;
|
|
740
|
+
/**
|
|
741
|
+
* Print a formatted report of link check results
|
|
742
|
+
*/
|
|
743
|
+
declare function printLinkCheckReport(report: {
|
|
744
|
+
total: number;
|
|
745
|
+
working: number;
|
|
746
|
+
broken: number;
|
|
747
|
+
redirects: number;
|
|
748
|
+
checks: Array<LinkCheck>;
|
|
749
|
+
}): void;
|
|
750
|
+
//#endregion
|
|
590
751
|
//#region src/generated/prisma/models/user.d.ts
|
|
591
752
|
type AggregateUser = {
|
|
592
753
|
_count: UserCountAggregateOutputType | null;
|
|
@@ -655,7 +816,7 @@ type UserCountAggregateInputType = {
|
|
|
655
816
|
updatedAt?: true;
|
|
656
817
|
_all?: true;
|
|
657
818
|
};
|
|
658
|
-
type UserAggregateArgs<ExtArgs extends
|
|
819
|
+
type UserAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
659
820
|
/**
|
|
660
821
|
* Filter which user to aggregate.
|
|
661
822
|
*/
|
|
@@ -704,7 +865,7 @@ type UserAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
704
865
|
_max?: UserMaxAggregateInputType;
|
|
705
866
|
};
|
|
706
867
|
type GetUserAggregateType<T extends UserAggregateArgs> = { [P in keyof T & keyof AggregateUser]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateUser[P]> : GetScalarType<T[P], AggregateUser[P]> };
|
|
707
|
-
type userGroupByArgs<ExtArgs extends
|
|
868
|
+
type userGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
708
869
|
where?: userWhereInput;
|
|
709
870
|
orderBy?: userOrderByWithAggregationInput | userOrderByWithAggregationInput[];
|
|
710
871
|
by: UserScalarFieldEnum[] | UserScalarFieldEnum;
|
|
@@ -1059,14 +1220,14 @@ type userUncheckedUpdateWithoutAccountsInput = {
|
|
|
1059
1220
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string;
|
|
1060
1221
|
sessions?: sessionUncheckedUpdateManyWithoutUserNestedInput;
|
|
1061
1222
|
};
|
|
1062
|
-
type UserCountOutputTypeSelect<ExtArgs extends
|
|
1223
|
+
type UserCountOutputTypeSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1063
1224
|
accounts?: boolean | UserCountOutputTypeCountAccountsArgs;
|
|
1064
1225
|
sessions?: boolean | UserCountOutputTypeCountSessionsArgs;
|
|
1065
1226
|
};
|
|
1066
1227
|
/**
|
|
1067
1228
|
* UserCountOutputType without action
|
|
1068
1229
|
*/
|
|
1069
|
-
type UserCountOutputTypeDefaultArgs<ExtArgs extends
|
|
1230
|
+
type UserCountOutputTypeDefaultArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1070
1231
|
/**
|
|
1071
1232
|
* Select specific fields to fetch from the UserCountOutputType
|
|
1072
1233
|
*/
|
|
@@ -1075,16 +1236,16 @@ type UserCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
1075
1236
|
/**
|
|
1076
1237
|
* UserCountOutputType without action
|
|
1077
1238
|
*/
|
|
1078
|
-
type UserCountOutputTypeCountAccountsArgs<ExtArgs extends
|
|
1239
|
+
type UserCountOutputTypeCountAccountsArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1079
1240
|
where?: accountWhereInput;
|
|
1080
1241
|
};
|
|
1081
1242
|
/**
|
|
1082
1243
|
* UserCountOutputType without action
|
|
1083
1244
|
*/
|
|
1084
|
-
type UserCountOutputTypeCountSessionsArgs<ExtArgs extends
|
|
1245
|
+
type UserCountOutputTypeCountSessionsArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1085
1246
|
where?: sessionWhereInput;
|
|
1086
1247
|
};
|
|
1087
|
-
type userSelect<ExtArgs extends
|
|
1248
|
+
type userSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
1088
1249
|
id?: boolean;
|
|
1089
1250
|
name?: boolean;
|
|
1090
1251
|
email?: boolean;
|
|
@@ -1097,7 +1258,7 @@ type userSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.
|
|
|
1097
1258
|
sessions?: boolean | user$sessionsArgs<ExtArgs>;
|
|
1098
1259
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1099
1260
|
}, ExtArgs["result"]["user"]>;
|
|
1100
|
-
type userSelectCreateManyAndReturn<ExtArgs extends
|
|
1261
|
+
type userSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
1101
1262
|
id?: boolean;
|
|
1102
1263
|
name?: boolean;
|
|
1103
1264
|
email?: boolean;
|
|
@@ -1107,7 +1268,7 @@ type userSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
1107
1268
|
createdAt?: boolean;
|
|
1108
1269
|
updatedAt?: boolean;
|
|
1109
1270
|
}, ExtArgs["result"]["user"]>;
|
|
1110
|
-
type userSelectUpdateManyAndReturn<ExtArgs extends
|
|
1271
|
+
type userSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
1111
1272
|
id?: boolean;
|
|
1112
1273
|
name?: boolean;
|
|
1113
1274
|
email?: boolean;
|
|
@@ -1117,19 +1278,19 @@ type userSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
1117
1278
|
createdAt?: boolean;
|
|
1118
1279
|
updatedAt?: boolean;
|
|
1119
1280
|
}, ExtArgs["result"]["user"]>;
|
|
1120
|
-
type userOmit<ExtArgs extends
|
|
1121
|
-
type userInclude<ExtArgs extends
|
|
1281
|
+
type userOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "name" | "email" | "emailVerified" | "image" | "role" | "createdAt" | "updatedAt", ExtArgs["result"]["user"]>;
|
|
1282
|
+
type userInclude<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1122
1283
|
accounts?: boolean | user$accountsArgs<ExtArgs>;
|
|
1123
1284
|
sessions?: boolean | user$sessionsArgs<ExtArgs>;
|
|
1124
1285
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>;
|
|
1125
1286
|
};
|
|
1126
|
-
type $userPayload<ExtArgs extends
|
|
1287
|
+
type $userPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1127
1288
|
name: "user";
|
|
1128
1289
|
objects: {
|
|
1129
1290
|
accounts: $accountPayload<ExtArgs>[];
|
|
1130
1291
|
sessions: $sessionPayload<ExtArgs>[];
|
|
1131
1292
|
};
|
|
1132
|
-
scalars:
|
|
1293
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
1133
1294
|
id: string;
|
|
1134
1295
|
name: string | null;
|
|
1135
1296
|
email: string | null;
|
|
@@ -1141,10 +1302,10 @@ type $userPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtim
|
|
|
1141
1302
|
}, ExtArgs["result"]["user"]>;
|
|
1142
1303
|
composites: {};
|
|
1143
1304
|
};
|
|
1144
|
-
type userCountArgs<ExtArgs extends
|
|
1305
|
+
type userCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<userFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
1145
1306
|
select?: UserCountAggregateInputType | true;
|
|
1146
1307
|
};
|
|
1147
|
-
interface userDelegate<ExtArgs extends
|
|
1308
|
+
interface userDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
1148
1309
|
[K: symbol]: {
|
|
1149
1310
|
types: TypeMap<ExtArgs>['model']['user'];
|
|
1150
1311
|
meta: {
|
|
@@ -1162,7 +1323,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1162
1323
|
* }
|
|
1163
1324
|
* })
|
|
1164
1325
|
*/
|
|
1165
|
-
findUnique<T extends userFindUniqueArgs>(args: SelectSubset<T, userFindUniqueArgs<ExtArgs>>): Prisma__userClient<
|
|
1326
|
+
findUnique<T extends userFindUniqueArgs>(args: SelectSubset<T, userFindUniqueArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1166
1327
|
/**
|
|
1167
1328
|
* Find one User that matches the filter or throw an error with `error.code='P2025'`
|
|
1168
1329
|
* if no matches were found.
|
|
@@ -1175,7 +1336,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1175
1336
|
* }
|
|
1176
1337
|
* })
|
|
1177
1338
|
*/
|
|
1178
|
-
findUniqueOrThrow<T extends userFindUniqueOrThrowArgs>(args: SelectSubset<T, userFindUniqueOrThrowArgs<ExtArgs>>): Prisma__userClient<
|
|
1339
|
+
findUniqueOrThrow<T extends userFindUniqueOrThrowArgs>(args: SelectSubset<T, userFindUniqueOrThrowArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1179
1340
|
/**
|
|
1180
1341
|
* Find the first User that matches the filter.
|
|
1181
1342
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -1189,7 +1350,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1189
1350
|
* }
|
|
1190
1351
|
* })
|
|
1191
1352
|
*/
|
|
1192
|
-
findFirst<T extends userFindFirstArgs>(args?: SelectSubset<T, userFindFirstArgs<ExtArgs>>): Prisma__userClient<
|
|
1353
|
+
findFirst<T extends userFindFirstArgs>(args?: SelectSubset<T, userFindFirstArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
1193
1354
|
/**
|
|
1194
1355
|
* Find the first User that matches the filter or
|
|
1195
1356
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -1204,7 +1365,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1204
1365
|
* }
|
|
1205
1366
|
* })
|
|
1206
1367
|
*/
|
|
1207
|
-
findFirstOrThrow<T extends userFindFirstOrThrowArgs>(args?: SelectSubset<T, userFindFirstOrThrowArgs<ExtArgs>>): Prisma__userClient<
|
|
1368
|
+
findFirstOrThrow<T extends userFindFirstOrThrowArgs>(args?: SelectSubset<T, userFindFirstOrThrowArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1208
1369
|
/**
|
|
1209
1370
|
* Find zero or more Users that matches the filter.
|
|
1210
1371
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -1221,7 +1382,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1221
1382
|
* const userWithIdOnly = await prisma.user.findMany({ select: { id: true } })
|
|
1222
1383
|
*
|
|
1223
1384
|
*/
|
|
1224
|
-
findMany<T extends userFindManyArgs>(args?: SelectSubset<T, userFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
1385
|
+
findMany<T extends userFindManyArgs>(args?: SelectSubset<T, userFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
1225
1386
|
/**
|
|
1226
1387
|
* Create a User.
|
|
1227
1388
|
* @param {userCreateArgs} args - Arguments to create a User.
|
|
@@ -1234,7 +1395,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1234
1395
|
* })
|
|
1235
1396
|
*
|
|
1236
1397
|
*/
|
|
1237
|
-
create<T extends userCreateArgs>(args: SelectSubset<T, userCreateArgs<ExtArgs>>): Prisma__userClient<
|
|
1398
|
+
create<T extends userCreateArgs>(args: SelectSubset<T, userCreateArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1238
1399
|
/**
|
|
1239
1400
|
* Create many Users.
|
|
1240
1401
|
* @param {userCreateManyArgs} args - Arguments to create many Users.
|
|
@@ -1270,7 +1431,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1270
1431
|
* Read more here: https://pris.ly/d/null-undefined
|
|
1271
1432
|
*
|
|
1272
1433
|
*/
|
|
1273
|
-
createManyAndReturn<T extends userCreateManyAndReturnArgs>(args?: SelectSubset<T, userCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
1434
|
+
createManyAndReturn<T extends userCreateManyAndReturnArgs>(args?: SelectSubset<T, userCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
1274
1435
|
/**
|
|
1275
1436
|
* Delete a User.
|
|
1276
1437
|
* @param {userDeleteArgs} args - Arguments to delete one User.
|
|
@@ -1283,7 +1444,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1283
1444
|
* })
|
|
1284
1445
|
*
|
|
1285
1446
|
*/
|
|
1286
|
-
delete<T extends userDeleteArgs>(args: SelectSubset<T, userDeleteArgs<ExtArgs>>): Prisma__userClient<
|
|
1447
|
+
delete<T extends userDeleteArgs>(args: SelectSubset<T, userDeleteArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1287
1448
|
/**
|
|
1288
1449
|
* Update one User.
|
|
1289
1450
|
* @param {userUpdateArgs} args - Arguments to update one User.
|
|
@@ -1299,7 +1460,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1299
1460
|
* })
|
|
1300
1461
|
*
|
|
1301
1462
|
*/
|
|
1302
|
-
update<T extends userUpdateArgs>(args: SelectSubset<T, userUpdateArgs<ExtArgs>>): Prisma__userClient<
|
|
1463
|
+
update<T extends userUpdateArgs>(args: SelectSubset<T, userUpdateArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1303
1464
|
/**
|
|
1304
1465
|
* Delete zero or more Users.
|
|
1305
1466
|
* @param {userDeleteManyArgs} args - Arguments to filter Users to delete.
|
|
@@ -1359,7 +1520,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1359
1520
|
* Read more here: https://pris.ly/d/null-undefined
|
|
1360
1521
|
*
|
|
1361
1522
|
*/
|
|
1362
|
-
updateManyAndReturn<T extends userUpdateManyAndReturnArgs>(args: SelectSubset<T, userUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
1523
|
+
updateManyAndReturn<T extends userUpdateManyAndReturnArgs>(args: SelectSubset<T, userUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
1363
1524
|
/**
|
|
1364
1525
|
* Create or update one User.
|
|
1365
1526
|
* @param {userUpsertArgs} args - Arguments to update or create a User.
|
|
@@ -1377,7 +1538,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1377
1538
|
* }
|
|
1378
1539
|
* })
|
|
1379
1540
|
*/
|
|
1380
|
-
upsert<T extends userUpsertArgs>(args: SelectSubset<T, userUpsertArgs<ExtArgs>>): Prisma__userClient<
|
|
1541
|
+
upsert<T extends userUpsertArgs>(args: SelectSubset<T, userUpsertArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
1381
1542
|
/**
|
|
1382
1543
|
* Count the number of Users.
|
|
1383
1544
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -1391,7 +1552,7 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1391
1552
|
* }
|
|
1392
1553
|
* })
|
|
1393
1554
|
**/
|
|
1394
|
-
count<T extends userCountArgs>(args?: Subset<T, userCountArgs>): PrismaPromise<T extends
|
|
1555
|
+
count<T extends userCountArgs>(args?: Subset<T, userCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], UserCountAggregateOutputType> : number>;
|
|
1395
1556
|
/**
|
|
1396
1557
|
* Allows you to perform aggregations operations on a User.
|
|
1397
1558
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -1451,30 +1612,30 @@ interface userDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1451
1612
|
* Because we want to prevent naming conflicts as mentioned in
|
|
1452
1613
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
1453
1614
|
*/
|
|
1454
|
-
interface Prisma__userClient<T, Null = never, ExtArgs extends
|
|
1615
|
+
interface Prisma__userClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
1455
1616
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1456
|
-
accounts<T extends user$accountsArgs<ExtArgs> = {}>(args?: Subset<T, user$accountsArgs<ExtArgs>>): PrismaPromise<
|
|
1457
|
-
sessions<T extends user$sessionsArgs<ExtArgs> = {}>(args?: Subset<T, user$sessionsArgs<ExtArgs>>): PrismaPromise<
|
|
1617
|
+
accounts<T extends user$accountsArgs<ExtArgs> = {}>(args?: Subset<T, user$accountsArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1618
|
+
sessions<T extends user$sessionsArgs<ExtArgs> = {}>(args?: Subset<T, user$sessionsArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1458
1619
|
/**
|
|
1459
1620
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1460
1621
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
1461
1622
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1462
1623
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
1463
1624
|
*/
|
|
1464
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
1625
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
1465
1626
|
/**
|
|
1466
1627
|
* Attaches a callback for only the rejection of the Promise.
|
|
1467
1628
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
1468
1629
|
* @returns A Promise for the completion of the callback.
|
|
1469
1630
|
*/
|
|
1470
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
1631
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
1471
1632
|
/**
|
|
1472
1633
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
1473
1634
|
* resolved value cannot be modified from the callback.
|
|
1474
1635
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
1475
1636
|
* @returns A Promise for the completion of the callback.
|
|
1476
1637
|
*/
|
|
1477
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
1638
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
1478
1639
|
}
|
|
1479
1640
|
/**
|
|
1480
1641
|
* Fields of the user model
|
|
@@ -1492,7 +1653,7 @@ interface userFieldRefs {
|
|
|
1492
1653
|
/**
|
|
1493
1654
|
* user findUnique
|
|
1494
1655
|
*/
|
|
1495
|
-
type userFindUniqueArgs<ExtArgs extends
|
|
1656
|
+
type userFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1496
1657
|
/**
|
|
1497
1658
|
* Select specific fields to fetch from the user
|
|
1498
1659
|
*/
|
|
@@ -1513,7 +1674,7 @@ type userFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
1513
1674
|
/**
|
|
1514
1675
|
* user findUniqueOrThrow
|
|
1515
1676
|
*/
|
|
1516
|
-
type userFindUniqueOrThrowArgs<ExtArgs extends
|
|
1677
|
+
type userFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1517
1678
|
/**
|
|
1518
1679
|
* Select specific fields to fetch from the user
|
|
1519
1680
|
*/
|
|
@@ -1534,7 +1695,7 @@ type userFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
1534
1695
|
/**
|
|
1535
1696
|
* user findFirst
|
|
1536
1697
|
*/
|
|
1537
|
-
type userFindFirstArgs<ExtArgs extends
|
|
1698
|
+
type userFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1538
1699
|
/**
|
|
1539
1700
|
* Select specific fields to fetch from the user
|
|
1540
1701
|
*/
|
|
@@ -1585,7 +1746,7 @@ type userFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1585
1746
|
/**
|
|
1586
1747
|
* user findFirstOrThrow
|
|
1587
1748
|
*/
|
|
1588
|
-
type userFindFirstOrThrowArgs<ExtArgs extends
|
|
1749
|
+
type userFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1589
1750
|
/**
|
|
1590
1751
|
* Select specific fields to fetch from the user
|
|
1591
1752
|
*/
|
|
@@ -1636,7 +1797,7 @@ type userFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
1636
1797
|
/**
|
|
1637
1798
|
* user findMany
|
|
1638
1799
|
*/
|
|
1639
|
-
type userFindManyArgs<ExtArgs extends
|
|
1800
|
+
type userFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1640
1801
|
/**
|
|
1641
1802
|
* Select specific fields to fetch from the user
|
|
1642
1803
|
*/
|
|
@@ -1682,7 +1843,7 @@ type userFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = ru
|
|
|
1682
1843
|
/**
|
|
1683
1844
|
* user create
|
|
1684
1845
|
*/
|
|
1685
|
-
type userCreateArgs<ExtArgs extends
|
|
1846
|
+
type userCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1686
1847
|
/**
|
|
1687
1848
|
* Select specific fields to fetch from the user
|
|
1688
1849
|
*/
|
|
@@ -1703,7 +1864,7 @@ type userCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
1703
1864
|
/**
|
|
1704
1865
|
* user createMany
|
|
1705
1866
|
*/
|
|
1706
|
-
type userCreateManyArgs<ExtArgs extends
|
|
1867
|
+
type userCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1707
1868
|
/**
|
|
1708
1869
|
* The data used to create many users.
|
|
1709
1870
|
*/
|
|
@@ -1713,7 +1874,7 @@ type userCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
1713
1874
|
/**
|
|
1714
1875
|
* user createManyAndReturn
|
|
1715
1876
|
*/
|
|
1716
|
-
type userCreateManyAndReturnArgs<ExtArgs extends
|
|
1877
|
+
type userCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1717
1878
|
/**
|
|
1718
1879
|
* Select specific fields to fetch from the user
|
|
1719
1880
|
*/
|
|
@@ -1731,7 +1892,7 @@ type userCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
1731
1892
|
/**
|
|
1732
1893
|
* user update
|
|
1733
1894
|
*/
|
|
1734
|
-
type userUpdateArgs<ExtArgs extends
|
|
1895
|
+
type userUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1735
1896
|
/**
|
|
1736
1897
|
* Select specific fields to fetch from the user
|
|
1737
1898
|
*/
|
|
@@ -1756,7 +1917,7 @@ type userUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
1756
1917
|
/**
|
|
1757
1918
|
* user updateMany
|
|
1758
1919
|
*/
|
|
1759
|
-
type userUpdateManyArgs<ExtArgs extends
|
|
1920
|
+
type userUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1760
1921
|
/**
|
|
1761
1922
|
* The data used to update users.
|
|
1762
1923
|
*/
|
|
@@ -1773,7 +1934,7 @@ type userUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
1773
1934
|
/**
|
|
1774
1935
|
* user updateManyAndReturn
|
|
1775
1936
|
*/
|
|
1776
|
-
type userUpdateManyAndReturnArgs<ExtArgs extends
|
|
1937
|
+
type userUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1777
1938
|
/**
|
|
1778
1939
|
* Select specific fields to fetch from the user
|
|
1779
1940
|
*/
|
|
@@ -1798,7 +1959,7 @@ type userUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
1798
1959
|
/**
|
|
1799
1960
|
* user upsert
|
|
1800
1961
|
*/
|
|
1801
|
-
type userUpsertArgs<ExtArgs extends
|
|
1962
|
+
type userUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1802
1963
|
/**
|
|
1803
1964
|
* Select specific fields to fetch from the user
|
|
1804
1965
|
*/
|
|
@@ -1827,7 +1988,7 @@ type userUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
1827
1988
|
/**
|
|
1828
1989
|
* user delete
|
|
1829
1990
|
*/
|
|
1830
|
-
type userDeleteArgs<ExtArgs extends
|
|
1991
|
+
type userDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1831
1992
|
/**
|
|
1832
1993
|
* Select specific fields to fetch from the user
|
|
1833
1994
|
*/
|
|
@@ -1848,7 +2009,7 @@ type userDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runt
|
|
|
1848
2009
|
/**
|
|
1849
2010
|
* user deleteMany
|
|
1850
2011
|
*/
|
|
1851
|
-
type userDeleteManyArgs<ExtArgs extends
|
|
2012
|
+
type userDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1852
2013
|
/**
|
|
1853
2014
|
* Filter which users to delete
|
|
1854
2015
|
*/
|
|
@@ -1861,7 +2022,7 @@ type userDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
1861
2022
|
/**
|
|
1862
2023
|
* user.accounts
|
|
1863
2024
|
*/
|
|
1864
|
-
type user$accountsArgs<ExtArgs extends
|
|
2025
|
+
type user$accountsArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1865
2026
|
/**
|
|
1866
2027
|
* Select specific fields to fetch from the account
|
|
1867
2028
|
*/
|
|
@@ -1884,7 +2045,7 @@ type user$accountsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1884
2045
|
/**
|
|
1885
2046
|
* user.sessions
|
|
1886
2047
|
*/
|
|
1887
|
-
type user$sessionsArgs<ExtArgs extends
|
|
2048
|
+
type user$sessionsArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1888
2049
|
/**
|
|
1889
2050
|
* Select specific fields to fetch from the session
|
|
1890
2051
|
*/
|
|
@@ -1907,7 +2068,7 @@ type user$sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
1907
2068
|
/**
|
|
1908
2069
|
* user without action
|
|
1909
2070
|
*/
|
|
1910
|
-
type userDefaultArgs<ExtArgs extends
|
|
2071
|
+
type userDefaultArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1911
2072
|
/**
|
|
1912
2073
|
* Select specific fields to fetch from the user
|
|
1913
2074
|
*/
|
|
@@ -1990,7 +2151,7 @@ type SessionCountAggregateInputType = {
|
|
|
1990
2151
|
updatedAt?: true;
|
|
1991
2152
|
_all?: true;
|
|
1992
2153
|
};
|
|
1993
|
-
type SessionAggregateArgs<ExtArgs extends
|
|
2154
|
+
type SessionAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
1994
2155
|
/**
|
|
1995
2156
|
* Filter which session to aggregate.
|
|
1996
2157
|
*/
|
|
@@ -2039,7 +2200,7 @@ type SessionAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2039
2200
|
_max?: SessionMaxAggregateInputType;
|
|
2040
2201
|
};
|
|
2041
2202
|
type GetSessionAggregateType<T extends SessionAggregateArgs> = { [P in keyof T & keyof AggregateSession]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateSession[P]> : GetScalarType<T[P], AggregateSession[P]> };
|
|
2042
|
-
type sessionGroupByArgs<ExtArgs extends
|
|
2203
|
+
type sessionGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2043
2204
|
where?: sessionWhereInput;
|
|
2044
2205
|
orderBy?: sessionOrderByWithAggregationInput | sessionOrderByWithAggregationInput[];
|
|
2045
2206
|
by: SessionScalarFieldEnum[] | SessionScalarFieldEnum;
|
|
@@ -2362,7 +2523,7 @@ type sessionUncheckedUpdateManyWithoutUserInput = {
|
|
|
2362
2523
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2363
2524
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string;
|
|
2364
2525
|
};
|
|
2365
|
-
type sessionSelect<ExtArgs extends
|
|
2526
|
+
type sessionSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
2366
2527
|
id?: boolean;
|
|
2367
2528
|
token?: boolean;
|
|
2368
2529
|
userId?: boolean;
|
|
@@ -2373,7 +2534,7 @@ type sessionSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runti
|
|
|
2373
2534
|
updatedAt?: boolean;
|
|
2374
2535
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2375
2536
|
}, ExtArgs["result"]["session"]>;
|
|
2376
|
-
type sessionSelectCreateManyAndReturn<ExtArgs extends
|
|
2537
|
+
type sessionSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
2377
2538
|
id?: boolean;
|
|
2378
2539
|
token?: boolean;
|
|
2379
2540
|
userId?: boolean;
|
|
@@ -2384,7 +2545,7 @@ type sessionSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
2384
2545
|
updatedAt?: boolean;
|
|
2385
2546
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2386
2547
|
}, ExtArgs["result"]["session"]>;
|
|
2387
|
-
type sessionSelectUpdateManyAndReturn<ExtArgs extends
|
|
2548
|
+
type sessionSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
2388
2549
|
id?: boolean;
|
|
2389
2550
|
token?: boolean;
|
|
2390
2551
|
userId?: boolean;
|
|
@@ -2395,22 +2556,22 @@ type sessionSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
2395
2556
|
updatedAt?: boolean;
|
|
2396
2557
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2397
2558
|
}, ExtArgs["result"]["session"]>;
|
|
2398
|
-
type sessionOmit<ExtArgs extends
|
|
2399
|
-
type sessionInclude<ExtArgs extends
|
|
2559
|
+
type sessionOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "token" | "userId" | "expiresAt" | "ipAddress" | "userAgent" | "createdAt" | "updatedAt", ExtArgs["result"]["session"]>;
|
|
2560
|
+
type sessionInclude<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2400
2561
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2401
2562
|
};
|
|
2402
|
-
type sessionIncludeCreateManyAndReturn<ExtArgs extends
|
|
2563
|
+
type sessionIncludeCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2403
2564
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2404
2565
|
};
|
|
2405
|
-
type sessionIncludeUpdateManyAndReturn<ExtArgs extends
|
|
2566
|
+
type sessionIncludeUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2406
2567
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
2407
2568
|
};
|
|
2408
|
-
type $sessionPayload<ExtArgs extends
|
|
2569
|
+
type $sessionPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2409
2570
|
name: "session";
|
|
2410
2571
|
objects: {
|
|
2411
2572
|
user: $userPayload<ExtArgs>;
|
|
2412
2573
|
};
|
|
2413
|
-
scalars:
|
|
2574
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
2414
2575
|
id: string;
|
|
2415
2576
|
token: string;
|
|
2416
2577
|
userId: string;
|
|
@@ -2422,10 +2583,10 @@ type $sessionPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = run
|
|
|
2422
2583
|
}, ExtArgs["result"]["session"]>;
|
|
2423
2584
|
composites: {};
|
|
2424
2585
|
};
|
|
2425
|
-
type sessionCountArgs<ExtArgs extends
|
|
2586
|
+
type sessionCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<sessionFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
2426
2587
|
select?: SessionCountAggregateInputType | true;
|
|
2427
2588
|
};
|
|
2428
|
-
interface sessionDelegate<ExtArgs extends
|
|
2589
|
+
interface sessionDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
2429
2590
|
[K: symbol]: {
|
|
2430
2591
|
types: TypeMap<ExtArgs>['model']['session'];
|
|
2431
2592
|
meta: {
|
|
@@ -2443,7 +2604,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2443
2604
|
* }
|
|
2444
2605
|
* })
|
|
2445
2606
|
*/
|
|
2446
|
-
findUnique<T extends sessionFindUniqueArgs>(args: SelectSubset<T, sessionFindUniqueArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2607
|
+
findUnique<T extends sessionFindUniqueArgs>(args: SelectSubset<T, sessionFindUniqueArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
2447
2608
|
/**
|
|
2448
2609
|
* Find one Session that matches the filter or throw an error with `error.code='P2025'`
|
|
2449
2610
|
* if no matches were found.
|
|
@@ -2456,7 +2617,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2456
2617
|
* }
|
|
2457
2618
|
* })
|
|
2458
2619
|
*/
|
|
2459
|
-
findUniqueOrThrow<T extends sessionFindUniqueOrThrowArgs>(args: SelectSubset<T, sessionFindUniqueOrThrowArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2620
|
+
findUniqueOrThrow<T extends sessionFindUniqueOrThrowArgs>(args: SelectSubset<T, sessionFindUniqueOrThrowArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2460
2621
|
/**
|
|
2461
2622
|
* Find the first Session that matches the filter.
|
|
2462
2623
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -2470,7 +2631,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2470
2631
|
* }
|
|
2471
2632
|
* })
|
|
2472
2633
|
*/
|
|
2473
|
-
findFirst<T extends sessionFindFirstArgs>(args?: SelectSubset<T, sessionFindFirstArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2634
|
+
findFirst<T extends sessionFindFirstArgs>(args?: SelectSubset<T, sessionFindFirstArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
2474
2635
|
/**
|
|
2475
2636
|
* Find the first Session that matches the filter or
|
|
2476
2637
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -2485,7 +2646,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2485
2646
|
* }
|
|
2486
2647
|
* })
|
|
2487
2648
|
*/
|
|
2488
|
-
findFirstOrThrow<T extends sessionFindFirstOrThrowArgs>(args?: SelectSubset<T, sessionFindFirstOrThrowArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2649
|
+
findFirstOrThrow<T extends sessionFindFirstOrThrowArgs>(args?: SelectSubset<T, sessionFindFirstOrThrowArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2489
2650
|
/**
|
|
2490
2651
|
* Find zero or more Sessions that matches the filter.
|
|
2491
2652
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -2502,7 +2663,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2502
2663
|
* const sessionWithIdOnly = await prisma.session.findMany({ select: { id: true } })
|
|
2503
2664
|
*
|
|
2504
2665
|
*/
|
|
2505
|
-
findMany<T extends sessionFindManyArgs>(args?: SelectSubset<T, sessionFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
2666
|
+
findMany<T extends sessionFindManyArgs>(args?: SelectSubset<T, sessionFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
2506
2667
|
/**
|
|
2507
2668
|
* Create a Session.
|
|
2508
2669
|
* @param {sessionCreateArgs} args - Arguments to create a Session.
|
|
@@ -2515,7 +2676,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2515
2676
|
* })
|
|
2516
2677
|
*
|
|
2517
2678
|
*/
|
|
2518
|
-
create<T extends sessionCreateArgs>(args: SelectSubset<T, sessionCreateArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2679
|
+
create<T extends sessionCreateArgs>(args: SelectSubset<T, sessionCreateArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2519
2680
|
/**
|
|
2520
2681
|
* Create many Sessions.
|
|
2521
2682
|
* @param {sessionCreateManyArgs} args - Arguments to create many Sessions.
|
|
@@ -2551,7 +2712,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2551
2712
|
* Read more here: https://pris.ly/d/null-undefined
|
|
2552
2713
|
*
|
|
2553
2714
|
*/
|
|
2554
|
-
createManyAndReturn<T extends sessionCreateManyAndReturnArgs>(args?: SelectSubset<T, sessionCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
2715
|
+
createManyAndReturn<T extends sessionCreateManyAndReturnArgs>(args?: SelectSubset<T, sessionCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
2555
2716
|
/**
|
|
2556
2717
|
* Delete a Session.
|
|
2557
2718
|
* @param {sessionDeleteArgs} args - Arguments to delete one Session.
|
|
@@ -2564,7 +2725,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2564
2725
|
* })
|
|
2565
2726
|
*
|
|
2566
2727
|
*/
|
|
2567
|
-
delete<T extends sessionDeleteArgs>(args: SelectSubset<T, sessionDeleteArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2728
|
+
delete<T extends sessionDeleteArgs>(args: SelectSubset<T, sessionDeleteArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2568
2729
|
/**
|
|
2569
2730
|
* Update one Session.
|
|
2570
2731
|
* @param {sessionUpdateArgs} args - Arguments to update one Session.
|
|
@@ -2580,7 +2741,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2580
2741
|
* })
|
|
2581
2742
|
*
|
|
2582
2743
|
*/
|
|
2583
|
-
update<T extends sessionUpdateArgs>(args: SelectSubset<T, sessionUpdateArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2744
|
+
update<T extends sessionUpdateArgs>(args: SelectSubset<T, sessionUpdateArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2584
2745
|
/**
|
|
2585
2746
|
* Delete zero or more Sessions.
|
|
2586
2747
|
* @param {sessionDeleteManyArgs} args - Arguments to filter Sessions to delete.
|
|
@@ -2640,7 +2801,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2640
2801
|
* Read more here: https://pris.ly/d/null-undefined
|
|
2641
2802
|
*
|
|
2642
2803
|
*/
|
|
2643
|
-
updateManyAndReturn<T extends sessionUpdateManyAndReturnArgs>(args: SelectSubset<T, sessionUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
2804
|
+
updateManyAndReturn<T extends sessionUpdateManyAndReturnArgs>(args: SelectSubset<T, sessionUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
2644
2805
|
/**
|
|
2645
2806
|
* Create or update one Session.
|
|
2646
2807
|
* @param {sessionUpsertArgs} args - Arguments to update or create a Session.
|
|
@@ -2658,7 +2819,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2658
2819
|
* }
|
|
2659
2820
|
* })
|
|
2660
2821
|
*/
|
|
2661
|
-
upsert<T extends sessionUpsertArgs>(args: SelectSubset<T, sessionUpsertArgs<ExtArgs>>): Prisma__sessionClient<
|
|
2822
|
+
upsert<T extends sessionUpsertArgs>(args: SelectSubset<T, sessionUpsertArgs<ExtArgs>>): Prisma__sessionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$sessionPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
2662
2823
|
/**
|
|
2663
2824
|
* Count the number of Sessions.
|
|
2664
2825
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -2672,7 +2833,7 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2672
2833
|
* }
|
|
2673
2834
|
* })
|
|
2674
2835
|
**/
|
|
2675
|
-
count<T extends sessionCountArgs>(args?: Subset<T, sessionCountArgs>): PrismaPromise<T extends
|
|
2836
|
+
count<T extends sessionCountArgs>(args?: Subset<T, sessionCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], SessionCountAggregateOutputType> : number>;
|
|
2676
2837
|
/**
|
|
2677
2838
|
* Allows you to perform aggregations operations on a Session.
|
|
2678
2839
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -2732,29 +2893,29 @@ interface sessionDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2732
2893
|
* Because we want to prevent naming conflicts as mentioned in
|
|
2733
2894
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
2734
2895
|
*/
|
|
2735
|
-
interface Prisma__sessionClient<T, Null = never, ExtArgs extends
|
|
2896
|
+
interface Prisma__sessionClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
2736
2897
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
2737
|
-
user<T extends userDefaultArgs<ExtArgs> = {}>(args?: Subset<T, userDefaultArgs<ExtArgs>>): Prisma__userClient<
|
|
2898
|
+
user<T extends userDefaultArgs<ExtArgs> = {}>(args?: Subset<T, userDefaultArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
2738
2899
|
/**
|
|
2739
2900
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
2740
2901
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
2741
2902
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
2742
2903
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
2743
2904
|
*/
|
|
2744
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
2905
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
2745
2906
|
/**
|
|
2746
2907
|
* Attaches a callback for only the rejection of the Promise.
|
|
2747
2908
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
2748
2909
|
* @returns A Promise for the completion of the callback.
|
|
2749
2910
|
*/
|
|
2750
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
2911
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
2751
2912
|
/**
|
|
2752
2913
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
2753
2914
|
* resolved value cannot be modified from the callback.
|
|
2754
2915
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
2755
2916
|
* @returns A Promise for the completion of the callback.
|
|
2756
2917
|
*/
|
|
2757
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
2918
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
2758
2919
|
}
|
|
2759
2920
|
/**
|
|
2760
2921
|
* Fields of the session model
|
|
@@ -2772,7 +2933,7 @@ interface sessionFieldRefs {
|
|
|
2772
2933
|
/**
|
|
2773
2934
|
* session findUnique
|
|
2774
2935
|
*/
|
|
2775
|
-
type sessionFindUniqueArgs<ExtArgs extends
|
|
2936
|
+
type sessionFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2776
2937
|
/**
|
|
2777
2938
|
* Select specific fields to fetch from the session
|
|
2778
2939
|
*/
|
|
@@ -2793,7 +2954,7 @@ type sessionFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2793
2954
|
/**
|
|
2794
2955
|
* session findUniqueOrThrow
|
|
2795
2956
|
*/
|
|
2796
|
-
type sessionFindUniqueOrThrowArgs<ExtArgs extends
|
|
2957
|
+
type sessionFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2797
2958
|
/**
|
|
2798
2959
|
* Select specific fields to fetch from the session
|
|
2799
2960
|
*/
|
|
@@ -2814,7 +2975,7 @@ type sessionFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
2814
2975
|
/**
|
|
2815
2976
|
* session findFirst
|
|
2816
2977
|
*/
|
|
2817
|
-
type sessionFindFirstArgs<ExtArgs extends
|
|
2978
|
+
type sessionFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2818
2979
|
/**
|
|
2819
2980
|
* Select specific fields to fetch from the session
|
|
2820
2981
|
*/
|
|
@@ -2865,7 +3026,7 @@ type sessionFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2865
3026
|
/**
|
|
2866
3027
|
* session findFirstOrThrow
|
|
2867
3028
|
*/
|
|
2868
|
-
type sessionFindFirstOrThrowArgs<ExtArgs extends
|
|
3029
|
+
type sessionFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2869
3030
|
/**
|
|
2870
3031
|
* Select specific fields to fetch from the session
|
|
2871
3032
|
*/
|
|
@@ -2916,7 +3077,7 @@ type sessionFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
2916
3077
|
/**
|
|
2917
3078
|
* session findMany
|
|
2918
3079
|
*/
|
|
2919
|
-
type sessionFindManyArgs<ExtArgs extends
|
|
3080
|
+
type sessionFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2920
3081
|
/**
|
|
2921
3082
|
* Select specific fields to fetch from the session
|
|
2922
3083
|
*/
|
|
@@ -2962,7 +3123,7 @@ type sessionFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
2962
3123
|
/**
|
|
2963
3124
|
* session create
|
|
2964
3125
|
*/
|
|
2965
|
-
type sessionCreateArgs<ExtArgs extends
|
|
3126
|
+
type sessionCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2966
3127
|
/**
|
|
2967
3128
|
* Select specific fields to fetch from the session
|
|
2968
3129
|
*/
|
|
@@ -2983,7 +3144,7 @@ type sessionCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
2983
3144
|
/**
|
|
2984
3145
|
* session createMany
|
|
2985
3146
|
*/
|
|
2986
|
-
type sessionCreateManyArgs<ExtArgs extends
|
|
3147
|
+
type sessionCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2987
3148
|
/**
|
|
2988
3149
|
* The data used to create many sessions.
|
|
2989
3150
|
*/
|
|
@@ -2993,7 +3154,7 @@ type sessionCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
2993
3154
|
/**
|
|
2994
3155
|
* session createManyAndReturn
|
|
2995
3156
|
*/
|
|
2996
|
-
type sessionCreateManyAndReturnArgs<ExtArgs extends
|
|
3157
|
+
type sessionCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
2997
3158
|
/**
|
|
2998
3159
|
* Select specific fields to fetch from the session
|
|
2999
3160
|
*/
|
|
@@ -3015,7 +3176,7 @@ type sessionCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
3015
3176
|
/**
|
|
3016
3177
|
* session update
|
|
3017
3178
|
*/
|
|
3018
|
-
type sessionUpdateArgs<ExtArgs extends
|
|
3179
|
+
type sessionUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3019
3180
|
/**
|
|
3020
3181
|
* Select specific fields to fetch from the session
|
|
3021
3182
|
*/
|
|
@@ -3040,7 +3201,7 @@ type sessionUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
3040
3201
|
/**
|
|
3041
3202
|
* session updateMany
|
|
3042
3203
|
*/
|
|
3043
|
-
type sessionUpdateManyArgs<ExtArgs extends
|
|
3204
|
+
type sessionUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3044
3205
|
/**
|
|
3045
3206
|
* The data used to update sessions.
|
|
3046
3207
|
*/
|
|
@@ -3057,7 +3218,7 @@ type sessionUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3057
3218
|
/**
|
|
3058
3219
|
* session updateManyAndReturn
|
|
3059
3220
|
*/
|
|
3060
|
-
type sessionUpdateManyAndReturnArgs<ExtArgs extends
|
|
3221
|
+
type sessionUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3061
3222
|
/**
|
|
3062
3223
|
* Select specific fields to fetch from the session
|
|
3063
3224
|
*/
|
|
@@ -3086,7 +3247,7 @@ type sessionUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
3086
3247
|
/**
|
|
3087
3248
|
* session upsert
|
|
3088
3249
|
*/
|
|
3089
|
-
type sessionUpsertArgs<ExtArgs extends
|
|
3250
|
+
type sessionUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3090
3251
|
/**
|
|
3091
3252
|
* Select specific fields to fetch from the session
|
|
3092
3253
|
*/
|
|
@@ -3115,7 +3276,7 @@ type sessionUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
3115
3276
|
/**
|
|
3116
3277
|
* session delete
|
|
3117
3278
|
*/
|
|
3118
|
-
type sessionDeleteArgs<ExtArgs extends
|
|
3279
|
+
type sessionDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3119
3280
|
/**
|
|
3120
3281
|
* Select specific fields to fetch from the session
|
|
3121
3282
|
*/
|
|
@@ -3136,7 +3297,7 @@ type sessionDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
3136
3297
|
/**
|
|
3137
3298
|
* session deleteMany
|
|
3138
3299
|
*/
|
|
3139
|
-
type sessionDeleteManyArgs<ExtArgs extends
|
|
3300
|
+
type sessionDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3140
3301
|
/**
|
|
3141
3302
|
* Filter which sessions to delete
|
|
3142
3303
|
*/
|
|
@@ -3245,7 +3406,7 @@ type AccountCountAggregateInputType = {
|
|
|
3245
3406
|
updatedAt?: true;
|
|
3246
3407
|
_all?: true;
|
|
3247
3408
|
};
|
|
3248
|
-
type AccountAggregateArgs<ExtArgs extends
|
|
3409
|
+
type AccountAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3249
3410
|
/**
|
|
3250
3411
|
* Filter which account to aggregate.
|
|
3251
3412
|
*/
|
|
@@ -3294,7 +3455,7 @@ type AccountAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3294
3455
|
_max?: AccountMaxAggregateInputType;
|
|
3295
3456
|
};
|
|
3296
3457
|
type GetAccountAggregateType<T extends AccountAggregateArgs> = { [P in keyof T & keyof AggregateAccount]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateAccount[P]> : GetScalarType<T[P], AggregateAccount[P]> };
|
|
3297
|
-
type accountGroupByArgs<ExtArgs extends
|
|
3458
|
+
type accountGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3298
3459
|
where?: accountWhereInput;
|
|
3299
3460
|
orderBy?: accountOrderByWithAggregationInput | accountOrderByWithAggregationInput[];
|
|
3300
3461
|
by: AccountScalarFieldEnum[] | AccountScalarFieldEnum;
|
|
@@ -3740,7 +3901,7 @@ type accountUncheckedUpdateManyWithoutUserInput = {
|
|
|
3740
3901
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3741
3902
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string;
|
|
3742
3903
|
};
|
|
3743
|
-
type accountSelect<ExtArgs extends
|
|
3904
|
+
type accountSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
3744
3905
|
id?: boolean;
|
|
3745
3906
|
userId?: boolean;
|
|
3746
3907
|
accountId?: boolean;
|
|
@@ -3756,7 +3917,7 @@ type accountSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runti
|
|
|
3756
3917
|
updatedAt?: boolean;
|
|
3757
3918
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3758
3919
|
}, ExtArgs["result"]["account"]>;
|
|
3759
|
-
type accountSelectCreateManyAndReturn<ExtArgs extends
|
|
3920
|
+
type accountSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
3760
3921
|
id?: boolean;
|
|
3761
3922
|
userId?: boolean;
|
|
3762
3923
|
accountId?: boolean;
|
|
@@ -3772,7 +3933,7 @@ type accountSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
3772
3933
|
updatedAt?: boolean;
|
|
3773
3934
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3774
3935
|
}, ExtArgs["result"]["account"]>;
|
|
3775
|
-
type accountSelectUpdateManyAndReturn<ExtArgs extends
|
|
3936
|
+
type accountSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
3776
3937
|
id?: boolean;
|
|
3777
3938
|
userId?: boolean;
|
|
3778
3939
|
accountId?: boolean;
|
|
@@ -3788,22 +3949,22 @@ type accountSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
3788
3949
|
updatedAt?: boolean;
|
|
3789
3950
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3790
3951
|
}, ExtArgs["result"]["account"]>;
|
|
3791
|
-
type accountOmit<ExtArgs extends
|
|
3792
|
-
type accountInclude<ExtArgs extends
|
|
3952
|
+
type accountOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "userId" | "accountId" | "providerId" | "refreshToken" | "accessToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "idToken" | "scope" | "password" | "createdAt" | "updatedAt", ExtArgs["result"]["account"]>;
|
|
3953
|
+
type accountInclude<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3793
3954
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3794
3955
|
};
|
|
3795
|
-
type accountIncludeCreateManyAndReturn<ExtArgs extends
|
|
3956
|
+
type accountIncludeCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3796
3957
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3797
3958
|
};
|
|
3798
|
-
type accountIncludeUpdateManyAndReturn<ExtArgs extends
|
|
3959
|
+
type accountIncludeUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3799
3960
|
user?: boolean | userDefaultArgs<ExtArgs>;
|
|
3800
3961
|
};
|
|
3801
|
-
type $accountPayload<ExtArgs extends
|
|
3962
|
+
type $accountPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
3802
3963
|
name: "account";
|
|
3803
3964
|
objects: {
|
|
3804
3965
|
user: $userPayload<ExtArgs>;
|
|
3805
3966
|
};
|
|
3806
|
-
scalars:
|
|
3967
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
3807
3968
|
id: string;
|
|
3808
3969
|
userId: string;
|
|
3809
3970
|
accountId: string;
|
|
@@ -3820,10 +3981,10 @@ type $accountPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = run
|
|
|
3820
3981
|
}, ExtArgs["result"]["account"]>;
|
|
3821
3982
|
composites: {};
|
|
3822
3983
|
};
|
|
3823
|
-
type accountCountArgs<ExtArgs extends
|
|
3984
|
+
type accountCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<accountFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
3824
3985
|
select?: AccountCountAggregateInputType | true;
|
|
3825
3986
|
};
|
|
3826
|
-
interface accountDelegate<ExtArgs extends
|
|
3987
|
+
interface accountDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
3827
3988
|
[K: symbol]: {
|
|
3828
3989
|
types: TypeMap<ExtArgs>['model']['account'];
|
|
3829
3990
|
meta: {
|
|
@@ -3841,7 +4002,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3841
4002
|
* }
|
|
3842
4003
|
* })
|
|
3843
4004
|
*/
|
|
3844
|
-
findUnique<T extends accountFindUniqueArgs>(args: SelectSubset<T, accountFindUniqueArgs<ExtArgs>>): Prisma__accountClient<
|
|
4005
|
+
findUnique<T extends accountFindUniqueArgs>(args: SelectSubset<T, accountFindUniqueArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
3845
4006
|
/**
|
|
3846
4007
|
* Find one Account that matches the filter or throw an error with `error.code='P2025'`
|
|
3847
4008
|
* if no matches were found.
|
|
@@ -3854,7 +4015,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3854
4015
|
* }
|
|
3855
4016
|
* })
|
|
3856
4017
|
*/
|
|
3857
|
-
findUniqueOrThrow<T extends accountFindUniqueOrThrowArgs>(args: SelectSubset<T, accountFindUniqueOrThrowArgs<ExtArgs>>): Prisma__accountClient<
|
|
4018
|
+
findUniqueOrThrow<T extends accountFindUniqueOrThrowArgs>(args: SelectSubset<T, accountFindUniqueOrThrowArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
3858
4019
|
/**
|
|
3859
4020
|
* Find the first Account that matches the filter.
|
|
3860
4021
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -3868,7 +4029,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3868
4029
|
* }
|
|
3869
4030
|
* })
|
|
3870
4031
|
*/
|
|
3871
|
-
findFirst<T extends accountFindFirstArgs>(args?: SelectSubset<T, accountFindFirstArgs<ExtArgs>>): Prisma__accountClient<
|
|
4032
|
+
findFirst<T extends accountFindFirstArgs>(args?: SelectSubset<T, accountFindFirstArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
3872
4033
|
/**
|
|
3873
4034
|
* Find the first Account that matches the filter or
|
|
3874
4035
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -3883,7 +4044,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3883
4044
|
* }
|
|
3884
4045
|
* })
|
|
3885
4046
|
*/
|
|
3886
|
-
findFirstOrThrow<T extends accountFindFirstOrThrowArgs>(args?: SelectSubset<T, accountFindFirstOrThrowArgs<ExtArgs>>): Prisma__accountClient<
|
|
4047
|
+
findFirstOrThrow<T extends accountFindFirstOrThrowArgs>(args?: SelectSubset<T, accountFindFirstOrThrowArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
3887
4048
|
/**
|
|
3888
4049
|
* Find zero or more Accounts that matches the filter.
|
|
3889
4050
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -3900,7 +4061,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3900
4061
|
* const accountWithIdOnly = await prisma.account.findMany({ select: { id: true } })
|
|
3901
4062
|
*
|
|
3902
4063
|
*/
|
|
3903
|
-
findMany<T extends accountFindManyArgs>(args?: SelectSubset<T, accountFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
4064
|
+
findMany<T extends accountFindManyArgs>(args?: SelectSubset<T, accountFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
3904
4065
|
/**
|
|
3905
4066
|
* Create a Account.
|
|
3906
4067
|
* @param {accountCreateArgs} args - Arguments to create a Account.
|
|
@@ -3913,7 +4074,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3913
4074
|
* })
|
|
3914
4075
|
*
|
|
3915
4076
|
*/
|
|
3916
|
-
create<T extends accountCreateArgs>(args: SelectSubset<T, accountCreateArgs<ExtArgs>>): Prisma__accountClient<
|
|
4077
|
+
create<T extends accountCreateArgs>(args: SelectSubset<T, accountCreateArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
3917
4078
|
/**
|
|
3918
4079
|
* Create many Accounts.
|
|
3919
4080
|
* @param {accountCreateManyArgs} args - Arguments to create many Accounts.
|
|
@@ -3949,7 +4110,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3949
4110
|
* Read more here: https://pris.ly/d/null-undefined
|
|
3950
4111
|
*
|
|
3951
4112
|
*/
|
|
3952
|
-
createManyAndReturn<T extends accountCreateManyAndReturnArgs>(args?: SelectSubset<T, accountCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
4113
|
+
createManyAndReturn<T extends accountCreateManyAndReturnArgs>(args?: SelectSubset<T, accountCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
3953
4114
|
/**
|
|
3954
4115
|
* Delete a Account.
|
|
3955
4116
|
* @param {accountDeleteArgs} args - Arguments to delete one Account.
|
|
@@ -3962,7 +4123,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3962
4123
|
* })
|
|
3963
4124
|
*
|
|
3964
4125
|
*/
|
|
3965
|
-
delete<T extends accountDeleteArgs>(args: SelectSubset<T, accountDeleteArgs<ExtArgs>>): Prisma__accountClient<
|
|
4126
|
+
delete<T extends accountDeleteArgs>(args: SelectSubset<T, accountDeleteArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
3966
4127
|
/**
|
|
3967
4128
|
* Update one Account.
|
|
3968
4129
|
* @param {accountUpdateArgs} args - Arguments to update one Account.
|
|
@@ -3978,7 +4139,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
3978
4139
|
* })
|
|
3979
4140
|
*
|
|
3980
4141
|
*/
|
|
3981
|
-
update<T extends accountUpdateArgs>(args: SelectSubset<T, accountUpdateArgs<ExtArgs>>): Prisma__accountClient<
|
|
4142
|
+
update<T extends accountUpdateArgs>(args: SelectSubset<T, accountUpdateArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
3982
4143
|
/**
|
|
3983
4144
|
* Delete zero or more Accounts.
|
|
3984
4145
|
* @param {accountDeleteManyArgs} args - Arguments to filter Accounts to delete.
|
|
@@ -4038,7 +4199,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4038
4199
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4039
4200
|
*
|
|
4040
4201
|
*/
|
|
4041
|
-
updateManyAndReturn<T extends accountUpdateManyAndReturnArgs>(args: SelectSubset<T, accountUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
4202
|
+
updateManyAndReturn<T extends accountUpdateManyAndReturnArgs>(args: SelectSubset<T, accountUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
4042
4203
|
/**
|
|
4043
4204
|
* Create or update one Account.
|
|
4044
4205
|
* @param {accountUpsertArgs} args - Arguments to update or create a Account.
|
|
@@ -4056,7 +4217,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4056
4217
|
* }
|
|
4057
4218
|
* })
|
|
4058
4219
|
*/
|
|
4059
|
-
upsert<T extends accountUpsertArgs>(args: SelectSubset<T, accountUpsertArgs<ExtArgs>>): Prisma__accountClient<
|
|
4220
|
+
upsert<T extends accountUpsertArgs>(args: SelectSubset<T, accountUpsertArgs<ExtArgs>>): Prisma__accountClient<_prisma_client_runtime_client0.Types.Result.GetResult<$accountPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
4060
4221
|
/**
|
|
4061
4222
|
* Count the number of Accounts.
|
|
4062
4223
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -4070,7 +4231,7 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4070
4231
|
* }
|
|
4071
4232
|
* })
|
|
4072
4233
|
**/
|
|
4073
|
-
count<T extends accountCountArgs>(args?: Subset<T, accountCountArgs>): PrismaPromise<T extends
|
|
4234
|
+
count<T extends accountCountArgs>(args?: Subset<T, accountCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], AccountCountAggregateOutputType> : number>;
|
|
4074
4235
|
/**
|
|
4075
4236
|
* Allows you to perform aggregations operations on a Account.
|
|
4076
4237
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -4130,29 +4291,29 @@ interface accountDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4130
4291
|
* Because we want to prevent naming conflicts as mentioned in
|
|
4131
4292
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
4132
4293
|
*/
|
|
4133
|
-
interface Prisma__accountClient<T, Null = never, ExtArgs extends
|
|
4294
|
+
interface Prisma__accountClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
4134
4295
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
4135
|
-
user<T extends userDefaultArgs<ExtArgs> = {}>(args?: Subset<T, userDefaultArgs<ExtArgs>>): Prisma__userClient<
|
|
4296
|
+
user<T extends userDefaultArgs<ExtArgs> = {}>(args?: Subset<T, userDefaultArgs<ExtArgs>>): Prisma__userClient<_prisma_client_runtime_client0.Types.Result.GetResult<$userPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
4136
4297
|
/**
|
|
4137
4298
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
4138
4299
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
4139
4300
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
4140
4301
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
4141
4302
|
*/
|
|
4142
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
4303
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
4143
4304
|
/**
|
|
4144
4305
|
* Attaches a callback for only the rejection of the Promise.
|
|
4145
4306
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
4146
4307
|
* @returns A Promise for the completion of the callback.
|
|
4147
4308
|
*/
|
|
4148
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
4309
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
4149
4310
|
/**
|
|
4150
4311
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
4151
4312
|
* resolved value cannot be modified from the callback.
|
|
4152
4313
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
4153
4314
|
* @returns A Promise for the completion of the callback.
|
|
4154
4315
|
*/
|
|
4155
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
4316
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
4156
4317
|
}
|
|
4157
4318
|
/**
|
|
4158
4319
|
* Fields of the account model
|
|
@@ -4175,7 +4336,7 @@ interface accountFieldRefs {
|
|
|
4175
4336
|
/**
|
|
4176
4337
|
* account findUnique
|
|
4177
4338
|
*/
|
|
4178
|
-
type accountFindUniqueArgs<ExtArgs extends
|
|
4339
|
+
type accountFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4179
4340
|
/**
|
|
4180
4341
|
* Select specific fields to fetch from the account
|
|
4181
4342
|
*/
|
|
@@ -4196,7 +4357,7 @@ type accountFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4196
4357
|
/**
|
|
4197
4358
|
* account findUniqueOrThrow
|
|
4198
4359
|
*/
|
|
4199
|
-
type accountFindUniqueOrThrowArgs<ExtArgs extends
|
|
4360
|
+
type accountFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4200
4361
|
/**
|
|
4201
4362
|
* Select specific fields to fetch from the account
|
|
4202
4363
|
*/
|
|
@@ -4217,7 +4378,7 @@ type accountFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
4217
4378
|
/**
|
|
4218
4379
|
* account findFirst
|
|
4219
4380
|
*/
|
|
4220
|
-
type accountFindFirstArgs<ExtArgs extends
|
|
4381
|
+
type accountFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4221
4382
|
/**
|
|
4222
4383
|
* Select specific fields to fetch from the account
|
|
4223
4384
|
*/
|
|
@@ -4268,7 +4429,7 @@ type accountFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4268
4429
|
/**
|
|
4269
4430
|
* account findFirstOrThrow
|
|
4270
4431
|
*/
|
|
4271
|
-
type accountFindFirstOrThrowArgs<ExtArgs extends
|
|
4432
|
+
type accountFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4272
4433
|
/**
|
|
4273
4434
|
* Select specific fields to fetch from the account
|
|
4274
4435
|
*/
|
|
@@ -4319,7 +4480,7 @@ type accountFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
4319
4480
|
/**
|
|
4320
4481
|
* account findMany
|
|
4321
4482
|
*/
|
|
4322
|
-
type accountFindManyArgs<ExtArgs extends
|
|
4483
|
+
type accountFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4323
4484
|
/**
|
|
4324
4485
|
* Select specific fields to fetch from the account
|
|
4325
4486
|
*/
|
|
@@ -4365,7 +4526,7 @@ type accountFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
4365
4526
|
/**
|
|
4366
4527
|
* account create
|
|
4367
4528
|
*/
|
|
4368
|
-
type accountCreateArgs<ExtArgs extends
|
|
4529
|
+
type accountCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4369
4530
|
/**
|
|
4370
4531
|
* Select specific fields to fetch from the account
|
|
4371
4532
|
*/
|
|
@@ -4386,7 +4547,7 @@ type accountCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
4386
4547
|
/**
|
|
4387
4548
|
* account createMany
|
|
4388
4549
|
*/
|
|
4389
|
-
type accountCreateManyArgs<ExtArgs extends
|
|
4550
|
+
type accountCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4390
4551
|
/**
|
|
4391
4552
|
* The data used to create many accounts.
|
|
4392
4553
|
*/
|
|
@@ -4396,7 +4557,7 @@ type accountCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4396
4557
|
/**
|
|
4397
4558
|
* account createManyAndReturn
|
|
4398
4559
|
*/
|
|
4399
|
-
type accountCreateManyAndReturnArgs<ExtArgs extends
|
|
4560
|
+
type accountCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4400
4561
|
/**
|
|
4401
4562
|
* Select specific fields to fetch from the account
|
|
4402
4563
|
*/
|
|
@@ -4418,7 +4579,7 @@ type accountCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
4418
4579
|
/**
|
|
4419
4580
|
* account update
|
|
4420
4581
|
*/
|
|
4421
|
-
type accountUpdateArgs<ExtArgs extends
|
|
4582
|
+
type accountUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4422
4583
|
/**
|
|
4423
4584
|
* Select specific fields to fetch from the account
|
|
4424
4585
|
*/
|
|
@@ -4443,7 +4604,7 @@ type accountUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
4443
4604
|
/**
|
|
4444
4605
|
* account updateMany
|
|
4445
4606
|
*/
|
|
4446
|
-
type accountUpdateManyArgs<ExtArgs extends
|
|
4607
|
+
type accountUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4447
4608
|
/**
|
|
4448
4609
|
* The data used to update accounts.
|
|
4449
4610
|
*/
|
|
@@ -4460,7 +4621,7 @@ type accountUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4460
4621
|
/**
|
|
4461
4622
|
* account updateManyAndReturn
|
|
4462
4623
|
*/
|
|
4463
|
-
type accountUpdateManyAndReturnArgs<ExtArgs extends
|
|
4624
|
+
type accountUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4464
4625
|
/**
|
|
4465
4626
|
* Select specific fields to fetch from the account
|
|
4466
4627
|
*/
|
|
@@ -4489,7 +4650,7 @@ type accountUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
4489
4650
|
/**
|
|
4490
4651
|
* account upsert
|
|
4491
4652
|
*/
|
|
4492
|
-
type accountUpsertArgs<ExtArgs extends
|
|
4653
|
+
type accountUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4493
4654
|
/**
|
|
4494
4655
|
* Select specific fields to fetch from the account
|
|
4495
4656
|
*/
|
|
@@ -4518,7 +4679,7 @@ type accountUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
4518
4679
|
/**
|
|
4519
4680
|
* account delete
|
|
4520
4681
|
*/
|
|
4521
|
-
type accountDeleteArgs<ExtArgs extends
|
|
4682
|
+
type accountDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4522
4683
|
/**
|
|
4523
4684
|
* Select specific fields to fetch from the account
|
|
4524
4685
|
*/
|
|
@@ -4539,7 +4700,7 @@ type accountDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
4539
4700
|
/**
|
|
4540
4701
|
* account deleteMany
|
|
4541
4702
|
*/
|
|
4542
|
-
type accountDeleteManyArgs<ExtArgs extends
|
|
4703
|
+
type accountDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4543
4704
|
/**
|
|
4544
4705
|
* Filter which accounts to delete
|
|
4545
4706
|
*/
|
|
@@ -4606,7 +4767,7 @@ type VerificationCountAggregateInputType = {
|
|
|
4606
4767
|
updatedAt?: true;
|
|
4607
4768
|
_all?: true;
|
|
4608
4769
|
};
|
|
4609
|
-
type VerificationAggregateArgs<ExtArgs extends
|
|
4770
|
+
type VerificationAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4610
4771
|
/**
|
|
4611
4772
|
* Filter which verification to aggregate.
|
|
4612
4773
|
*/
|
|
@@ -4655,7 +4816,7 @@ type VerificationAggregateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4655
4816
|
_max?: VerificationMaxAggregateInputType;
|
|
4656
4817
|
};
|
|
4657
4818
|
type GetVerificationAggregateType<T extends VerificationAggregateArgs> = { [P in keyof T & keyof AggregateVerification]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateVerification[P]> : GetScalarType<T[P], AggregateVerification[P]> };
|
|
4658
|
-
type verificationGroupByArgs<ExtArgs extends
|
|
4819
|
+
type verificationGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4659
4820
|
where?: verificationWhereInput;
|
|
4660
4821
|
orderBy?: verificationOrderByWithAggregationInput | verificationOrderByWithAggregationInput[];
|
|
4661
4822
|
by: VerificationScalarFieldEnum[] | VerificationScalarFieldEnum;
|
|
@@ -4815,7 +4976,7 @@ type verificationMinOrderByAggregateInput = {
|
|
|
4815
4976
|
createdAt?: SortOrder;
|
|
4816
4977
|
updatedAt?: SortOrder;
|
|
4817
4978
|
};
|
|
4818
|
-
type verificationSelect<ExtArgs extends
|
|
4979
|
+
type verificationSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
4819
4980
|
id?: boolean;
|
|
4820
4981
|
identifier?: boolean;
|
|
4821
4982
|
value?: boolean;
|
|
@@ -4823,7 +4984,7 @@ type verificationSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
4823
4984
|
createdAt?: boolean;
|
|
4824
4985
|
updatedAt?: boolean;
|
|
4825
4986
|
}, ExtArgs["result"]["verification"]>;
|
|
4826
|
-
type verificationSelectCreateManyAndReturn<ExtArgs extends
|
|
4987
|
+
type verificationSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
4827
4988
|
id?: boolean;
|
|
4828
4989
|
identifier?: boolean;
|
|
4829
4990
|
value?: boolean;
|
|
@@ -4831,7 +4992,7 @@ type verificationSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
4831
4992
|
createdAt?: boolean;
|
|
4832
4993
|
updatedAt?: boolean;
|
|
4833
4994
|
}, ExtArgs["result"]["verification"]>;
|
|
4834
|
-
type verificationSelectUpdateManyAndReturn<ExtArgs extends
|
|
4995
|
+
type verificationSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
4835
4996
|
id?: boolean;
|
|
4836
4997
|
identifier?: boolean;
|
|
4837
4998
|
value?: boolean;
|
|
@@ -4839,11 +5000,11 @@ type verificationSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensi
|
|
|
4839
5000
|
createdAt?: boolean;
|
|
4840
5001
|
updatedAt?: boolean;
|
|
4841
5002
|
}, ExtArgs["result"]["verification"]>;
|
|
4842
|
-
type verificationOmit<ExtArgs extends
|
|
4843
|
-
type $verificationPayload<ExtArgs extends
|
|
5003
|
+
type verificationOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "identifier" | "value" | "expiresAt" | "createdAt" | "updatedAt", ExtArgs["result"]["verification"]>;
|
|
5004
|
+
type $verificationPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
4844
5005
|
name: "verification";
|
|
4845
5006
|
objects: {};
|
|
4846
|
-
scalars:
|
|
5007
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
4847
5008
|
id: string;
|
|
4848
5009
|
identifier: string;
|
|
4849
5010
|
value: string;
|
|
@@ -4853,10 +5014,10 @@ type $verificationPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
4853
5014
|
}, ExtArgs["result"]["verification"]>;
|
|
4854
5015
|
composites: {};
|
|
4855
5016
|
};
|
|
4856
|
-
type verificationCountArgs<ExtArgs extends
|
|
5017
|
+
type verificationCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<verificationFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
4857
5018
|
select?: VerificationCountAggregateInputType | true;
|
|
4858
5019
|
};
|
|
4859
|
-
interface verificationDelegate<ExtArgs extends
|
|
5020
|
+
interface verificationDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
4860
5021
|
[K: symbol]: {
|
|
4861
5022
|
types: TypeMap<ExtArgs>['model']['verification'];
|
|
4862
5023
|
meta: {
|
|
@@ -4874,7 +5035,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4874
5035
|
* }
|
|
4875
5036
|
* })
|
|
4876
5037
|
*/
|
|
4877
|
-
findUnique<T extends verificationFindUniqueArgs>(args: SelectSubset<T, verificationFindUniqueArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5038
|
+
findUnique<T extends verificationFindUniqueArgs>(args: SelectSubset<T, verificationFindUniqueArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
4878
5039
|
/**
|
|
4879
5040
|
* Find one Verification that matches the filter or throw an error with `error.code='P2025'`
|
|
4880
5041
|
* if no matches were found.
|
|
@@ -4887,7 +5048,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4887
5048
|
* }
|
|
4888
5049
|
* })
|
|
4889
5050
|
*/
|
|
4890
|
-
findUniqueOrThrow<T extends verificationFindUniqueOrThrowArgs>(args: SelectSubset<T, verificationFindUniqueOrThrowArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5051
|
+
findUniqueOrThrow<T extends verificationFindUniqueOrThrowArgs>(args: SelectSubset<T, verificationFindUniqueOrThrowArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
4891
5052
|
/**
|
|
4892
5053
|
* Find the first Verification that matches the filter.
|
|
4893
5054
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -4901,7 +5062,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4901
5062
|
* }
|
|
4902
5063
|
* })
|
|
4903
5064
|
*/
|
|
4904
|
-
findFirst<T extends verificationFindFirstArgs>(args?: SelectSubset<T, verificationFindFirstArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5065
|
+
findFirst<T extends verificationFindFirstArgs>(args?: SelectSubset<T, verificationFindFirstArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
4905
5066
|
/**
|
|
4906
5067
|
* Find the first Verification that matches the filter or
|
|
4907
5068
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -4916,7 +5077,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4916
5077
|
* }
|
|
4917
5078
|
* })
|
|
4918
5079
|
*/
|
|
4919
|
-
findFirstOrThrow<T extends verificationFindFirstOrThrowArgs>(args?: SelectSubset<T, verificationFindFirstOrThrowArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5080
|
+
findFirstOrThrow<T extends verificationFindFirstOrThrowArgs>(args?: SelectSubset<T, verificationFindFirstOrThrowArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
4920
5081
|
/**
|
|
4921
5082
|
* Find zero or more Verifications that matches the filter.
|
|
4922
5083
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -4933,7 +5094,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4933
5094
|
* const verificationWithIdOnly = await prisma.verification.findMany({ select: { id: true } })
|
|
4934
5095
|
*
|
|
4935
5096
|
*/
|
|
4936
|
-
findMany<T extends verificationFindManyArgs>(args?: SelectSubset<T, verificationFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
5097
|
+
findMany<T extends verificationFindManyArgs>(args?: SelectSubset<T, verificationFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
4937
5098
|
/**
|
|
4938
5099
|
* Create a Verification.
|
|
4939
5100
|
* @param {verificationCreateArgs} args - Arguments to create a Verification.
|
|
@@ -4946,7 +5107,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4946
5107
|
* })
|
|
4947
5108
|
*
|
|
4948
5109
|
*/
|
|
4949
|
-
create<T extends verificationCreateArgs>(args: SelectSubset<T, verificationCreateArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5110
|
+
create<T extends verificationCreateArgs>(args: SelectSubset<T, verificationCreateArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
4950
5111
|
/**
|
|
4951
5112
|
* Create many Verifications.
|
|
4952
5113
|
* @param {verificationCreateManyArgs} args - Arguments to create many Verifications.
|
|
@@ -4982,7 +5143,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4982
5143
|
* Read more here: https://pris.ly/d/null-undefined
|
|
4983
5144
|
*
|
|
4984
5145
|
*/
|
|
4985
|
-
createManyAndReturn<T extends verificationCreateManyAndReturnArgs>(args?: SelectSubset<T, verificationCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
5146
|
+
createManyAndReturn<T extends verificationCreateManyAndReturnArgs>(args?: SelectSubset<T, verificationCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
4986
5147
|
/**
|
|
4987
5148
|
* Delete a Verification.
|
|
4988
5149
|
* @param {verificationDeleteArgs} args - Arguments to delete one Verification.
|
|
@@ -4995,7 +5156,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
4995
5156
|
* })
|
|
4996
5157
|
*
|
|
4997
5158
|
*/
|
|
4998
|
-
delete<T extends verificationDeleteArgs>(args: SelectSubset<T, verificationDeleteArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5159
|
+
delete<T extends verificationDeleteArgs>(args: SelectSubset<T, verificationDeleteArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
4999
5160
|
/**
|
|
5000
5161
|
* Update one Verification.
|
|
5001
5162
|
* @param {verificationUpdateArgs} args - Arguments to update one Verification.
|
|
@@ -5011,7 +5172,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5011
5172
|
* })
|
|
5012
5173
|
*
|
|
5013
5174
|
*/
|
|
5014
|
-
update<T extends verificationUpdateArgs>(args: SelectSubset<T, verificationUpdateArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5175
|
+
update<T extends verificationUpdateArgs>(args: SelectSubset<T, verificationUpdateArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5015
5176
|
/**
|
|
5016
5177
|
* Delete zero or more Verifications.
|
|
5017
5178
|
* @param {verificationDeleteManyArgs} args - Arguments to filter Verifications to delete.
|
|
@@ -5071,7 +5232,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5071
5232
|
* Read more here: https://pris.ly/d/null-undefined
|
|
5072
5233
|
*
|
|
5073
5234
|
*/
|
|
5074
|
-
updateManyAndReturn<T extends verificationUpdateManyAndReturnArgs>(args: SelectSubset<T, verificationUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
5235
|
+
updateManyAndReturn<T extends verificationUpdateManyAndReturnArgs>(args: SelectSubset<T, verificationUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
5075
5236
|
/**
|
|
5076
5237
|
* Create or update one Verification.
|
|
5077
5238
|
* @param {verificationUpsertArgs} args - Arguments to update or create a Verification.
|
|
@@ -5089,7 +5250,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5089
5250
|
* }
|
|
5090
5251
|
* })
|
|
5091
5252
|
*/
|
|
5092
|
-
upsert<T extends verificationUpsertArgs>(args: SelectSubset<T, verificationUpsertArgs<ExtArgs>>): Prisma__verificationClient<
|
|
5253
|
+
upsert<T extends verificationUpsertArgs>(args: SelectSubset<T, verificationUpsertArgs<ExtArgs>>): Prisma__verificationClient<_prisma_client_runtime_client0.Types.Result.GetResult<$verificationPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5093
5254
|
/**
|
|
5094
5255
|
* Count the number of Verifications.
|
|
5095
5256
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -5103,7 +5264,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5103
5264
|
* }
|
|
5104
5265
|
* })
|
|
5105
5266
|
**/
|
|
5106
|
-
count<T extends verificationCountArgs>(args?: Subset<T, verificationCountArgs>): PrismaPromise<T extends
|
|
5267
|
+
count<T extends verificationCountArgs>(args?: Subset<T, verificationCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], VerificationCountAggregateOutputType> : number>;
|
|
5107
5268
|
/**
|
|
5108
5269
|
* Allows you to perform aggregations operations on a Verification.
|
|
5109
5270
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -5163,7 +5324,7 @@ interface verificationDelegate<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5163
5324
|
* Because we want to prevent naming conflicts as mentioned in
|
|
5164
5325
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
5165
5326
|
*/
|
|
5166
|
-
interface Prisma__verificationClient<T, Null = never, ExtArgs extends
|
|
5327
|
+
interface Prisma__verificationClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
5167
5328
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
5168
5329
|
/**
|
|
5169
5330
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -5171,20 +5332,20 @@ interface Prisma__verificationClient<T, Null = never, ExtArgs extends runtime.Ty
|
|
|
5171
5332
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
5172
5333
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
5173
5334
|
*/
|
|
5174
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
5335
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
5175
5336
|
/**
|
|
5176
5337
|
* Attaches a callback for only the rejection of the Promise.
|
|
5177
5338
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
5178
5339
|
* @returns A Promise for the completion of the callback.
|
|
5179
5340
|
*/
|
|
5180
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
5341
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
5181
5342
|
/**
|
|
5182
5343
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
5183
5344
|
* resolved value cannot be modified from the callback.
|
|
5184
5345
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
5185
5346
|
* @returns A Promise for the completion of the callback.
|
|
5186
5347
|
*/
|
|
5187
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
5348
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
5188
5349
|
}
|
|
5189
5350
|
/**
|
|
5190
5351
|
* Fields of the verification model
|
|
@@ -5200,7 +5361,7 @@ interface verificationFieldRefs {
|
|
|
5200
5361
|
/**
|
|
5201
5362
|
* verification findUnique
|
|
5202
5363
|
*/
|
|
5203
|
-
type verificationFindUniqueArgs<ExtArgs extends
|
|
5364
|
+
type verificationFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5204
5365
|
/**
|
|
5205
5366
|
* Select specific fields to fetch from the verification
|
|
5206
5367
|
*/
|
|
@@ -5217,7 +5378,7 @@ type verificationFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
5217
5378
|
/**
|
|
5218
5379
|
* verification findUniqueOrThrow
|
|
5219
5380
|
*/
|
|
5220
|
-
type verificationFindUniqueOrThrowArgs<ExtArgs extends
|
|
5381
|
+
type verificationFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5221
5382
|
/**
|
|
5222
5383
|
* Select specific fields to fetch from the verification
|
|
5223
5384
|
*/
|
|
@@ -5234,7 +5395,7 @@ type verificationFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.
|
|
|
5234
5395
|
/**
|
|
5235
5396
|
* verification findFirst
|
|
5236
5397
|
*/
|
|
5237
|
-
type verificationFindFirstArgs<ExtArgs extends
|
|
5398
|
+
type verificationFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5238
5399
|
/**
|
|
5239
5400
|
* Select specific fields to fetch from the verification
|
|
5240
5401
|
*/
|
|
@@ -5281,7 +5442,7 @@ type verificationFindFirstArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
5281
5442
|
/**
|
|
5282
5443
|
* verification findFirstOrThrow
|
|
5283
5444
|
*/
|
|
5284
|
-
type verificationFindFirstOrThrowArgs<ExtArgs extends
|
|
5445
|
+
type verificationFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5285
5446
|
/**
|
|
5286
5447
|
* Select specific fields to fetch from the verification
|
|
5287
5448
|
*/
|
|
@@ -5328,7 +5489,7 @@ type verificationFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
5328
5489
|
/**
|
|
5329
5490
|
* verification findMany
|
|
5330
5491
|
*/
|
|
5331
|
-
type verificationFindManyArgs<ExtArgs extends
|
|
5492
|
+
type verificationFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5332
5493
|
/**
|
|
5333
5494
|
* Select specific fields to fetch from the verification
|
|
5334
5495
|
*/
|
|
@@ -5370,7 +5531,7 @@ type verificationFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
5370
5531
|
/**
|
|
5371
5532
|
* verification create
|
|
5372
5533
|
*/
|
|
5373
|
-
type verificationCreateArgs<ExtArgs extends
|
|
5534
|
+
type verificationCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5374
5535
|
/**
|
|
5375
5536
|
* Select specific fields to fetch from the verification
|
|
5376
5537
|
*/
|
|
@@ -5387,7 +5548,7 @@ type verificationCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
5387
5548
|
/**
|
|
5388
5549
|
* verification createMany
|
|
5389
5550
|
*/
|
|
5390
|
-
type verificationCreateManyArgs<ExtArgs extends
|
|
5551
|
+
type verificationCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5391
5552
|
/**
|
|
5392
5553
|
* The data used to create many verifications.
|
|
5393
5554
|
*/
|
|
@@ -5397,7 +5558,7 @@ type verificationCreateManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
5397
5558
|
/**
|
|
5398
5559
|
* verification createManyAndReturn
|
|
5399
5560
|
*/
|
|
5400
|
-
type verificationCreateManyAndReturnArgs<ExtArgs extends
|
|
5561
|
+
type verificationCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5401
5562
|
/**
|
|
5402
5563
|
* Select specific fields to fetch from the verification
|
|
5403
5564
|
*/
|
|
@@ -5415,7 +5576,7 @@ type verificationCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extension
|
|
|
5415
5576
|
/**
|
|
5416
5577
|
* verification update
|
|
5417
5578
|
*/
|
|
5418
|
-
type verificationUpdateArgs<ExtArgs extends
|
|
5579
|
+
type verificationUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5419
5580
|
/**
|
|
5420
5581
|
* Select specific fields to fetch from the verification
|
|
5421
5582
|
*/
|
|
@@ -5436,7 +5597,7 @@ type verificationUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
5436
5597
|
/**
|
|
5437
5598
|
* verification updateMany
|
|
5438
5599
|
*/
|
|
5439
|
-
type verificationUpdateManyArgs<ExtArgs extends
|
|
5600
|
+
type verificationUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5440
5601
|
/**
|
|
5441
5602
|
* The data used to update verifications.
|
|
5442
5603
|
*/
|
|
@@ -5453,7 +5614,7 @@ type verificationUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
5453
5614
|
/**
|
|
5454
5615
|
* verification updateManyAndReturn
|
|
5455
5616
|
*/
|
|
5456
|
-
type verificationUpdateManyAndReturnArgs<ExtArgs extends
|
|
5617
|
+
type verificationUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5457
5618
|
/**
|
|
5458
5619
|
* Select specific fields to fetch from the verification
|
|
5459
5620
|
*/
|
|
@@ -5478,7 +5639,7 @@ type verificationUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extension
|
|
|
5478
5639
|
/**
|
|
5479
5640
|
* verification upsert
|
|
5480
5641
|
*/
|
|
5481
|
-
type verificationUpsertArgs<ExtArgs extends
|
|
5642
|
+
type verificationUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5482
5643
|
/**
|
|
5483
5644
|
* Select specific fields to fetch from the verification
|
|
5484
5645
|
*/
|
|
@@ -5503,7 +5664,7 @@ type verificationUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
5503
5664
|
/**
|
|
5504
5665
|
* verification delete
|
|
5505
5666
|
*/
|
|
5506
|
-
type verificationDeleteArgs<ExtArgs extends
|
|
5667
|
+
type verificationDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5507
5668
|
/**
|
|
5508
5669
|
* Select specific fields to fetch from the verification
|
|
5509
5670
|
*/
|
|
@@ -5520,7 +5681,7 @@ type verificationDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
5520
5681
|
/**
|
|
5521
5682
|
* verification deleteMany
|
|
5522
5683
|
*/
|
|
5523
|
-
type verificationDeleteManyArgs<ExtArgs extends
|
|
5684
|
+
type verificationDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5524
5685
|
/**
|
|
5525
5686
|
* Filter which verifications to delete
|
|
5526
5687
|
*/
|
|
@@ -5531,19 +5692,6 @@ type verificationDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
5531
5692
|
limit?: number;
|
|
5532
5693
|
};
|
|
5533
5694
|
//#endregion
|
|
5534
|
-
//#region src/generated/prisma/enums.d.ts
|
|
5535
|
-
declare const ApprovalMethodType$1: {
|
|
5536
|
-
readonly service: "service";
|
|
5537
|
-
readonly personTeam: "personTeam";
|
|
5538
|
-
readonly custom: "custom";
|
|
5539
|
-
};
|
|
5540
|
-
type ApprovalMethodType$1 = (typeof ApprovalMethodType$1)[keyof typeof ApprovalMethodType$1];
|
|
5541
|
-
declare const AssetType: {
|
|
5542
|
-
readonly icon: "icon";
|
|
5543
|
-
readonly screenshot: "screenshot";
|
|
5544
|
-
};
|
|
5545
|
-
type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
5546
|
-
//#endregion
|
|
5547
5695
|
//#region src/generated/prisma/models/DbApprovalMethod.d.ts
|
|
5548
5696
|
type AggregateDbApprovalMethod = {
|
|
5549
5697
|
_count: DbApprovalMethodCountAggregateOutputType | null;
|
|
@@ -5596,7 +5744,7 @@ type DbApprovalMethodCountAggregateInputType = {
|
|
|
5596
5744
|
updatedAt?: true;
|
|
5597
5745
|
_all?: true;
|
|
5598
5746
|
};
|
|
5599
|
-
type DbApprovalMethodAggregateArgs<ExtArgs extends
|
|
5747
|
+
type DbApprovalMethodAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5600
5748
|
/**
|
|
5601
5749
|
* Filter which DbApprovalMethod to aggregate.
|
|
5602
5750
|
*/
|
|
@@ -5645,7 +5793,7 @@ type DbApprovalMethodAggregateArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5645
5793
|
_max?: DbApprovalMethodMaxAggregateInputType;
|
|
5646
5794
|
};
|
|
5647
5795
|
type GetDbApprovalMethodAggregateType<T extends DbApprovalMethodAggregateArgs> = { [P in keyof T & keyof AggregateDbApprovalMethod]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateDbApprovalMethod[P]> : GetScalarType<T[P], AggregateDbApprovalMethod[P]> };
|
|
5648
|
-
type DbApprovalMethodGroupByArgs<ExtArgs extends
|
|
5796
|
+
type DbApprovalMethodGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5649
5797
|
where?: DbApprovalMethodWhereInput;
|
|
5650
5798
|
orderBy?: DbApprovalMethodOrderByWithAggregationInput | DbApprovalMethodOrderByWithAggregationInput[];
|
|
5651
5799
|
by: DbApprovalMethodScalarFieldEnum[] | DbApprovalMethodScalarFieldEnum;
|
|
@@ -5806,7 +5954,7 @@ type DbApprovalMethodMinOrderByAggregateInput = {
|
|
|
5806
5954
|
type EnumApprovalMethodTypeFieldUpdateOperationsInput = {
|
|
5807
5955
|
set?: ApprovalMethodType$1;
|
|
5808
5956
|
};
|
|
5809
|
-
type DbApprovalMethodSelect<ExtArgs extends
|
|
5957
|
+
type DbApprovalMethodSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
5810
5958
|
slug?: boolean;
|
|
5811
5959
|
type?: boolean;
|
|
5812
5960
|
displayName?: boolean;
|
|
@@ -5814,7 +5962,7 @@ type DbApprovalMethodSelect<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
5814
5962
|
createdAt?: boolean;
|
|
5815
5963
|
updatedAt?: boolean;
|
|
5816
5964
|
}, ExtArgs["result"]["dbApprovalMethod"]>;
|
|
5817
|
-
type DbApprovalMethodSelectCreateManyAndReturn<ExtArgs extends
|
|
5965
|
+
type DbApprovalMethodSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
5818
5966
|
slug?: boolean;
|
|
5819
5967
|
type?: boolean;
|
|
5820
5968
|
displayName?: boolean;
|
|
@@ -5822,7 +5970,7 @@ type DbApprovalMethodSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ext
|
|
|
5822
5970
|
createdAt?: boolean;
|
|
5823
5971
|
updatedAt?: boolean;
|
|
5824
5972
|
}, ExtArgs["result"]["dbApprovalMethod"]>;
|
|
5825
|
-
type DbApprovalMethodSelectUpdateManyAndReturn<ExtArgs extends
|
|
5973
|
+
type DbApprovalMethodSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
5826
5974
|
slug?: boolean;
|
|
5827
5975
|
type?: boolean;
|
|
5828
5976
|
displayName?: boolean;
|
|
@@ -5830,11 +5978,11 @@ type DbApprovalMethodSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ext
|
|
|
5830
5978
|
createdAt?: boolean;
|
|
5831
5979
|
updatedAt?: boolean;
|
|
5832
5980
|
}, ExtArgs["result"]["dbApprovalMethod"]>;
|
|
5833
|
-
type DbApprovalMethodOmit<ExtArgs extends
|
|
5834
|
-
type $DbApprovalMethodPayload<ExtArgs extends
|
|
5981
|
+
type DbApprovalMethodOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"slug" | "type" | "displayName" | "config" | "createdAt" | "updatedAt", ExtArgs["result"]["dbApprovalMethod"]>;
|
|
5982
|
+
type $DbApprovalMethodPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
5835
5983
|
name: "DbApprovalMethod";
|
|
5836
5984
|
objects: {};
|
|
5837
|
-
scalars:
|
|
5985
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
5838
5986
|
slug: string;
|
|
5839
5987
|
type: ApprovalMethodType$1;
|
|
5840
5988
|
displayName: string;
|
|
@@ -5847,10 +5995,10 @@ type $DbApprovalMethodPayload<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
5847
5995
|
}, ExtArgs["result"]["dbApprovalMethod"]>;
|
|
5848
5996
|
composites: {};
|
|
5849
5997
|
};
|
|
5850
|
-
type DbApprovalMethodCountArgs<ExtArgs extends
|
|
5998
|
+
type DbApprovalMethodCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<DbApprovalMethodFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
5851
5999
|
select?: DbApprovalMethodCountAggregateInputType | true;
|
|
5852
6000
|
};
|
|
5853
|
-
interface DbApprovalMethodDelegate<ExtArgs extends
|
|
6001
|
+
interface DbApprovalMethodDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
5854
6002
|
[K: symbol]: {
|
|
5855
6003
|
types: TypeMap<ExtArgs>['model']['DbApprovalMethod'];
|
|
5856
6004
|
meta: {
|
|
@@ -5868,7 +6016,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5868
6016
|
* }
|
|
5869
6017
|
* })
|
|
5870
6018
|
*/
|
|
5871
|
-
findUnique<T extends DbApprovalMethodFindUniqueArgs>(args: SelectSubset<T, DbApprovalMethodFindUniqueArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6019
|
+
findUnique<T extends DbApprovalMethodFindUniqueArgs>(args: SelectSubset<T, DbApprovalMethodFindUniqueArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
5872
6020
|
/**
|
|
5873
6021
|
* Find one DbApprovalMethod that matches the filter or throw an error with `error.code='P2025'`
|
|
5874
6022
|
* if no matches were found.
|
|
@@ -5881,7 +6029,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5881
6029
|
* }
|
|
5882
6030
|
* })
|
|
5883
6031
|
*/
|
|
5884
|
-
findUniqueOrThrow<T extends DbApprovalMethodFindUniqueOrThrowArgs>(args: SelectSubset<T, DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6032
|
+
findUniqueOrThrow<T extends DbApprovalMethodFindUniqueOrThrowArgs>(args: SelectSubset<T, DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5885
6033
|
/**
|
|
5886
6034
|
* Find the first DbApprovalMethod that matches the filter.
|
|
5887
6035
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -5895,7 +6043,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5895
6043
|
* }
|
|
5896
6044
|
* })
|
|
5897
6045
|
*/
|
|
5898
|
-
findFirst<T extends DbApprovalMethodFindFirstArgs>(args?: SelectSubset<T, DbApprovalMethodFindFirstArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6046
|
+
findFirst<T extends DbApprovalMethodFindFirstArgs>(args?: SelectSubset<T, DbApprovalMethodFindFirstArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
5899
6047
|
/**
|
|
5900
6048
|
* Find the first DbApprovalMethod that matches the filter or
|
|
5901
6049
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -5910,7 +6058,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5910
6058
|
* }
|
|
5911
6059
|
* })
|
|
5912
6060
|
*/
|
|
5913
|
-
findFirstOrThrow<T extends DbApprovalMethodFindFirstOrThrowArgs>(args?: SelectSubset<T, DbApprovalMethodFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6061
|
+
findFirstOrThrow<T extends DbApprovalMethodFindFirstOrThrowArgs>(args?: SelectSubset<T, DbApprovalMethodFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5914
6062
|
/**
|
|
5915
6063
|
* Find zero or more DbApprovalMethods that matches the filter.
|
|
5916
6064
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -5927,7 +6075,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5927
6075
|
* const dbApprovalMethodWithSlugOnly = await prisma.dbApprovalMethod.findMany({ select: { slug: true } })
|
|
5928
6076
|
*
|
|
5929
6077
|
*/
|
|
5930
|
-
findMany<T extends DbApprovalMethodFindManyArgs>(args?: SelectSubset<T, DbApprovalMethodFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
6078
|
+
findMany<T extends DbApprovalMethodFindManyArgs>(args?: SelectSubset<T, DbApprovalMethodFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
5931
6079
|
/**
|
|
5932
6080
|
* Create a DbApprovalMethod.
|
|
5933
6081
|
* @param {DbApprovalMethodCreateArgs} args - Arguments to create a DbApprovalMethod.
|
|
@@ -5940,7 +6088,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5940
6088
|
* })
|
|
5941
6089
|
*
|
|
5942
6090
|
*/
|
|
5943
|
-
create<T extends DbApprovalMethodCreateArgs>(args: SelectSubset<T, DbApprovalMethodCreateArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6091
|
+
create<T extends DbApprovalMethodCreateArgs>(args: SelectSubset<T, DbApprovalMethodCreateArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5944
6092
|
/**
|
|
5945
6093
|
* Create many DbApprovalMethods.
|
|
5946
6094
|
* @param {DbApprovalMethodCreateManyArgs} args - Arguments to create many DbApprovalMethods.
|
|
@@ -5976,7 +6124,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5976
6124
|
* Read more here: https://pris.ly/d/null-undefined
|
|
5977
6125
|
*
|
|
5978
6126
|
*/
|
|
5979
|
-
createManyAndReturn<T extends DbApprovalMethodCreateManyAndReturnArgs>(args?: SelectSubset<T, DbApprovalMethodCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
6127
|
+
createManyAndReturn<T extends DbApprovalMethodCreateManyAndReturnArgs>(args?: SelectSubset<T, DbApprovalMethodCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
5980
6128
|
/**
|
|
5981
6129
|
* Delete a DbApprovalMethod.
|
|
5982
6130
|
* @param {DbApprovalMethodDeleteArgs} args - Arguments to delete one DbApprovalMethod.
|
|
@@ -5989,7 +6137,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
5989
6137
|
* })
|
|
5990
6138
|
*
|
|
5991
6139
|
*/
|
|
5992
|
-
delete<T extends DbApprovalMethodDeleteArgs>(args: SelectSubset<T, DbApprovalMethodDeleteArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6140
|
+
delete<T extends DbApprovalMethodDeleteArgs>(args: SelectSubset<T, DbApprovalMethodDeleteArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
5993
6141
|
/**
|
|
5994
6142
|
* Update one DbApprovalMethod.
|
|
5995
6143
|
* @param {DbApprovalMethodUpdateArgs} args - Arguments to update one DbApprovalMethod.
|
|
@@ -6005,7 +6153,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6005
6153
|
* })
|
|
6006
6154
|
*
|
|
6007
6155
|
*/
|
|
6008
|
-
update<T extends DbApprovalMethodUpdateArgs>(args: SelectSubset<T, DbApprovalMethodUpdateArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6156
|
+
update<T extends DbApprovalMethodUpdateArgs>(args: SelectSubset<T, DbApprovalMethodUpdateArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
6009
6157
|
/**
|
|
6010
6158
|
* Delete zero or more DbApprovalMethods.
|
|
6011
6159
|
* @param {DbApprovalMethodDeleteManyArgs} args - Arguments to filter DbApprovalMethods to delete.
|
|
@@ -6065,7 +6213,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6065
6213
|
* Read more here: https://pris.ly/d/null-undefined
|
|
6066
6214
|
*
|
|
6067
6215
|
*/
|
|
6068
|
-
updateManyAndReturn<T extends DbApprovalMethodUpdateManyAndReturnArgs>(args: SelectSubset<T, DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
6216
|
+
updateManyAndReturn<T extends DbApprovalMethodUpdateManyAndReturnArgs>(args: SelectSubset<T, DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
6069
6217
|
/**
|
|
6070
6218
|
* Create or update one DbApprovalMethod.
|
|
6071
6219
|
* @param {DbApprovalMethodUpsertArgs} args - Arguments to update or create a DbApprovalMethod.
|
|
@@ -6083,7 +6231,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6083
6231
|
* }
|
|
6084
6232
|
* })
|
|
6085
6233
|
*/
|
|
6086
|
-
upsert<T extends DbApprovalMethodUpsertArgs>(args: SelectSubset<T, DbApprovalMethodUpsertArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<
|
|
6234
|
+
upsert<T extends DbApprovalMethodUpsertArgs>(args: SelectSubset<T, DbApprovalMethodUpsertArgs<ExtArgs>>): Prisma__DbApprovalMethodClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbApprovalMethodPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
6087
6235
|
/**
|
|
6088
6236
|
* Count the number of DbApprovalMethods.
|
|
6089
6237
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -6097,7 +6245,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6097
6245
|
* }
|
|
6098
6246
|
* })
|
|
6099
6247
|
**/
|
|
6100
|
-
count<T extends DbApprovalMethodCountArgs>(args?: Subset<T, DbApprovalMethodCountArgs>): PrismaPromise<T extends
|
|
6248
|
+
count<T extends DbApprovalMethodCountArgs>(args?: Subset<T, DbApprovalMethodCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], DbApprovalMethodCountAggregateOutputType> : number>;
|
|
6101
6249
|
/**
|
|
6102
6250
|
* Allows you to perform aggregations operations on a DbApprovalMethod.
|
|
6103
6251
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -6157,7 +6305,7 @@ interface DbApprovalMethodDelegate<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6157
6305
|
* Because we want to prevent naming conflicts as mentioned in
|
|
6158
6306
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
6159
6307
|
*/
|
|
6160
|
-
interface Prisma__DbApprovalMethodClient<T, Null = never, ExtArgs extends
|
|
6308
|
+
interface Prisma__DbApprovalMethodClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
6161
6309
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
6162
6310
|
/**
|
|
6163
6311
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -6165,20 +6313,20 @@ interface Prisma__DbApprovalMethodClient<T, Null = never, ExtArgs extends runtim
|
|
|
6165
6313
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
6166
6314
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
6167
6315
|
*/
|
|
6168
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
6316
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
6169
6317
|
/**
|
|
6170
6318
|
* Attaches a callback for only the rejection of the Promise.
|
|
6171
6319
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
6172
6320
|
* @returns A Promise for the completion of the callback.
|
|
6173
6321
|
*/
|
|
6174
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
6322
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
6175
6323
|
/**
|
|
6176
6324
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
6177
6325
|
* resolved value cannot be modified from the callback.
|
|
6178
6326
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
6179
6327
|
* @returns A Promise for the completion of the callback.
|
|
6180
6328
|
*/
|
|
6181
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
6329
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
6182
6330
|
}
|
|
6183
6331
|
/**
|
|
6184
6332
|
* Fields of the DbApprovalMethod model
|
|
@@ -6194,7 +6342,7 @@ interface DbApprovalMethodFieldRefs {
|
|
|
6194
6342
|
/**
|
|
6195
6343
|
* DbApprovalMethod findUnique
|
|
6196
6344
|
*/
|
|
6197
|
-
type DbApprovalMethodFindUniqueArgs<ExtArgs extends
|
|
6345
|
+
type DbApprovalMethodFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6198
6346
|
/**
|
|
6199
6347
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6200
6348
|
*/
|
|
@@ -6211,7 +6359,7 @@ type DbApprovalMethodFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
6211
6359
|
/**
|
|
6212
6360
|
* DbApprovalMethod findUniqueOrThrow
|
|
6213
6361
|
*/
|
|
6214
|
-
type DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs extends
|
|
6362
|
+
type DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6215
6363
|
/**
|
|
6216
6364
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6217
6365
|
*/
|
|
@@ -6228,7 +6376,7 @@ type DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensi
|
|
|
6228
6376
|
/**
|
|
6229
6377
|
* DbApprovalMethod findFirst
|
|
6230
6378
|
*/
|
|
6231
|
-
type DbApprovalMethodFindFirstArgs<ExtArgs extends
|
|
6379
|
+
type DbApprovalMethodFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6232
6380
|
/**
|
|
6233
6381
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6234
6382
|
*/
|
|
@@ -6275,7 +6423,7 @@ type DbApprovalMethodFindFirstArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
6275
6423
|
/**
|
|
6276
6424
|
* DbApprovalMethod findFirstOrThrow
|
|
6277
6425
|
*/
|
|
6278
|
-
type DbApprovalMethodFindFirstOrThrowArgs<ExtArgs extends
|
|
6426
|
+
type DbApprovalMethodFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6279
6427
|
/**
|
|
6280
6428
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6281
6429
|
*/
|
|
@@ -6322,7 +6470,7 @@ type DbApprovalMethodFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensio
|
|
|
6322
6470
|
/**
|
|
6323
6471
|
* DbApprovalMethod findMany
|
|
6324
6472
|
*/
|
|
6325
|
-
type DbApprovalMethodFindManyArgs<ExtArgs extends
|
|
6473
|
+
type DbApprovalMethodFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6326
6474
|
/**
|
|
6327
6475
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6328
6476
|
*/
|
|
@@ -6364,7 +6512,7 @@ type DbApprovalMethodFindManyArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
6364
6512
|
/**
|
|
6365
6513
|
* DbApprovalMethod create
|
|
6366
6514
|
*/
|
|
6367
|
-
type DbApprovalMethodCreateArgs<ExtArgs extends
|
|
6515
|
+
type DbApprovalMethodCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6368
6516
|
/**
|
|
6369
6517
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6370
6518
|
*/
|
|
@@ -6381,7 +6529,7 @@ type DbApprovalMethodCreateArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
6381
6529
|
/**
|
|
6382
6530
|
* DbApprovalMethod createMany
|
|
6383
6531
|
*/
|
|
6384
|
-
type DbApprovalMethodCreateManyArgs<ExtArgs extends
|
|
6532
|
+
type DbApprovalMethodCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6385
6533
|
/**
|
|
6386
6534
|
* The data used to create many DbApprovalMethods.
|
|
6387
6535
|
*/
|
|
@@ -6391,7 +6539,7 @@ type DbApprovalMethodCreateManyArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
6391
6539
|
/**
|
|
6392
6540
|
* DbApprovalMethod createManyAndReturn
|
|
6393
6541
|
*/
|
|
6394
|
-
type DbApprovalMethodCreateManyAndReturnArgs<ExtArgs extends
|
|
6542
|
+
type DbApprovalMethodCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6395
6543
|
/**
|
|
6396
6544
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6397
6545
|
*/
|
|
@@ -6409,7 +6557,7 @@ type DbApprovalMethodCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Exten
|
|
|
6409
6557
|
/**
|
|
6410
6558
|
* DbApprovalMethod update
|
|
6411
6559
|
*/
|
|
6412
|
-
type DbApprovalMethodUpdateArgs<ExtArgs extends
|
|
6560
|
+
type DbApprovalMethodUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6413
6561
|
/**
|
|
6414
6562
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6415
6563
|
*/
|
|
@@ -6430,7 +6578,7 @@ type DbApprovalMethodUpdateArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
6430
6578
|
/**
|
|
6431
6579
|
* DbApprovalMethod updateMany
|
|
6432
6580
|
*/
|
|
6433
|
-
type DbApprovalMethodUpdateManyArgs<ExtArgs extends
|
|
6581
|
+
type DbApprovalMethodUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6434
6582
|
/**
|
|
6435
6583
|
* The data used to update DbApprovalMethods.
|
|
6436
6584
|
*/
|
|
@@ -6447,7 +6595,7 @@ type DbApprovalMethodUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
6447
6595
|
/**
|
|
6448
6596
|
* DbApprovalMethod updateManyAndReturn
|
|
6449
6597
|
*/
|
|
6450
|
-
type DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs extends
|
|
6598
|
+
type DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6451
6599
|
/**
|
|
6452
6600
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6453
6601
|
*/
|
|
@@ -6472,7 +6620,7 @@ type DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Exten
|
|
|
6472
6620
|
/**
|
|
6473
6621
|
* DbApprovalMethod upsert
|
|
6474
6622
|
*/
|
|
6475
|
-
type DbApprovalMethodUpsertArgs<ExtArgs extends
|
|
6623
|
+
type DbApprovalMethodUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6476
6624
|
/**
|
|
6477
6625
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6478
6626
|
*/
|
|
@@ -6497,7 +6645,7 @@ type DbApprovalMethodUpsertArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
6497
6645
|
/**
|
|
6498
6646
|
* DbApprovalMethod delete
|
|
6499
6647
|
*/
|
|
6500
|
-
type DbApprovalMethodDeleteArgs<ExtArgs extends
|
|
6648
|
+
type DbApprovalMethodDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6501
6649
|
/**
|
|
6502
6650
|
* Select specific fields to fetch from the DbApprovalMethod
|
|
6503
6651
|
*/
|
|
@@ -6514,7 +6662,7 @@ type DbApprovalMethodDeleteArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
6514
6662
|
/**
|
|
6515
6663
|
* DbApprovalMethod deleteMany
|
|
6516
6664
|
*/
|
|
6517
|
-
type DbApprovalMethodDeleteManyArgs<ExtArgs extends
|
|
6665
|
+
type DbApprovalMethodDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6518
6666
|
/**
|
|
6519
6667
|
* Filter which DbApprovalMethods to delete
|
|
6520
6668
|
*/
|
|
@@ -6615,7 +6763,7 @@ type DbAppForCatalogCountAggregateInputType = {
|
|
|
6615
6763
|
updatedAt?: true;
|
|
6616
6764
|
_all?: true;
|
|
6617
6765
|
};
|
|
6618
|
-
type DbAppForCatalogAggregateArgs<ExtArgs extends
|
|
6766
|
+
type DbAppForCatalogAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6619
6767
|
/**
|
|
6620
6768
|
* Filter which DbAppForCatalog to aggregate.
|
|
6621
6769
|
*/
|
|
@@ -6664,7 +6812,7 @@ type DbAppForCatalogAggregateArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
6664
6812
|
_max?: DbAppForCatalogMaxAggregateInputType;
|
|
6665
6813
|
};
|
|
6666
6814
|
type GetDbAppForCatalogAggregateType<T extends DbAppForCatalogAggregateArgs> = { [P in keyof T & keyof AggregateDbAppForCatalog]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateDbAppForCatalog[P]> : GetScalarType<T[P], AggregateDbAppForCatalog[P]> };
|
|
6667
|
-
type DbAppForCatalogGroupByArgs<ExtArgs extends
|
|
6815
|
+
type DbAppForCatalogGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
6668
6816
|
where?: DbAppForCatalogWhereInput;
|
|
6669
6817
|
orderBy?: DbAppForCatalogOrderByWithAggregationInput | DbAppForCatalogOrderByWithAggregationInput[];
|
|
6670
6818
|
by: DbAppForCatalogScalarFieldEnum[] | DbAppForCatalogScalarFieldEnum;
|
|
@@ -7014,7 +7162,7 @@ type DbAppForCatalogUpdatesourcesInput = {
|
|
|
7014
7162
|
set?: string[];
|
|
7015
7163
|
push?: string | string[];
|
|
7016
7164
|
};
|
|
7017
|
-
type DbAppForCatalogSelect<ExtArgs extends
|
|
7165
|
+
type DbAppForCatalogSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
7018
7166
|
id?: boolean;
|
|
7019
7167
|
slug?: boolean;
|
|
7020
7168
|
displayName?: boolean;
|
|
@@ -7033,7 +7181,7 @@ type DbAppForCatalogSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
7033
7181
|
createdAt?: boolean;
|
|
7034
7182
|
updatedAt?: boolean;
|
|
7035
7183
|
}, ExtArgs["result"]["dbAppForCatalog"]>;
|
|
7036
|
-
type DbAppForCatalogSelectCreateManyAndReturn<ExtArgs extends
|
|
7184
|
+
type DbAppForCatalogSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
7037
7185
|
id?: boolean;
|
|
7038
7186
|
slug?: boolean;
|
|
7039
7187
|
displayName?: boolean;
|
|
@@ -7052,7 +7200,7 @@ type DbAppForCatalogSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Exte
|
|
|
7052
7200
|
createdAt?: boolean;
|
|
7053
7201
|
updatedAt?: boolean;
|
|
7054
7202
|
}, ExtArgs["result"]["dbAppForCatalog"]>;
|
|
7055
|
-
type DbAppForCatalogSelectUpdateManyAndReturn<ExtArgs extends
|
|
7203
|
+
type DbAppForCatalogSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
7056
7204
|
id?: boolean;
|
|
7057
7205
|
slug?: boolean;
|
|
7058
7206
|
displayName?: boolean;
|
|
@@ -7071,11 +7219,11 @@ type DbAppForCatalogSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Exte
|
|
|
7071
7219
|
createdAt?: boolean;
|
|
7072
7220
|
updatedAt?: boolean;
|
|
7073
7221
|
}, ExtArgs["result"]["dbAppForCatalog"]>;
|
|
7074
|
-
type DbAppForCatalogOmit<ExtArgs extends
|
|
7075
|
-
type $DbAppForCatalogPayload<ExtArgs extends
|
|
7222
|
+
type DbAppForCatalogOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "slug" | "displayName" | "description" | "access" | "teams" | "accessRequest" | "notes" | "tags" | "appUrl" | "links" | "iconName" | "screenshotIds" | "deprecated" | "sources" | "createdAt" | "updatedAt", ExtArgs["result"]["dbAppForCatalog"]>;
|
|
7223
|
+
type $DbAppForCatalogPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7076
7224
|
name: "DbAppForCatalog";
|
|
7077
7225
|
objects: {};
|
|
7078
|
-
scalars:
|
|
7226
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
7079
7227
|
id: string;
|
|
7080
7228
|
slug: string;
|
|
7081
7229
|
displayName: string;
|
|
@@ -7108,10 +7256,10 @@ type $DbAppForCatalogPayload<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
7108
7256
|
}, ExtArgs["result"]["dbAppForCatalog"]>;
|
|
7109
7257
|
composites: {};
|
|
7110
7258
|
};
|
|
7111
|
-
type DbAppForCatalogCountArgs<ExtArgs extends
|
|
7259
|
+
type DbAppForCatalogCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<DbAppForCatalogFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
7112
7260
|
select?: DbAppForCatalogCountAggregateInputType | true;
|
|
7113
7261
|
};
|
|
7114
|
-
interface DbAppForCatalogDelegate<ExtArgs extends
|
|
7262
|
+
interface DbAppForCatalogDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
7115
7263
|
[K: symbol]: {
|
|
7116
7264
|
types: TypeMap<ExtArgs>['model']['DbAppForCatalog'];
|
|
7117
7265
|
meta: {
|
|
@@ -7129,7 +7277,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7129
7277
|
* }
|
|
7130
7278
|
* })
|
|
7131
7279
|
*/
|
|
7132
|
-
findUnique<T extends DbAppForCatalogFindUniqueArgs>(args: SelectSubset<T, DbAppForCatalogFindUniqueArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7280
|
+
findUnique<T extends DbAppForCatalogFindUniqueArgs>(args: SelectSubset<T, DbAppForCatalogFindUniqueArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
7133
7281
|
/**
|
|
7134
7282
|
* Find one DbAppForCatalog that matches the filter or throw an error with `error.code='P2025'`
|
|
7135
7283
|
* if no matches were found.
|
|
@@ -7142,7 +7290,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7142
7290
|
* }
|
|
7143
7291
|
* })
|
|
7144
7292
|
*/
|
|
7145
|
-
findUniqueOrThrow<T extends DbAppForCatalogFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7293
|
+
findUniqueOrThrow<T extends DbAppForCatalogFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7146
7294
|
/**
|
|
7147
7295
|
* Find the first DbAppForCatalog that matches the filter.
|
|
7148
7296
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -7156,7 +7304,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7156
7304
|
* }
|
|
7157
7305
|
* })
|
|
7158
7306
|
*/
|
|
7159
|
-
findFirst<T extends DbAppForCatalogFindFirstArgs>(args?: SelectSubset<T, DbAppForCatalogFindFirstArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7307
|
+
findFirst<T extends DbAppForCatalogFindFirstArgs>(args?: SelectSubset<T, DbAppForCatalogFindFirstArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
7160
7308
|
/**
|
|
7161
7309
|
* Find the first DbAppForCatalog that matches the filter or
|
|
7162
7310
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -7171,7 +7319,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7171
7319
|
* }
|
|
7172
7320
|
* })
|
|
7173
7321
|
*/
|
|
7174
|
-
findFirstOrThrow<T extends DbAppForCatalogFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAppForCatalogFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7322
|
+
findFirstOrThrow<T extends DbAppForCatalogFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAppForCatalogFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7175
7323
|
/**
|
|
7176
7324
|
* Find zero or more DbAppForCatalogs that matches the filter.
|
|
7177
7325
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -7188,7 +7336,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7188
7336
|
* const dbAppForCatalogWithIdOnly = await prisma.dbAppForCatalog.findMany({ select: { id: true } })
|
|
7189
7337
|
*
|
|
7190
7338
|
*/
|
|
7191
|
-
findMany<T extends DbAppForCatalogFindManyArgs>(args?: SelectSubset<T, DbAppForCatalogFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
7339
|
+
findMany<T extends DbAppForCatalogFindManyArgs>(args?: SelectSubset<T, DbAppForCatalogFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
7192
7340
|
/**
|
|
7193
7341
|
* Create a DbAppForCatalog.
|
|
7194
7342
|
* @param {DbAppForCatalogCreateArgs} args - Arguments to create a DbAppForCatalog.
|
|
@@ -7201,7 +7349,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7201
7349
|
* })
|
|
7202
7350
|
*
|
|
7203
7351
|
*/
|
|
7204
|
-
create<T extends DbAppForCatalogCreateArgs>(args: SelectSubset<T, DbAppForCatalogCreateArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7352
|
+
create<T extends DbAppForCatalogCreateArgs>(args: SelectSubset<T, DbAppForCatalogCreateArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7205
7353
|
/**
|
|
7206
7354
|
* Create many DbAppForCatalogs.
|
|
7207
7355
|
* @param {DbAppForCatalogCreateManyArgs} args - Arguments to create many DbAppForCatalogs.
|
|
@@ -7237,7 +7385,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7237
7385
|
* Read more here: https://pris.ly/d/null-undefined
|
|
7238
7386
|
*
|
|
7239
7387
|
*/
|
|
7240
|
-
createManyAndReturn<T extends DbAppForCatalogCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAppForCatalogCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
7388
|
+
createManyAndReturn<T extends DbAppForCatalogCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAppForCatalogCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
7241
7389
|
/**
|
|
7242
7390
|
* Delete a DbAppForCatalog.
|
|
7243
7391
|
* @param {DbAppForCatalogDeleteArgs} args - Arguments to delete one DbAppForCatalog.
|
|
@@ -7250,7 +7398,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7250
7398
|
* })
|
|
7251
7399
|
*
|
|
7252
7400
|
*/
|
|
7253
|
-
delete<T extends DbAppForCatalogDeleteArgs>(args: SelectSubset<T, DbAppForCatalogDeleteArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7401
|
+
delete<T extends DbAppForCatalogDeleteArgs>(args: SelectSubset<T, DbAppForCatalogDeleteArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7254
7402
|
/**
|
|
7255
7403
|
* Update one DbAppForCatalog.
|
|
7256
7404
|
* @param {DbAppForCatalogUpdateArgs} args - Arguments to update one DbAppForCatalog.
|
|
@@ -7266,7 +7414,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7266
7414
|
* })
|
|
7267
7415
|
*
|
|
7268
7416
|
*/
|
|
7269
|
-
update<T extends DbAppForCatalogUpdateArgs>(args: SelectSubset<T, DbAppForCatalogUpdateArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7417
|
+
update<T extends DbAppForCatalogUpdateArgs>(args: SelectSubset<T, DbAppForCatalogUpdateArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7270
7418
|
/**
|
|
7271
7419
|
* Delete zero or more DbAppForCatalogs.
|
|
7272
7420
|
* @param {DbAppForCatalogDeleteManyArgs} args - Arguments to filter DbAppForCatalogs to delete.
|
|
@@ -7326,7 +7474,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7326
7474
|
* Read more here: https://pris.ly/d/null-undefined
|
|
7327
7475
|
*
|
|
7328
7476
|
*/
|
|
7329
|
-
updateManyAndReturn<T extends DbAppForCatalogUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
7477
|
+
updateManyAndReturn<T extends DbAppForCatalogUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
7330
7478
|
/**
|
|
7331
7479
|
* Create or update one DbAppForCatalog.
|
|
7332
7480
|
* @param {DbAppForCatalogUpsertArgs} args - Arguments to update or create a DbAppForCatalog.
|
|
@@ -7344,7 +7492,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7344
7492
|
* }
|
|
7345
7493
|
* })
|
|
7346
7494
|
*/
|
|
7347
|
-
upsert<T extends DbAppForCatalogUpsertArgs>(args: SelectSubset<T, DbAppForCatalogUpsertArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<
|
|
7495
|
+
upsert<T extends DbAppForCatalogUpsertArgs>(args: SelectSubset<T, DbAppForCatalogUpsertArgs<ExtArgs>>): Prisma__DbAppForCatalogClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppForCatalogPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
7348
7496
|
/**
|
|
7349
7497
|
* Count the number of DbAppForCatalogs.
|
|
7350
7498
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -7358,7 +7506,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7358
7506
|
* }
|
|
7359
7507
|
* })
|
|
7360
7508
|
**/
|
|
7361
|
-
count<T extends DbAppForCatalogCountArgs>(args?: Subset<T, DbAppForCatalogCountArgs>): PrismaPromise<T extends
|
|
7509
|
+
count<T extends DbAppForCatalogCountArgs>(args?: Subset<T, DbAppForCatalogCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], DbAppForCatalogCountAggregateOutputType> : number>;
|
|
7362
7510
|
/**
|
|
7363
7511
|
* Allows you to perform aggregations operations on a DbAppForCatalog.
|
|
7364
7512
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -7418,7 +7566,7 @@ interface DbAppForCatalogDelegate<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7418
7566
|
* Because we want to prevent naming conflicts as mentioned in
|
|
7419
7567
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
7420
7568
|
*/
|
|
7421
|
-
interface Prisma__DbAppForCatalogClient<T, Null = never, ExtArgs extends
|
|
7569
|
+
interface Prisma__DbAppForCatalogClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
7422
7570
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
7423
7571
|
/**
|
|
7424
7572
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -7426,20 +7574,20 @@ interface Prisma__DbAppForCatalogClient<T, Null = never, ExtArgs extends runtime
|
|
|
7426
7574
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
7427
7575
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
7428
7576
|
*/
|
|
7429
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
7577
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
7430
7578
|
/**
|
|
7431
7579
|
* Attaches a callback for only the rejection of the Promise.
|
|
7432
7580
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
7433
7581
|
* @returns A Promise for the completion of the callback.
|
|
7434
7582
|
*/
|
|
7435
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
7583
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
7436
7584
|
/**
|
|
7437
7585
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
7438
7586
|
* resolved value cannot be modified from the callback.
|
|
7439
7587
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
7440
7588
|
* @returns A Promise for the completion of the callback.
|
|
7441
7589
|
*/
|
|
7442
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
7590
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
7443
7591
|
}
|
|
7444
7592
|
/**
|
|
7445
7593
|
* Fields of the DbAppForCatalog model
|
|
@@ -7466,7 +7614,7 @@ interface DbAppForCatalogFieldRefs {
|
|
|
7466
7614
|
/**
|
|
7467
7615
|
* DbAppForCatalog findUnique
|
|
7468
7616
|
*/
|
|
7469
|
-
type DbAppForCatalogFindUniqueArgs<ExtArgs extends
|
|
7617
|
+
type DbAppForCatalogFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7470
7618
|
/**
|
|
7471
7619
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7472
7620
|
*/
|
|
@@ -7483,7 +7631,7 @@ type DbAppForCatalogFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
7483
7631
|
/**
|
|
7484
7632
|
* DbAppForCatalog findUniqueOrThrow
|
|
7485
7633
|
*/
|
|
7486
|
-
type DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs extends
|
|
7634
|
+
type DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7487
7635
|
/**
|
|
7488
7636
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7489
7637
|
*/
|
|
@@ -7500,7 +7648,7 @@ type DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensio
|
|
|
7500
7648
|
/**
|
|
7501
7649
|
* DbAppForCatalog findFirst
|
|
7502
7650
|
*/
|
|
7503
|
-
type DbAppForCatalogFindFirstArgs<ExtArgs extends
|
|
7651
|
+
type DbAppForCatalogFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7504
7652
|
/**
|
|
7505
7653
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7506
7654
|
*/
|
|
@@ -7547,7 +7695,7 @@ type DbAppForCatalogFindFirstArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
7547
7695
|
/**
|
|
7548
7696
|
* DbAppForCatalog findFirstOrThrow
|
|
7549
7697
|
*/
|
|
7550
|
-
type DbAppForCatalogFindFirstOrThrowArgs<ExtArgs extends
|
|
7698
|
+
type DbAppForCatalogFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7551
7699
|
/**
|
|
7552
7700
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7553
7701
|
*/
|
|
@@ -7594,7 +7742,7 @@ type DbAppForCatalogFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extension
|
|
|
7594
7742
|
/**
|
|
7595
7743
|
* DbAppForCatalog findMany
|
|
7596
7744
|
*/
|
|
7597
|
-
type DbAppForCatalogFindManyArgs<ExtArgs extends
|
|
7745
|
+
type DbAppForCatalogFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7598
7746
|
/**
|
|
7599
7747
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7600
7748
|
*/
|
|
@@ -7636,7 +7784,7 @@ type DbAppForCatalogFindManyArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
7636
7784
|
/**
|
|
7637
7785
|
* DbAppForCatalog create
|
|
7638
7786
|
*/
|
|
7639
|
-
type DbAppForCatalogCreateArgs<ExtArgs extends
|
|
7787
|
+
type DbAppForCatalogCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7640
7788
|
/**
|
|
7641
7789
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7642
7790
|
*/
|
|
@@ -7653,7 +7801,7 @@ type DbAppForCatalogCreateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
7653
7801
|
/**
|
|
7654
7802
|
* DbAppForCatalog createMany
|
|
7655
7803
|
*/
|
|
7656
|
-
type DbAppForCatalogCreateManyArgs<ExtArgs extends
|
|
7804
|
+
type DbAppForCatalogCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7657
7805
|
/**
|
|
7658
7806
|
* The data used to create many DbAppForCatalogs.
|
|
7659
7807
|
*/
|
|
@@ -7663,7 +7811,7 @@ type DbAppForCatalogCreateManyArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
7663
7811
|
/**
|
|
7664
7812
|
* DbAppForCatalog createManyAndReturn
|
|
7665
7813
|
*/
|
|
7666
|
-
type DbAppForCatalogCreateManyAndReturnArgs<ExtArgs extends
|
|
7814
|
+
type DbAppForCatalogCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7667
7815
|
/**
|
|
7668
7816
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7669
7817
|
*/
|
|
@@ -7681,7 +7829,7 @@ type DbAppForCatalogCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extens
|
|
|
7681
7829
|
/**
|
|
7682
7830
|
* DbAppForCatalog update
|
|
7683
7831
|
*/
|
|
7684
|
-
type DbAppForCatalogUpdateArgs<ExtArgs extends
|
|
7832
|
+
type DbAppForCatalogUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7685
7833
|
/**
|
|
7686
7834
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7687
7835
|
*/
|
|
@@ -7702,7 +7850,7 @@ type DbAppForCatalogUpdateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
7702
7850
|
/**
|
|
7703
7851
|
* DbAppForCatalog updateMany
|
|
7704
7852
|
*/
|
|
7705
|
-
type DbAppForCatalogUpdateManyArgs<ExtArgs extends
|
|
7853
|
+
type DbAppForCatalogUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7706
7854
|
/**
|
|
7707
7855
|
* The data used to update DbAppForCatalogs.
|
|
7708
7856
|
*/
|
|
@@ -7719,7 +7867,7 @@ type DbAppForCatalogUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
7719
7867
|
/**
|
|
7720
7868
|
* DbAppForCatalog updateManyAndReturn
|
|
7721
7869
|
*/
|
|
7722
|
-
type DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs extends
|
|
7870
|
+
type DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7723
7871
|
/**
|
|
7724
7872
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7725
7873
|
*/
|
|
@@ -7744,7 +7892,7 @@ type DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extens
|
|
|
7744
7892
|
/**
|
|
7745
7893
|
* DbAppForCatalog upsert
|
|
7746
7894
|
*/
|
|
7747
|
-
type DbAppForCatalogUpsertArgs<ExtArgs extends
|
|
7895
|
+
type DbAppForCatalogUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7748
7896
|
/**
|
|
7749
7897
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7750
7898
|
*/
|
|
@@ -7769,7 +7917,7 @@ type DbAppForCatalogUpsertArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
7769
7917
|
/**
|
|
7770
7918
|
* DbAppForCatalog delete
|
|
7771
7919
|
*/
|
|
7772
|
-
type DbAppForCatalogDeleteArgs<ExtArgs extends
|
|
7920
|
+
type DbAppForCatalogDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7773
7921
|
/**
|
|
7774
7922
|
* Select specific fields to fetch from the DbAppForCatalog
|
|
7775
7923
|
*/
|
|
@@ -7786,7 +7934,7 @@ type DbAppForCatalogDeleteArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
7786
7934
|
/**
|
|
7787
7935
|
* DbAppForCatalog deleteMany
|
|
7788
7936
|
*/
|
|
7789
|
-
type DbAppForCatalogDeleteManyArgs<ExtArgs extends
|
|
7937
|
+
type DbAppForCatalogDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7790
7938
|
/**
|
|
7791
7939
|
* Filter which DbAppForCatalogs to delete
|
|
7792
7940
|
*/
|
|
@@ -7855,7 +8003,7 @@ type DbAppTagDefinitionCountAggregateInputType = {
|
|
|
7855
8003
|
updatedAt?: true;
|
|
7856
8004
|
_all?: true;
|
|
7857
8005
|
};
|
|
7858
|
-
type DbAppTagDefinitionAggregateArgs<ExtArgs extends
|
|
8006
|
+
type DbAppTagDefinitionAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7859
8007
|
/**
|
|
7860
8008
|
* Filter which DbAppTagDefinition to aggregate.
|
|
7861
8009
|
*/
|
|
@@ -7904,7 +8052,7 @@ type DbAppTagDefinitionAggregateArgs<ExtArgs extends runtime.Types.Extensions.In
|
|
|
7904
8052
|
_max?: DbAppTagDefinitionMaxAggregateInputType;
|
|
7905
8053
|
};
|
|
7906
8054
|
type GetDbAppTagDefinitionAggregateType<T extends DbAppTagDefinitionAggregateArgs> = { [P in keyof T & keyof AggregateDbAppTagDefinition]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateDbAppTagDefinition[P]> : GetScalarType<T[P], AggregateDbAppTagDefinition[P]> };
|
|
7907
|
-
type DbAppTagDefinitionGroupByArgs<ExtArgs extends
|
|
8055
|
+
type DbAppTagDefinitionGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
7908
8056
|
where?: DbAppTagDefinitionWhereInput;
|
|
7909
8057
|
orderBy?: DbAppTagDefinitionOrderByWithAggregationInput | DbAppTagDefinitionOrderByWithAggregationInput[];
|
|
7910
8058
|
by: DbAppTagDefinitionScalarFieldEnum[] | DbAppTagDefinitionScalarFieldEnum;
|
|
@@ -8073,7 +8221,7 @@ type DbAppTagDefinitionMinOrderByAggregateInput = {
|
|
|
8073
8221
|
createdAt?: SortOrder;
|
|
8074
8222
|
updatedAt?: SortOrder;
|
|
8075
8223
|
};
|
|
8076
|
-
type DbAppTagDefinitionSelect<ExtArgs extends
|
|
8224
|
+
type DbAppTagDefinitionSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
8077
8225
|
id?: boolean;
|
|
8078
8226
|
prefix?: boolean;
|
|
8079
8227
|
displayName?: boolean;
|
|
@@ -8082,7 +8230,7 @@ type DbAppTagDefinitionSelect<ExtArgs extends runtime.Types.Extensions.InternalA
|
|
|
8082
8230
|
createdAt?: boolean;
|
|
8083
8231
|
updatedAt?: boolean;
|
|
8084
8232
|
}, ExtArgs["result"]["dbAppTagDefinition"]>;
|
|
8085
|
-
type DbAppTagDefinitionSelectCreateManyAndReturn<ExtArgs extends
|
|
8233
|
+
type DbAppTagDefinitionSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
8086
8234
|
id?: boolean;
|
|
8087
8235
|
prefix?: boolean;
|
|
8088
8236
|
displayName?: boolean;
|
|
@@ -8091,7 +8239,7 @@ type DbAppTagDefinitionSelectCreateManyAndReturn<ExtArgs extends runtime.Types.E
|
|
|
8091
8239
|
createdAt?: boolean;
|
|
8092
8240
|
updatedAt?: boolean;
|
|
8093
8241
|
}, ExtArgs["result"]["dbAppTagDefinition"]>;
|
|
8094
|
-
type DbAppTagDefinitionSelectUpdateManyAndReturn<ExtArgs extends
|
|
8242
|
+
type DbAppTagDefinitionSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
8095
8243
|
id?: boolean;
|
|
8096
8244
|
prefix?: boolean;
|
|
8097
8245
|
displayName?: boolean;
|
|
@@ -8100,11 +8248,11 @@ type DbAppTagDefinitionSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.E
|
|
|
8100
8248
|
createdAt?: boolean;
|
|
8101
8249
|
updatedAt?: boolean;
|
|
8102
8250
|
}, ExtArgs["result"]["dbAppTagDefinition"]>;
|
|
8103
|
-
type DbAppTagDefinitionOmit<ExtArgs extends
|
|
8104
|
-
type $DbAppTagDefinitionPayload<ExtArgs extends
|
|
8251
|
+
type DbAppTagDefinitionOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "prefix" | "displayName" | "description" | "values" | "createdAt" | "updatedAt", ExtArgs["result"]["dbAppTagDefinition"]>;
|
|
8252
|
+
type $DbAppTagDefinitionPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8105
8253
|
name: "DbAppTagDefinition";
|
|
8106
8254
|
objects: {};
|
|
8107
|
-
scalars:
|
|
8255
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
8108
8256
|
id: string;
|
|
8109
8257
|
prefix: string;
|
|
8110
8258
|
displayName: string;
|
|
@@ -8118,10 +8266,10 @@ type $DbAppTagDefinitionPayload<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
8118
8266
|
}, ExtArgs["result"]["dbAppTagDefinition"]>;
|
|
8119
8267
|
composites: {};
|
|
8120
8268
|
};
|
|
8121
|
-
type DbAppTagDefinitionCountArgs<ExtArgs extends
|
|
8269
|
+
type DbAppTagDefinitionCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<DbAppTagDefinitionFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
8122
8270
|
select?: DbAppTagDefinitionCountAggregateInputType | true;
|
|
8123
8271
|
};
|
|
8124
|
-
interface DbAppTagDefinitionDelegate<ExtArgs extends
|
|
8272
|
+
interface DbAppTagDefinitionDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
8125
8273
|
[K: symbol]: {
|
|
8126
8274
|
types: TypeMap<ExtArgs>['model']['DbAppTagDefinition'];
|
|
8127
8275
|
meta: {
|
|
@@ -8139,7 +8287,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8139
8287
|
* }
|
|
8140
8288
|
* })
|
|
8141
8289
|
*/
|
|
8142
|
-
findUnique<T extends DbAppTagDefinitionFindUniqueArgs>(args: SelectSubset<T, DbAppTagDefinitionFindUniqueArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8290
|
+
findUnique<T extends DbAppTagDefinitionFindUniqueArgs>(args: SelectSubset<T, DbAppTagDefinitionFindUniqueArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
8143
8291
|
/**
|
|
8144
8292
|
* Find one DbAppTagDefinition that matches the filter or throw an error with `error.code='P2025'`
|
|
8145
8293
|
* if no matches were found.
|
|
@@ -8152,7 +8300,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8152
8300
|
* }
|
|
8153
8301
|
* })
|
|
8154
8302
|
*/
|
|
8155
|
-
findUniqueOrThrow<T extends DbAppTagDefinitionFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8303
|
+
findUniqueOrThrow<T extends DbAppTagDefinitionFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8156
8304
|
/**
|
|
8157
8305
|
* Find the first DbAppTagDefinition that matches the filter.
|
|
8158
8306
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -8166,7 +8314,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8166
8314
|
* }
|
|
8167
8315
|
* })
|
|
8168
8316
|
*/
|
|
8169
|
-
findFirst<T extends DbAppTagDefinitionFindFirstArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindFirstArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8317
|
+
findFirst<T extends DbAppTagDefinitionFindFirstArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindFirstArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
8170
8318
|
/**
|
|
8171
8319
|
* Find the first DbAppTagDefinition that matches the filter or
|
|
8172
8320
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -8181,7 +8329,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8181
8329
|
* }
|
|
8182
8330
|
* })
|
|
8183
8331
|
*/
|
|
8184
|
-
findFirstOrThrow<T extends DbAppTagDefinitionFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8332
|
+
findFirstOrThrow<T extends DbAppTagDefinitionFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8185
8333
|
/**
|
|
8186
8334
|
* Find zero or more DbAppTagDefinitions that matches the filter.
|
|
8187
8335
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -8198,7 +8346,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8198
8346
|
* const dbAppTagDefinitionWithIdOnly = await prisma.dbAppTagDefinition.findMany({ select: { id: true } })
|
|
8199
8347
|
*
|
|
8200
8348
|
*/
|
|
8201
|
-
findMany<T extends DbAppTagDefinitionFindManyArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
8349
|
+
findMany<T extends DbAppTagDefinitionFindManyArgs>(args?: SelectSubset<T, DbAppTagDefinitionFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
8202
8350
|
/**
|
|
8203
8351
|
* Create a DbAppTagDefinition.
|
|
8204
8352
|
* @param {DbAppTagDefinitionCreateArgs} args - Arguments to create a DbAppTagDefinition.
|
|
@@ -8211,7 +8359,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8211
8359
|
* })
|
|
8212
8360
|
*
|
|
8213
8361
|
*/
|
|
8214
|
-
create<T extends DbAppTagDefinitionCreateArgs>(args: SelectSubset<T, DbAppTagDefinitionCreateArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8362
|
+
create<T extends DbAppTagDefinitionCreateArgs>(args: SelectSubset<T, DbAppTagDefinitionCreateArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8215
8363
|
/**
|
|
8216
8364
|
* Create many DbAppTagDefinitions.
|
|
8217
8365
|
* @param {DbAppTagDefinitionCreateManyArgs} args - Arguments to create many DbAppTagDefinitions.
|
|
@@ -8247,7 +8395,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8247
8395
|
* Read more here: https://pris.ly/d/null-undefined
|
|
8248
8396
|
*
|
|
8249
8397
|
*/
|
|
8250
|
-
createManyAndReturn<T extends DbAppTagDefinitionCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
8398
|
+
createManyAndReturn<T extends DbAppTagDefinitionCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
8251
8399
|
/**
|
|
8252
8400
|
* Delete a DbAppTagDefinition.
|
|
8253
8401
|
* @param {DbAppTagDefinitionDeleteArgs} args - Arguments to delete one DbAppTagDefinition.
|
|
@@ -8260,7 +8408,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8260
8408
|
* })
|
|
8261
8409
|
*
|
|
8262
8410
|
*/
|
|
8263
|
-
delete<T extends DbAppTagDefinitionDeleteArgs>(args: SelectSubset<T, DbAppTagDefinitionDeleteArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8411
|
+
delete<T extends DbAppTagDefinitionDeleteArgs>(args: SelectSubset<T, DbAppTagDefinitionDeleteArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8264
8412
|
/**
|
|
8265
8413
|
* Update one DbAppTagDefinition.
|
|
8266
8414
|
* @param {DbAppTagDefinitionUpdateArgs} args - Arguments to update one DbAppTagDefinition.
|
|
@@ -8276,7 +8424,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8276
8424
|
* })
|
|
8277
8425
|
*
|
|
8278
8426
|
*/
|
|
8279
|
-
update<T extends DbAppTagDefinitionUpdateArgs>(args: SelectSubset<T, DbAppTagDefinitionUpdateArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8427
|
+
update<T extends DbAppTagDefinitionUpdateArgs>(args: SelectSubset<T, DbAppTagDefinitionUpdateArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8280
8428
|
/**
|
|
8281
8429
|
* Delete zero or more DbAppTagDefinitions.
|
|
8282
8430
|
* @param {DbAppTagDefinitionDeleteManyArgs} args - Arguments to filter DbAppTagDefinitions to delete.
|
|
@@ -8336,7 +8484,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8336
8484
|
* Read more here: https://pris.ly/d/null-undefined
|
|
8337
8485
|
*
|
|
8338
8486
|
*/
|
|
8339
|
-
updateManyAndReturn<T extends DbAppTagDefinitionUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
8487
|
+
updateManyAndReturn<T extends DbAppTagDefinitionUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
8340
8488
|
/**
|
|
8341
8489
|
* Create or update one DbAppTagDefinition.
|
|
8342
8490
|
* @param {DbAppTagDefinitionUpsertArgs} args - Arguments to update or create a DbAppTagDefinition.
|
|
@@ -8354,7 +8502,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8354
8502
|
* }
|
|
8355
8503
|
* })
|
|
8356
8504
|
*/
|
|
8357
|
-
upsert<T extends DbAppTagDefinitionUpsertArgs>(args: SelectSubset<T, DbAppTagDefinitionUpsertArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<
|
|
8505
|
+
upsert<T extends DbAppTagDefinitionUpsertArgs>(args: SelectSubset<T, DbAppTagDefinitionUpsertArgs<ExtArgs>>): Prisma__DbAppTagDefinitionClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAppTagDefinitionPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
8358
8506
|
/**
|
|
8359
8507
|
* Count the number of DbAppTagDefinitions.
|
|
8360
8508
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -8368,7 +8516,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8368
8516
|
* }
|
|
8369
8517
|
* })
|
|
8370
8518
|
**/
|
|
8371
|
-
count<T extends DbAppTagDefinitionCountArgs>(args?: Subset<T, DbAppTagDefinitionCountArgs>): PrismaPromise<T extends
|
|
8519
|
+
count<T extends DbAppTagDefinitionCountArgs>(args?: Subset<T, DbAppTagDefinitionCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], DbAppTagDefinitionCountAggregateOutputType> : number>;
|
|
8372
8520
|
/**
|
|
8373
8521
|
* Allows you to perform aggregations operations on a DbAppTagDefinition.
|
|
8374
8522
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -8428,7 +8576,7 @@ interface DbAppTagDefinitionDelegate<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8428
8576
|
* Because we want to prevent naming conflicts as mentioned in
|
|
8429
8577
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
8430
8578
|
*/
|
|
8431
|
-
interface Prisma__DbAppTagDefinitionClient<T, Null = never, ExtArgs extends
|
|
8579
|
+
interface Prisma__DbAppTagDefinitionClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
8432
8580
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
8433
8581
|
/**
|
|
8434
8582
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -8436,20 +8584,20 @@ interface Prisma__DbAppTagDefinitionClient<T, Null = never, ExtArgs extends runt
|
|
|
8436
8584
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
8437
8585
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
8438
8586
|
*/
|
|
8439
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
8587
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
8440
8588
|
/**
|
|
8441
8589
|
* Attaches a callback for only the rejection of the Promise.
|
|
8442
8590
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
8443
8591
|
* @returns A Promise for the completion of the callback.
|
|
8444
8592
|
*/
|
|
8445
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
8593
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
8446
8594
|
/**
|
|
8447
8595
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
8448
8596
|
* resolved value cannot be modified from the callback.
|
|
8449
8597
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
8450
8598
|
* @returns A Promise for the completion of the callback.
|
|
8451
8599
|
*/
|
|
8452
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
8600
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
8453
8601
|
}
|
|
8454
8602
|
/**
|
|
8455
8603
|
* Fields of the DbAppTagDefinition model
|
|
@@ -8466,7 +8614,7 @@ interface DbAppTagDefinitionFieldRefs {
|
|
|
8466
8614
|
/**
|
|
8467
8615
|
* DbAppTagDefinition findUnique
|
|
8468
8616
|
*/
|
|
8469
|
-
type DbAppTagDefinitionFindUniqueArgs<ExtArgs extends
|
|
8617
|
+
type DbAppTagDefinitionFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8470
8618
|
/**
|
|
8471
8619
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8472
8620
|
*/
|
|
@@ -8483,7 +8631,7 @@ type DbAppTagDefinitionFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8483
8631
|
/**
|
|
8484
8632
|
* DbAppTagDefinition findUniqueOrThrow
|
|
8485
8633
|
*/
|
|
8486
|
-
type DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs extends
|
|
8634
|
+
type DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8487
8635
|
/**
|
|
8488
8636
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8489
8637
|
*/
|
|
@@ -8500,7 +8648,7 @@ type DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Exten
|
|
|
8500
8648
|
/**
|
|
8501
8649
|
* DbAppTagDefinition findFirst
|
|
8502
8650
|
*/
|
|
8503
|
-
type DbAppTagDefinitionFindFirstArgs<ExtArgs extends
|
|
8651
|
+
type DbAppTagDefinitionFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8504
8652
|
/**
|
|
8505
8653
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8506
8654
|
*/
|
|
@@ -8547,7 +8695,7 @@ type DbAppTagDefinitionFindFirstArgs<ExtArgs extends runtime.Types.Extensions.In
|
|
|
8547
8695
|
/**
|
|
8548
8696
|
* DbAppTagDefinition findFirstOrThrow
|
|
8549
8697
|
*/
|
|
8550
|
-
type DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs extends
|
|
8698
|
+
type DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8551
8699
|
/**
|
|
8552
8700
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8553
8701
|
*/
|
|
@@ -8594,7 +8742,7 @@ type DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extens
|
|
|
8594
8742
|
/**
|
|
8595
8743
|
* DbAppTagDefinition findMany
|
|
8596
8744
|
*/
|
|
8597
|
-
type DbAppTagDefinitionFindManyArgs<ExtArgs extends
|
|
8745
|
+
type DbAppTagDefinitionFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8598
8746
|
/**
|
|
8599
8747
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8600
8748
|
*/
|
|
@@ -8636,7 +8784,7 @@ type DbAppTagDefinitionFindManyArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
8636
8784
|
/**
|
|
8637
8785
|
* DbAppTagDefinition create
|
|
8638
8786
|
*/
|
|
8639
|
-
type DbAppTagDefinitionCreateArgs<ExtArgs extends
|
|
8787
|
+
type DbAppTagDefinitionCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8640
8788
|
/**
|
|
8641
8789
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8642
8790
|
*/
|
|
@@ -8653,7 +8801,7 @@ type DbAppTagDefinitionCreateArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
8653
8801
|
/**
|
|
8654
8802
|
* DbAppTagDefinition createMany
|
|
8655
8803
|
*/
|
|
8656
|
-
type DbAppTagDefinitionCreateManyArgs<ExtArgs extends
|
|
8804
|
+
type DbAppTagDefinitionCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8657
8805
|
/**
|
|
8658
8806
|
* The data used to create many DbAppTagDefinitions.
|
|
8659
8807
|
*/
|
|
@@ -8663,7 +8811,7 @@ type DbAppTagDefinitionCreateManyArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8663
8811
|
/**
|
|
8664
8812
|
* DbAppTagDefinition createManyAndReturn
|
|
8665
8813
|
*/
|
|
8666
|
-
type DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs extends
|
|
8814
|
+
type DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8667
8815
|
/**
|
|
8668
8816
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8669
8817
|
*/
|
|
@@ -8681,7 +8829,7 @@ type DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Ext
|
|
|
8681
8829
|
/**
|
|
8682
8830
|
* DbAppTagDefinition update
|
|
8683
8831
|
*/
|
|
8684
|
-
type DbAppTagDefinitionUpdateArgs<ExtArgs extends
|
|
8832
|
+
type DbAppTagDefinitionUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8685
8833
|
/**
|
|
8686
8834
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8687
8835
|
*/
|
|
@@ -8702,7 +8850,7 @@ type DbAppTagDefinitionUpdateArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
8702
8850
|
/**
|
|
8703
8851
|
* DbAppTagDefinition updateMany
|
|
8704
8852
|
*/
|
|
8705
|
-
type DbAppTagDefinitionUpdateManyArgs<ExtArgs extends
|
|
8853
|
+
type DbAppTagDefinitionUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8706
8854
|
/**
|
|
8707
8855
|
* The data used to update DbAppTagDefinitions.
|
|
8708
8856
|
*/
|
|
@@ -8719,7 +8867,7 @@ type DbAppTagDefinitionUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
8719
8867
|
/**
|
|
8720
8868
|
* DbAppTagDefinition updateManyAndReturn
|
|
8721
8869
|
*/
|
|
8722
|
-
type DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs extends
|
|
8870
|
+
type DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8723
8871
|
/**
|
|
8724
8872
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8725
8873
|
*/
|
|
@@ -8744,7 +8892,7 @@ type DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Ext
|
|
|
8744
8892
|
/**
|
|
8745
8893
|
* DbAppTagDefinition upsert
|
|
8746
8894
|
*/
|
|
8747
|
-
type DbAppTagDefinitionUpsertArgs<ExtArgs extends
|
|
8895
|
+
type DbAppTagDefinitionUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8748
8896
|
/**
|
|
8749
8897
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8750
8898
|
*/
|
|
@@ -8769,7 +8917,7 @@ type DbAppTagDefinitionUpsertArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
8769
8917
|
/**
|
|
8770
8918
|
* DbAppTagDefinition delete
|
|
8771
8919
|
*/
|
|
8772
|
-
type DbAppTagDefinitionDeleteArgs<ExtArgs extends
|
|
8920
|
+
type DbAppTagDefinitionDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8773
8921
|
/**
|
|
8774
8922
|
* Select specific fields to fetch from the DbAppTagDefinition
|
|
8775
8923
|
*/
|
|
@@ -8786,7 +8934,7 @@ type DbAppTagDefinitionDeleteArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
8786
8934
|
/**
|
|
8787
8935
|
* DbAppTagDefinition deleteMany
|
|
8788
8936
|
*/
|
|
8789
|
-
type DbAppTagDefinitionDeleteManyArgs<ExtArgs extends
|
|
8937
|
+
type DbAppTagDefinitionDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8790
8938
|
/**
|
|
8791
8939
|
* Filter which DbAppTagDefinitions to delete
|
|
8792
8940
|
*/
|
|
@@ -8819,7 +8967,7 @@ type DbAssetMinAggregateOutputType = {
|
|
|
8819
8967
|
id: string | null;
|
|
8820
8968
|
name: string | null;
|
|
8821
8969
|
assetType: AssetType | null;
|
|
8822
|
-
content:
|
|
8970
|
+
content: _prisma_client_runtime_client0.Bytes | null;
|
|
8823
8971
|
checksum: string | null;
|
|
8824
8972
|
mimeType: string | null;
|
|
8825
8973
|
fileSize: number | null;
|
|
@@ -8832,7 +8980,7 @@ type DbAssetMaxAggregateOutputType = {
|
|
|
8832
8980
|
id: string | null;
|
|
8833
8981
|
name: string | null;
|
|
8834
8982
|
assetType: AssetType | null;
|
|
8835
|
-
content:
|
|
8983
|
+
content: _prisma_client_runtime_client0.Bytes | null;
|
|
8836
8984
|
checksum: string | null;
|
|
8837
8985
|
mimeType: string | null;
|
|
8838
8986
|
fileSize: number | null;
|
|
@@ -8905,7 +9053,7 @@ type DbAssetCountAggregateInputType = {
|
|
|
8905
9053
|
updatedAt?: true;
|
|
8906
9054
|
_all?: true;
|
|
8907
9055
|
};
|
|
8908
|
-
type DbAssetAggregateArgs<ExtArgs extends
|
|
9056
|
+
type DbAssetAggregateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8909
9057
|
/**
|
|
8910
9058
|
* Filter which DbAsset to aggregate.
|
|
8911
9059
|
*/
|
|
@@ -8966,7 +9114,7 @@ type DbAssetAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
8966
9114
|
_max?: DbAssetMaxAggregateInputType;
|
|
8967
9115
|
};
|
|
8968
9116
|
type GetDbAssetAggregateType<T extends DbAssetAggregateArgs> = { [P in keyof T & keyof AggregateDbAsset]: P extends '_count' | 'count' ? T[P] extends true ? number : GetScalarType<T[P], AggregateDbAsset[P]> : GetScalarType<T[P], AggregateDbAsset[P]> };
|
|
8969
|
-
type DbAssetGroupByArgs<ExtArgs extends
|
|
9117
|
+
type DbAssetGroupByArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
8970
9118
|
where?: DbAssetWhereInput;
|
|
8971
9119
|
orderBy?: DbAssetOrderByWithAggregationInput | DbAssetOrderByWithAggregationInput[];
|
|
8972
9120
|
by: DbAssetScalarFieldEnum[] | DbAssetScalarFieldEnum;
|
|
@@ -8983,7 +9131,7 @@ type DbAssetGroupByOutputType = {
|
|
|
8983
9131
|
id: string;
|
|
8984
9132
|
name: string;
|
|
8985
9133
|
assetType: AssetType;
|
|
8986
|
-
content:
|
|
9134
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
8987
9135
|
checksum: string;
|
|
8988
9136
|
mimeType: string;
|
|
8989
9137
|
fileSize: number;
|
|
@@ -9005,7 +9153,7 @@ type DbAssetWhereInput = {
|
|
|
9005
9153
|
id?: StringFilter<"DbAsset"> | string;
|
|
9006
9154
|
name?: StringFilter<"DbAsset"> | string;
|
|
9007
9155
|
assetType?: EnumAssetTypeFilter<"DbAsset"> | AssetType;
|
|
9008
|
-
content?: BytesFilter<"DbAsset"> |
|
|
9156
|
+
content?: BytesFilter<"DbAsset"> | _prisma_client_runtime_client0.Bytes;
|
|
9009
9157
|
checksum?: StringFilter<"DbAsset"> | string;
|
|
9010
9158
|
mimeType?: StringFilter<"DbAsset"> | string;
|
|
9011
9159
|
fileSize?: IntFilter<"DbAsset"> | number;
|
|
@@ -9034,7 +9182,7 @@ type DbAssetWhereUniqueInput = AtLeast<{
|
|
|
9034
9182
|
OR?: DbAssetWhereInput[];
|
|
9035
9183
|
NOT?: DbAssetWhereInput | DbAssetWhereInput[];
|
|
9036
9184
|
assetType?: EnumAssetTypeFilter<"DbAsset"> | AssetType;
|
|
9037
|
-
content?: BytesFilter<"DbAsset"> |
|
|
9185
|
+
content?: BytesFilter<"DbAsset"> | _prisma_client_runtime_client0.Bytes;
|
|
9038
9186
|
checksum?: StringFilter<"DbAsset"> | string;
|
|
9039
9187
|
mimeType?: StringFilter<"DbAsset"> | string;
|
|
9040
9188
|
fileSize?: IntFilter<"DbAsset"> | number;
|
|
@@ -9068,7 +9216,7 @@ type DbAssetScalarWhereWithAggregatesInput = {
|
|
|
9068
9216
|
id?: StringWithAggregatesFilter<"DbAsset"> | string;
|
|
9069
9217
|
name?: StringWithAggregatesFilter<"DbAsset"> | string;
|
|
9070
9218
|
assetType?: EnumAssetTypeWithAggregatesFilter<"DbAsset"> | AssetType;
|
|
9071
|
-
content?: BytesWithAggregatesFilter<"DbAsset"> |
|
|
9219
|
+
content?: BytesWithAggregatesFilter<"DbAsset"> | _prisma_client_runtime_client0.Bytes;
|
|
9072
9220
|
checksum?: StringWithAggregatesFilter<"DbAsset"> | string;
|
|
9073
9221
|
mimeType?: StringWithAggregatesFilter<"DbAsset"> | string;
|
|
9074
9222
|
fileSize?: IntWithAggregatesFilter<"DbAsset"> | number;
|
|
@@ -9081,7 +9229,7 @@ type DbAssetCreateInput = {
|
|
|
9081
9229
|
id?: string;
|
|
9082
9230
|
name: string;
|
|
9083
9231
|
assetType?: AssetType;
|
|
9084
|
-
content:
|
|
9232
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
9085
9233
|
checksum: string;
|
|
9086
9234
|
mimeType: string;
|
|
9087
9235
|
fileSize: number;
|
|
@@ -9094,7 +9242,7 @@ type DbAssetUncheckedCreateInput = {
|
|
|
9094
9242
|
id?: string;
|
|
9095
9243
|
name: string;
|
|
9096
9244
|
assetType?: AssetType;
|
|
9097
|
-
content:
|
|
9245
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
9098
9246
|
checksum: string;
|
|
9099
9247
|
mimeType: string;
|
|
9100
9248
|
fileSize: number;
|
|
@@ -9107,7 +9255,7 @@ type DbAssetUpdateInput = {
|
|
|
9107
9255
|
id?: StringFieldUpdateOperationsInput | string;
|
|
9108
9256
|
name?: StringFieldUpdateOperationsInput | string;
|
|
9109
9257
|
assetType?: EnumAssetTypeFieldUpdateOperationsInput | AssetType;
|
|
9110
|
-
content?: BytesFieldUpdateOperationsInput |
|
|
9258
|
+
content?: BytesFieldUpdateOperationsInput | _prisma_client_runtime_client0.Bytes;
|
|
9111
9259
|
checksum?: StringFieldUpdateOperationsInput | string;
|
|
9112
9260
|
mimeType?: StringFieldUpdateOperationsInput | string;
|
|
9113
9261
|
fileSize?: IntFieldUpdateOperationsInput | number;
|
|
@@ -9120,7 +9268,7 @@ type DbAssetUncheckedUpdateInput = {
|
|
|
9120
9268
|
id?: StringFieldUpdateOperationsInput | string;
|
|
9121
9269
|
name?: StringFieldUpdateOperationsInput | string;
|
|
9122
9270
|
assetType?: EnumAssetTypeFieldUpdateOperationsInput | AssetType;
|
|
9123
|
-
content?: BytesFieldUpdateOperationsInput |
|
|
9271
|
+
content?: BytesFieldUpdateOperationsInput | _prisma_client_runtime_client0.Bytes;
|
|
9124
9272
|
checksum?: StringFieldUpdateOperationsInput | string;
|
|
9125
9273
|
mimeType?: StringFieldUpdateOperationsInput | string;
|
|
9126
9274
|
fileSize?: IntFieldUpdateOperationsInput | number;
|
|
@@ -9133,7 +9281,7 @@ type DbAssetCreateManyInput = {
|
|
|
9133
9281
|
id?: string;
|
|
9134
9282
|
name: string;
|
|
9135
9283
|
assetType?: AssetType;
|
|
9136
|
-
content:
|
|
9284
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
9137
9285
|
checksum: string;
|
|
9138
9286
|
mimeType: string;
|
|
9139
9287
|
fileSize: number;
|
|
@@ -9146,7 +9294,7 @@ type DbAssetUpdateManyMutationInput = {
|
|
|
9146
9294
|
id?: StringFieldUpdateOperationsInput | string;
|
|
9147
9295
|
name?: StringFieldUpdateOperationsInput | string;
|
|
9148
9296
|
assetType?: EnumAssetTypeFieldUpdateOperationsInput | AssetType;
|
|
9149
|
-
content?: BytesFieldUpdateOperationsInput |
|
|
9297
|
+
content?: BytesFieldUpdateOperationsInput | _prisma_client_runtime_client0.Bytes;
|
|
9150
9298
|
checksum?: StringFieldUpdateOperationsInput | string;
|
|
9151
9299
|
mimeType?: StringFieldUpdateOperationsInput | string;
|
|
9152
9300
|
fileSize?: IntFieldUpdateOperationsInput | number;
|
|
@@ -9159,7 +9307,7 @@ type DbAssetUncheckedUpdateManyInput = {
|
|
|
9159
9307
|
id?: StringFieldUpdateOperationsInput | string;
|
|
9160
9308
|
name?: StringFieldUpdateOperationsInput | string;
|
|
9161
9309
|
assetType?: EnumAssetTypeFieldUpdateOperationsInput | AssetType;
|
|
9162
|
-
content?: BytesFieldUpdateOperationsInput |
|
|
9310
|
+
content?: BytesFieldUpdateOperationsInput | _prisma_client_runtime_client0.Bytes;
|
|
9163
9311
|
checksum?: StringFieldUpdateOperationsInput | string;
|
|
9164
9312
|
mimeType?: StringFieldUpdateOperationsInput | string;
|
|
9165
9313
|
fileSize?: IntFieldUpdateOperationsInput | number;
|
|
@@ -9221,7 +9369,7 @@ type EnumAssetTypeFieldUpdateOperationsInput = {
|
|
|
9221
9369
|
set?: AssetType;
|
|
9222
9370
|
};
|
|
9223
9371
|
type BytesFieldUpdateOperationsInput = {
|
|
9224
|
-
set?:
|
|
9372
|
+
set?: _prisma_client_runtime_client0.Bytes;
|
|
9225
9373
|
};
|
|
9226
9374
|
type IntFieldUpdateOperationsInput = {
|
|
9227
9375
|
set?: number;
|
|
@@ -9237,7 +9385,7 @@ type NullableIntFieldUpdateOperationsInput = {
|
|
|
9237
9385
|
multiply?: number;
|
|
9238
9386
|
divide?: number;
|
|
9239
9387
|
};
|
|
9240
|
-
type DbAssetSelect<ExtArgs extends
|
|
9388
|
+
type DbAssetSelect<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
9241
9389
|
id?: boolean;
|
|
9242
9390
|
name?: boolean;
|
|
9243
9391
|
assetType?: boolean;
|
|
@@ -9250,7 +9398,7 @@ type DbAssetSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runti
|
|
|
9250
9398
|
createdAt?: boolean;
|
|
9251
9399
|
updatedAt?: boolean;
|
|
9252
9400
|
}, ExtArgs["result"]["dbAsset"]>;
|
|
9253
|
-
type DbAssetSelectCreateManyAndReturn<ExtArgs extends
|
|
9401
|
+
type DbAssetSelectCreateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
9254
9402
|
id?: boolean;
|
|
9255
9403
|
name?: boolean;
|
|
9256
9404
|
assetType?: boolean;
|
|
@@ -9263,7 +9411,7 @@ type DbAssetSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
9263
9411
|
createdAt?: boolean;
|
|
9264
9412
|
updatedAt?: boolean;
|
|
9265
9413
|
}, ExtArgs["result"]["dbAsset"]>;
|
|
9266
|
-
type DbAssetSelectUpdateManyAndReturn<ExtArgs extends
|
|
9414
|
+
type DbAssetSelectUpdateManyAndReturn<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetSelect<{
|
|
9267
9415
|
id?: boolean;
|
|
9268
9416
|
name?: boolean;
|
|
9269
9417
|
assetType?: boolean;
|
|
@@ -9276,15 +9424,15 @@ type DbAssetSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.I
|
|
|
9276
9424
|
createdAt?: boolean;
|
|
9277
9425
|
updatedAt?: boolean;
|
|
9278
9426
|
}, ExtArgs["result"]["dbAsset"]>;
|
|
9279
|
-
type DbAssetOmit<ExtArgs extends
|
|
9280
|
-
type $DbAssetPayload<ExtArgs extends
|
|
9427
|
+
type DbAssetOmit<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = _prisma_client_runtime_client0.Types.Extensions.GetOmit<"id" | "name" | "assetType" | "content" | "checksum" | "mimeType" | "fileSize" | "width" | "height" | "createdAt" | "updatedAt", ExtArgs["result"]["dbAsset"]>;
|
|
9428
|
+
type $DbAssetPayload<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9281
9429
|
name: "DbAsset";
|
|
9282
9430
|
objects: {};
|
|
9283
|
-
scalars:
|
|
9431
|
+
scalars: _prisma_client_runtime_client0.Types.Extensions.GetPayloadResult<{
|
|
9284
9432
|
id: string;
|
|
9285
9433
|
name: string;
|
|
9286
9434
|
assetType: AssetType;
|
|
9287
|
-
content:
|
|
9435
|
+
content: _prisma_client_runtime_client0.Bytes;
|
|
9288
9436
|
checksum: string;
|
|
9289
9437
|
mimeType: string;
|
|
9290
9438
|
fileSize: number;
|
|
@@ -9295,10 +9443,10 @@ type $DbAssetPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = run
|
|
|
9295
9443
|
}, ExtArgs["result"]["dbAsset"]>;
|
|
9296
9444
|
composites: {};
|
|
9297
9445
|
};
|
|
9298
|
-
type DbAssetCountArgs<ExtArgs extends
|
|
9446
|
+
type DbAssetCountArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = Omit<DbAssetFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
9299
9447
|
select?: DbAssetCountAggregateInputType | true;
|
|
9300
9448
|
};
|
|
9301
|
-
interface DbAssetDelegate<ExtArgs extends
|
|
9449
|
+
interface DbAssetDelegate<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
9302
9450
|
[K: symbol]: {
|
|
9303
9451
|
types: TypeMap<ExtArgs>['model']['DbAsset'];
|
|
9304
9452
|
meta: {
|
|
@@ -9316,7 +9464,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9316
9464
|
* }
|
|
9317
9465
|
* })
|
|
9318
9466
|
*/
|
|
9319
|
-
findUnique<T extends DbAssetFindUniqueArgs>(args: SelectSubset<T, DbAssetFindUniqueArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9467
|
+
findUnique<T extends DbAssetFindUniqueArgs>(args: SelectSubset<T, DbAssetFindUniqueArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
9320
9468
|
/**
|
|
9321
9469
|
* Find one DbAsset that matches the filter or throw an error with `error.code='P2025'`
|
|
9322
9470
|
* if no matches were found.
|
|
@@ -9329,7 +9477,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9329
9477
|
* }
|
|
9330
9478
|
* })
|
|
9331
9479
|
*/
|
|
9332
|
-
findUniqueOrThrow<T extends DbAssetFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAssetFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9480
|
+
findUniqueOrThrow<T extends DbAssetFindUniqueOrThrowArgs>(args: SelectSubset<T, DbAssetFindUniqueOrThrowArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9333
9481
|
/**
|
|
9334
9482
|
* Find the first DbAsset that matches the filter.
|
|
9335
9483
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -9343,7 +9491,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9343
9491
|
* }
|
|
9344
9492
|
* })
|
|
9345
9493
|
*/
|
|
9346
|
-
findFirst<T extends DbAssetFindFirstArgs>(args?: SelectSubset<T, DbAssetFindFirstArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9494
|
+
findFirst<T extends DbAssetFindFirstArgs>(args?: SelectSubset<T, DbAssetFindFirstArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>;
|
|
9347
9495
|
/**
|
|
9348
9496
|
* Find the first DbAsset that matches the filter or
|
|
9349
9497
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
@@ -9358,7 +9506,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9358
9506
|
* }
|
|
9359
9507
|
* })
|
|
9360
9508
|
*/
|
|
9361
|
-
findFirstOrThrow<T extends DbAssetFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAssetFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9509
|
+
findFirstOrThrow<T extends DbAssetFindFirstOrThrowArgs>(args?: SelectSubset<T, DbAssetFindFirstOrThrowArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9362
9510
|
/**
|
|
9363
9511
|
* Find zero or more DbAssets that matches the filter.
|
|
9364
9512
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -9375,7 +9523,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9375
9523
|
* const dbAssetWithIdOnly = await prisma.dbAsset.findMany({ select: { id: true } })
|
|
9376
9524
|
*
|
|
9377
9525
|
*/
|
|
9378
|
-
findMany<T extends DbAssetFindManyArgs>(args?: SelectSubset<T, DbAssetFindManyArgs<ExtArgs>>): PrismaPromise<
|
|
9526
|
+
findMany<T extends DbAssetFindManyArgs>(args?: SelectSubset<T, DbAssetFindManyArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>;
|
|
9379
9527
|
/**
|
|
9380
9528
|
* Create a DbAsset.
|
|
9381
9529
|
* @param {DbAssetCreateArgs} args - Arguments to create a DbAsset.
|
|
@@ -9388,7 +9536,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9388
9536
|
* })
|
|
9389
9537
|
*
|
|
9390
9538
|
*/
|
|
9391
|
-
create<T extends DbAssetCreateArgs>(args: SelectSubset<T, DbAssetCreateArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9539
|
+
create<T extends DbAssetCreateArgs>(args: SelectSubset<T, DbAssetCreateArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9392
9540
|
/**
|
|
9393
9541
|
* Create many DbAssets.
|
|
9394
9542
|
* @param {DbAssetCreateManyArgs} args - Arguments to create many DbAssets.
|
|
@@ -9424,7 +9572,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9424
9572
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9425
9573
|
*
|
|
9426
9574
|
*/
|
|
9427
|
-
createManyAndReturn<T extends DbAssetCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAssetCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
9575
|
+
createManyAndReturn<T extends DbAssetCreateManyAndReturnArgs>(args?: SelectSubset<T, DbAssetCreateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>;
|
|
9428
9576
|
/**
|
|
9429
9577
|
* Delete a DbAsset.
|
|
9430
9578
|
* @param {DbAssetDeleteArgs} args - Arguments to delete one DbAsset.
|
|
@@ -9437,7 +9585,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9437
9585
|
* })
|
|
9438
9586
|
*
|
|
9439
9587
|
*/
|
|
9440
|
-
delete<T extends DbAssetDeleteArgs>(args: SelectSubset<T, DbAssetDeleteArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9588
|
+
delete<T extends DbAssetDeleteArgs>(args: SelectSubset<T, DbAssetDeleteArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9441
9589
|
/**
|
|
9442
9590
|
* Update one DbAsset.
|
|
9443
9591
|
* @param {DbAssetUpdateArgs} args - Arguments to update one DbAsset.
|
|
@@ -9453,7 +9601,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9453
9601
|
* })
|
|
9454
9602
|
*
|
|
9455
9603
|
*/
|
|
9456
|
-
update<T extends DbAssetUpdateArgs>(args: SelectSubset<T, DbAssetUpdateArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9604
|
+
update<T extends DbAssetUpdateArgs>(args: SelectSubset<T, DbAssetUpdateArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9457
9605
|
/**
|
|
9458
9606
|
* Delete zero or more DbAssets.
|
|
9459
9607
|
* @param {DbAssetDeleteManyArgs} args - Arguments to filter DbAssets to delete.
|
|
@@ -9513,7 +9661,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9513
9661
|
* Read more here: https://pris.ly/d/null-undefined
|
|
9514
9662
|
*
|
|
9515
9663
|
*/
|
|
9516
|
-
updateManyAndReturn<T extends DbAssetUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAssetUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<
|
|
9664
|
+
updateManyAndReturn<T extends DbAssetUpdateManyAndReturnArgs>(args: SelectSubset<T, DbAssetUpdateManyAndReturnArgs<ExtArgs>>): PrismaPromise<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>;
|
|
9517
9665
|
/**
|
|
9518
9666
|
* Create or update one DbAsset.
|
|
9519
9667
|
* @param {DbAssetUpsertArgs} args - Arguments to update or create a DbAsset.
|
|
@@ -9531,7 +9679,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9531
9679
|
* }
|
|
9532
9680
|
* })
|
|
9533
9681
|
*/
|
|
9534
|
-
upsert<T extends DbAssetUpsertArgs>(args: SelectSubset<T, DbAssetUpsertArgs<ExtArgs>>): Prisma__DbAssetClient<
|
|
9682
|
+
upsert<T extends DbAssetUpsertArgs>(args: SelectSubset<T, DbAssetUpsertArgs<ExtArgs>>): Prisma__DbAssetClient<_prisma_client_runtime_client0.Types.Result.GetResult<$DbAssetPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>;
|
|
9535
9683
|
/**
|
|
9536
9684
|
* Count the number of DbAssets.
|
|
9537
9685
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -9545,7 +9693,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9545
9693
|
* }
|
|
9546
9694
|
* })
|
|
9547
9695
|
**/
|
|
9548
|
-
count<T extends DbAssetCountArgs>(args?: Subset<T, DbAssetCountArgs>): PrismaPromise<T extends
|
|
9696
|
+
count<T extends DbAssetCountArgs>(args?: Subset<T, DbAssetCountArgs>): PrismaPromise<T extends _prisma_client_runtime_client0.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : GetScalarType<T['select'], DbAssetCountAggregateOutputType> : number>;
|
|
9549
9697
|
/**
|
|
9550
9698
|
* Allows you to perform aggregations operations on a DbAsset.
|
|
9551
9699
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
@@ -9605,7 +9753,7 @@ interface DbAssetDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9605
9753
|
* Because we want to prevent naming conflicts as mentioned in
|
|
9606
9754
|
* https://github.com/prisma/prisma-client-js/issues/707
|
|
9607
9755
|
*/
|
|
9608
|
-
interface Prisma__DbAssetClient<T, Null = never, ExtArgs extends
|
|
9756
|
+
interface Prisma__DbAssetClient<T, Null = never, ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends PrismaPromise<T> {
|
|
9609
9757
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
9610
9758
|
/**
|
|
9611
9759
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -9613,20 +9761,20 @@ interface Prisma__DbAssetClient<T, Null = never, ExtArgs extends runtime.Types.E
|
|
|
9613
9761
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
9614
9762
|
* @returns A Promise for the completion of which ever callback is executed.
|
|
9615
9763
|
*/
|
|
9616
|
-
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null):
|
|
9764
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<TResult1 | TResult2>;
|
|
9617
9765
|
/**
|
|
9618
9766
|
* Attaches a callback for only the rejection of the Promise.
|
|
9619
9767
|
* @param onrejected The callback to execute when the Promise is rejected.
|
|
9620
9768
|
* @returns A Promise for the completion of the callback.
|
|
9621
9769
|
*/
|
|
9622
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null):
|
|
9770
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T | TResult>;
|
|
9623
9771
|
/**
|
|
9624
9772
|
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
9625
9773
|
* resolved value cannot be modified from the callback.
|
|
9626
9774
|
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
9627
9775
|
* @returns A Promise for the completion of the callback.
|
|
9628
9776
|
*/
|
|
9629
|
-
finally(onfinally?: (() => void) | undefined | null):
|
|
9777
|
+
finally(onfinally?: (() => void) | undefined | null): _prisma_client_runtime_client0.Types.Utils.JsPromise<T>;
|
|
9630
9778
|
}
|
|
9631
9779
|
/**
|
|
9632
9780
|
* Fields of the DbAsset model
|
|
@@ -9647,7 +9795,7 @@ interface DbAssetFieldRefs {
|
|
|
9647
9795
|
/**
|
|
9648
9796
|
* DbAsset findUnique
|
|
9649
9797
|
*/
|
|
9650
|
-
type DbAssetFindUniqueArgs<ExtArgs extends
|
|
9798
|
+
type DbAssetFindUniqueArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9651
9799
|
/**
|
|
9652
9800
|
* Select specific fields to fetch from the DbAsset
|
|
9653
9801
|
*/
|
|
@@ -9664,7 +9812,7 @@ type DbAssetFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9664
9812
|
/**
|
|
9665
9813
|
* DbAsset findUniqueOrThrow
|
|
9666
9814
|
*/
|
|
9667
|
-
type DbAssetFindUniqueOrThrowArgs<ExtArgs extends
|
|
9815
|
+
type DbAssetFindUniqueOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9668
9816
|
/**
|
|
9669
9817
|
* Select specific fields to fetch from the DbAsset
|
|
9670
9818
|
*/
|
|
@@ -9681,7 +9829,7 @@ type DbAssetFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
9681
9829
|
/**
|
|
9682
9830
|
* DbAsset findFirst
|
|
9683
9831
|
*/
|
|
9684
|
-
type DbAssetFindFirstArgs<ExtArgs extends
|
|
9832
|
+
type DbAssetFindFirstArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9685
9833
|
/**
|
|
9686
9834
|
* Select specific fields to fetch from the DbAsset
|
|
9687
9835
|
*/
|
|
@@ -9728,7 +9876,7 @@ type DbAssetFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9728
9876
|
/**
|
|
9729
9877
|
* DbAsset findFirstOrThrow
|
|
9730
9878
|
*/
|
|
9731
|
-
type DbAssetFindFirstOrThrowArgs<ExtArgs extends
|
|
9879
|
+
type DbAssetFindFirstOrThrowArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9732
9880
|
/**
|
|
9733
9881
|
* Select specific fields to fetch from the DbAsset
|
|
9734
9882
|
*/
|
|
@@ -9775,7 +9923,7 @@ type DbAssetFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
9775
9923
|
/**
|
|
9776
9924
|
* DbAsset findMany
|
|
9777
9925
|
*/
|
|
9778
|
-
type DbAssetFindManyArgs<ExtArgs extends
|
|
9926
|
+
type DbAssetFindManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9779
9927
|
/**
|
|
9780
9928
|
* Select specific fields to fetch from the DbAsset
|
|
9781
9929
|
*/
|
|
@@ -9817,7 +9965,7 @@ type DbAssetFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
9817
9965
|
/**
|
|
9818
9966
|
* DbAsset create
|
|
9819
9967
|
*/
|
|
9820
|
-
type DbAssetCreateArgs<ExtArgs extends
|
|
9968
|
+
type DbAssetCreateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9821
9969
|
/**
|
|
9822
9970
|
* Select specific fields to fetch from the DbAsset
|
|
9823
9971
|
*/
|
|
@@ -9834,7 +9982,7 @@ type DbAssetCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
9834
9982
|
/**
|
|
9835
9983
|
* DbAsset createMany
|
|
9836
9984
|
*/
|
|
9837
|
-
type DbAssetCreateManyArgs<ExtArgs extends
|
|
9985
|
+
type DbAssetCreateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9838
9986
|
/**
|
|
9839
9987
|
* The data used to create many DbAssets.
|
|
9840
9988
|
*/
|
|
@@ -9844,7 +9992,7 @@ type DbAssetCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9844
9992
|
/**
|
|
9845
9993
|
* DbAsset createManyAndReturn
|
|
9846
9994
|
*/
|
|
9847
|
-
type DbAssetCreateManyAndReturnArgs<ExtArgs extends
|
|
9995
|
+
type DbAssetCreateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9848
9996
|
/**
|
|
9849
9997
|
* Select specific fields to fetch from the DbAsset
|
|
9850
9998
|
*/
|
|
@@ -9862,7 +10010,7 @@ type DbAssetCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
9862
10010
|
/**
|
|
9863
10011
|
* DbAsset update
|
|
9864
10012
|
*/
|
|
9865
|
-
type DbAssetUpdateArgs<ExtArgs extends
|
|
10013
|
+
type DbAssetUpdateArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9866
10014
|
/**
|
|
9867
10015
|
* Select specific fields to fetch from the DbAsset
|
|
9868
10016
|
*/
|
|
@@ -9883,7 +10031,7 @@ type DbAssetUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
9883
10031
|
/**
|
|
9884
10032
|
* DbAsset updateMany
|
|
9885
10033
|
*/
|
|
9886
|
-
type DbAssetUpdateManyArgs<ExtArgs extends
|
|
10034
|
+
type DbAssetUpdateManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9887
10035
|
/**
|
|
9888
10036
|
* The data used to update DbAssets.
|
|
9889
10037
|
*/
|
|
@@ -9900,7 +10048,7 @@ type DbAssetUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
9900
10048
|
/**
|
|
9901
10049
|
* DbAsset updateManyAndReturn
|
|
9902
10050
|
*/
|
|
9903
|
-
type DbAssetUpdateManyAndReturnArgs<ExtArgs extends
|
|
10051
|
+
type DbAssetUpdateManyAndReturnArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9904
10052
|
/**
|
|
9905
10053
|
* Select specific fields to fetch from the DbAsset
|
|
9906
10054
|
*/
|
|
@@ -9925,7 +10073,7 @@ type DbAssetUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
9925
10073
|
/**
|
|
9926
10074
|
* DbAsset upsert
|
|
9927
10075
|
*/
|
|
9928
|
-
type DbAssetUpsertArgs<ExtArgs extends
|
|
10076
|
+
type DbAssetUpsertArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9929
10077
|
/**
|
|
9930
10078
|
* Select specific fields to fetch from the DbAsset
|
|
9931
10079
|
*/
|
|
@@ -9950,7 +10098,7 @@ type DbAssetUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
9950
10098
|
/**
|
|
9951
10099
|
* DbAsset delete
|
|
9952
10100
|
*/
|
|
9953
|
-
type DbAssetDeleteArgs<ExtArgs extends
|
|
10101
|
+
type DbAssetDeleteArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9954
10102
|
/**
|
|
9955
10103
|
* Select specific fields to fetch from the DbAsset
|
|
9956
10104
|
*/
|
|
@@ -9967,7 +10115,7 @@ type DbAssetDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
9967
10115
|
/**
|
|
9968
10116
|
* DbAsset deleteMany
|
|
9969
10117
|
*/
|
|
9970
|
-
type DbAssetDeleteManyArgs<ExtArgs extends
|
|
10118
|
+
type DbAssetDeleteManyArgs<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = {
|
|
9971
10119
|
/**
|
|
9972
10120
|
* Filter which DbAssets to delete
|
|
9973
10121
|
*/
|
|
@@ -10110,20 +10258,20 @@ type EnumApprovalMethodTypeFilter<$PrismaModel = never> = {
|
|
|
10110
10258
|
};
|
|
10111
10259
|
type JsonNullableFilter<$PrismaModel = never> = PatchUndefined<Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
10112
10260
|
type JsonNullableFilterBase<$PrismaModel = never> = {
|
|
10113
|
-
equals?:
|
|
10261
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10114
10262
|
path?: string[];
|
|
10115
10263
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10116
10264
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10117
10265
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10118
10266
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10119
|
-
array_starts_with?:
|
|
10120
|
-
array_ends_with?:
|
|
10121
|
-
array_contains?:
|
|
10122
|
-
lt?:
|
|
10123
|
-
lte?:
|
|
10124
|
-
gt?:
|
|
10125
|
-
gte?:
|
|
10126
|
-
not?:
|
|
10267
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10268
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10269
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10270
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10271
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10272
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10273
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10274
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10127
10275
|
};
|
|
10128
10276
|
type EnumApprovalMethodTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
10129
10277
|
equals?: ApprovalMethodType$1 | EnumApprovalMethodTypeFieldRefInput<$PrismaModel>;
|
|
@@ -10136,57 +10284,57 @@ type EnumApprovalMethodTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
10136
10284
|
};
|
|
10137
10285
|
type JsonNullableWithAggregatesFilter<$PrismaModel = never> = PatchUndefined<Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
10138
10286
|
type JsonNullableWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
10139
|
-
equals?:
|
|
10287
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10140
10288
|
path?: string[];
|
|
10141
10289
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10142
10290
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10143
10291
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10144
10292
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10145
|
-
array_starts_with?:
|
|
10146
|
-
array_ends_with?:
|
|
10147
|
-
array_contains?:
|
|
10148
|
-
lt?:
|
|
10149
|
-
lte?:
|
|
10150
|
-
gt?:
|
|
10151
|
-
gte?:
|
|
10152
|
-
not?:
|
|
10293
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10294
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10295
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10296
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10297
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10298
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10299
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10300
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10153
10301
|
_count?: NestedIntNullableFilter<$PrismaModel>;
|
|
10154
10302
|
_min?: NestedJsonNullableFilter<$PrismaModel>;
|
|
10155
10303
|
_max?: NestedJsonNullableFilter<$PrismaModel>;
|
|
10156
10304
|
};
|
|
10157
10305
|
type JsonFilter<$PrismaModel = never> = PatchUndefined<Either<Required<JsonFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonFilterBase<$PrismaModel>>, 'path'>>, Required<JsonFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<JsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
10158
10306
|
type JsonFilterBase<$PrismaModel = never> = {
|
|
10159
|
-
equals?:
|
|
10307
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10160
10308
|
path?: string[];
|
|
10161
10309
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10162
10310
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10163
10311
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10164
10312
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10165
|
-
array_starts_with?:
|
|
10166
|
-
array_ends_with?:
|
|
10167
|
-
array_contains?:
|
|
10168
|
-
lt?:
|
|
10169
|
-
lte?:
|
|
10170
|
-
gt?:
|
|
10171
|
-
gte?:
|
|
10172
|
-
not?:
|
|
10313
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10314
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10315
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10316
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10317
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10318
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10319
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10320
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10173
10321
|
};
|
|
10174
10322
|
type JsonWithAggregatesFilter<$PrismaModel = never> = PatchUndefined<Either<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>, Required<JsonWithAggregatesFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<JsonWithAggregatesFilterBase<$PrismaModel>>, 'path'>>;
|
|
10175
10323
|
type JsonWithAggregatesFilterBase<$PrismaModel = never> = {
|
|
10176
|
-
equals?:
|
|
10324
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10177
10325
|
path?: string[];
|
|
10178
10326
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10179
10327
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10180
10328
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10181
10329
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10182
|
-
array_starts_with?:
|
|
10183
|
-
array_ends_with?:
|
|
10184
|
-
array_contains?:
|
|
10185
|
-
lt?:
|
|
10186
|
-
lte?:
|
|
10187
|
-
gt?:
|
|
10188
|
-
gte?:
|
|
10189
|
-
not?:
|
|
10330
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10331
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10332
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10333
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10334
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10335
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10336
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10337
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10190
10338
|
_count?: NestedIntFilter<$PrismaModel>;
|
|
10191
10339
|
_min?: NestedJsonFilter<$PrismaModel>;
|
|
10192
10340
|
_max?: NestedJsonFilter<$PrismaModel>;
|
|
@@ -10198,10 +10346,10 @@ type EnumAssetTypeFilter<$PrismaModel = never> = {
|
|
|
10198
10346
|
not?: NestedEnumAssetTypeFilter<$PrismaModel> | AssetType;
|
|
10199
10347
|
};
|
|
10200
10348
|
type BytesFilter<$PrismaModel = never> = {
|
|
10201
|
-
equals?:
|
|
10202
|
-
in?:
|
|
10203
|
-
notIn?:
|
|
10204
|
-
not?: NestedBytesFilter<$PrismaModel> |
|
|
10349
|
+
equals?: _prisma_client_runtime_client0.Bytes | BytesFieldRefInput<$PrismaModel>;
|
|
10350
|
+
in?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10351
|
+
notIn?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10352
|
+
not?: NestedBytesFilter<$PrismaModel> | _prisma_client_runtime_client0.Bytes;
|
|
10205
10353
|
};
|
|
10206
10354
|
type IntFilter<$PrismaModel = never> = {
|
|
10207
10355
|
equals?: number | IntFieldRefInput<$PrismaModel>;
|
|
@@ -10233,10 +10381,10 @@ type EnumAssetTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
10233
10381
|
_max?: NestedEnumAssetTypeFilter<$PrismaModel>;
|
|
10234
10382
|
};
|
|
10235
10383
|
type BytesWithAggregatesFilter<$PrismaModel = never> = {
|
|
10236
|
-
equals?:
|
|
10237
|
-
in?:
|
|
10238
|
-
notIn?:
|
|
10239
|
-
not?: NestedBytesWithAggregatesFilter<$PrismaModel> |
|
|
10384
|
+
equals?: _prisma_client_runtime_client0.Bytes | BytesFieldRefInput<$PrismaModel>;
|
|
10385
|
+
in?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10386
|
+
notIn?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10387
|
+
not?: NestedBytesWithAggregatesFilter<$PrismaModel> | _prisma_client_runtime_client0.Bytes;
|
|
10240
10388
|
_count?: NestedIntFilter<$PrismaModel>;
|
|
10241
10389
|
_min?: NestedBytesFilter<$PrismaModel>;
|
|
10242
10390
|
_max?: NestedBytesFilter<$PrismaModel>;
|
|
@@ -10423,37 +10571,37 @@ type NestedEnumApprovalMethodTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
10423
10571
|
};
|
|
10424
10572
|
type NestedJsonNullableFilter<$PrismaModel = never> = PatchUndefined<Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonNullableFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>;
|
|
10425
10573
|
type NestedJsonNullableFilterBase<$PrismaModel = never> = {
|
|
10426
|
-
equals?:
|
|
10574
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10427
10575
|
path?: string[];
|
|
10428
10576
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10429
10577
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10430
10578
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10431
10579
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10432
|
-
array_starts_with?:
|
|
10433
|
-
array_ends_with?:
|
|
10434
|
-
array_contains?:
|
|
10435
|
-
lt?:
|
|
10436
|
-
lte?:
|
|
10437
|
-
gt?:
|
|
10438
|
-
gte?:
|
|
10439
|
-
not?:
|
|
10580
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10581
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10582
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10583
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10584
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10585
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10586
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10587
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10440
10588
|
};
|
|
10441
10589
|
type NestedJsonFilter<$PrismaModel = never> = PatchUndefined<Either<Required<NestedJsonFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>, Required<NestedJsonFilterBase<$PrismaModel>>> | OptionalFlat<Omit<Required<NestedJsonFilterBase<$PrismaModel>>, 'path'>>;
|
|
10442
10590
|
type NestedJsonFilterBase<$PrismaModel = never> = {
|
|
10443
|
-
equals?:
|
|
10591
|
+
equals?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10444
10592
|
path?: string[];
|
|
10445
10593
|
mode?: QueryMode | EnumQueryModeFieldRefInput<$PrismaModel>;
|
|
10446
10594
|
string_contains?: string | StringFieldRefInput<$PrismaModel>;
|
|
10447
10595
|
string_starts_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10448
10596
|
string_ends_with?: string | StringFieldRefInput<$PrismaModel>;
|
|
10449
|
-
array_starts_with?:
|
|
10450
|
-
array_ends_with?:
|
|
10451
|
-
array_contains?:
|
|
10452
|
-
lt?:
|
|
10453
|
-
lte?:
|
|
10454
|
-
gt?:
|
|
10455
|
-
gte?:
|
|
10456
|
-
not?:
|
|
10597
|
+
array_starts_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10598
|
+
array_ends_with?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10599
|
+
array_contains?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | null;
|
|
10600
|
+
lt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10601
|
+
lte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10602
|
+
gt?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10603
|
+
gte?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel>;
|
|
10604
|
+
not?: _prisma_client_runtime_client0.InputJsonValue | JsonFieldRefInput<$PrismaModel> | JsonNullValueFilter;
|
|
10457
10605
|
};
|
|
10458
10606
|
type NestedEnumAssetTypeFilter<$PrismaModel = never> = {
|
|
10459
10607
|
equals?: AssetType | EnumAssetTypeFieldRefInput<$PrismaModel>;
|
|
@@ -10462,10 +10610,10 @@ type NestedEnumAssetTypeFilter<$PrismaModel = never> = {
|
|
|
10462
10610
|
not?: NestedEnumAssetTypeFilter<$PrismaModel> | AssetType;
|
|
10463
10611
|
};
|
|
10464
10612
|
type NestedBytesFilter<$PrismaModel = never> = {
|
|
10465
|
-
equals?:
|
|
10466
|
-
in?:
|
|
10467
|
-
notIn?:
|
|
10468
|
-
not?: NestedBytesFilter<$PrismaModel> |
|
|
10613
|
+
equals?: _prisma_client_runtime_client0.Bytes | BytesFieldRefInput<$PrismaModel>;
|
|
10614
|
+
in?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10615
|
+
notIn?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10616
|
+
not?: NestedBytesFilter<$PrismaModel> | _prisma_client_runtime_client0.Bytes;
|
|
10469
10617
|
};
|
|
10470
10618
|
type NestedEnumAssetTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
10471
10619
|
equals?: AssetType | EnumAssetTypeFieldRefInput<$PrismaModel>;
|
|
@@ -10477,10 +10625,10 @@ type NestedEnumAssetTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
|
10477
10625
|
_max?: NestedEnumAssetTypeFilter<$PrismaModel>;
|
|
10478
10626
|
};
|
|
10479
10627
|
type NestedBytesWithAggregatesFilter<$PrismaModel = never> = {
|
|
10480
|
-
equals?:
|
|
10481
|
-
in?:
|
|
10482
|
-
notIn?:
|
|
10483
|
-
not?: NestedBytesWithAggregatesFilter<$PrismaModel> |
|
|
10628
|
+
equals?: _prisma_client_runtime_client0.Bytes | BytesFieldRefInput<$PrismaModel>;
|
|
10629
|
+
in?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10630
|
+
notIn?: _prisma_client_runtime_client0.Bytes[] | ListBytesFieldRefInput<$PrismaModel>;
|
|
10631
|
+
not?: NestedBytesWithAggregatesFilter<$PrismaModel> | _prisma_client_runtime_client0.Bytes;
|
|
10484
10632
|
_count?: NestedIntFilter<$PrismaModel>;
|
|
10485
10633
|
_min?: NestedBytesFilter<$PrismaModel>;
|
|
10486
10634
|
_max?: NestedBytesFilter<$PrismaModel>;
|
|
@@ -10537,9 +10685,9 @@ type NestedFloatNullableFilter<$PrismaModel = never> = {
|
|
|
10537
10685
|
};
|
|
10538
10686
|
//#endregion
|
|
10539
10687
|
//#region src/generated/prisma/internal/prismaNamespace.d.ts
|
|
10540
|
-
type PrismaPromise<T> =
|
|
10541
|
-
declare const Sql: typeof
|
|
10542
|
-
type Sql =
|
|
10688
|
+
type PrismaPromise<T> = _prisma_client_runtime_client0.Types.Public.PrismaPromise<T>;
|
|
10689
|
+
declare const Sql: typeof _prisma_client_runtime_client0.Sql;
|
|
10690
|
+
type Sql = _prisma_client_runtime_client0.Sql;
|
|
10543
10691
|
type SelectAndInclude = {
|
|
10544
10692
|
select: any;
|
|
10545
10693
|
include: any;
|
|
@@ -10653,7 +10801,7 @@ type PickEnumerable<T, K$1 extends Enumerable<keyof T> | keyof T> = Prisma__Pick
|
|
|
10653
10801
|
* Exclude all keys with underscores
|
|
10654
10802
|
*/
|
|
10655
10803
|
type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T;
|
|
10656
|
-
type FieldRef<Model, FieldType> =
|
|
10804
|
+
type FieldRef<Model, FieldType> = _prisma_client_runtime_client0.FieldRef<Model, FieldType>;
|
|
10657
10805
|
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>;
|
|
10658
10806
|
declare const ModelName: {
|
|
10659
10807
|
readonly user: "user";
|
|
@@ -10666,12 +10814,12 @@ declare const ModelName: {
|
|
|
10666
10814
|
readonly DbAsset: "DbAsset";
|
|
10667
10815
|
};
|
|
10668
10816
|
type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
10669
|
-
interface TypeMapCb<GlobalOmitOptions = {}> extends
|
|
10670
|
-
extArgs:
|
|
10671
|
-
},
|
|
10817
|
+
interface TypeMapCb<GlobalOmitOptions = {}> extends _prisma_client_runtime_client0.Types.Utils.Fn<{
|
|
10818
|
+
extArgs: _prisma_client_runtime_client0.Types.Extensions.InternalArgs;
|
|
10819
|
+
}, _prisma_client_runtime_client0.Types.Utils.Record<string, any>> {
|
|
10672
10820
|
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>;
|
|
10673
10821
|
}
|
|
10674
|
-
type TypeMap<ExtArgs extends
|
|
10822
|
+
type TypeMap<ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
10675
10823
|
globalOmitOptions: {
|
|
10676
10824
|
omit: GlobalOmitOptions;
|
|
10677
10825
|
};
|
|
@@ -10686,27 +10834,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10686
10834
|
operations: {
|
|
10687
10835
|
findUnique: {
|
|
10688
10836
|
args: userFindUniqueArgs<ExtArgs>;
|
|
10689
|
-
result:
|
|
10837
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload> | null;
|
|
10690
10838
|
};
|
|
10691
10839
|
findUniqueOrThrow: {
|
|
10692
10840
|
args: userFindUniqueOrThrowArgs<ExtArgs>;
|
|
10693
|
-
result:
|
|
10841
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10694
10842
|
};
|
|
10695
10843
|
findFirst: {
|
|
10696
10844
|
args: userFindFirstArgs<ExtArgs>;
|
|
10697
|
-
result:
|
|
10845
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload> | null;
|
|
10698
10846
|
};
|
|
10699
10847
|
findFirstOrThrow: {
|
|
10700
10848
|
args: userFindFirstOrThrowArgs<ExtArgs>;
|
|
10701
|
-
result:
|
|
10849
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10702
10850
|
};
|
|
10703
10851
|
findMany: {
|
|
10704
10852
|
args: userFindManyArgs<ExtArgs>;
|
|
10705
|
-
result:
|
|
10853
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>[];
|
|
10706
10854
|
};
|
|
10707
10855
|
create: {
|
|
10708
10856
|
args: userCreateArgs<ExtArgs>;
|
|
10709
|
-
result:
|
|
10857
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10710
10858
|
};
|
|
10711
10859
|
createMany: {
|
|
10712
10860
|
args: userCreateManyArgs<ExtArgs>;
|
|
@@ -10714,15 +10862,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10714
10862
|
};
|
|
10715
10863
|
createManyAndReturn: {
|
|
10716
10864
|
args: userCreateManyAndReturnArgs<ExtArgs>;
|
|
10717
|
-
result:
|
|
10865
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>[];
|
|
10718
10866
|
};
|
|
10719
10867
|
delete: {
|
|
10720
10868
|
args: userDeleteArgs<ExtArgs>;
|
|
10721
|
-
result:
|
|
10869
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10722
10870
|
};
|
|
10723
10871
|
update: {
|
|
10724
10872
|
args: userUpdateArgs<ExtArgs>;
|
|
10725
|
-
result:
|
|
10873
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10726
10874
|
};
|
|
10727
10875
|
deleteMany: {
|
|
10728
10876
|
args: userDeleteManyArgs<ExtArgs>;
|
|
@@ -10734,23 +10882,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10734
10882
|
};
|
|
10735
10883
|
updateManyAndReturn: {
|
|
10736
10884
|
args: userUpdateManyAndReturnArgs<ExtArgs>;
|
|
10737
|
-
result:
|
|
10885
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>[];
|
|
10738
10886
|
};
|
|
10739
10887
|
upsert: {
|
|
10740
10888
|
args: userUpsertArgs<ExtArgs>;
|
|
10741
|
-
result:
|
|
10889
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$userPayload>;
|
|
10742
10890
|
};
|
|
10743
10891
|
aggregate: {
|
|
10744
10892
|
args: UserAggregateArgs<ExtArgs>;
|
|
10745
|
-
result:
|
|
10893
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateUser>;
|
|
10746
10894
|
};
|
|
10747
10895
|
groupBy: {
|
|
10748
10896
|
args: userGroupByArgs<ExtArgs>;
|
|
10749
|
-
result:
|
|
10897
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<UserGroupByOutputType>[];
|
|
10750
10898
|
};
|
|
10751
10899
|
count: {
|
|
10752
10900
|
args: userCountArgs<ExtArgs>;
|
|
10753
|
-
result:
|
|
10901
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<UserCountAggregateOutputType> | number;
|
|
10754
10902
|
};
|
|
10755
10903
|
};
|
|
10756
10904
|
};
|
|
@@ -10760,27 +10908,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10760
10908
|
operations: {
|
|
10761
10909
|
findUnique: {
|
|
10762
10910
|
args: sessionFindUniqueArgs<ExtArgs>;
|
|
10763
|
-
result:
|
|
10911
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload> | null;
|
|
10764
10912
|
};
|
|
10765
10913
|
findUniqueOrThrow: {
|
|
10766
10914
|
args: sessionFindUniqueOrThrowArgs<ExtArgs>;
|
|
10767
|
-
result:
|
|
10915
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10768
10916
|
};
|
|
10769
10917
|
findFirst: {
|
|
10770
10918
|
args: sessionFindFirstArgs<ExtArgs>;
|
|
10771
|
-
result:
|
|
10919
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload> | null;
|
|
10772
10920
|
};
|
|
10773
10921
|
findFirstOrThrow: {
|
|
10774
10922
|
args: sessionFindFirstOrThrowArgs<ExtArgs>;
|
|
10775
|
-
result:
|
|
10923
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10776
10924
|
};
|
|
10777
10925
|
findMany: {
|
|
10778
10926
|
args: sessionFindManyArgs<ExtArgs>;
|
|
10779
|
-
result:
|
|
10927
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>[];
|
|
10780
10928
|
};
|
|
10781
10929
|
create: {
|
|
10782
10930
|
args: sessionCreateArgs<ExtArgs>;
|
|
10783
|
-
result:
|
|
10931
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10784
10932
|
};
|
|
10785
10933
|
createMany: {
|
|
10786
10934
|
args: sessionCreateManyArgs<ExtArgs>;
|
|
@@ -10788,15 +10936,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10788
10936
|
};
|
|
10789
10937
|
createManyAndReturn: {
|
|
10790
10938
|
args: sessionCreateManyAndReturnArgs<ExtArgs>;
|
|
10791
|
-
result:
|
|
10939
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>[];
|
|
10792
10940
|
};
|
|
10793
10941
|
delete: {
|
|
10794
10942
|
args: sessionDeleteArgs<ExtArgs>;
|
|
10795
|
-
result:
|
|
10943
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10796
10944
|
};
|
|
10797
10945
|
update: {
|
|
10798
10946
|
args: sessionUpdateArgs<ExtArgs>;
|
|
10799
|
-
result:
|
|
10947
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10800
10948
|
};
|
|
10801
10949
|
deleteMany: {
|
|
10802
10950
|
args: sessionDeleteManyArgs<ExtArgs>;
|
|
@@ -10808,23 +10956,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10808
10956
|
};
|
|
10809
10957
|
updateManyAndReturn: {
|
|
10810
10958
|
args: sessionUpdateManyAndReturnArgs<ExtArgs>;
|
|
10811
|
-
result:
|
|
10959
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>[];
|
|
10812
10960
|
};
|
|
10813
10961
|
upsert: {
|
|
10814
10962
|
args: sessionUpsertArgs<ExtArgs>;
|
|
10815
|
-
result:
|
|
10963
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$sessionPayload>;
|
|
10816
10964
|
};
|
|
10817
10965
|
aggregate: {
|
|
10818
10966
|
args: SessionAggregateArgs<ExtArgs>;
|
|
10819
|
-
result:
|
|
10967
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateSession>;
|
|
10820
10968
|
};
|
|
10821
10969
|
groupBy: {
|
|
10822
10970
|
args: sessionGroupByArgs<ExtArgs>;
|
|
10823
|
-
result:
|
|
10971
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<SessionGroupByOutputType>[];
|
|
10824
10972
|
};
|
|
10825
10973
|
count: {
|
|
10826
10974
|
args: sessionCountArgs<ExtArgs>;
|
|
10827
|
-
result:
|
|
10975
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<SessionCountAggregateOutputType> | number;
|
|
10828
10976
|
};
|
|
10829
10977
|
};
|
|
10830
10978
|
};
|
|
@@ -10834,27 +10982,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10834
10982
|
operations: {
|
|
10835
10983
|
findUnique: {
|
|
10836
10984
|
args: accountFindUniqueArgs<ExtArgs>;
|
|
10837
|
-
result:
|
|
10985
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload> | null;
|
|
10838
10986
|
};
|
|
10839
10987
|
findUniqueOrThrow: {
|
|
10840
10988
|
args: accountFindUniqueOrThrowArgs<ExtArgs>;
|
|
10841
|
-
result:
|
|
10989
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10842
10990
|
};
|
|
10843
10991
|
findFirst: {
|
|
10844
10992
|
args: accountFindFirstArgs<ExtArgs>;
|
|
10845
|
-
result:
|
|
10993
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload> | null;
|
|
10846
10994
|
};
|
|
10847
10995
|
findFirstOrThrow: {
|
|
10848
10996
|
args: accountFindFirstOrThrowArgs<ExtArgs>;
|
|
10849
|
-
result:
|
|
10997
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10850
10998
|
};
|
|
10851
10999
|
findMany: {
|
|
10852
11000
|
args: accountFindManyArgs<ExtArgs>;
|
|
10853
|
-
result:
|
|
11001
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>[];
|
|
10854
11002
|
};
|
|
10855
11003
|
create: {
|
|
10856
11004
|
args: accountCreateArgs<ExtArgs>;
|
|
10857
|
-
result:
|
|
11005
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10858
11006
|
};
|
|
10859
11007
|
createMany: {
|
|
10860
11008
|
args: accountCreateManyArgs<ExtArgs>;
|
|
@@ -10862,15 +11010,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10862
11010
|
};
|
|
10863
11011
|
createManyAndReturn: {
|
|
10864
11012
|
args: accountCreateManyAndReturnArgs<ExtArgs>;
|
|
10865
|
-
result:
|
|
11013
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>[];
|
|
10866
11014
|
};
|
|
10867
11015
|
delete: {
|
|
10868
11016
|
args: accountDeleteArgs<ExtArgs>;
|
|
10869
|
-
result:
|
|
11017
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10870
11018
|
};
|
|
10871
11019
|
update: {
|
|
10872
11020
|
args: accountUpdateArgs<ExtArgs>;
|
|
10873
|
-
result:
|
|
11021
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10874
11022
|
};
|
|
10875
11023
|
deleteMany: {
|
|
10876
11024
|
args: accountDeleteManyArgs<ExtArgs>;
|
|
@@ -10882,23 +11030,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10882
11030
|
};
|
|
10883
11031
|
updateManyAndReturn: {
|
|
10884
11032
|
args: accountUpdateManyAndReturnArgs<ExtArgs>;
|
|
10885
|
-
result:
|
|
11033
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>[];
|
|
10886
11034
|
};
|
|
10887
11035
|
upsert: {
|
|
10888
11036
|
args: accountUpsertArgs<ExtArgs>;
|
|
10889
|
-
result:
|
|
11037
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$accountPayload>;
|
|
10890
11038
|
};
|
|
10891
11039
|
aggregate: {
|
|
10892
11040
|
args: AccountAggregateArgs<ExtArgs>;
|
|
10893
|
-
result:
|
|
11041
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateAccount>;
|
|
10894
11042
|
};
|
|
10895
11043
|
groupBy: {
|
|
10896
11044
|
args: accountGroupByArgs<ExtArgs>;
|
|
10897
|
-
result:
|
|
11045
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AccountGroupByOutputType>[];
|
|
10898
11046
|
};
|
|
10899
11047
|
count: {
|
|
10900
11048
|
args: accountCountArgs<ExtArgs>;
|
|
10901
|
-
result:
|
|
11049
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AccountCountAggregateOutputType> | number;
|
|
10902
11050
|
};
|
|
10903
11051
|
};
|
|
10904
11052
|
};
|
|
@@ -10908,27 +11056,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10908
11056
|
operations: {
|
|
10909
11057
|
findUnique: {
|
|
10910
11058
|
args: verificationFindUniqueArgs<ExtArgs>;
|
|
10911
|
-
result:
|
|
11059
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload> | null;
|
|
10912
11060
|
};
|
|
10913
11061
|
findUniqueOrThrow: {
|
|
10914
11062
|
args: verificationFindUniqueOrThrowArgs<ExtArgs>;
|
|
10915
|
-
result:
|
|
11063
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10916
11064
|
};
|
|
10917
11065
|
findFirst: {
|
|
10918
11066
|
args: verificationFindFirstArgs<ExtArgs>;
|
|
10919
|
-
result:
|
|
11067
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload> | null;
|
|
10920
11068
|
};
|
|
10921
11069
|
findFirstOrThrow: {
|
|
10922
11070
|
args: verificationFindFirstOrThrowArgs<ExtArgs>;
|
|
10923
|
-
result:
|
|
11071
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10924
11072
|
};
|
|
10925
11073
|
findMany: {
|
|
10926
11074
|
args: verificationFindManyArgs<ExtArgs>;
|
|
10927
|
-
result:
|
|
11075
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>[];
|
|
10928
11076
|
};
|
|
10929
11077
|
create: {
|
|
10930
11078
|
args: verificationCreateArgs<ExtArgs>;
|
|
10931
|
-
result:
|
|
11079
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10932
11080
|
};
|
|
10933
11081
|
createMany: {
|
|
10934
11082
|
args: verificationCreateManyArgs<ExtArgs>;
|
|
@@ -10936,15 +11084,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10936
11084
|
};
|
|
10937
11085
|
createManyAndReturn: {
|
|
10938
11086
|
args: verificationCreateManyAndReturnArgs<ExtArgs>;
|
|
10939
|
-
result:
|
|
11087
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>[];
|
|
10940
11088
|
};
|
|
10941
11089
|
delete: {
|
|
10942
11090
|
args: verificationDeleteArgs<ExtArgs>;
|
|
10943
|
-
result:
|
|
11091
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10944
11092
|
};
|
|
10945
11093
|
update: {
|
|
10946
11094
|
args: verificationUpdateArgs<ExtArgs>;
|
|
10947
|
-
result:
|
|
11095
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10948
11096
|
};
|
|
10949
11097
|
deleteMany: {
|
|
10950
11098
|
args: verificationDeleteManyArgs<ExtArgs>;
|
|
@@ -10956,23 +11104,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10956
11104
|
};
|
|
10957
11105
|
updateManyAndReturn: {
|
|
10958
11106
|
args: verificationUpdateManyAndReturnArgs<ExtArgs>;
|
|
10959
|
-
result:
|
|
11107
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>[];
|
|
10960
11108
|
};
|
|
10961
11109
|
upsert: {
|
|
10962
11110
|
args: verificationUpsertArgs<ExtArgs>;
|
|
10963
|
-
result:
|
|
11111
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$verificationPayload>;
|
|
10964
11112
|
};
|
|
10965
11113
|
aggregate: {
|
|
10966
11114
|
args: VerificationAggregateArgs<ExtArgs>;
|
|
10967
|
-
result:
|
|
11115
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateVerification>;
|
|
10968
11116
|
};
|
|
10969
11117
|
groupBy: {
|
|
10970
11118
|
args: verificationGroupByArgs<ExtArgs>;
|
|
10971
|
-
result:
|
|
11119
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<VerificationGroupByOutputType>[];
|
|
10972
11120
|
};
|
|
10973
11121
|
count: {
|
|
10974
11122
|
args: verificationCountArgs<ExtArgs>;
|
|
10975
|
-
result:
|
|
11123
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<VerificationCountAggregateOutputType> | number;
|
|
10976
11124
|
};
|
|
10977
11125
|
};
|
|
10978
11126
|
};
|
|
@@ -10982,27 +11130,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
10982
11130
|
operations: {
|
|
10983
11131
|
findUnique: {
|
|
10984
11132
|
args: DbApprovalMethodFindUniqueArgs<ExtArgs>;
|
|
10985
|
-
result:
|
|
11133
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload> | null;
|
|
10986
11134
|
};
|
|
10987
11135
|
findUniqueOrThrow: {
|
|
10988
11136
|
args: DbApprovalMethodFindUniqueOrThrowArgs<ExtArgs>;
|
|
10989
|
-
result:
|
|
11137
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
10990
11138
|
};
|
|
10991
11139
|
findFirst: {
|
|
10992
11140
|
args: DbApprovalMethodFindFirstArgs<ExtArgs>;
|
|
10993
|
-
result:
|
|
11141
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload> | null;
|
|
10994
11142
|
};
|
|
10995
11143
|
findFirstOrThrow: {
|
|
10996
11144
|
args: DbApprovalMethodFindFirstOrThrowArgs<ExtArgs>;
|
|
10997
|
-
result:
|
|
11145
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
10998
11146
|
};
|
|
10999
11147
|
findMany: {
|
|
11000
11148
|
args: DbApprovalMethodFindManyArgs<ExtArgs>;
|
|
11001
|
-
result:
|
|
11149
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>[];
|
|
11002
11150
|
};
|
|
11003
11151
|
create: {
|
|
11004
11152
|
args: DbApprovalMethodCreateArgs<ExtArgs>;
|
|
11005
|
-
result:
|
|
11153
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
11006
11154
|
};
|
|
11007
11155
|
createMany: {
|
|
11008
11156
|
args: DbApprovalMethodCreateManyArgs<ExtArgs>;
|
|
@@ -11010,15 +11158,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11010
11158
|
};
|
|
11011
11159
|
createManyAndReturn: {
|
|
11012
11160
|
args: DbApprovalMethodCreateManyAndReturnArgs<ExtArgs>;
|
|
11013
|
-
result:
|
|
11161
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>[];
|
|
11014
11162
|
};
|
|
11015
11163
|
delete: {
|
|
11016
11164
|
args: DbApprovalMethodDeleteArgs<ExtArgs>;
|
|
11017
|
-
result:
|
|
11165
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
11018
11166
|
};
|
|
11019
11167
|
update: {
|
|
11020
11168
|
args: DbApprovalMethodUpdateArgs<ExtArgs>;
|
|
11021
|
-
result:
|
|
11169
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
11022
11170
|
};
|
|
11023
11171
|
deleteMany: {
|
|
11024
11172
|
args: DbApprovalMethodDeleteManyArgs<ExtArgs>;
|
|
@@ -11030,23 +11178,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11030
11178
|
};
|
|
11031
11179
|
updateManyAndReturn: {
|
|
11032
11180
|
args: DbApprovalMethodUpdateManyAndReturnArgs<ExtArgs>;
|
|
11033
|
-
result:
|
|
11181
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>[];
|
|
11034
11182
|
};
|
|
11035
11183
|
upsert: {
|
|
11036
11184
|
args: DbApprovalMethodUpsertArgs<ExtArgs>;
|
|
11037
|
-
result:
|
|
11185
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbApprovalMethodPayload>;
|
|
11038
11186
|
};
|
|
11039
11187
|
aggregate: {
|
|
11040
11188
|
args: DbApprovalMethodAggregateArgs<ExtArgs>;
|
|
11041
|
-
result:
|
|
11189
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateDbApprovalMethod>;
|
|
11042
11190
|
};
|
|
11043
11191
|
groupBy: {
|
|
11044
11192
|
args: DbApprovalMethodGroupByArgs<ExtArgs>;
|
|
11045
|
-
result:
|
|
11193
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbApprovalMethodGroupByOutputType>[];
|
|
11046
11194
|
};
|
|
11047
11195
|
count: {
|
|
11048
11196
|
args: DbApprovalMethodCountArgs<ExtArgs>;
|
|
11049
|
-
result:
|
|
11197
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbApprovalMethodCountAggregateOutputType> | number;
|
|
11050
11198
|
};
|
|
11051
11199
|
};
|
|
11052
11200
|
};
|
|
@@ -11056,27 +11204,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11056
11204
|
operations: {
|
|
11057
11205
|
findUnique: {
|
|
11058
11206
|
args: DbAppForCatalogFindUniqueArgs<ExtArgs>;
|
|
11059
|
-
result:
|
|
11207
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload> | null;
|
|
11060
11208
|
};
|
|
11061
11209
|
findUniqueOrThrow: {
|
|
11062
11210
|
args: DbAppForCatalogFindUniqueOrThrowArgs<ExtArgs>;
|
|
11063
|
-
result:
|
|
11211
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11064
11212
|
};
|
|
11065
11213
|
findFirst: {
|
|
11066
11214
|
args: DbAppForCatalogFindFirstArgs<ExtArgs>;
|
|
11067
|
-
result:
|
|
11215
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload> | null;
|
|
11068
11216
|
};
|
|
11069
11217
|
findFirstOrThrow: {
|
|
11070
11218
|
args: DbAppForCatalogFindFirstOrThrowArgs<ExtArgs>;
|
|
11071
|
-
result:
|
|
11219
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11072
11220
|
};
|
|
11073
11221
|
findMany: {
|
|
11074
11222
|
args: DbAppForCatalogFindManyArgs<ExtArgs>;
|
|
11075
|
-
result:
|
|
11223
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>[];
|
|
11076
11224
|
};
|
|
11077
11225
|
create: {
|
|
11078
11226
|
args: DbAppForCatalogCreateArgs<ExtArgs>;
|
|
11079
|
-
result:
|
|
11227
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11080
11228
|
};
|
|
11081
11229
|
createMany: {
|
|
11082
11230
|
args: DbAppForCatalogCreateManyArgs<ExtArgs>;
|
|
@@ -11084,15 +11232,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11084
11232
|
};
|
|
11085
11233
|
createManyAndReturn: {
|
|
11086
11234
|
args: DbAppForCatalogCreateManyAndReturnArgs<ExtArgs>;
|
|
11087
|
-
result:
|
|
11235
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>[];
|
|
11088
11236
|
};
|
|
11089
11237
|
delete: {
|
|
11090
11238
|
args: DbAppForCatalogDeleteArgs<ExtArgs>;
|
|
11091
|
-
result:
|
|
11239
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11092
11240
|
};
|
|
11093
11241
|
update: {
|
|
11094
11242
|
args: DbAppForCatalogUpdateArgs<ExtArgs>;
|
|
11095
|
-
result:
|
|
11243
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11096
11244
|
};
|
|
11097
11245
|
deleteMany: {
|
|
11098
11246
|
args: DbAppForCatalogDeleteManyArgs<ExtArgs>;
|
|
@@ -11104,23 +11252,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11104
11252
|
};
|
|
11105
11253
|
updateManyAndReturn: {
|
|
11106
11254
|
args: DbAppForCatalogUpdateManyAndReturnArgs<ExtArgs>;
|
|
11107
|
-
result:
|
|
11255
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>[];
|
|
11108
11256
|
};
|
|
11109
11257
|
upsert: {
|
|
11110
11258
|
args: DbAppForCatalogUpsertArgs<ExtArgs>;
|
|
11111
|
-
result:
|
|
11259
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppForCatalogPayload>;
|
|
11112
11260
|
};
|
|
11113
11261
|
aggregate: {
|
|
11114
11262
|
args: DbAppForCatalogAggregateArgs<ExtArgs>;
|
|
11115
|
-
result:
|
|
11263
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateDbAppForCatalog>;
|
|
11116
11264
|
};
|
|
11117
11265
|
groupBy: {
|
|
11118
11266
|
args: DbAppForCatalogGroupByArgs<ExtArgs>;
|
|
11119
|
-
result:
|
|
11267
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAppForCatalogGroupByOutputType>[];
|
|
11120
11268
|
};
|
|
11121
11269
|
count: {
|
|
11122
11270
|
args: DbAppForCatalogCountArgs<ExtArgs>;
|
|
11123
|
-
result:
|
|
11271
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAppForCatalogCountAggregateOutputType> | number;
|
|
11124
11272
|
};
|
|
11125
11273
|
};
|
|
11126
11274
|
};
|
|
@@ -11130,27 +11278,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11130
11278
|
operations: {
|
|
11131
11279
|
findUnique: {
|
|
11132
11280
|
args: DbAppTagDefinitionFindUniqueArgs<ExtArgs>;
|
|
11133
|
-
result:
|
|
11281
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload> | null;
|
|
11134
11282
|
};
|
|
11135
11283
|
findUniqueOrThrow: {
|
|
11136
11284
|
args: DbAppTagDefinitionFindUniqueOrThrowArgs<ExtArgs>;
|
|
11137
|
-
result:
|
|
11285
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11138
11286
|
};
|
|
11139
11287
|
findFirst: {
|
|
11140
11288
|
args: DbAppTagDefinitionFindFirstArgs<ExtArgs>;
|
|
11141
|
-
result:
|
|
11289
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload> | null;
|
|
11142
11290
|
};
|
|
11143
11291
|
findFirstOrThrow: {
|
|
11144
11292
|
args: DbAppTagDefinitionFindFirstOrThrowArgs<ExtArgs>;
|
|
11145
|
-
result:
|
|
11293
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11146
11294
|
};
|
|
11147
11295
|
findMany: {
|
|
11148
11296
|
args: DbAppTagDefinitionFindManyArgs<ExtArgs>;
|
|
11149
|
-
result:
|
|
11297
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>[];
|
|
11150
11298
|
};
|
|
11151
11299
|
create: {
|
|
11152
11300
|
args: DbAppTagDefinitionCreateArgs<ExtArgs>;
|
|
11153
|
-
result:
|
|
11301
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11154
11302
|
};
|
|
11155
11303
|
createMany: {
|
|
11156
11304
|
args: DbAppTagDefinitionCreateManyArgs<ExtArgs>;
|
|
@@ -11158,15 +11306,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11158
11306
|
};
|
|
11159
11307
|
createManyAndReturn: {
|
|
11160
11308
|
args: DbAppTagDefinitionCreateManyAndReturnArgs<ExtArgs>;
|
|
11161
|
-
result:
|
|
11309
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>[];
|
|
11162
11310
|
};
|
|
11163
11311
|
delete: {
|
|
11164
11312
|
args: DbAppTagDefinitionDeleteArgs<ExtArgs>;
|
|
11165
|
-
result:
|
|
11313
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11166
11314
|
};
|
|
11167
11315
|
update: {
|
|
11168
11316
|
args: DbAppTagDefinitionUpdateArgs<ExtArgs>;
|
|
11169
|
-
result:
|
|
11317
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11170
11318
|
};
|
|
11171
11319
|
deleteMany: {
|
|
11172
11320
|
args: DbAppTagDefinitionDeleteManyArgs<ExtArgs>;
|
|
@@ -11178,23 +11326,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11178
11326
|
};
|
|
11179
11327
|
updateManyAndReturn: {
|
|
11180
11328
|
args: DbAppTagDefinitionUpdateManyAndReturnArgs<ExtArgs>;
|
|
11181
|
-
result:
|
|
11329
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>[];
|
|
11182
11330
|
};
|
|
11183
11331
|
upsert: {
|
|
11184
11332
|
args: DbAppTagDefinitionUpsertArgs<ExtArgs>;
|
|
11185
|
-
result:
|
|
11333
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAppTagDefinitionPayload>;
|
|
11186
11334
|
};
|
|
11187
11335
|
aggregate: {
|
|
11188
11336
|
args: DbAppTagDefinitionAggregateArgs<ExtArgs>;
|
|
11189
|
-
result:
|
|
11337
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateDbAppTagDefinition>;
|
|
11190
11338
|
};
|
|
11191
11339
|
groupBy: {
|
|
11192
11340
|
args: DbAppTagDefinitionGroupByArgs<ExtArgs>;
|
|
11193
|
-
result:
|
|
11341
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAppTagDefinitionGroupByOutputType>[];
|
|
11194
11342
|
};
|
|
11195
11343
|
count: {
|
|
11196
11344
|
args: DbAppTagDefinitionCountArgs<ExtArgs>;
|
|
11197
|
-
result:
|
|
11345
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAppTagDefinitionCountAggregateOutputType> | number;
|
|
11198
11346
|
};
|
|
11199
11347
|
};
|
|
11200
11348
|
};
|
|
@@ -11204,27 +11352,27 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11204
11352
|
operations: {
|
|
11205
11353
|
findUnique: {
|
|
11206
11354
|
args: DbAssetFindUniqueArgs<ExtArgs>;
|
|
11207
|
-
result:
|
|
11355
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload> | null;
|
|
11208
11356
|
};
|
|
11209
11357
|
findUniqueOrThrow: {
|
|
11210
11358
|
args: DbAssetFindUniqueOrThrowArgs<ExtArgs>;
|
|
11211
|
-
result:
|
|
11359
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11212
11360
|
};
|
|
11213
11361
|
findFirst: {
|
|
11214
11362
|
args: DbAssetFindFirstArgs<ExtArgs>;
|
|
11215
|
-
result:
|
|
11363
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload> | null;
|
|
11216
11364
|
};
|
|
11217
11365
|
findFirstOrThrow: {
|
|
11218
11366
|
args: DbAssetFindFirstOrThrowArgs<ExtArgs>;
|
|
11219
|
-
result:
|
|
11367
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11220
11368
|
};
|
|
11221
11369
|
findMany: {
|
|
11222
11370
|
args: DbAssetFindManyArgs<ExtArgs>;
|
|
11223
|
-
result:
|
|
11371
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>[];
|
|
11224
11372
|
};
|
|
11225
11373
|
create: {
|
|
11226
11374
|
args: DbAssetCreateArgs<ExtArgs>;
|
|
11227
|
-
result:
|
|
11375
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11228
11376
|
};
|
|
11229
11377
|
createMany: {
|
|
11230
11378
|
args: DbAssetCreateManyArgs<ExtArgs>;
|
|
@@ -11232,15 +11380,15 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11232
11380
|
};
|
|
11233
11381
|
createManyAndReturn: {
|
|
11234
11382
|
args: DbAssetCreateManyAndReturnArgs<ExtArgs>;
|
|
11235
|
-
result:
|
|
11383
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>[];
|
|
11236
11384
|
};
|
|
11237
11385
|
delete: {
|
|
11238
11386
|
args: DbAssetDeleteArgs<ExtArgs>;
|
|
11239
|
-
result:
|
|
11387
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11240
11388
|
};
|
|
11241
11389
|
update: {
|
|
11242
11390
|
args: DbAssetUpdateArgs<ExtArgs>;
|
|
11243
|
-
result:
|
|
11391
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11244
11392
|
};
|
|
11245
11393
|
deleteMany: {
|
|
11246
11394
|
args: DbAssetDeleteManyArgs<ExtArgs>;
|
|
@@ -11252,23 +11400,23 @@ type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Typ
|
|
|
11252
11400
|
};
|
|
11253
11401
|
updateManyAndReturn: {
|
|
11254
11402
|
args: DbAssetUpdateManyAndReturnArgs<ExtArgs>;
|
|
11255
|
-
result:
|
|
11403
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>[];
|
|
11256
11404
|
};
|
|
11257
11405
|
upsert: {
|
|
11258
11406
|
args: DbAssetUpsertArgs<ExtArgs>;
|
|
11259
|
-
result:
|
|
11407
|
+
result: _prisma_client_runtime_client0.Types.Utils.PayloadToResult<$DbAssetPayload>;
|
|
11260
11408
|
};
|
|
11261
11409
|
aggregate: {
|
|
11262
11410
|
args: DbAssetAggregateArgs<ExtArgs>;
|
|
11263
|
-
result:
|
|
11411
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<AggregateDbAsset>;
|
|
11264
11412
|
};
|
|
11265
11413
|
groupBy: {
|
|
11266
11414
|
args: DbAssetGroupByArgs<ExtArgs>;
|
|
11267
|
-
result:
|
|
11415
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAssetGroupByOutputType>[];
|
|
11268
11416
|
};
|
|
11269
11417
|
count: {
|
|
11270
11418
|
args: DbAssetCountArgs<ExtArgs>;
|
|
11271
|
-
result:
|
|
11419
|
+
result: _prisma_client_runtime_client0.Types.Utils.Optional<DbAssetCountAggregateOutputType> | number;
|
|
11272
11420
|
};
|
|
11273
11421
|
};
|
|
11274
11422
|
};
|
|
@@ -11412,8 +11560,8 @@ declare const SortOrder: {
|
|
|
11412
11560
|
};
|
|
11413
11561
|
type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
11414
11562
|
declare const NullableJsonNullValueInput: {
|
|
11415
|
-
readonly DbNull:
|
|
11416
|
-
readonly JsonNull:
|
|
11563
|
+
readonly DbNull: _prisma_client_runtime_client0.DbNullClass;
|
|
11564
|
+
readonly JsonNull: _prisma_client_runtime_client0.JsonNullClass;
|
|
11417
11565
|
};
|
|
11418
11566
|
type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput];
|
|
11419
11567
|
declare const QueryMode: {
|
|
@@ -11427,9 +11575,9 @@ declare const NullsOrder: {
|
|
|
11427
11575
|
};
|
|
11428
11576
|
type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
11429
11577
|
declare const JsonNullValueFilter: {
|
|
11430
|
-
readonly DbNull:
|
|
11431
|
-
readonly JsonNull:
|
|
11432
|
-
readonly AnyNull:
|
|
11578
|
+
readonly DbNull: _prisma_client_runtime_client0.DbNullClass;
|
|
11579
|
+
readonly JsonNull: _prisma_client_runtime_client0.JsonNullClass;
|
|
11580
|
+
readonly AnyNull: _prisma_client_runtime_client0.AnyNullClass;
|
|
11433
11581
|
};
|
|
11434
11582
|
type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter];
|
|
11435
11583
|
/**
|
|
@@ -11514,7 +11662,7 @@ type PrismaClientOptions = ({
|
|
|
11514
11662
|
/**
|
|
11515
11663
|
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-pg`.
|
|
11516
11664
|
*/
|
|
11517
|
-
adapter:
|
|
11665
|
+
adapter: _prisma_client_runtime_client0.SqlDriverAdapterFactory;
|
|
11518
11666
|
accelerateUrl?: never;
|
|
11519
11667
|
} | {
|
|
11520
11668
|
/**
|
|
@@ -11592,7 +11740,7 @@ type PrismaClientOptions = ({
|
|
|
11592
11740
|
* })
|
|
11593
11741
|
* ```
|
|
11594
11742
|
*/
|
|
11595
|
-
comments?:
|
|
11743
|
+
comments?: _prisma_client_runtime_client0.SqlCommenterPlugin[];
|
|
11596
11744
|
};
|
|
11597
11745
|
type GlobalOmitConfig = {
|
|
11598
11746
|
user?: userOmit;
|
|
@@ -11645,7 +11793,7 @@ interface PrismaClientConstructor {
|
|
|
11645
11793
|
*/
|
|
11646
11794
|
new <Options extends PrismaClientOptions = PrismaClientOptions, LogOpts extends LogOptions<Options> = LogOptions<Options>, OmitOpts extends PrismaClientOptions['omit'] = (Options extends {
|
|
11647
11795
|
omit: infer U;
|
|
11648
|
-
} ? U : PrismaClientOptions['omit']), ExtArgs extends
|
|
11796
|
+
} ? U : PrismaClientOptions['omit']), ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs>(options: Subset<Options, PrismaClientOptions>): PrismaClient$1<LogOpts, OmitOpts, ExtArgs>;
|
|
11649
11797
|
}
|
|
11650
11798
|
/**
|
|
11651
11799
|
* ## Prisma Client
|
|
@@ -11662,7 +11810,7 @@ interface PrismaClientConstructor {
|
|
|
11662
11810
|
*
|
|
11663
11811
|
* Read more in our [docs](https://pris.ly/d/client).
|
|
11664
11812
|
*/
|
|
11665
|
-
interface PrismaClient$1<in LogOpts extends LogLevel = never, in out OmitOpts extends PrismaClientOptions['omit'] = undefined, in out ExtArgs extends
|
|
11813
|
+
interface PrismaClient$1<in LogOpts extends LogLevel = never, in out OmitOpts extends PrismaClientOptions['omit'] = undefined, in out ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> {
|
|
11666
11814
|
[K: symbol]: {
|
|
11667
11815
|
types: TypeMap<ExtArgs>['other'];
|
|
11668
11816
|
};
|
|
@@ -11670,11 +11818,11 @@ interface PrismaClient$1<in LogOpts extends LogLevel = never, in out OmitOpts ex
|
|
|
11670
11818
|
/**
|
|
11671
11819
|
* Connect with the database
|
|
11672
11820
|
*/
|
|
11673
|
-
$connect():
|
|
11821
|
+
$connect(): _prisma_client_runtime_client0.Types.Utils.JsPromise<void>;
|
|
11674
11822
|
/**
|
|
11675
11823
|
* Disconnect from the database
|
|
11676
11824
|
*/
|
|
11677
|
-
$disconnect():
|
|
11825
|
+
$disconnect(): _prisma_client_runtime_client0.Types.Utils.JsPromise<void>;
|
|
11678
11826
|
/**
|
|
11679
11827
|
* Executes a prepared raw query and returns the number of affected rows.
|
|
11680
11828
|
* @example
|
|
@@ -11732,13 +11880,13 @@ interface PrismaClient$1<in LogOpts extends LogLevel = never, in out OmitOpts ex
|
|
|
11732
11880
|
*/
|
|
11733
11881
|
$transaction<P$1 extends PrismaPromise<any>[]>(arg: [...P$1], options?: {
|
|
11734
11882
|
isolationLevel?: TransactionIsolationLevel;
|
|
11735
|
-
}):
|
|
11736
|
-
$transaction<R>(fn: (prisma: Omit<PrismaClient$1,
|
|
11883
|
+
}): _prisma_client_runtime_client0.Types.Utils.JsPromise<_prisma_client_runtime_client0.Types.Utils.UnwrapTuple<P$1>>;
|
|
11884
|
+
$transaction<R>(fn: (prisma: Omit<PrismaClient$1, _prisma_client_runtime_client0.ITXClientDenyList>) => _prisma_client_runtime_client0.Types.Utils.JsPromise<R>, options?: {
|
|
11737
11885
|
maxWait?: number;
|
|
11738
11886
|
timeout?: number;
|
|
11739
11887
|
isolationLevel?: TransactionIsolationLevel;
|
|
11740
|
-
}):
|
|
11741
|
-
$extends:
|
|
11888
|
+
}): _prisma_client_runtime_client0.Types.Utils.JsPromise<R>;
|
|
11889
|
+
$extends: _prisma_client_runtime_client0.Types.Extensions.ExtendsHook<"extends", TypeMapCb<OmitOpts>, ExtArgs, _prisma_client_runtime_client0.Types.Utils.Call<TypeMapCb<OmitOpts>, {
|
|
11742
11890
|
extArgs: ExtArgs;
|
|
11743
11891
|
}>>;
|
|
11744
11892
|
/**
|
|
@@ -11848,155 +11996,7 @@ interface PrismaClient$1<in LogOpts extends LogLevel = never, in out OmitOpts ex
|
|
|
11848
11996
|
* Read more in our [docs](https://pris.ly/d/client).
|
|
11849
11997
|
*/
|
|
11850
11998
|
declare const PrismaClient: PrismaClientConstructor;
|
|
11851
|
-
type PrismaClient<LogOpts extends LogLevel = never, OmitOpts extends PrismaClientOptions["omit"] = PrismaClientOptions["omit"], ExtArgs extends
|
|
11852
|
-
//#endregion
|
|
11853
|
-
//#region src/modules/icons/iconService.d.ts
|
|
11854
|
-
interface UpsertIconInput {
|
|
11855
|
-
name: string;
|
|
11856
|
-
content: Buffer;
|
|
11857
|
-
mimeType: string;
|
|
11858
|
-
fileSize: number;
|
|
11859
|
-
}
|
|
11860
|
-
/**
|
|
11861
|
-
* Upsert an icon to the database.
|
|
11862
|
-
* If an icon with the same name exists, it will be updated.
|
|
11863
|
-
* Otherwise, a new icon will be created.
|
|
11864
|
-
*/
|
|
11865
|
-
declare function upsertIcon(input: UpsertIconInput): Promise<{
|
|
11866
|
-
id: string;
|
|
11867
|
-
createdAt: Date;
|
|
11868
|
-
updatedAt: Date;
|
|
11869
|
-
name: string;
|
|
11870
|
-
assetType: AssetType;
|
|
11871
|
-
content: runtime.Bytes;
|
|
11872
|
-
checksum: string;
|
|
11873
|
-
mimeType: string;
|
|
11874
|
-
fileSize: number;
|
|
11875
|
-
width: number | null;
|
|
11876
|
-
height: number | null;
|
|
11877
|
-
}>;
|
|
11878
|
-
/**
|
|
11879
|
-
* Upsert multiple icons to the database.
|
|
11880
|
-
* This is more efficient than calling upsertIcon multiple times.
|
|
11881
|
-
*/
|
|
11882
|
-
declare function upsertIcons(icons: Array<UpsertIconInput>): Promise<{
|
|
11883
|
-
id: string;
|
|
11884
|
-
createdAt: Date;
|
|
11885
|
-
updatedAt: Date;
|
|
11886
|
-
name: string;
|
|
11887
|
-
assetType: AssetType;
|
|
11888
|
-
content: runtime.Bytes;
|
|
11889
|
-
checksum: string;
|
|
11890
|
-
mimeType: string;
|
|
11891
|
-
fileSize: number;
|
|
11892
|
-
width: number | null;
|
|
11893
|
-
height: number | null;
|
|
11894
|
-
}[]>;
|
|
11895
|
-
/**
|
|
11896
|
-
* Get an asset (icon or screenshot) by name from the database.
|
|
11897
|
-
* Returns the asset content, mimeType, and name if found.
|
|
11898
|
-
*/
|
|
11899
|
-
declare function getAssetByName(name: string): Promise<{
|
|
11900
|
-
name: string;
|
|
11901
|
-
content: Uint8Array<ArrayBuffer>;
|
|
11902
|
-
mimeType: string;
|
|
11903
|
-
} | null>;
|
|
11904
|
-
//#endregion
|
|
11905
|
-
//#region src/modules/assets/assetRestController.d.ts
|
|
11906
|
-
interface AssetRestControllerConfig {
|
|
11907
|
-
/**
|
|
11908
|
-
* Base path for asset endpoints (e.g., '/api/assets')
|
|
11909
|
-
*/
|
|
11910
|
-
basePath: string;
|
|
11911
|
-
}
|
|
11912
|
-
/**
|
|
11913
|
-
* Registers REST endpoints for universal asset upload and retrieval
|
|
11914
|
-
*
|
|
11915
|
-
* Endpoints:
|
|
11916
|
-
* - POST {basePath}/upload - Upload a new asset (multipart/form-data)
|
|
11917
|
-
* - GET {basePath}/:id - Get asset binary by ID
|
|
11918
|
-
* - GET {basePath}/:id/metadata - Get asset metadata only
|
|
11919
|
-
* - GET {basePath}/by-name/:name - Get asset binary by name
|
|
11920
|
-
*/
|
|
11921
|
-
declare function registerAssetRestController(router: Router, config: AssetRestControllerConfig): void;
|
|
11922
|
-
//#endregion
|
|
11923
|
-
//#region src/modules/assets/screenshotRestController.d.ts
|
|
11924
|
-
interface ScreenshotRestControllerConfig {
|
|
11925
|
-
/**
|
|
11926
|
-
* Base path for screenshot endpoints (e.g., '/api/screenshots')
|
|
11927
|
-
*/
|
|
11928
|
-
basePath: string;
|
|
11929
|
-
}
|
|
11930
|
-
/**
|
|
11931
|
-
* Registers REST endpoints for screenshot retrieval
|
|
11932
|
-
*
|
|
11933
|
-
* Endpoints:
|
|
11934
|
-
* - GET {basePath}/app/:appId - Get all screenshots for an app
|
|
11935
|
-
* - GET {basePath}/:id - Get screenshot binary by ID
|
|
11936
|
-
* - GET {basePath}/:id/metadata - Get screenshot metadata only
|
|
11937
|
-
*/
|
|
11938
|
-
declare function registerScreenshotRestController(router: Router, config: ScreenshotRestControllerConfig): void;
|
|
11939
|
-
//#endregion
|
|
11940
|
-
//#region src/modules/assets/syncAssets.d.ts
|
|
11941
|
-
interface SyncAssetsConfig {
|
|
11942
|
-
/**
|
|
11943
|
-
* Directory containing icon files to sync
|
|
11944
|
-
*/
|
|
11945
|
-
iconsDir?: string;
|
|
11946
|
-
/**
|
|
11947
|
-
* Directory containing screenshot files to sync
|
|
11948
|
-
*/
|
|
11949
|
-
screenshotsDir?: string;
|
|
11950
|
-
}
|
|
11951
|
-
/**
|
|
11952
|
-
* Sync local asset files (icons and screenshots) from directories into the database.
|
|
11953
|
-
*
|
|
11954
|
-
* This function allows consuming applications to sync asset files without directly
|
|
11955
|
-
* exposing the Prisma client. It handles:
|
|
11956
|
-
* - Icon files: Assigned to apps by matching filename to icon name patterns
|
|
11957
|
-
* - Screenshot files: Assigned to apps by matching filename to app ID (format: <app-id>_screenshot_<no>.<ext>)
|
|
11958
|
-
*
|
|
11959
|
-
* @param config Configuration with paths to icon and screenshot directories
|
|
11960
|
-
*/
|
|
11961
|
-
declare function syncAssets(config: SyncAssetsConfig): Promise<{
|
|
11962
|
-
iconsUpserted: number;
|
|
11963
|
-
screenshotsUpserted: number;
|
|
11964
|
-
}>;
|
|
11965
|
-
//#endregion
|
|
11966
|
-
//#region src/modules/appCatalog/checkLinks.d.ts
|
|
11967
|
-
interface LinkCheck {
|
|
11968
|
-
url: string;
|
|
11969
|
-
status: number | null;
|
|
11970
|
-
error?: string;
|
|
11971
|
-
appSlug: string;
|
|
11972
|
-
linkType: 'appUrl' | 'sources' | 'accessRequest.urls';
|
|
11973
|
-
}
|
|
11974
|
-
interface CheckLinksOptions {
|
|
11975
|
-
maxConcurrent?: number;
|
|
11976
|
-
timeout?: number;
|
|
11977
|
-
maxRetries?: number;
|
|
11978
|
-
onProgress?: (result: LinkCheck) => void;
|
|
11979
|
-
}
|
|
11980
|
-
/**
|
|
11981
|
-
* Check all links in the app catalog and return a report
|
|
11982
|
-
*/
|
|
11983
|
-
declare function checkAllLinks(options?: CheckLinksOptions): Promise<{
|
|
11984
|
-
total: number;
|
|
11985
|
-
working: number;
|
|
11986
|
-
broken: number;
|
|
11987
|
-
redirects: number;
|
|
11988
|
-
checks: Array<LinkCheck>;
|
|
11989
|
-
}>;
|
|
11990
|
-
/**
|
|
11991
|
-
* Print a formatted report of link check results
|
|
11992
|
-
*/
|
|
11993
|
-
declare function printLinkCheckReport(report: {
|
|
11994
|
-
total: number;
|
|
11995
|
-
working: number;
|
|
11996
|
-
broken: number;
|
|
11997
|
-
redirects: number;
|
|
11998
|
-
checks: Array<LinkCheck>;
|
|
11999
|
-
}): void;
|
|
11999
|
+
type PrismaClient<LogOpts extends LogLevel = never, OmitOpts extends PrismaClientOptions["omit"] = PrismaClientOptions["omit"], ExtArgs extends _prisma_client_runtime_client0.Types.Extensions.InternalArgs = _prisma_client_runtime_client0.Types.Extensions.DefaultArgs> = PrismaClient$1<LogOpts, OmitOpts, ExtArgs>;
|
|
12000
12000
|
//#endregion
|
|
12001
12001
|
//#region src/db/client.d.ts
|
|
12002
12002
|
/**
|