@highstate/backend 0.9.18 → 0.9.20
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/{chunk-OU5OQBLB.js → chunk-I7BWSAN6.js} +3 -28
- package/dist/{chunk-OU5OQBLB.js.map → chunk-I7BWSAN6.js.map} +1 -1
- package/dist/chunk-RC6Q3XQQ.js +1547 -0
- package/dist/chunk-RC6Q3XQQ.js.map +1 -0
- package/dist/chunk-VB4YL327.js +139 -0
- package/dist/chunk-VB4YL327.js.map +1 -0
- package/dist/database/local/prisma.config.js +26 -0
- package/dist/database/local/prisma.config.js.map +1 -0
- package/dist/highstate.manifest.json +2 -1
- package/dist/index.js +7590 -7289
- package/dist/index.js.map +1 -1
- package/dist/library/package-resolution-worker.js +1 -1
- package/dist/library/package-resolution-worker.js.map +1 -1
- package/dist/library/worker/main.js +35 -29
- package/dist/library/worker/main.js.map +1 -1
- package/dist/shared/index.js +2 -2
- package/package.json +18 -9
- package/prisma/backend/_schema/layout.prisma +7 -0
- package/prisma/backend/_schema/library.prisma +17 -0
- package/prisma/backend/_schema/project.prisma +101 -0
- package/prisma/backend/_schema/pulumi.prisma +17 -0
- package/prisma/backend/postgresql/main.prisma +17 -0
- package/prisma/backend/sqlite/main.prisma +17 -0
- package/prisma/backend/sqlite/migrations/20250817070609_initiial/migration.sql +34 -0
- package/prisma/backend/sqlite/migrations/20250817104948_add_fields/migration.sql +59 -0
- package/prisma/backend/sqlite/migrations/20250818082732_add_models/migration.sql +41 -0
- package/prisma/backend/sqlite/migrations/20250818083106_a/migration.sql +19 -0
- package/prisma/backend/sqlite/migrations/20250818101945_hi/migration.sql +1 -0
- package/prisma/backend/sqlite/migrations/20250819082315_a/migration.sql +5 -0
- package/prisma/backend/sqlite/migrations/migration_lock.toml +3 -0
- package/prisma/project/api-key.prisma +32 -0
- package/prisma/project/artifact.prisma +52 -0
- package/prisma/project/custom-status.prisma +46 -0
- package/prisma/project/evaluation.prisma +45 -0
- package/prisma/project/instance.prisma +157 -0
- package/prisma/project/layout.prisma +23 -0
- package/prisma/project/lock.prisma +18 -0
- package/prisma/project/main.prisma +17 -0
- package/prisma/project/migrations/20250816081310_initial/migration.sql +300 -0
- package/prisma/project/migrations/20250816082523_test/migration.sql +72 -0
- package/prisma/project/migrations/20250818065643_update/migration.sql +42 -0
- package/prisma/project/migrations/20250818070758_a/migration.sql +8 -0
- package/prisma/project/migrations/20250818070913_a/migration.sql +8 -0
- package/prisma/project/migrations/20250818082720_add_motels/migration.sql +11 -0
- package/prisma/project/migrations/20250818112523_hello/migration.sql +35 -0
- package/prisma/project/migrations/20250819082305_a/migration.sql +14 -0
- package/prisma/project/migrations/20250819165004_add_missing_fields/migration.sql +216 -0
- package/prisma/project/migrations/20250819171309_a/migration.sql +22 -0
- package/prisma/project/migrations/20250820113949_a/migration.sql +66 -0
- package/prisma/project/migrations/20250820144256_b/migration.sql +31 -0
- package/prisma/project/migrations/20250820145547_a/migration.sql +24 -0
- package/prisma/project/migrations/20250820182517_b/migration.sql +2 -0
- package/prisma/project/migrations/20250821172324_a/migration.sql +2 -0
- package/prisma/project/migrations/20250822081339_a/migration.sql +219 -0
- package/prisma/project/migrations/20250822083742_b/migration.sql +1 -0
- package/prisma/project/migrations/20250822105134_boom/migration.sql +1 -0
- package/prisma/project/migrations/20250822141028_b/migration.sql +1 -0
- package/prisma/project/migrations/20250822142342_b/migration.sql +16 -0
- package/prisma/project/migrations/20250824072720_a/migration.sql +1 -0
- package/prisma/project/migrations/20250824093656_b/migration.sql +21 -0
- package/prisma/project/migrations/20250825082518_a/migration.sql +1 -0
- package/prisma/project/migrations/20250825085343_b/migration.sql +1 -0
- package/prisma/project/migrations/20250825091312_a/migration.sql +1 -0
- package/prisma/project/migrations/20250903095431_hi/migration.sql +44 -0
- package/prisma/project/migrations/20250903174255_a/migration.sql +24 -0
- package/prisma/project/migrations/20250908095205_hi/migration.sql +18 -0
- package/prisma/project/migrations/20250909155857_hi/migration.sql +15 -0
- package/prisma/project/migrations/migration_lock.toml +3 -0
- package/prisma/project/model.prisma +37 -0
- package/prisma/project/operation.prisma +148 -0
- package/prisma/project/page.prisma +49 -0
- package/prisma/project/secret.prisma +54 -0
- package/prisma/project/service-account.prisma +42 -0
- package/prisma/project/terminal.prisma +107 -0
- package/prisma/project/trigger.prisma +37 -0
- package/prisma/project/unlock-method.prisma +46 -0
- package/prisma/project/worker.prisma +169 -0
- package/src/artifact/abstractions.ts +13 -13
- package/src/artifact/encryption.ts +30 -54
- package/src/artifact/factory.ts +6 -9
- package/src/artifact/local.ts +33 -46
- package/src/business/api-key.ts +24 -36
- package/src/business/artifact.test.ts +978 -0
- package/src/business/artifact.ts +136 -216
- package/src/business/evaluation.ts +328 -0
- package/src/business/index.ts +5 -2
- package/src/business/instance-lock.test.ts +1060 -0
- package/src/business/instance-lock.ts +387 -78
- package/src/business/instance-state.test.ts +735 -0
- package/src/business/instance-state.ts +582 -337
- package/src/business/operation.test.ts +439 -0
- package/src/business/operation.ts +174 -208
- package/src/business/project-model.ts +258 -0
- package/src/business/project-unlock.ts +168 -126
- package/src/business/project.ts +287 -179
- package/src/business/secret.test.ts +469 -130
- package/src/business/secret.ts +177 -217
- package/src/business/settings.test.ts +695 -0
- package/src/business/settings.ts +855 -0
- package/src/business/terminal-session.ts +90 -0
- package/src/business/unit-extra.test.ts +539 -0
- package/src/business/unit-extra.ts +160 -0
- package/src/business/worker.test.ts +356 -579
- package/src/business/worker.ts +238 -339
- package/src/common/codebase.ts +65 -0
- package/src/common/index.ts +3 -5
- package/src/common/logger.ts +5 -0
- package/src/common/utils.ts +4 -3
- package/src/config.ts +10 -11
- package/src/database/_generated/backend/postgresql/client.ts +72 -0
- package/src/database/_generated/backend/postgresql/commonInputTypes.ts +350 -0
- package/src/database/_generated/backend/postgresql/enums.ts +13 -0
- package/src/database/_generated/backend/postgresql/internal/class.ts +320 -0
- package/src/database/_generated/backend/postgresql/internal/prismaNamespace.ts +1238 -0
- package/src/database/_generated/backend/postgresql/models/Library.ts +1263 -0
- package/src/database/_generated/backend/postgresql/models/Project.ts +2175 -0
- package/src/database/_generated/backend/postgresql/models/ProjectModelStorage.ts +1263 -0
- package/src/database/_generated/backend/postgresql/models/ProjectSpace.ts +1602 -0
- package/src/database/_generated/backend/postgresql/models/PulumiBackend.ts +1263 -0
- package/src/database/_generated/backend/postgresql/models/UserWorkspaseLayout.ts +1065 -0
- package/src/database/_generated/backend/postgresql/models.ts +16 -0
- package/src/database/_generated/backend/postgresql/pjtg.ts +182 -0
- package/src/database/_generated/backend/sqlite/client.ts +72 -0
- package/src/database/_generated/backend/sqlite/commonInputTypes.ts +331 -0
- package/src/database/_generated/backend/sqlite/enums.ts +13 -0
- package/src/database/_generated/backend/sqlite/internal/class.ts +318 -0
- package/src/database/_generated/backend/sqlite/internal/prismaNamespace.ts +1207 -0
- package/src/database/_generated/backend/sqlite/models/Library.ts +1261 -0
- package/src/database/_generated/backend/sqlite/models/Project.ts +2169 -0
- package/src/database/_generated/backend/sqlite/models/ProjectModelStorage.ts +1261 -0
- package/src/database/_generated/backend/sqlite/models/ProjectSpace.ts +1599 -0
- package/src/database/_generated/backend/sqlite/models/PulumiBackend.ts +1261 -0
- package/src/database/_generated/backend/sqlite/models/UserWorkspaseLayout.ts +1063 -0
- package/src/database/_generated/backend/sqlite/models.ts +16 -0
- package/src/database/_generated/backend/sqlite/pjtg.ts +182 -0
- package/src/database/_generated/project/client.ts +204 -0
- package/src/database/_generated/project/commonInputTypes.ts +827 -0
- package/src/database/_generated/project/enums.ts +104 -0
- package/src/database/_generated/project/internal/class.ts +479 -0
- package/src/database/_generated/project/internal/prismaNamespace.ts +2974 -0
- package/src/database/_generated/project/models/ApiKey.ts +1506 -0
- package/src/database/_generated/project/models/Artifact.ts +2051 -0
- package/src/database/_generated/project/models/HubModel.ts +1125 -0
- package/src/database/_generated/project/models/InstanceCustomStatus.ts +1713 -0
- package/src/database/_generated/project/models/InstanceEvaluationState.ts +1312 -0
- package/src/database/_generated/project/models/InstanceLock.ts +1268 -0
- package/src/database/_generated/project/models/InstanceModel.ts +1125 -0
- package/src/database/_generated/project/models/InstanceOperationState.ts +1707 -0
- package/src/database/_generated/project/models/InstanceState.ts +4613 -0
- package/src/database/_generated/project/models/Operation.ts +1647 -0
- package/src/database/_generated/project/models/OperationLog.ts +1455 -0
- package/src/database/_generated/project/models/Page.ts +1838 -0
- package/src/database/_generated/project/models/Secret.ts +1692 -0
- package/src/database/_generated/project/models/ServiceAccount.ts +2165 -0
- package/src/database/_generated/project/models/Terminal.ts +2038 -0
- package/src/database/_generated/project/models/TerminalSession.ts +1454 -0
- package/src/database/_generated/project/models/TerminalSessionLog.ts +1280 -0
- package/src/database/_generated/project/models/Trigger.ts +1430 -0
- package/src/database/_generated/project/models/UnlockMethod.ts +1220 -0
- package/src/database/_generated/project/models/UserCompositeViewport.ts +1280 -0
- package/src/database/_generated/project/models/UserProjectViewport.ts +1059 -0
- package/src/database/_generated/project/models/Worker.ts +1459 -0
- package/src/database/_generated/project/models/WorkerUnitRegistration.ts +1524 -0
- package/src/database/_generated/project/models/WorkerVersion.ts +1974 -0
- package/src/database/_generated/project/models/WorkerVersionLog.ts +1318 -0
- package/src/database/_generated/project/models.ts +35 -0
- package/src/database/_generated/project/pjtg.ts +182 -0
- package/src/database/abstractions.ts +19 -0
- package/src/database/factory.ts +37 -0
- package/src/database/index.ts +6 -0
- package/src/database/local/backend.ts +134 -0
- package/src/database/local/index.ts +3 -0
- package/src/database/local/meta.ts +46 -0
- package/src/database/local/prisma.config.ts +25 -0
- package/src/database/local/project.ts +39 -0
- package/src/database/manager.ts +181 -0
- package/src/database/migrate.ts +35 -0
- package/src/database/prisma.ts +56 -0
- package/src/database/well-known.ts +38 -0
- package/src/index.ts +4 -4
- package/src/library/abstractions.ts +3 -5
- package/src/library/factory.ts +1 -1
- package/src/library/local.ts +81 -26
- package/src/library/package-resolution-worker.ts +1 -1
- package/src/library/worker/evaluator.ts +40 -23
- package/src/library/worker/loader.lite.ts +1 -1
- package/src/library/worker/main.ts +3 -10
- package/src/library/worker/protocol.ts +0 -1
- package/src/lock/index.ts +0 -1
- package/src/lock/manager.ts +0 -10
- package/src/orchestrator/manager.ts +190 -104
- package/src/orchestrator/operation-context.ts +357 -0
- package/src/orchestrator/operation-plan.destroy.test.md +357 -0
- package/src/orchestrator/operation-plan.destroy.test.ts +775 -0
- package/src/orchestrator/operation-plan.fixtures.ts +213 -0
- package/src/orchestrator/operation-plan.md +198 -0
- package/src/orchestrator/operation-plan.refresh.test.md +199 -0
- package/src/orchestrator/operation-plan.refresh.test.ts +367 -0
- package/src/orchestrator/operation-plan.ts +709 -0
- package/src/orchestrator/operation-plan.update.test.md +485 -0
- package/src/orchestrator/operation-plan.update.test.ts +1066 -0
- package/src/orchestrator/operation-workset.ts +233 -578
- package/src/orchestrator/operation.ts +440 -948
- package/src/orchestrator/plan-test-builder.ts +267 -0
- package/src/project-model/abstractions.ts +118 -0
- package/src/project-model/backends/codebase.ts +365 -0
- package/src/project-model/backends/database.ts +440 -0
- package/src/project-model/errors.ts +81 -0
- package/src/project-model/factory.ts +24 -0
- package/src/project-model/index.ts +4 -0
- package/src/project-model/utils.test.ts +544 -0
- package/src/project-model/utils.ts +242 -0
- package/src/pubsub/abstractions.ts +10 -1
- package/src/pubsub/factory.ts +4 -4
- package/src/pubsub/index.ts +1 -0
- package/src/pubsub/manager.ts +29 -13
- package/src/pubsub/memory.ts +31 -0
- package/src/runner/abstractions.ts +40 -41
- package/src/runner/artifact-env.ts +19 -8
- package/src/runner/factory.ts +6 -6
- package/src/runner/force-abort.ts +3 -6
- package/src/runner/local.ts +74 -67
- package/src/runner/pulumi.ts +23 -63
- package/src/services.ts +181 -123
- package/src/shared/models/backend/index.ts +3 -1
- package/src/shared/models/backend/library.ts +9 -1
- package/src/shared/models/backend/project.ts +43 -42
- package/src/shared/models/backend/pulumi.ts +14 -0
- package/src/shared/models/backend/unlock-method.ts +1 -1
- package/src/shared/models/backend/well-known.ts +58 -0
- package/src/shared/models/base.ts +40 -26
- package/src/shared/models/errors.ts +82 -1
- package/src/shared/models/index.ts +3 -2
- package/src/shared/models/prisma.ts +36 -0
- package/src/shared/models/project/api-key.ts +37 -59
- package/src/shared/models/project/artifact.ts +16 -76
- package/src/shared/models/project/custom-status.ts +12 -0
- package/src/shared/models/project/index.ts +8 -7
- package/src/shared/models/project/lock.ts +10 -78
- package/src/shared/models/project/model.ts +19 -1
- package/src/shared/models/project/operation.ts +235 -99
- package/src/shared/models/project/page.ts +37 -48
- package/src/shared/models/project/secret.ts +29 -89
- package/src/shared/models/project/service-account.ts +12 -17
- package/src/shared/models/project/state.ts +100 -407
- package/src/shared/models/project/terminal.ts +75 -88
- package/src/shared/models/project/trigger.ts +13 -49
- package/src/shared/models/project/unlock-method.ts +20 -26
- package/src/shared/models/project/worker.ts +89 -90
- package/src/shared/resolvers/graph-resolver.ts +21 -0
- package/src/shared/resolvers/index.ts +1 -1
- package/src/shared/resolvers/input-hash.ts +24 -14
- package/src/shared/resolvers/input.ts +9 -2
- package/src/shared/resolvers/registry.ts +5 -4
- package/src/shared/resolvers/state.ts +12 -1
- package/src/shared/resolvers/validation.ts +7 -3
- package/src/shared/utils/index.ts +1 -2
- package/src/shared/utils/promise-tracker.ts +30 -3
- package/src/terminal/abstractions.ts +1 -1
- package/src/terminal/docker.ts +3 -3
- package/src/terminal/manager.ts +102 -118
- package/src/test-utils/database.ts +119 -0
- package/src/test-utils/index.ts +2 -0
- package/src/test-utils/services.ts +134 -0
- package/src/unlock/abstractions.ts +5 -23
- package/src/unlock/memory.ts +9 -14
- package/src/worker/abstractions.ts +7 -4
- package/src/worker/docker.ts +14 -19
- package/src/worker/manager.ts +366 -97
- package/dist/chunk-NAAIDR4U.js +0 -8499
- package/dist/chunk-NAAIDR4U.js.map +0 -1
- package/dist/chunk-Y7DXREVO.js +0 -1745
- package/dist/chunk-Y7DXREVO.js.map +0 -1
- package/dist/magic-string.es-5ABAC4JN.js +0 -1292
- package/dist/magic-string.es-5ABAC4JN.js.map +0 -1
- package/src/business/__traces__/secret/update-instance-secrets/create-and-delete-secrets-simultaneously.md +0 -356
- package/src/business/__traces__/secret/update-instance-secrets/create-new-secrets-for-instance.md +0 -274
- package/src/business/__traces__/secret/update-instance-secrets/delete-existing-secrets.md +0 -223
- package/src/business/__traces__/secret/update-instance-secrets/no-op-when-no-changes.md +0 -147
- package/src/business/__traces__/secret/update-instance-secrets/update-existing-secrets.md +0 -280
- package/src/business/__traces__/worker/update-unit-registrations/add-new-unit-registration-when-other-exists.md +0 -360
- package/src/business/__traces__/worker/update-unit-registrations/add-new-unit-registration.md +0 -215
- package/src/business/__traces__/worker/update-unit-registrations/create-multiple-workers-with-different-identities.md +0 -427
- package/src/business/__traces__/worker/update-unit-registrations/handle-nonexistent-registration-id-gracefully.md +0 -217
- package/src/business/__traces__/worker/update-unit-registrations/no-op-when-no-changes.md +0 -132
- package/src/business/__traces__/worker/update-unit-registrations/recreate-worker-when-image-changes.md +0 -454
- package/src/business/__traces__/worker/update-unit-registrations/recreate-worker-when-image-version-changes.md +0 -426
- package/src/business/__traces__/worker/update-unit-registrations/recreate-worker-with-same-identity-reuses-service-account.md +0 -372
- package/src/business/__traces__/worker/update-unit-registrations/remove-one-of-multiple-unit-registrations.md +0 -383
- package/src/business/__traces__/worker/update-unit-registrations/remove-unit-registration.md +0 -245
- package/src/business/__traces__/worker/update-unit-registrations/update-existing-unit-registration-when-params-change.md +0 -174
- package/src/business/__traces__/worker/update-unit-registrations/update-params-and-image-simultaneously.md +0 -432
- package/src/business/__traces__/worker/update-unit-registrations/worker-with-multiple-registrations-not-deleted-when-one-removed.md +0 -220
- package/src/business/backend-unlock.ts +0 -10
- package/src/common/clock.ts +0 -18
- package/src/common/performance.ts +0 -44
- package/src/common/random.ts +0 -68
- package/src/common/test/index.ts +0 -2
- package/src/common/test/render.ts +0 -98
- package/src/common/test/tracer.ts +0 -359
- package/src/hotstate/abstractions.ts +0 -48
- package/src/hotstate/factory.ts +0 -17
- package/src/hotstate/index.ts +0 -3
- package/src/hotstate/manager.ts +0 -192
- package/src/hotstate/memory.ts +0 -100
- package/src/hotstate/validation.ts +0 -100
- package/src/lock/test.ts +0 -108
- package/src/project/abstractions.ts +0 -78
- package/src/project/evaluation.ts +0 -248
- package/src/project/factory.ts +0 -11
- package/src/project/index.ts +0 -3
- package/src/project/local.ts +0 -417
- package/src/pubsub/local.ts +0 -36
- package/src/pubsub/validation.ts +0 -33
- package/src/shared/utils/args.ts +0 -25
- package/src/state/abstractions.ts +0 -289
- package/src/state/encryption.ts +0 -98
- package/src/state/factory.ts +0 -20
- package/src/state/index.ts +0 -7
- package/src/state/local/backend.ts +0 -106
- package/src/state/local/collection.ts +0 -361
- package/src/state/local/index.ts +0 -2
- package/src/state/manager.ts +0 -890
- package/src/state/memory/backend.ts +0 -70
- package/src/state/memory/collection.ts +0 -270
- package/src/state/memory/index.ts +0 -2
- package/src/state/repository/index.ts +0 -2
- package/src/state/repository/repository.index.ts +0 -193
- package/src/state/repository/repository.ts +0 -507
- package/src/state/test.ts +0 -457
- /package/src/{state → database/local}/keyring.ts +0 -0
|
@@ -0,0 +1,2974 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
/**
|
|
6
|
+
* WARNING: This is an internal file that is subject to change!
|
|
7
|
+
*
|
|
8
|
+
* 🛑 Under no circumstances should you import this file directly! 🛑
|
|
9
|
+
*
|
|
10
|
+
* All exports from this file are wrapped under a `Prisma` namespace object in the client.ts file.
|
|
11
|
+
* While this enables partial backward compatibility, it is not part of the stable public API.
|
|
12
|
+
*
|
|
13
|
+
* If you are looking for your Models, Enums, and Input Types, please import them from the respective
|
|
14
|
+
* model files in the `model` directory!
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import * as runtime from "@prisma/client/runtime/client"
|
|
18
|
+
import type * as Prisma from "../models.ts"
|
|
19
|
+
import { type PrismaClient } from "./class.ts"
|
|
20
|
+
|
|
21
|
+
export type * from '../models.ts'
|
|
22
|
+
|
|
23
|
+
export type DMMF = typeof runtime.DMMF
|
|
24
|
+
|
|
25
|
+
export type PrismaPromise<T> = runtime.Types.Public.PrismaPromise<T>
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Validator
|
|
29
|
+
*/
|
|
30
|
+
export const validator = runtime.Public.validator
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Prisma Errors
|
|
34
|
+
*/
|
|
35
|
+
|
|
36
|
+
export const PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
|
|
37
|
+
export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError
|
|
38
|
+
|
|
39
|
+
export const PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
|
|
40
|
+
export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError
|
|
41
|
+
|
|
42
|
+
export const PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
|
|
43
|
+
export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError
|
|
44
|
+
|
|
45
|
+
export const PrismaClientInitializationError = runtime.PrismaClientInitializationError
|
|
46
|
+
export type PrismaClientInitializationError = runtime.PrismaClientInitializationError
|
|
47
|
+
|
|
48
|
+
export const PrismaClientValidationError = runtime.PrismaClientValidationError
|
|
49
|
+
export type PrismaClientValidationError = runtime.PrismaClientValidationError
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Re-export of sql-template-tag
|
|
53
|
+
*/
|
|
54
|
+
export const sql = runtime.sqltag
|
|
55
|
+
export const empty = runtime.empty
|
|
56
|
+
export const join = runtime.join
|
|
57
|
+
export const raw = runtime.raw
|
|
58
|
+
export const Sql = runtime.Sql
|
|
59
|
+
export type Sql = runtime.Sql
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Decimal.js
|
|
65
|
+
*/
|
|
66
|
+
export const Decimal = runtime.Decimal
|
|
67
|
+
export type Decimal = runtime.Decimal
|
|
68
|
+
|
|
69
|
+
export type DecimalJsLike = runtime.DecimalJsLike
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Metrics
|
|
73
|
+
*/
|
|
74
|
+
export type Metrics = runtime.Metrics
|
|
75
|
+
export type Metric<T> = runtime.Metric<T>
|
|
76
|
+
export type MetricHistogram = runtime.MetricHistogram
|
|
77
|
+
export type MetricHistogramBucket = runtime.MetricHistogramBucket
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Extensions
|
|
81
|
+
*/
|
|
82
|
+
export type Extension = runtime.Types.Extensions.UserArgs
|
|
83
|
+
export const getExtensionContext = runtime.Extensions.getExtensionContext
|
|
84
|
+
export type Args<T, F extends runtime.Operation> = runtime.Types.Public.Args<T, F>
|
|
85
|
+
export type Payload<T, F extends runtime.Operation = never> = runtime.Types.Public.Payload<T, F>
|
|
86
|
+
export type Result<T, A, F extends runtime.Operation> = runtime.Types.Public.Result<T, A, F>
|
|
87
|
+
export type Exact<A, W> = runtime.Types.Public.Exact<A, W>
|
|
88
|
+
|
|
89
|
+
export type PrismaVersion = {
|
|
90
|
+
client: string
|
|
91
|
+
engine: string
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Prisma Client JS version: 6.14.0
|
|
96
|
+
* Query Engine version: 717184b7b35ea05dfa71a3236b7af656013e1e49
|
|
97
|
+
*/
|
|
98
|
+
export const prismaVersion: PrismaVersion = {
|
|
99
|
+
client: "6.14.0",
|
|
100
|
+
engine: "717184b7b35ea05dfa71a3236b7af656013e1e49"
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Utility Types
|
|
105
|
+
*/
|
|
106
|
+
|
|
107
|
+
export type JsonObject = runtime.JsonObject
|
|
108
|
+
export type JsonArray = runtime.JsonArray
|
|
109
|
+
export type JsonValue = runtime.JsonValue
|
|
110
|
+
export type InputJsonObject = runtime.InputJsonObject
|
|
111
|
+
export type InputJsonArray = runtime.InputJsonArray
|
|
112
|
+
export type InputJsonValue = runtime.InputJsonValue
|
|
113
|
+
|
|
114
|
+
export const NullTypes = {
|
|
115
|
+
DbNull: runtime.objectEnumValues.classes.DbNull as (new (secret: never) => typeof runtime.objectEnumValues.instances.DbNull),
|
|
116
|
+
JsonNull: runtime.objectEnumValues.classes.JsonNull as (new (secret: never) => typeof runtime.objectEnumValues.instances.JsonNull),
|
|
117
|
+
AnyNull: runtime.objectEnumValues.classes.AnyNull as (new (secret: never) => typeof runtime.objectEnumValues.instances.AnyNull),
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
122
|
+
*
|
|
123
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
124
|
+
*/
|
|
125
|
+
export const DbNull = runtime.objectEnumValues.instances.DbNull
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
129
|
+
*
|
|
130
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
131
|
+
*/
|
|
132
|
+
export const JsonNull = runtime.objectEnumValues.instances.JsonNull
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
136
|
+
*
|
|
137
|
+
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
138
|
+
*/
|
|
139
|
+
export const AnyNull = runtime.objectEnumValues.instances.AnyNull
|
|
140
|
+
|
|
141
|
+
type SelectAndInclude = {
|
|
142
|
+
select: any
|
|
143
|
+
include: any
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
type SelectAndOmit = {
|
|
147
|
+
select: any
|
|
148
|
+
omit: any
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
153
|
+
*/
|
|
154
|
+
type Prisma__Pick<T, K extends keyof T> = {
|
|
155
|
+
[P in K]: T[P];
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
export type Enumerable<T> = T | Array<T>;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Subset
|
|
162
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection
|
|
163
|
+
*/
|
|
164
|
+
export type Subset<T, U> = {
|
|
165
|
+
[key in keyof T]: key extends keyof U ? T[key] : never;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* SelectSubset
|
|
170
|
+
* @desc From `T` pick properties that exist in `U`. Simple version of Intersection.
|
|
171
|
+
* Additionally, it validates, if both select and include are present. If the case, it errors.
|
|
172
|
+
*/
|
|
173
|
+
export type SelectSubset<T, U> = {
|
|
174
|
+
[key in keyof T]: key extends keyof U ? T[key] : never
|
|
175
|
+
} &
|
|
176
|
+
(T extends SelectAndInclude
|
|
177
|
+
? 'Please either choose `select` or `include`.'
|
|
178
|
+
: T extends SelectAndOmit
|
|
179
|
+
? 'Please either choose `select` or `omit`.'
|
|
180
|
+
: {})
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Subset + Intersection
|
|
184
|
+
* @desc From `T` pick properties that exist in `U` and intersect `K`
|
|
185
|
+
*/
|
|
186
|
+
export type SubsetIntersection<T, U, K> = {
|
|
187
|
+
[key in keyof T]: key extends keyof U ? T[key] : never
|
|
188
|
+
} &
|
|
189
|
+
K
|
|
190
|
+
|
|
191
|
+
type Without<T, U> = { [P in Exclude<keyof T, keyof U>]?: never };
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* XOR is needed to have a real mutually exclusive union type
|
|
195
|
+
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
|
196
|
+
*/
|
|
197
|
+
export type XOR<T, U> =
|
|
198
|
+
T extends object ?
|
|
199
|
+
U extends object ?
|
|
200
|
+
(Without<T, U> & U) | (Without<U, T> & T)
|
|
201
|
+
: U : T
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* Is T a Record?
|
|
206
|
+
*/
|
|
207
|
+
type IsObject<T extends any> = T extends Array<any>
|
|
208
|
+
? False
|
|
209
|
+
: T extends Date
|
|
210
|
+
? False
|
|
211
|
+
: T extends Uint8Array
|
|
212
|
+
? False
|
|
213
|
+
: T extends BigInt
|
|
214
|
+
? False
|
|
215
|
+
: T extends object
|
|
216
|
+
? True
|
|
217
|
+
: False
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* If it's T[], return T
|
|
222
|
+
*/
|
|
223
|
+
export type UnEnumerate<T extends unknown> = T extends Array<infer U> ? U : T
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* From ts-toolbelt
|
|
227
|
+
*/
|
|
228
|
+
|
|
229
|
+
type __Either<O extends object, K extends Key> = Omit<O, K> &
|
|
230
|
+
{
|
|
231
|
+
// Merge all but K
|
|
232
|
+
[P in K]: Prisma__Pick<O, P & keyof O> // With K possibilities
|
|
233
|
+
}[K]
|
|
234
|
+
|
|
235
|
+
type EitherStrict<O extends object, K extends Key> = Strict<__Either<O, K>>
|
|
236
|
+
|
|
237
|
+
type EitherLoose<O extends object, K extends Key> = ComputeRaw<__Either<O, K>>
|
|
238
|
+
|
|
239
|
+
type _Either<
|
|
240
|
+
O extends object,
|
|
241
|
+
K extends Key,
|
|
242
|
+
strict extends Boolean
|
|
243
|
+
> = {
|
|
244
|
+
1: EitherStrict<O, K>
|
|
245
|
+
0: EitherLoose<O, K>
|
|
246
|
+
}[strict]
|
|
247
|
+
|
|
248
|
+
export type Either<
|
|
249
|
+
O extends object,
|
|
250
|
+
K extends Key,
|
|
251
|
+
strict extends Boolean = 1
|
|
252
|
+
> = O extends unknown ? _Either<O, K, strict> : never
|
|
253
|
+
|
|
254
|
+
export type Union = any
|
|
255
|
+
|
|
256
|
+
export type PatchUndefined<O extends object, O1 extends object> = {
|
|
257
|
+
[K in keyof O]: O[K] extends undefined ? At<O1, K> : O[K]
|
|
258
|
+
} & {}
|
|
259
|
+
|
|
260
|
+
/** Helper Types for "Merge" **/
|
|
261
|
+
export type IntersectOf<U extends Union> = (
|
|
262
|
+
U extends unknown ? (k: U) => void : never
|
|
263
|
+
) extends (k: infer I) => void
|
|
264
|
+
? I
|
|
265
|
+
: never
|
|
266
|
+
|
|
267
|
+
export type Overwrite<O extends object, O1 extends object> = {
|
|
268
|
+
[K in keyof O]: K extends keyof O1 ? O1[K] : O[K];
|
|
269
|
+
} & {};
|
|
270
|
+
|
|
271
|
+
type _Merge<U extends object> = IntersectOf<Overwrite<U, {
|
|
272
|
+
[K in keyof U]-?: At<U, K>;
|
|
273
|
+
}>>;
|
|
274
|
+
|
|
275
|
+
type Key = string | number | symbol;
|
|
276
|
+
type AtStrict<O extends object, K extends Key> = O[K & keyof O];
|
|
277
|
+
type AtLoose<O extends object, K extends Key> = O extends unknown ? AtStrict<O, K> : never;
|
|
278
|
+
export type At<O extends object, K extends Key, strict extends Boolean = 1> = {
|
|
279
|
+
1: AtStrict<O, K>;
|
|
280
|
+
0: AtLoose<O, K>;
|
|
281
|
+
}[strict];
|
|
282
|
+
|
|
283
|
+
export type ComputeRaw<A extends any> = A extends Function ? A : {
|
|
284
|
+
[K in keyof A]: A[K];
|
|
285
|
+
} & {};
|
|
286
|
+
|
|
287
|
+
export type OptionalFlat<O> = {
|
|
288
|
+
[K in keyof O]?: O[K];
|
|
289
|
+
} & {};
|
|
290
|
+
|
|
291
|
+
type _Record<K extends keyof any, T> = {
|
|
292
|
+
[P in K]: T;
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
// cause typescript not to expand types and preserve names
|
|
296
|
+
type NoExpand<T> = T extends unknown ? T : never;
|
|
297
|
+
|
|
298
|
+
// this type assumes the passed object is entirely optional
|
|
299
|
+
export type AtLeast<O extends object, K extends string> = NoExpand<
|
|
300
|
+
O extends unknown
|
|
301
|
+
? | (K extends keyof O ? { [P in K]: O[P] } & O : O)
|
|
302
|
+
| {[P in keyof O as P extends K ? P : never]-?: O[P]} & O
|
|
303
|
+
: never>;
|
|
304
|
+
|
|
305
|
+
type _Strict<U, _U = U> = U extends unknown ? U & OptionalFlat<_Record<Exclude<Keys<_U>, keyof U>, never>> : never;
|
|
306
|
+
|
|
307
|
+
export type Strict<U extends object> = ComputeRaw<_Strict<U>>;
|
|
308
|
+
/** End Helper Types for "Merge" **/
|
|
309
|
+
|
|
310
|
+
export type Merge<U extends object> = ComputeRaw<_Merge<Strict<U>>>;
|
|
311
|
+
|
|
312
|
+
export type Boolean = True | False
|
|
313
|
+
|
|
314
|
+
export type True = 1
|
|
315
|
+
|
|
316
|
+
export type False = 0
|
|
317
|
+
|
|
318
|
+
export type Not<B extends Boolean> = {
|
|
319
|
+
0: 1
|
|
320
|
+
1: 0
|
|
321
|
+
}[B]
|
|
322
|
+
|
|
323
|
+
export type Extends<A1 extends any, A2 extends any> = [A1] extends [never]
|
|
324
|
+
? 0 // anything `never` is false
|
|
325
|
+
: A1 extends A2
|
|
326
|
+
? 1
|
|
327
|
+
: 0
|
|
328
|
+
|
|
329
|
+
export type Has<U extends Union, U1 extends Union> = Not<
|
|
330
|
+
Extends<Exclude<U1, U>, U1>
|
|
331
|
+
>
|
|
332
|
+
|
|
333
|
+
export type Or<B1 extends Boolean, B2 extends Boolean> = {
|
|
334
|
+
0: {
|
|
335
|
+
0: 0
|
|
336
|
+
1: 1
|
|
337
|
+
}
|
|
338
|
+
1: {
|
|
339
|
+
0: 1
|
|
340
|
+
1: 1
|
|
341
|
+
}
|
|
342
|
+
}[B1][B2]
|
|
343
|
+
|
|
344
|
+
export type Keys<U extends Union> = U extends unknown ? keyof U : never
|
|
345
|
+
|
|
346
|
+
export type GetScalarType<T, O> = O extends object ? {
|
|
347
|
+
[P in keyof T]: P extends keyof O
|
|
348
|
+
? O[P]
|
|
349
|
+
: never
|
|
350
|
+
} : never
|
|
351
|
+
|
|
352
|
+
type FieldPaths<
|
|
353
|
+
T,
|
|
354
|
+
U = Omit<T, '_avg' | '_sum' | '_count' | '_min' | '_max'>
|
|
355
|
+
> = IsObject<T> extends True ? U : T
|
|
356
|
+
|
|
357
|
+
export type GetHavingFields<T> = {
|
|
358
|
+
[K in keyof T]: Or<
|
|
359
|
+
Or<Extends<'OR', K>, Extends<'AND', K>>,
|
|
360
|
+
Extends<'NOT', K>
|
|
361
|
+
> extends True
|
|
362
|
+
? // infer is only needed to not hit TS limit
|
|
363
|
+
// based on the brilliant idea of Pierre-Antoine Mills
|
|
364
|
+
// https://github.com/microsoft/TypeScript/issues/30188#issuecomment-478938437
|
|
365
|
+
T[K] extends infer TK
|
|
366
|
+
? GetHavingFields<UnEnumerate<TK> extends object ? Merge<UnEnumerate<TK>> : never>
|
|
367
|
+
: never
|
|
368
|
+
: {} extends FieldPaths<T[K]>
|
|
369
|
+
? never
|
|
370
|
+
: K
|
|
371
|
+
}[keyof T]
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* Convert tuple to union
|
|
375
|
+
*/
|
|
376
|
+
type _TupleToUnion<T> = T extends (infer E)[] ? E : never
|
|
377
|
+
type TupleToUnion<K extends readonly any[]> = _TupleToUnion<K>
|
|
378
|
+
export type MaybeTupleToUnion<T> = T extends any[] ? TupleToUnion<T> : T
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* Like `Pick`, but additionally can also accept an array of keys
|
|
382
|
+
*/
|
|
383
|
+
export type PickEnumerable<T, K extends Enumerable<keyof T> | keyof T> = Prisma__Pick<T, MaybeTupleToUnion<K>>
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* Exclude all keys with underscores
|
|
387
|
+
*/
|
|
388
|
+
export type ExcludeUnderscoreKeys<T extends string> = T extends `_${string}` ? never : T
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
export type FieldRef<Model, FieldType> = runtime.FieldRef<Model, FieldType>
|
|
392
|
+
|
|
393
|
+
type FieldRefInputType<Model, FieldType> = Model extends never ? never : FieldRef<Model, FieldType>
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
export const ModelName = {
|
|
397
|
+
ApiKey: 'ApiKey',
|
|
398
|
+
Artifact: 'Artifact',
|
|
399
|
+
InstanceCustomStatus: 'InstanceCustomStatus',
|
|
400
|
+
InstanceEvaluationState: 'InstanceEvaluationState',
|
|
401
|
+
InstanceState: 'InstanceState',
|
|
402
|
+
UserProjectViewport: 'UserProjectViewport',
|
|
403
|
+
UserCompositeViewport: 'UserCompositeViewport',
|
|
404
|
+
InstanceLock: 'InstanceLock',
|
|
405
|
+
InstanceModel: 'InstanceModel',
|
|
406
|
+
HubModel: 'HubModel',
|
|
407
|
+
Operation: 'Operation',
|
|
408
|
+
InstanceOperationState: 'InstanceOperationState',
|
|
409
|
+
OperationLog: 'OperationLog',
|
|
410
|
+
Page: 'Page',
|
|
411
|
+
Secret: 'Secret',
|
|
412
|
+
ServiceAccount: 'ServiceAccount',
|
|
413
|
+
Terminal: 'Terminal',
|
|
414
|
+
TerminalSession: 'TerminalSession',
|
|
415
|
+
TerminalSessionLog: 'TerminalSessionLog',
|
|
416
|
+
Trigger: 'Trigger',
|
|
417
|
+
UnlockMethod: 'UnlockMethod',
|
|
418
|
+
Worker: 'Worker',
|
|
419
|
+
WorkerVersion: 'WorkerVersion',
|
|
420
|
+
WorkerUnitRegistration: 'WorkerUnitRegistration',
|
|
421
|
+
WorkerVersionLog: 'WorkerVersionLog'
|
|
422
|
+
} as const
|
|
423
|
+
|
|
424
|
+
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
export interface TypeMapCb<GlobalOmitOptions = {}> extends runtime.Types.Utils.Fn<{extArgs: runtime.Types.Extensions.InternalArgs }, runtime.Types.Utils.Record<string, any>> {
|
|
429
|
+
returns: TypeMap<this['params']['extArgs'], GlobalOmitOptions>
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
export type TypeMap<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> = {
|
|
433
|
+
globalOmitOptions: {
|
|
434
|
+
omit: GlobalOmitOptions
|
|
435
|
+
}
|
|
436
|
+
meta: {
|
|
437
|
+
modelProps: "apiKey" | "artifact" | "instanceCustomStatus" | "instanceEvaluationState" | "instanceState" | "userProjectViewport" | "userCompositeViewport" | "instanceLock" | "instanceModel" | "hubModel" | "operation" | "instanceOperationState" | "operationLog" | "page" | "secret" | "serviceAccount" | "terminal" | "terminalSession" | "terminalSessionLog" | "trigger" | "unlockMethod" | "worker" | "workerVersion" | "workerUnitRegistration" | "workerVersionLog"
|
|
438
|
+
txIsolationLevel: TransactionIsolationLevel
|
|
439
|
+
}
|
|
440
|
+
model: {
|
|
441
|
+
ApiKey: {
|
|
442
|
+
payload: Prisma.$ApiKeyPayload<ExtArgs>
|
|
443
|
+
fields: Prisma.ApiKeyFieldRefs
|
|
444
|
+
operations: {
|
|
445
|
+
findUnique: {
|
|
446
|
+
args: Prisma.ApiKeyFindUniqueArgs<ExtArgs>
|
|
447
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload> | null
|
|
448
|
+
}
|
|
449
|
+
findUniqueOrThrow: {
|
|
450
|
+
args: Prisma.ApiKeyFindUniqueOrThrowArgs<ExtArgs>
|
|
451
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
452
|
+
}
|
|
453
|
+
findFirst: {
|
|
454
|
+
args: Prisma.ApiKeyFindFirstArgs<ExtArgs>
|
|
455
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload> | null
|
|
456
|
+
}
|
|
457
|
+
findFirstOrThrow: {
|
|
458
|
+
args: Prisma.ApiKeyFindFirstOrThrowArgs<ExtArgs>
|
|
459
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
460
|
+
}
|
|
461
|
+
findMany: {
|
|
462
|
+
args: Prisma.ApiKeyFindManyArgs<ExtArgs>
|
|
463
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
|
|
464
|
+
}
|
|
465
|
+
create: {
|
|
466
|
+
args: Prisma.ApiKeyCreateArgs<ExtArgs>
|
|
467
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
468
|
+
}
|
|
469
|
+
createMany: {
|
|
470
|
+
args: Prisma.ApiKeyCreateManyArgs<ExtArgs>
|
|
471
|
+
result: BatchPayload
|
|
472
|
+
}
|
|
473
|
+
createManyAndReturn: {
|
|
474
|
+
args: Prisma.ApiKeyCreateManyAndReturnArgs<ExtArgs>
|
|
475
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
|
|
476
|
+
}
|
|
477
|
+
delete: {
|
|
478
|
+
args: Prisma.ApiKeyDeleteArgs<ExtArgs>
|
|
479
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
480
|
+
}
|
|
481
|
+
update: {
|
|
482
|
+
args: Prisma.ApiKeyUpdateArgs<ExtArgs>
|
|
483
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
484
|
+
}
|
|
485
|
+
deleteMany: {
|
|
486
|
+
args: Prisma.ApiKeyDeleteManyArgs<ExtArgs>
|
|
487
|
+
result: BatchPayload
|
|
488
|
+
}
|
|
489
|
+
updateMany: {
|
|
490
|
+
args: Prisma.ApiKeyUpdateManyArgs<ExtArgs>
|
|
491
|
+
result: BatchPayload
|
|
492
|
+
}
|
|
493
|
+
updateManyAndReturn: {
|
|
494
|
+
args: Prisma.ApiKeyUpdateManyAndReturnArgs<ExtArgs>
|
|
495
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>[]
|
|
496
|
+
}
|
|
497
|
+
upsert: {
|
|
498
|
+
args: Prisma.ApiKeyUpsertArgs<ExtArgs>
|
|
499
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ApiKeyPayload>
|
|
500
|
+
}
|
|
501
|
+
aggregate: {
|
|
502
|
+
args: Prisma.ApiKeyAggregateArgs<ExtArgs>
|
|
503
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateApiKey>
|
|
504
|
+
}
|
|
505
|
+
groupBy: {
|
|
506
|
+
args: Prisma.ApiKeyGroupByArgs<ExtArgs>
|
|
507
|
+
result: runtime.Types.Utils.Optional<Prisma.ApiKeyGroupByOutputType>[]
|
|
508
|
+
}
|
|
509
|
+
count: {
|
|
510
|
+
args: Prisma.ApiKeyCountArgs<ExtArgs>
|
|
511
|
+
result: runtime.Types.Utils.Optional<Prisma.ApiKeyCountAggregateOutputType> | number
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
Artifact: {
|
|
516
|
+
payload: Prisma.$ArtifactPayload<ExtArgs>
|
|
517
|
+
fields: Prisma.ArtifactFieldRefs
|
|
518
|
+
operations: {
|
|
519
|
+
findUnique: {
|
|
520
|
+
args: Prisma.ArtifactFindUniqueArgs<ExtArgs>
|
|
521
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload> | null
|
|
522
|
+
}
|
|
523
|
+
findUniqueOrThrow: {
|
|
524
|
+
args: Prisma.ArtifactFindUniqueOrThrowArgs<ExtArgs>
|
|
525
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
526
|
+
}
|
|
527
|
+
findFirst: {
|
|
528
|
+
args: Prisma.ArtifactFindFirstArgs<ExtArgs>
|
|
529
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload> | null
|
|
530
|
+
}
|
|
531
|
+
findFirstOrThrow: {
|
|
532
|
+
args: Prisma.ArtifactFindFirstOrThrowArgs<ExtArgs>
|
|
533
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
534
|
+
}
|
|
535
|
+
findMany: {
|
|
536
|
+
args: Prisma.ArtifactFindManyArgs<ExtArgs>
|
|
537
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>[]
|
|
538
|
+
}
|
|
539
|
+
create: {
|
|
540
|
+
args: Prisma.ArtifactCreateArgs<ExtArgs>
|
|
541
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
542
|
+
}
|
|
543
|
+
createMany: {
|
|
544
|
+
args: Prisma.ArtifactCreateManyArgs<ExtArgs>
|
|
545
|
+
result: BatchPayload
|
|
546
|
+
}
|
|
547
|
+
createManyAndReturn: {
|
|
548
|
+
args: Prisma.ArtifactCreateManyAndReturnArgs<ExtArgs>
|
|
549
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>[]
|
|
550
|
+
}
|
|
551
|
+
delete: {
|
|
552
|
+
args: Prisma.ArtifactDeleteArgs<ExtArgs>
|
|
553
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
554
|
+
}
|
|
555
|
+
update: {
|
|
556
|
+
args: Prisma.ArtifactUpdateArgs<ExtArgs>
|
|
557
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
558
|
+
}
|
|
559
|
+
deleteMany: {
|
|
560
|
+
args: Prisma.ArtifactDeleteManyArgs<ExtArgs>
|
|
561
|
+
result: BatchPayload
|
|
562
|
+
}
|
|
563
|
+
updateMany: {
|
|
564
|
+
args: Prisma.ArtifactUpdateManyArgs<ExtArgs>
|
|
565
|
+
result: BatchPayload
|
|
566
|
+
}
|
|
567
|
+
updateManyAndReturn: {
|
|
568
|
+
args: Prisma.ArtifactUpdateManyAndReturnArgs<ExtArgs>
|
|
569
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>[]
|
|
570
|
+
}
|
|
571
|
+
upsert: {
|
|
572
|
+
args: Prisma.ArtifactUpsertArgs<ExtArgs>
|
|
573
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ArtifactPayload>
|
|
574
|
+
}
|
|
575
|
+
aggregate: {
|
|
576
|
+
args: Prisma.ArtifactAggregateArgs<ExtArgs>
|
|
577
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateArtifact>
|
|
578
|
+
}
|
|
579
|
+
groupBy: {
|
|
580
|
+
args: Prisma.ArtifactGroupByArgs<ExtArgs>
|
|
581
|
+
result: runtime.Types.Utils.Optional<Prisma.ArtifactGroupByOutputType>[]
|
|
582
|
+
}
|
|
583
|
+
count: {
|
|
584
|
+
args: Prisma.ArtifactCountArgs<ExtArgs>
|
|
585
|
+
result: runtime.Types.Utils.Optional<Prisma.ArtifactCountAggregateOutputType> | number
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
InstanceCustomStatus: {
|
|
590
|
+
payload: Prisma.$InstanceCustomStatusPayload<ExtArgs>
|
|
591
|
+
fields: Prisma.InstanceCustomStatusFieldRefs
|
|
592
|
+
operations: {
|
|
593
|
+
findUnique: {
|
|
594
|
+
args: Prisma.InstanceCustomStatusFindUniqueArgs<ExtArgs>
|
|
595
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload> | null
|
|
596
|
+
}
|
|
597
|
+
findUniqueOrThrow: {
|
|
598
|
+
args: Prisma.InstanceCustomStatusFindUniqueOrThrowArgs<ExtArgs>
|
|
599
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
600
|
+
}
|
|
601
|
+
findFirst: {
|
|
602
|
+
args: Prisma.InstanceCustomStatusFindFirstArgs<ExtArgs>
|
|
603
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload> | null
|
|
604
|
+
}
|
|
605
|
+
findFirstOrThrow: {
|
|
606
|
+
args: Prisma.InstanceCustomStatusFindFirstOrThrowArgs<ExtArgs>
|
|
607
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
608
|
+
}
|
|
609
|
+
findMany: {
|
|
610
|
+
args: Prisma.InstanceCustomStatusFindManyArgs<ExtArgs>
|
|
611
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>[]
|
|
612
|
+
}
|
|
613
|
+
create: {
|
|
614
|
+
args: Prisma.InstanceCustomStatusCreateArgs<ExtArgs>
|
|
615
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
616
|
+
}
|
|
617
|
+
createMany: {
|
|
618
|
+
args: Prisma.InstanceCustomStatusCreateManyArgs<ExtArgs>
|
|
619
|
+
result: BatchPayload
|
|
620
|
+
}
|
|
621
|
+
createManyAndReturn: {
|
|
622
|
+
args: Prisma.InstanceCustomStatusCreateManyAndReturnArgs<ExtArgs>
|
|
623
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>[]
|
|
624
|
+
}
|
|
625
|
+
delete: {
|
|
626
|
+
args: Prisma.InstanceCustomStatusDeleteArgs<ExtArgs>
|
|
627
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
628
|
+
}
|
|
629
|
+
update: {
|
|
630
|
+
args: Prisma.InstanceCustomStatusUpdateArgs<ExtArgs>
|
|
631
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
632
|
+
}
|
|
633
|
+
deleteMany: {
|
|
634
|
+
args: Prisma.InstanceCustomStatusDeleteManyArgs<ExtArgs>
|
|
635
|
+
result: BatchPayload
|
|
636
|
+
}
|
|
637
|
+
updateMany: {
|
|
638
|
+
args: Prisma.InstanceCustomStatusUpdateManyArgs<ExtArgs>
|
|
639
|
+
result: BatchPayload
|
|
640
|
+
}
|
|
641
|
+
updateManyAndReturn: {
|
|
642
|
+
args: Prisma.InstanceCustomStatusUpdateManyAndReturnArgs<ExtArgs>
|
|
643
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>[]
|
|
644
|
+
}
|
|
645
|
+
upsert: {
|
|
646
|
+
args: Prisma.InstanceCustomStatusUpsertArgs<ExtArgs>
|
|
647
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceCustomStatusPayload>
|
|
648
|
+
}
|
|
649
|
+
aggregate: {
|
|
650
|
+
args: Prisma.InstanceCustomStatusAggregateArgs<ExtArgs>
|
|
651
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceCustomStatus>
|
|
652
|
+
}
|
|
653
|
+
groupBy: {
|
|
654
|
+
args: Prisma.InstanceCustomStatusGroupByArgs<ExtArgs>
|
|
655
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceCustomStatusGroupByOutputType>[]
|
|
656
|
+
}
|
|
657
|
+
count: {
|
|
658
|
+
args: Prisma.InstanceCustomStatusCountArgs<ExtArgs>
|
|
659
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceCustomStatusCountAggregateOutputType> | number
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
InstanceEvaluationState: {
|
|
664
|
+
payload: Prisma.$InstanceEvaluationStatePayload<ExtArgs>
|
|
665
|
+
fields: Prisma.InstanceEvaluationStateFieldRefs
|
|
666
|
+
operations: {
|
|
667
|
+
findUnique: {
|
|
668
|
+
args: Prisma.InstanceEvaluationStateFindUniqueArgs<ExtArgs>
|
|
669
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload> | null
|
|
670
|
+
}
|
|
671
|
+
findUniqueOrThrow: {
|
|
672
|
+
args: Prisma.InstanceEvaluationStateFindUniqueOrThrowArgs<ExtArgs>
|
|
673
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
674
|
+
}
|
|
675
|
+
findFirst: {
|
|
676
|
+
args: Prisma.InstanceEvaluationStateFindFirstArgs<ExtArgs>
|
|
677
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload> | null
|
|
678
|
+
}
|
|
679
|
+
findFirstOrThrow: {
|
|
680
|
+
args: Prisma.InstanceEvaluationStateFindFirstOrThrowArgs<ExtArgs>
|
|
681
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
682
|
+
}
|
|
683
|
+
findMany: {
|
|
684
|
+
args: Prisma.InstanceEvaluationStateFindManyArgs<ExtArgs>
|
|
685
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>[]
|
|
686
|
+
}
|
|
687
|
+
create: {
|
|
688
|
+
args: Prisma.InstanceEvaluationStateCreateArgs<ExtArgs>
|
|
689
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
690
|
+
}
|
|
691
|
+
createMany: {
|
|
692
|
+
args: Prisma.InstanceEvaluationStateCreateManyArgs<ExtArgs>
|
|
693
|
+
result: BatchPayload
|
|
694
|
+
}
|
|
695
|
+
createManyAndReturn: {
|
|
696
|
+
args: Prisma.InstanceEvaluationStateCreateManyAndReturnArgs<ExtArgs>
|
|
697
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>[]
|
|
698
|
+
}
|
|
699
|
+
delete: {
|
|
700
|
+
args: Prisma.InstanceEvaluationStateDeleteArgs<ExtArgs>
|
|
701
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
702
|
+
}
|
|
703
|
+
update: {
|
|
704
|
+
args: Prisma.InstanceEvaluationStateUpdateArgs<ExtArgs>
|
|
705
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
706
|
+
}
|
|
707
|
+
deleteMany: {
|
|
708
|
+
args: Prisma.InstanceEvaluationStateDeleteManyArgs<ExtArgs>
|
|
709
|
+
result: BatchPayload
|
|
710
|
+
}
|
|
711
|
+
updateMany: {
|
|
712
|
+
args: Prisma.InstanceEvaluationStateUpdateManyArgs<ExtArgs>
|
|
713
|
+
result: BatchPayload
|
|
714
|
+
}
|
|
715
|
+
updateManyAndReturn: {
|
|
716
|
+
args: Prisma.InstanceEvaluationStateUpdateManyAndReturnArgs<ExtArgs>
|
|
717
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>[]
|
|
718
|
+
}
|
|
719
|
+
upsert: {
|
|
720
|
+
args: Prisma.InstanceEvaluationStateUpsertArgs<ExtArgs>
|
|
721
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceEvaluationStatePayload>
|
|
722
|
+
}
|
|
723
|
+
aggregate: {
|
|
724
|
+
args: Prisma.InstanceEvaluationStateAggregateArgs<ExtArgs>
|
|
725
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceEvaluationState>
|
|
726
|
+
}
|
|
727
|
+
groupBy: {
|
|
728
|
+
args: Prisma.InstanceEvaluationStateGroupByArgs<ExtArgs>
|
|
729
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceEvaluationStateGroupByOutputType>[]
|
|
730
|
+
}
|
|
731
|
+
count: {
|
|
732
|
+
args: Prisma.InstanceEvaluationStateCountArgs<ExtArgs>
|
|
733
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceEvaluationStateCountAggregateOutputType> | number
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
InstanceState: {
|
|
738
|
+
payload: Prisma.$InstanceStatePayload<ExtArgs>
|
|
739
|
+
fields: Prisma.InstanceStateFieldRefs
|
|
740
|
+
operations: {
|
|
741
|
+
findUnique: {
|
|
742
|
+
args: Prisma.InstanceStateFindUniqueArgs<ExtArgs>
|
|
743
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload> | null
|
|
744
|
+
}
|
|
745
|
+
findUniqueOrThrow: {
|
|
746
|
+
args: Prisma.InstanceStateFindUniqueOrThrowArgs<ExtArgs>
|
|
747
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
748
|
+
}
|
|
749
|
+
findFirst: {
|
|
750
|
+
args: Prisma.InstanceStateFindFirstArgs<ExtArgs>
|
|
751
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload> | null
|
|
752
|
+
}
|
|
753
|
+
findFirstOrThrow: {
|
|
754
|
+
args: Prisma.InstanceStateFindFirstOrThrowArgs<ExtArgs>
|
|
755
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
756
|
+
}
|
|
757
|
+
findMany: {
|
|
758
|
+
args: Prisma.InstanceStateFindManyArgs<ExtArgs>
|
|
759
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>[]
|
|
760
|
+
}
|
|
761
|
+
create: {
|
|
762
|
+
args: Prisma.InstanceStateCreateArgs<ExtArgs>
|
|
763
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
764
|
+
}
|
|
765
|
+
createMany: {
|
|
766
|
+
args: Prisma.InstanceStateCreateManyArgs<ExtArgs>
|
|
767
|
+
result: BatchPayload
|
|
768
|
+
}
|
|
769
|
+
createManyAndReturn: {
|
|
770
|
+
args: Prisma.InstanceStateCreateManyAndReturnArgs<ExtArgs>
|
|
771
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>[]
|
|
772
|
+
}
|
|
773
|
+
delete: {
|
|
774
|
+
args: Prisma.InstanceStateDeleteArgs<ExtArgs>
|
|
775
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
776
|
+
}
|
|
777
|
+
update: {
|
|
778
|
+
args: Prisma.InstanceStateUpdateArgs<ExtArgs>
|
|
779
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
780
|
+
}
|
|
781
|
+
deleteMany: {
|
|
782
|
+
args: Prisma.InstanceStateDeleteManyArgs<ExtArgs>
|
|
783
|
+
result: BatchPayload
|
|
784
|
+
}
|
|
785
|
+
updateMany: {
|
|
786
|
+
args: Prisma.InstanceStateUpdateManyArgs<ExtArgs>
|
|
787
|
+
result: BatchPayload
|
|
788
|
+
}
|
|
789
|
+
updateManyAndReturn: {
|
|
790
|
+
args: Prisma.InstanceStateUpdateManyAndReturnArgs<ExtArgs>
|
|
791
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>[]
|
|
792
|
+
}
|
|
793
|
+
upsert: {
|
|
794
|
+
args: Prisma.InstanceStateUpsertArgs<ExtArgs>
|
|
795
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceStatePayload>
|
|
796
|
+
}
|
|
797
|
+
aggregate: {
|
|
798
|
+
args: Prisma.InstanceStateAggregateArgs<ExtArgs>
|
|
799
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceState>
|
|
800
|
+
}
|
|
801
|
+
groupBy: {
|
|
802
|
+
args: Prisma.InstanceStateGroupByArgs<ExtArgs>
|
|
803
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceStateGroupByOutputType>[]
|
|
804
|
+
}
|
|
805
|
+
count: {
|
|
806
|
+
args: Prisma.InstanceStateCountArgs<ExtArgs>
|
|
807
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceStateCountAggregateOutputType> | number
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
UserProjectViewport: {
|
|
812
|
+
payload: Prisma.$UserProjectViewportPayload<ExtArgs>
|
|
813
|
+
fields: Prisma.UserProjectViewportFieldRefs
|
|
814
|
+
operations: {
|
|
815
|
+
findUnique: {
|
|
816
|
+
args: Prisma.UserProjectViewportFindUniqueArgs<ExtArgs>
|
|
817
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload> | null
|
|
818
|
+
}
|
|
819
|
+
findUniqueOrThrow: {
|
|
820
|
+
args: Prisma.UserProjectViewportFindUniqueOrThrowArgs<ExtArgs>
|
|
821
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
822
|
+
}
|
|
823
|
+
findFirst: {
|
|
824
|
+
args: Prisma.UserProjectViewportFindFirstArgs<ExtArgs>
|
|
825
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload> | null
|
|
826
|
+
}
|
|
827
|
+
findFirstOrThrow: {
|
|
828
|
+
args: Prisma.UserProjectViewportFindFirstOrThrowArgs<ExtArgs>
|
|
829
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
830
|
+
}
|
|
831
|
+
findMany: {
|
|
832
|
+
args: Prisma.UserProjectViewportFindManyArgs<ExtArgs>
|
|
833
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>[]
|
|
834
|
+
}
|
|
835
|
+
create: {
|
|
836
|
+
args: Prisma.UserProjectViewportCreateArgs<ExtArgs>
|
|
837
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
838
|
+
}
|
|
839
|
+
createMany: {
|
|
840
|
+
args: Prisma.UserProjectViewportCreateManyArgs<ExtArgs>
|
|
841
|
+
result: BatchPayload
|
|
842
|
+
}
|
|
843
|
+
createManyAndReturn: {
|
|
844
|
+
args: Prisma.UserProjectViewportCreateManyAndReturnArgs<ExtArgs>
|
|
845
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>[]
|
|
846
|
+
}
|
|
847
|
+
delete: {
|
|
848
|
+
args: Prisma.UserProjectViewportDeleteArgs<ExtArgs>
|
|
849
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
850
|
+
}
|
|
851
|
+
update: {
|
|
852
|
+
args: Prisma.UserProjectViewportUpdateArgs<ExtArgs>
|
|
853
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
854
|
+
}
|
|
855
|
+
deleteMany: {
|
|
856
|
+
args: Prisma.UserProjectViewportDeleteManyArgs<ExtArgs>
|
|
857
|
+
result: BatchPayload
|
|
858
|
+
}
|
|
859
|
+
updateMany: {
|
|
860
|
+
args: Prisma.UserProjectViewportUpdateManyArgs<ExtArgs>
|
|
861
|
+
result: BatchPayload
|
|
862
|
+
}
|
|
863
|
+
updateManyAndReturn: {
|
|
864
|
+
args: Prisma.UserProjectViewportUpdateManyAndReturnArgs<ExtArgs>
|
|
865
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>[]
|
|
866
|
+
}
|
|
867
|
+
upsert: {
|
|
868
|
+
args: Prisma.UserProjectViewportUpsertArgs<ExtArgs>
|
|
869
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserProjectViewportPayload>
|
|
870
|
+
}
|
|
871
|
+
aggregate: {
|
|
872
|
+
args: Prisma.UserProjectViewportAggregateArgs<ExtArgs>
|
|
873
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateUserProjectViewport>
|
|
874
|
+
}
|
|
875
|
+
groupBy: {
|
|
876
|
+
args: Prisma.UserProjectViewportGroupByArgs<ExtArgs>
|
|
877
|
+
result: runtime.Types.Utils.Optional<Prisma.UserProjectViewportGroupByOutputType>[]
|
|
878
|
+
}
|
|
879
|
+
count: {
|
|
880
|
+
args: Prisma.UserProjectViewportCountArgs<ExtArgs>
|
|
881
|
+
result: runtime.Types.Utils.Optional<Prisma.UserProjectViewportCountAggregateOutputType> | number
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
UserCompositeViewport: {
|
|
886
|
+
payload: Prisma.$UserCompositeViewportPayload<ExtArgs>
|
|
887
|
+
fields: Prisma.UserCompositeViewportFieldRefs
|
|
888
|
+
operations: {
|
|
889
|
+
findUnique: {
|
|
890
|
+
args: Prisma.UserCompositeViewportFindUniqueArgs<ExtArgs>
|
|
891
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload> | null
|
|
892
|
+
}
|
|
893
|
+
findUniqueOrThrow: {
|
|
894
|
+
args: Prisma.UserCompositeViewportFindUniqueOrThrowArgs<ExtArgs>
|
|
895
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
896
|
+
}
|
|
897
|
+
findFirst: {
|
|
898
|
+
args: Prisma.UserCompositeViewportFindFirstArgs<ExtArgs>
|
|
899
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload> | null
|
|
900
|
+
}
|
|
901
|
+
findFirstOrThrow: {
|
|
902
|
+
args: Prisma.UserCompositeViewportFindFirstOrThrowArgs<ExtArgs>
|
|
903
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
904
|
+
}
|
|
905
|
+
findMany: {
|
|
906
|
+
args: Prisma.UserCompositeViewportFindManyArgs<ExtArgs>
|
|
907
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>[]
|
|
908
|
+
}
|
|
909
|
+
create: {
|
|
910
|
+
args: Prisma.UserCompositeViewportCreateArgs<ExtArgs>
|
|
911
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
912
|
+
}
|
|
913
|
+
createMany: {
|
|
914
|
+
args: Prisma.UserCompositeViewportCreateManyArgs<ExtArgs>
|
|
915
|
+
result: BatchPayload
|
|
916
|
+
}
|
|
917
|
+
createManyAndReturn: {
|
|
918
|
+
args: Prisma.UserCompositeViewportCreateManyAndReturnArgs<ExtArgs>
|
|
919
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>[]
|
|
920
|
+
}
|
|
921
|
+
delete: {
|
|
922
|
+
args: Prisma.UserCompositeViewportDeleteArgs<ExtArgs>
|
|
923
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
924
|
+
}
|
|
925
|
+
update: {
|
|
926
|
+
args: Prisma.UserCompositeViewportUpdateArgs<ExtArgs>
|
|
927
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
928
|
+
}
|
|
929
|
+
deleteMany: {
|
|
930
|
+
args: Prisma.UserCompositeViewportDeleteManyArgs<ExtArgs>
|
|
931
|
+
result: BatchPayload
|
|
932
|
+
}
|
|
933
|
+
updateMany: {
|
|
934
|
+
args: Prisma.UserCompositeViewportUpdateManyArgs<ExtArgs>
|
|
935
|
+
result: BatchPayload
|
|
936
|
+
}
|
|
937
|
+
updateManyAndReturn: {
|
|
938
|
+
args: Prisma.UserCompositeViewportUpdateManyAndReturnArgs<ExtArgs>
|
|
939
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>[]
|
|
940
|
+
}
|
|
941
|
+
upsert: {
|
|
942
|
+
args: Prisma.UserCompositeViewportUpsertArgs<ExtArgs>
|
|
943
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UserCompositeViewportPayload>
|
|
944
|
+
}
|
|
945
|
+
aggregate: {
|
|
946
|
+
args: Prisma.UserCompositeViewportAggregateArgs<ExtArgs>
|
|
947
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateUserCompositeViewport>
|
|
948
|
+
}
|
|
949
|
+
groupBy: {
|
|
950
|
+
args: Prisma.UserCompositeViewportGroupByArgs<ExtArgs>
|
|
951
|
+
result: runtime.Types.Utils.Optional<Prisma.UserCompositeViewportGroupByOutputType>[]
|
|
952
|
+
}
|
|
953
|
+
count: {
|
|
954
|
+
args: Prisma.UserCompositeViewportCountArgs<ExtArgs>
|
|
955
|
+
result: runtime.Types.Utils.Optional<Prisma.UserCompositeViewportCountAggregateOutputType> | number
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
InstanceLock: {
|
|
960
|
+
payload: Prisma.$InstanceLockPayload<ExtArgs>
|
|
961
|
+
fields: Prisma.InstanceLockFieldRefs
|
|
962
|
+
operations: {
|
|
963
|
+
findUnique: {
|
|
964
|
+
args: Prisma.InstanceLockFindUniqueArgs<ExtArgs>
|
|
965
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload> | null
|
|
966
|
+
}
|
|
967
|
+
findUniqueOrThrow: {
|
|
968
|
+
args: Prisma.InstanceLockFindUniqueOrThrowArgs<ExtArgs>
|
|
969
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
970
|
+
}
|
|
971
|
+
findFirst: {
|
|
972
|
+
args: Prisma.InstanceLockFindFirstArgs<ExtArgs>
|
|
973
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload> | null
|
|
974
|
+
}
|
|
975
|
+
findFirstOrThrow: {
|
|
976
|
+
args: Prisma.InstanceLockFindFirstOrThrowArgs<ExtArgs>
|
|
977
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
978
|
+
}
|
|
979
|
+
findMany: {
|
|
980
|
+
args: Prisma.InstanceLockFindManyArgs<ExtArgs>
|
|
981
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>[]
|
|
982
|
+
}
|
|
983
|
+
create: {
|
|
984
|
+
args: Prisma.InstanceLockCreateArgs<ExtArgs>
|
|
985
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
986
|
+
}
|
|
987
|
+
createMany: {
|
|
988
|
+
args: Prisma.InstanceLockCreateManyArgs<ExtArgs>
|
|
989
|
+
result: BatchPayload
|
|
990
|
+
}
|
|
991
|
+
createManyAndReturn: {
|
|
992
|
+
args: Prisma.InstanceLockCreateManyAndReturnArgs<ExtArgs>
|
|
993
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>[]
|
|
994
|
+
}
|
|
995
|
+
delete: {
|
|
996
|
+
args: Prisma.InstanceLockDeleteArgs<ExtArgs>
|
|
997
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
998
|
+
}
|
|
999
|
+
update: {
|
|
1000
|
+
args: Prisma.InstanceLockUpdateArgs<ExtArgs>
|
|
1001
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
1002
|
+
}
|
|
1003
|
+
deleteMany: {
|
|
1004
|
+
args: Prisma.InstanceLockDeleteManyArgs<ExtArgs>
|
|
1005
|
+
result: BatchPayload
|
|
1006
|
+
}
|
|
1007
|
+
updateMany: {
|
|
1008
|
+
args: Prisma.InstanceLockUpdateManyArgs<ExtArgs>
|
|
1009
|
+
result: BatchPayload
|
|
1010
|
+
}
|
|
1011
|
+
updateManyAndReturn: {
|
|
1012
|
+
args: Prisma.InstanceLockUpdateManyAndReturnArgs<ExtArgs>
|
|
1013
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>[]
|
|
1014
|
+
}
|
|
1015
|
+
upsert: {
|
|
1016
|
+
args: Prisma.InstanceLockUpsertArgs<ExtArgs>
|
|
1017
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceLockPayload>
|
|
1018
|
+
}
|
|
1019
|
+
aggregate: {
|
|
1020
|
+
args: Prisma.InstanceLockAggregateArgs<ExtArgs>
|
|
1021
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceLock>
|
|
1022
|
+
}
|
|
1023
|
+
groupBy: {
|
|
1024
|
+
args: Prisma.InstanceLockGroupByArgs<ExtArgs>
|
|
1025
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceLockGroupByOutputType>[]
|
|
1026
|
+
}
|
|
1027
|
+
count: {
|
|
1028
|
+
args: Prisma.InstanceLockCountArgs<ExtArgs>
|
|
1029
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceLockCountAggregateOutputType> | number
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
InstanceModel: {
|
|
1034
|
+
payload: Prisma.$InstanceModelPayload<ExtArgs>
|
|
1035
|
+
fields: Prisma.InstanceModelFieldRefs
|
|
1036
|
+
operations: {
|
|
1037
|
+
findUnique: {
|
|
1038
|
+
args: Prisma.InstanceModelFindUniqueArgs<ExtArgs>
|
|
1039
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload> | null
|
|
1040
|
+
}
|
|
1041
|
+
findUniqueOrThrow: {
|
|
1042
|
+
args: Prisma.InstanceModelFindUniqueOrThrowArgs<ExtArgs>
|
|
1043
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1044
|
+
}
|
|
1045
|
+
findFirst: {
|
|
1046
|
+
args: Prisma.InstanceModelFindFirstArgs<ExtArgs>
|
|
1047
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload> | null
|
|
1048
|
+
}
|
|
1049
|
+
findFirstOrThrow: {
|
|
1050
|
+
args: Prisma.InstanceModelFindFirstOrThrowArgs<ExtArgs>
|
|
1051
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1052
|
+
}
|
|
1053
|
+
findMany: {
|
|
1054
|
+
args: Prisma.InstanceModelFindManyArgs<ExtArgs>
|
|
1055
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>[]
|
|
1056
|
+
}
|
|
1057
|
+
create: {
|
|
1058
|
+
args: Prisma.InstanceModelCreateArgs<ExtArgs>
|
|
1059
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1060
|
+
}
|
|
1061
|
+
createMany: {
|
|
1062
|
+
args: Prisma.InstanceModelCreateManyArgs<ExtArgs>
|
|
1063
|
+
result: BatchPayload
|
|
1064
|
+
}
|
|
1065
|
+
createManyAndReturn: {
|
|
1066
|
+
args: Prisma.InstanceModelCreateManyAndReturnArgs<ExtArgs>
|
|
1067
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>[]
|
|
1068
|
+
}
|
|
1069
|
+
delete: {
|
|
1070
|
+
args: Prisma.InstanceModelDeleteArgs<ExtArgs>
|
|
1071
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1072
|
+
}
|
|
1073
|
+
update: {
|
|
1074
|
+
args: Prisma.InstanceModelUpdateArgs<ExtArgs>
|
|
1075
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1076
|
+
}
|
|
1077
|
+
deleteMany: {
|
|
1078
|
+
args: Prisma.InstanceModelDeleteManyArgs<ExtArgs>
|
|
1079
|
+
result: BatchPayload
|
|
1080
|
+
}
|
|
1081
|
+
updateMany: {
|
|
1082
|
+
args: Prisma.InstanceModelUpdateManyArgs<ExtArgs>
|
|
1083
|
+
result: BatchPayload
|
|
1084
|
+
}
|
|
1085
|
+
updateManyAndReturn: {
|
|
1086
|
+
args: Prisma.InstanceModelUpdateManyAndReturnArgs<ExtArgs>
|
|
1087
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>[]
|
|
1088
|
+
}
|
|
1089
|
+
upsert: {
|
|
1090
|
+
args: Prisma.InstanceModelUpsertArgs<ExtArgs>
|
|
1091
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceModelPayload>
|
|
1092
|
+
}
|
|
1093
|
+
aggregate: {
|
|
1094
|
+
args: Prisma.InstanceModelAggregateArgs<ExtArgs>
|
|
1095
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceModel>
|
|
1096
|
+
}
|
|
1097
|
+
groupBy: {
|
|
1098
|
+
args: Prisma.InstanceModelGroupByArgs<ExtArgs>
|
|
1099
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceModelGroupByOutputType>[]
|
|
1100
|
+
}
|
|
1101
|
+
count: {
|
|
1102
|
+
args: Prisma.InstanceModelCountArgs<ExtArgs>
|
|
1103
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceModelCountAggregateOutputType> | number
|
|
1104
|
+
}
|
|
1105
|
+
}
|
|
1106
|
+
}
|
|
1107
|
+
HubModel: {
|
|
1108
|
+
payload: Prisma.$HubModelPayload<ExtArgs>
|
|
1109
|
+
fields: Prisma.HubModelFieldRefs
|
|
1110
|
+
operations: {
|
|
1111
|
+
findUnique: {
|
|
1112
|
+
args: Prisma.HubModelFindUniqueArgs<ExtArgs>
|
|
1113
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload> | null
|
|
1114
|
+
}
|
|
1115
|
+
findUniqueOrThrow: {
|
|
1116
|
+
args: Prisma.HubModelFindUniqueOrThrowArgs<ExtArgs>
|
|
1117
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1118
|
+
}
|
|
1119
|
+
findFirst: {
|
|
1120
|
+
args: Prisma.HubModelFindFirstArgs<ExtArgs>
|
|
1121
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload> | null
|
|
1122
|
+
}
|
|
1123
|
+
findFirstOrThrow: {
|
|
1124
|
+
args: Prisma.HubModelFindFirstOrThrowArgs<ExtArgs>
|
|
1125
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1126
|
+
}
|
|
1127
|
+
findMany: {
|
|
1128
|
+
args: Prisma.HubModelFindManyArgs<ExtArgs>
|
|
1129
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>[]
|
|
1130
|
+
}
|
|
1131
|
+
create: {
|
|
1132
|
+
args: Prisma.HubModelCreateArgs<ExtArgs>
|
|
1133
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1134
|
+
}
|
|
1135
|
+
createMany: {
|
|
1136
|
+
args: Prisma.HubModelCreateManyArgs<ExtArgs>
|
|
1137
|
+
result: BatchPayload
|
|
1138
|
+
}
|
|
1139
|
+
createManyAndReturn: {
|
|
1140
|
+
args: Prisma.HubModelCreateManyAndReturnArgs<ExtArgs>
|
|
1141
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>[]
|
|
1142
|
+
}
|
|
1143
|
+
delete: {
|
|
1144
|
+
args: Prisma.HubModelDeleteArgs<ExtArgs>
|
|
1145
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1146
|
+
}
|
|
1147
|
+
update: {
|
|
1148
|
+
args: Prisma.HubModelUpdateArgs<ExtArgs>
|
|
1149
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1150
|
+
}
|
|
1151
|
+
deleteMany: {
|
|
1152
|
+
args: Prisma.HubModelDeleteManyArgs<ExtArgs>
|
|
1153
|
+
result: BatchPayload
|
|
1154
|
+
}
|
|
1155
|
+
updateMany: {
|
|
1156
|
+
args: Prisma.HubModelUpdateManyArgs<ExtArgs>
|
|
1157
|
+
result: BatchPayload
|
|
1158
|
+
}
|
|
1159
|
+
updateManyAndReturn: {
|
|
1160
|
+
args: Prisma.HubModelUpdateManyAndReturnArgs<ExtArgs>
|
|
1161
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>[]
|
|
1162
|
+
}
|
|
1163
|
+
upsert: {
|
|
1164
|
+
args: Prisma.HubModelUpsertArgs<ExtArgs>
|
|
1165
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$HubModelPayload>
|
|
1166
|
+
}
|
|
1167
|
+
aggregate: {
|
|
1168
|
+
args: Prisma.HubModelAggregateArgs<ExtArgs>
|
|
1169
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateHubModel>
|
|
1170
|
+
}
|
|
1171
|
+
groupBy: {
|
|
1172
|
+
args: Prisma.HubModelGroupByArgs<ExtArgs>
|
|
1173
|
+
result: runtime.Types.Utils.Optional<Prisma.HubModelGroupByOutputType>[]
|
|
1174
|
+
}
|
|
1175
|
+
count: {
|
|
1176
|
+
args: Prisma.HubModelCountArgs<ExtArgs>
|
|
1177
|
+
result: runtime.Types.Utils.Optional<Prisma.HubModelCountAggregateOutputType> | number
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
Operation: {
|
|
1182
|
+
payload: Prisma.$OperationPayload<ExtArgs>
|
|
1183
|
+
fields: Prisma.OperationFieldRefs
|
|
1184
|
+
operations: {
|
|
1185
|
+
findUnique: {
|
|
1186
|
+
args: Prisma.OperationFindUniqueArgs<ExtArgs>
|
|
1187
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload> | null
|
|
1188
|
+
}
|
|
1189
|
+
findUniqueOrThrow: {
|
|
1190
|
+
args: Prisma.OperationFindUniqueOrThrowArgs<ExtArgs>
|
|
1191
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1192
|
+
}
|
|
1193
|
+
findFirst: {
|
|
1194
|
+
args: Prisma.OperationFindFirstArgs<ExtArgs>
|
|
1195
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload> | null
|
|
1196
|
+
}
|
|
1197
|
+
findFirstOrThrow: {
|
|
1198
|
+
args: Prisma.OperationFindFirstOrThrowArgs<ExtArgs>
|
|
1199
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1200
|
+
}
|
|
1201
|
+
findMany: {
|
|
1202
|
+
args: Prisma.OperationFindManyArgs<ExtArgs>
|
|
1203
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[]
|
|
1204
|
+
}
|
|
1205
|
+
create: {
|
|
1206
|
+
args: Prisma.OperationCreateArgs<ExtArgs>
|
|
1207
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1208
|
+
}
|
|
1209
|
+
createMany: {
|
|
1210
|
+
args: Prisma.OperationCreateManyArgs<ExtArgs>
|
|
1211
|
+
result: BatchPayload
|
|
1212
|
+
}
|
|
1213
|
+
createManyAndReturn: {
|
|
1214
|
+
args: Prisma.OperationCreateManyAndReturnArgs<ExtArgs>
|
|
1215
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[]
|
|
1216
|
+
}
|
|
1217
|
+
delete: {
|
|
1218
|
+
args: Prisma.OperationDeleteArgs<ExtArgs>
|
|
1219
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1220
|
+
}
|
|
1221
|
+
update: {
|
|
1222
|
+
args: Prisma.OperationUpdateArgs<ExtArgs>
|
|
1223
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1224
|
+
}
|
|
1225
|
+
deleteMany: {
|
|
1226
|
+
args: Prisma.OperationDeleteManyArgs<ExtArgs>
|
|
1227
|
+
result: BatchPayload
|
|
1228
|
+
}
|
|
1229
|
+
updateMany: {
|
|
1230
|
+
args: Prisma.OperationUpdateManyArgs<ExtArgs>
|
|
1231
|
+
result: BatchPayload
|
|
1232
|
+
}
|
|
1233
|
+
updateManyAndReturn: {
|
|
1234
|
+
args: Prisma.OperationUpdateManyAndReturnArgs<ExtArgs>
|
|
1235
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>[]
|
|
1236
|
+
}
|
|
1237
|
+
upsert: {
|
|
1238
|
+
args: Prisma.OperationUpsertArgs<ExtArgs>
|
|
1239
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationPayload>
|
|
1240
|
+
}
|
|
1241
|
+
aggregate: {
|
|
1242
|
+
args: Prisma.OperationAggregateArgs<ExtArgs>
|
|
1243
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperation>
|
|
1244
|
+
}
|
|
1245
|
+
groupBy: {
|
|
1246
|
+
args: Prisma.OperationGroupByArgs<ExtArgs>
|
|
1247
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationGroupByOutputType>[]
|
|
1248
|
+
}
|
|
1249
|
+
count: {
|
|
1250
|
+
args: Prisma.OperationCountArgs<ExtArgs>
|
|
1251
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationCountAggregateOutputType> | number
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
InstanceOperationState: {
|
|
1256
|
+
payload: Prisma.$InstanceOperationStatePayload<ExtArgs>
|
|
1257
|
+
fields: Prisma.InstanceOperationStateFieldRefs
|
|
1258
|
+
operations: {
|
|
1259
|
+
findUnique: {
|
|
1260
|
+
args: Prisma.InstanceOperationStateFindUniqueArgs<ExtArgs>
|
|
1261
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload> | null
|
|
1262
|
+
}
|
|
1263
|
+
findUniqueOrThrow: {
|
|
1264
|
+
args: Prisma.InstanceOperationStateFindUniqueOrThrowArgs<ExtArgs>
|
|
1265
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1266
|
+
}
|
|
1267
|
+
findFirst: {
|
|
1268
|
+
args: Prisma.InstanceOperationStateFindFirstArgs<ExtArgs>
|
|
1269
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload> | null
|
|
1270
|
+
}
|
|
1271
|
+
findFirstOrThrow: {
|
|
1272
|
+
args: Prisma.InstanceOperationStateFindFirstOrThrowArgs<ExtArgs>
|
|
1273
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1274
|
+
}
|
|
1275
|
+
findMany: {
|
|
1276
|
+
args: Prisma.InstanceOperationStateFindManyArgs<ExtArgs>
|
|
1277
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>[]
|
|
1278
|
+
}
|
|
1279
|
+
create: {
|
|
1280
|
+
args: Prisma.InstanceOperationStateCreateArgs<ExtArgs>
|
|
1281
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1282
|
+
}
|
|
1283
|
+
createMany: {
|
|
1284
|
+
args: Prisma.InstanceOperationStateCreateManyArgs<ExtArgs>
|
|
1285
|
+
result: BatchPayload
|
|
1286
|
+
}
|
|
1287
|
+
createManyAndReturn: {
|
|
1288
|
+
args: Prisma.InstanceOperationStateCreateManyAndReturnArgs<ExtArgs>
|
|
1289
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>[]
|
|
1290
|
+
}
|
|
1291
|
+
delete: {
|
|
1292
|
+
args: Prisma.InstanceOperationStateDeleteArgs<ExtArgs>
|
|
1293
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1294
|
+
}
|
|
1295
|
+
update: {
|
|
1296
|
+
args: Prisma.InstanceOperationStateUpdateArgs<ExtArgs>
|
|
1297
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1298
|
+
}
|
|
1299
|
+
deleteMany: {
|
|
1300
|
+
args: Prisma.InstanceOperationStateDeleteManyArgs<ExtArgs>
|
|
1301
|
+
result: BatchPayload
|
|
1302
|
+
}
|
|
1303
|
+
updateMany: {
|
|
1304
|
+
args: Prisma.InstanceOperationStateUpdateManyArgs<ExtArgs>
|
|
1305
|
+
result: BatchPayload
|
|
1306
|
+
}
|
|
1307
|
+
updateManyAndReturn: {
|
|
1308
|
+
args: Prisma.InstanceOperationStateUpdateManyAndReturnArgs<ExtArgs>
|
|
1309
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>[]
|
|
1310
|
+
}
|
|
1311
|
+
upsert: {
|
|
1312
|
+
args: Prisma.InstanceOperationStateUpsertArgs<ExtArgs>
|
|
1313
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$InstanceOperationStatePayload>
|
|
1314
|
+
}
|
|
1315
|
+
aggregate: {
|
|
1316
|
+
args: Prisma.InstanceOperationStateAggregateArgs<ExtArgs>
|
|
1317
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateInstanceOperationState>
|
|
1318
|
+
}
|
|
1319
|
+
groupBy: {
|
|
1320
|
+
args: Prisma.InstanceOperationStateGroupByArgs<ExtArgs>
|
|
1321
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceOperationStateGroupByOutputType>[]
|
|
1322
|
+
}
|
|
1323
|
+
count: {
|
|
1324
|
+
args: Prisma.InstanceOperationStateCountArgs<ExtArgs>
|
|
1325
|
+
result: runtime.Types.Utils.Optional<Prisma.InstanceOperationStateCountAggregateOutputType> | number
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
}
|
|
1329
|
+
OperationLog: {
|
|
1330
|
+
payload: Prisma.$OperationLogPayload<ExtArgs>
|
|
1331
|
+
fields: Prisma.OperationLogFieldRefs
|
|
1332
|
+
operations: {
|
|
1333
|
+
findUnique: {
|
|
1334
|
+
args: Prisma.OperationLogFindUniqueArgs<ExtArgs>
|
|
1335
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload> | null
|
|
1336
|
+
}
|
|
1337
|
+
findUniqueOrThrow: {
|
|
1338
|
+
args: Prisma.OperationLogFindUniqueOrThrowArgs<ExtArgs>
|
|
1339
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1340
|
+
}
|
|
1341
|
+
findFirst: {
|
|
1342
|
+
args: Prisma.OperationLogFindFirstArgs<ExtArgs>
|
|
1343
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload> | null
|
|
1344
|
+
}
|
|
1345
|
+
findFirstOrThrow: {
|
|
1346
|
+
args: Prisma.OperationLogFindFirstOrThrowArgs<ExtArgs>
|
|
1347
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1348
|
+
}
|
|
1349
|
+
findMany: {
|
|
1350
|
+
args: Prisma.OperationLogFindManyArgs<ExtArgs>
|
|
1351
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>[]
|
|
1352
|
+
}
|
|
1353
|
+
create: {
|
|
1354
|
+
args: Prisma.OperationLogCreateArgs<ExtArgs>
|
|
1355
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1356
|
+
}
|
|
1357
|
+
createMany: {
|
|
1358
|
+
args: Prisma.OperationLogCreateManyArgs<ExtArgs>
|
|
1359
|
+
result: BatchPayload
|
|
1360
|
+
}
|
|
1361
|
+
createManyAndReturn: {
|
|
1362
|
+
args: Prisma.OperationLogCreateManyAndReturnArgs<ExtArgs>
|
|
1363
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>[]
|
|
1364
|
+
}
|
|
1365
|
+
delete: {
|
|
1366
|
+
args: Prisma.OperationLogDeleteArgs<ExtArgs>
|
|
1367
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1368
|
+
}
|
|
1369
|
+
update: {
|
|
1370
|
+
args: Prisma.OperationLogUpdateArgs<ExtArgs>
|
|
1371
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1372
|
+
}
|
|
1373
|
+
deleteMany: {
|
|
1374
|
+
args: Prisma.OperationLogDeleteManyArgs<ExtArgs>
|
|
1375
|
+
result: BatchPayload
|
|
1376
|
+
}
|
|
1377
|
+
updateMany: {
|
|
1378
|
+
args: Prisma.OperationLogUpdateManyArgs<ExtArgs>
|
|
1379
|
+
result: BatchPayload
|
|
1380
|
+
}
|
|
1381
|
+
updateManyAndReturn: {
|
|
1382
|
+
args: Prisma.OperationLogUpdateManyAndReturnArgs<ExtArgs>
|
|
1383
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>[]
|
|
1384
|
+
}
|
|
1385
|
+
upsert: {
|
|
1386
|
+
args: Prisma.OperationLogUpsertArgs<ExtArgs>
|
|
1387
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$OperationLogPayload>
|
|
1388
|
+
}
|
|
1389
|
+
aggregate: {
|
|
1390
|
+
args: Prisma.OperationLogAggregateArgs<ExtArgs>
|
|
1391
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateOperationLog>
|
|
1392
|
+
}
|
|
1393
|
+
groupBy: {
|
|
1394
|
+
args: Prisma.OperationLogGroupByArgs<ExtArgs>
|
|
1395
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationLogGroupByOutputType>[]
|
|
1396
|
+
}
|
|
1397
|
+
count: {
|
|
1398
|
+
args: Prisma.OperationLogCountArgs<ExtArgs>
|
|
1399
|
+
result: runtime.Types.Utils.Optional<Prisma.OperationLogCountAggregateOutputType> | number
|
|
1400
|
+
}
|
|
1401
|
+
}
|
|
1402
|
+
}
|
|
1403
|
+
Page: {
|
|
1404
|
+
payload: Prisma.$PagePayload<ExtArgs>
|
|
1405
|
+
fields: Prisma.PageFieldRefs
|
|
1406
|
+
operations: {
|
|
1407
|
+
findUnique: {
|
|
1408
|
+
args: Prisma.PageFindUniqueArgs<ExtArgs>
|
|
1409
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload> | null
|
|
1410
|
+
}
|
|
1411
|
+
findUniqueOrThrow: {
|
|
1412
|
+
args: Prisma.PageFindUniqueOrThrowArgs<ExtArgs>
|
|
1413
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1414
|
+
}
|
|
1415
|
+
findFirst: {
|
|
1416
|
+
args: Prisma.PageFindFirstArgs<ExtArgs>
|
|
1417
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload> | null
|
|
1418
|
+
}
|
|
1419
|
+
findFirstOrThrow: {
|
|
1420
|
+
args: Prisma.PageFindFirstOrThrowArgs<ExtArgs>
|
|
1421
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1422
|
+
}
|
|
1423
|
+
findMany: {
|
|
1424
|
+
args: Prisma.PageFindManyArgs<ExtArgs>
|
|
1425
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>[]
|
|
1426
|
+
}
|
|
1427
|
+
create: {
|
|
1428
|
+
args: Prisma.PageCreateArgs<ExtArgs>
|
|
1429
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1430
|
+
}
|
|
1431
|
+
createMany: {
|
|
1432
|
+
args: Prisma.PageCreateManyArgs<ExtArgs>
|
|
1433
|
+
result: BatchPayload
|
|
1434
|
+
}
|
|
1435
|
+
createManyAndReturn: {
|
|
1436
|
+
args: Prisma.PageCreateManyAndReturnArgs<ExtArgs>
|
|
1437
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>[]
|
|
1438
|
+
}
|
|
1439
|
+
delete: {
|
|
1440
|
+
args: Prisma.PageDeleteArgs<ExtArgs>
|
|
1441
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1442
|
+
}
|
|
1443
|
+
update: {
|
|
1444
|
+
args: Prisma.PageUpdateArgs<ExtArgs>
|
|
1445
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1446
|
+
}
|
|
1447
|
+
deleteMany: {
|
|
1448
|
+
args: Prisma.PageDeleteManyArgs<ExtArgs>
|
|
1449
|
+
result: BatchPayload
|
|
1450
|
+
}
|
|
1451
|
+
updateMany: {
|
|
1452
|
+
args: Prisma.PageUpdateManyArgs<ExtArgs>
|
|
1453
|
+
result: BatchPayload
|
|
1454
|
+
}
|
|
1455
|
+
updateManyAndReturn: {
|
|
1456
|
+
args: Prisma.PageUpdateManyAndReturnArgs<ExtArgs>
|
|
1457
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>[]
|
|
1458
|
+
}
|
|
1459
|
+
upsert: {
|
|
1460
|
+
args: Prisma.PageUpsertArgs<ExtArgs>
|
|
1461
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$PagePayload>
|
|
1462
|
+
}
|
|
1463
|
+
aggregate: {
|
|
1464
|
+
args: Prisma.PageAggregateArgs<ExtArgs>
|
|
1465
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregatePage>
|
|
1466
|
+
}
|
|
1467
|
+
groupBy: {
|
|
1468
|
+
args: Prisma.PageGroupByArgs<ExtArgs>
|
|
1469
|
+
result: runtime.Types.Utils.Optional<Prisma.PageGroupByOutputType>[]
|
|
1470
|
+
}
|
|
1471
|
+
count: {
|
|
1472
|
+
args: Prisma.PageCountArgs<ExtArgs>
|
|
1473
|
+
result: runtime.Types.Utils.Optional<Prisma.PageCountAggregateOutputType> | number
|
|
1474
|
+
}
|
|
1475
|
+
}
|
|
1476
|
+
}
|
|
1477
|
+
Secret: {
|
|
1478
|
+
payload: Prisma.$SecretPayload<ExtArgs>
|
|
1479
|
+
fields: Prisma.SecretFieldRefs
|
|
1480
|
+
operations: {
|
|
1481
|
+
findUnique: {
|
|
1482
|
+
args: Prisma.SecretFindUniqueArgs<ExtArgs>
|
|
1483
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload> | null
|
|
1484
|
+
}
|
|
1485
|
+
findUniqueOrThrow: {
|
|
1486
|
+
args: Prisma.SecretFindUniqueOrThrowArgs<ExtArgs>
|
|
1487
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1488
|
+
}
|
|
1489
|
+
findFirst: {
|
|
1490
|
+
args: Prisma.SecretFindFirstArgs<ExtArgs>
|
|
1491
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload> | null
|
|
1492
|
+
}
|
|
1493
|
+
findFirstOrThrow: {
|
|
1494
|
+
args: Prisma.SecretFindFirstOrThrowArgs<ExtArgs>
|
|
1495
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1496
|
+
}
|
|
1497
|
+
findMany: {
|
|
1498
|
+
args: Prisma.SecretFindManyArgs<ExtArgs>
|
|
1499
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>[]
|
|
1500
|
+
}
|
|
1501
|
+
create: {
|
|
1502
|
+
args: Prisma.SecretCreateArgs<ExtArgs>
|
|
1503
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1504
|
+
}
|
|
1505
|
+
createMany: {
|
|
1506
|
+
args: Prisma.SecretCreateManyArgs<ExtArgs>
|
|
1507
|
+
result: BatchPayload
|
|
1508
|
+
}
|
|
1509
|
+
createManyAndReturn: {
|
|
1510
|
+
args: Prisma.SecretCreateManyAndReturnArgs<ExtArgs>
|
|
1511
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>[]
|
|
1512
|
+
}
|
|
1513
|
+
delete: {
|
|
1514
|
+
args: Prisma.SecretDeleteArgs<ExtArgs>
|
|
1515
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1516
|
+
}
|
|
1517
|
+
update: {
|
|
1518
|
+
args: Prisma.SecretUpdateArgs<ExtArgs>
|
|
1519
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1520
|
+
}
|
|
1521
|
+
deleteMany: {
|
|
1522
|
+
args: Prisma.SecretDeleteManyArgs<ExtArgs>
|
|
1523
|
+
result: BatchPayload
|
|
1524
|
+
}
|
|
1525
|
+
updateMany: {
|
|
1526
|
+
args: Prisma.SecretUpdateManyArgs<ExtArgs>
|
|
1527
|
+
result: BatchPayload
|
|
1528
|
+
}
|
|
1529
|
+
updateManyAndReturn: {
|
|
1530
|
+
args: Prisma.SecretUpdateManyAndReturnArgs<ExtArgs>
|
|
1531
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>[]
|
|
1532
|
+
}
|
|
1533
|
+
upsert: {
|
|
1534
|
+
args: Prisma.SecretUpsertArgs<ExtArgs>
|
|
1535
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$SecretPayload>
|
|
1536
|
+
}
|
|
1537
|
+
aggregate: {
|
|
1538
|
+
args: Prisma.SecretAggregateArgs<ExtArgs>
|
|
1539
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateSecret>
|
|
1540
|
+
}
|
|
1541
|
+
groupBy: {
|
|
1542
|
+
args: Prisma.SecretGroupByArgs<ExtArgs>
|
|
1543
|
+
result: runtime.Types.Utils.Optional<Prisma.SecretGroupByOutputType>[]
|
|
1544
|
+
}
|
|
1545
|
+
count: {
|
|
1546
|
+
args: Prisma.SecretCountArgs<ExtArgs>
|
|
1547
|
+
result: runtime.Types.Utils.Optional<Prisma.SecretCountAggregateOutputType> | number
|
|
1548
|
+
}
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
ServiceAccount: {
|
|
1552
|
+
payload: Prisma.$ServiceAccountPayload<ExtArgs>
|
|
1553
|
+
fields: Prisma.ServiceAccountFieldRefs
|
|
1554
|
+
operations: {
|
|
1555
|
+
findUnique: {
|
|
1556
|
+
args: Prisma.ServiceAccountFindUniqueArgs<ExtArgs>
|
|
1557
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload> | null
|
|
1558
|
+
}
|
|
1559
|
+
findUniqueOrThrow: {
|
|
1560
|
+
args: Prisma.ServiceAccountFindUniqueOrThrowArgs<ExtArgs>
|
|
1561
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1562
|
+
}
|
|
1563
|
+
findFirst: {
|
|
1564
|
+
args: Prisma.ServiceAccountFindFirstArgs<ExtArgs>
|
|
1565
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload> | null
|
|
1566
|
+
}
|
|
1567
|
+
findFirstOrThrow: {
|
|
1568
|
+
args: Prisma.ServiceAccountFindFirstOrThrowArgs<ExtArgs>
|
|
1569
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1570
|
+
}
|
|
1571
|
+
findMany: {
|
|
1572
|
+
args: Prisma.ServiceAccountFindManyArgs<ExtArgs>
|
|
1573
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>[]
|
|
1574
|
+
}
|
|
1575
|
+
create: {
|
|
1576
|
+
args: Prisma.ServiceAccountCreateArgs<ExtArgs>
|
|
1577
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1578
|
+
}
|
|
1579
|
+
createMany: {
|
|
1580
|
+
args: Prisma.ServiceAccountCreateManyArgs<ExtArgs>
|
|
1581
|
+
result: BatchPayload
|
|
1582
|
+
}
|
|
1583
|
+
createManyAndReturn: {
|
|
1584
|
+
args: Prisma.ServiceAccountCreateManyAndReturnArgs<ExtArgs>
|
|
1585
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>[]
|
|
1586
|
+
}
|
|
1587
|
+
delete: {
|
|
1588
|
+
args: Prisma.ServiceAccountDeleteArgs<ExtArgs>
|
|
1589
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1590
|
+
}
|
|
1591
|
+
update: {
|
|
1592
|
+
args: Prisma.ServiceAccountUpdateArgs<ExtArgs>
|
|
1593
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1594
|
+
}
|
|
1595
|
+
deleteMany: {
|
|
1596
|
+
args: Prisma.ServiceAccountDeleteManyArgs<ExtArgs>
|
|
1597
|
+
result: BatchPayload
|
|
1598
|
+
}
|
|
1599
|
+
updateMany: {
|
|
1600
|
+
args: Prisma.ServiceAccountUpdateManyArgs<ExtArgs>
|
|
1601
|
+
result: BatchPayload
|
|
1602
|
+
}
|
|
1603
|
+
updateManyAndReturn: {
|
|
1604
|
+
args: Prisma.ServiceAccountUpdateManyAndReturnArgs<ExtArgs>
|
|
1605
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>[]
|
|
1606
|
+
}
|
|
1607
|
+
upsert: {
|
|
1608
|
+
args: Prisma.ServiceAccountUpsertArgs<ExtArgs>
|
|
1609
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$ServiceAccountPayload>
|
|
1610
|
+
}
|
|
1611
|
+
aggregate: {
|
|
1612
|
+
args: Prisma.ServiceAccountAggregateArgs<ExtArgs>
|
|
1613
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateServiceAccount>
|
|
1614
|
+
}
|
|
1615
|
+
groupBy: {
|
|
1616
|
+
args: Prisma.ServiceAccountGroupByArgs<ExtArgs>
|
|
1617
|
+
result: runtime.Types.Utils.Optional<Prisma.ServiceAccountGroupByOutputType>[]
|
|
1618
|
+
}
|
|
1619
|
+
count: {
|
|
1620
|
+
args: Prisma.ServiceAccountCountArgs<ExtArgs>
|
|
1621
|
+
result: runtime.Types.Utils.Optional<Prisma.ServiceAccountCountAggregateOutputType> | number
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
Terminal: {
|
|
1626
|
+
payload: Prisma.$TerminalPayload<ExtArgs>
|
|
1627
|
+
fields: Prisma.TerminalFieldRefs
|
|
1628
|
+
operations: {
|
|
1629
|
+
findUnique: {
|
|
1630
|
+
args: Prisma.TerminalFindUniqueArgs<ExtArgs>
|
|
1631
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload> | null
|
|
1632
|
+
}
|
|
1633
|
+
findUniqueOrThrow: {
|
|
1634
|
+
args: Prisma.TerminalFindUniqueOrThrowArgs<ExtArgs>
|
|
1635
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1636
|
+
}
|
|
1637
|
+
findFirst: {
|
|
1638
|
+
args: Prisma.TerminalFindFirstArgs<ExtArgs>
|
|
1639
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload> | null
|
|
1640
|
+
}
|
|
1641
|
+
findFirstOrThrow: {
|
|
1642
|
+
args: Prisma.TerminalFindFirstOrThrowArgs<ExtArgs>
|
|
1643
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1644
|
+
}
|
|
1645
|
+
findMany: {
|
|
1646
|
+
args: Prisma.TerminalFindManyArgs<ExtArgs>
|
|
1647
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>[]
|
|
1648
|
+
}
|
|
1649
|
+
create: {
|
|
1650
|
+
args: Prisma.TerminalCreateArgs<ExtArgs>
|
|
1651
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1652
|
+
}
|
|
1653
|
+
createMany: {
|
|
1654
|
+
args: Prisma.TerminalCreateManyArgs<ExtArgs>
|
|
1655
|
+
result: BatchPayload
|
|
1656
|
+
}
|
|
1657
|
+
createManyAndReturn: {
|
|
1658
|
+
args: Prisma.TerminalCreateManyAndReturnArgs<ExtArgs>
|
|
1659
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>[]
|
|
1660
|
+
}
|
|
1661
|
+
delete: {
|
|
1662
|
+
args: Prisma.TerminalDeleteArgs<ExtArgs>
|
|
1663
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1664
|
+
}
|
|
1665
|
+
update: {
|
|
1666
|
+
args: Prisma.TerminalUpdateArgs<ExtArgs>
|
|
1667
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1668
|
+
}
|
|
1669
|
+
deleteMany: {
|
|
1670
|
+
args: Prisma.TerminalDeleteManyArgs<ExtArgs>
|
|
1671
|
+
result: BatchPayload
|
|
1672
|
+
}
|
|
1673
|
+
updateMany: {
|
|
1674
|
+
args: Prisma.TerminalUpdateManyArgs<ExtArgs>
|
|
1675
|
+
result: BatchPayload
|
|
1676
|
+
}
|
|
1677
|
+
updateManyAndReturn: {
|
|
1678
|
+
args: Prisma.TerminalUpdateManyAndReturnArgs<ExtArgs>
|
|
1679
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>[]
|
|
1680
|
+
}
|
|
1681
|
+
upsert: {
|
|
1682
|
+
args: Prisma.TerminalUpsertArgs<ExtArgs>
|
|
1683
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalPayload>
|
|
1684
|
+
}
|
|
1685
|
+
aggregate: {
|
|
1686
|
+
args: Prisma.TerminalAggregateArgs<ExtArgs>
|
|
1687
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateTerminal>
|
|
1688
|
+
}
|
|
1689
|
+
groupBy: {
|
|
1690
|
+
args: Prisma.TerminalGroupByArgs<ExtArgs>
|
|
1691
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalGroupByOutputType>[]
|
|
1692
|
+
}
|
|
1693
|
+
count: {
|
|
1694
|
+
args: Prisma.TerminalCountArgs<ExtArgs>
|
|
1695
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalCountAggregateOutputType> | number
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
TerminalSession: {
|
|
1700
|
+
payload: Prisma.$TerminalSessionPayload<ExtArgs>
|
|
1701
|
+
fields: Prisma.TerminalSessionFieldRefs
|
|
1702
|
+
operations: {
|
|
1703
|
+
findUnique: {
|
|
1704
|
+
args: Prisma.TerminalSessionFindUniqueArgs<ExtArgs>
|
|
1705
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload> | null
|
|
1706
|
+
}
|
|
1707
|
+
findUniqueOrThrow: {
|
|
1708
|
+
args: Prisma.TerminalSessionFindUniqueOrThrowArgs<ExtArgs>
|
|
1709
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1710
|
+
}
|
|
1711
|
+
findFirst: {
|
|
1712
|
+
args: Prisma.TerminalSessionFindFirstArgs<ExtArgs>
|
|
1713
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload> | null
|
|
1714
|
+
}
|
|
1715
|
+
findFirstOrThrow: {
|
|
1716
|
+
args: Prisma.TerminalSessionFindFirstOrThrowArgs<ExtArgs>
|
|
1717
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1718
|
+
}
|
|
1719
|
+
findMany: {
|
|
1720
|
+
args: Prisma.TerminalSessionFindManyArgs<ExtArgs>
|
|
1721
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>[]
|
|
1722
|
+
}
|
|
1723
|
+
create: {
|
|
1724
|
+
args: Prisma.TerminalSessionCreateArgs<ExtArgs>
|
|
1725
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1726
|
+
}
|
|
1727
|
+
createMany: {
|
|
1728
|
+
args: Prisma.TerminalSessionCreateManyArgs<ExtArgs>
|
|
1729
|
+
result: BatchPayload
|
|
1730
|
+
}
|
|
1731
|
+
createManyAndReturn: {
|
|
1732
|
+
args: Prisma.TerminalSessionCreateManyAndReturnArgs<ExtArgs>
|
|
1733
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>[]
|
|
1734
|
+
}
|
|
1735
|
+
delete: {
|
|
1736
|
+
args: Prisma.TerminalSessionDeleteArgs<ExtArgs>
|
|
1737
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1738
|
+
}
|
|
1739
|
+
update: {
|
|
1740
|
+
args: Prisma.TerminalSessionUpdateArgs<ExtArgs>
|
|
1741
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1742
|
+
}
|
|
1743
|
+
deleteMany: {
|
|
1744
|
+
args: Prisma.TerminalSessionDeleteManyArgs<ExtArgs>
|
|
1745
|
+
result: BatchPayload
|
|
1746
|
+
}
|
|
1747
|
+
updateMany: {
|
|
1748
|
+
args: Prisma.TerminalSessionUpdateManyArgs<ExtArgs>
|
|
1749
|
+
result: BatchPayload
|
|
1750
|
+
}
|
|
1751
|
+
updateManyAndReturn: {
|
|
1752
|
+
args: Prisma.TerminalSessionUpdateManyAndReturnArgs<ExtArgs>
|
|
1753
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>[]
|
|
1754
|
+
}
|
|
1755
|
+
upsert: {
|
|
1756
|
+
args: Prisma.TerminalSessionUpsertArgs<ExtArgs>
|
|
1757
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionPayload>
|
|
1758
|
+
}
|
|
1759
|
+
aggregate: {
|
|
1760
|
+
args: Prisma.TerminalSessionAggregateArgs<ExtArgs>
|
|
1761
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateTerminalSession>
|
|
1762
|
+
}
|
|
1763
|
+
groupBy: {
|
|
1764
|
+
args: Prisma.TerminalSessionGroupByArgs<ExtArgs>
|
|
1765
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalSessionGroupByOutputType>[]
|
|
1766
|
+
}
|
|
1767
|
+
count: {
|
|
1768
|
+
args: Prisma.TerminalSessionCountArgs<ExtArgs>
|
|
1769
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalSessionCountAggregateOutputType> | number
|
|
1770
|
+
}
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
TerminalSessionLog: {
|
|
1774
|
+
payload: Prisma.$TerminalSessionLogPayload<ExtArgs>
|
|
1775
|
+
fields: Prisma.TerminalSessionLogFieldRefs
|
|
1776
|
+
operations: {
|
|
1777
|
+
findUnique: {
|
|
1778
|
+
args: Prisma.TerminalSessionLogFindUniqueArgs<ExtArgs>
|
|
1779
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload> | null
|
|
1780
|
+
}
|
|
1781
|
+
findUniqueOrThrow: {
|
|
1782
|
+
args: Prisma.TerminalSessionLogFindUniqueOrThrowArgs<ExtArgs>
|
|
1783
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1784
|
+
}
|
|
1785
|
+
findFirst: {
|
|
1786
|
+
args: Prisma.TerminalSessionLogFindFirstArgs<ExtArgs>
|
|
1787
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload> | null
|
|
1788
|
+
}
|
|
1789
|
+
findFirstOrThrow: {
|
|
1790
|
+
args: Prisma.TerminalSessionLogFindFirstOrThrowArgs<ExtArgs>
|
|
1791
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1792
|
+
}
|
|
1793
|
+
findMany: {
|
|
1794
|
+
args: Prisma.TerminalSessionLogFindManyArgs<ExtArgs>
|
|
1795
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>[]
|
|
1796
|
+
}
|
|
1797
|
+
create: {
|
|
1798
|
+
args: Prisma.TerminalSessionLogCreateArgs<ExtArgs>
|
|
1799
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1800
|
+
}
|
|
1801
|
+
createMany: {
|
|
1802
|
+
args: Prisma.TerminalSessionLogCreateManyArgs<ExtArgs>
|
|
1803
|
+
result: BatchPayload
|
|
1804
|
+
}
|
|
1805
|
+
createManyAndReturn: {
|
|
1806
|
+
args: Prisma.TerminalSessionLogCreateManyAndReturnArgs<ExtArgs>
|
|
1807
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>[]
|
|
1808
|
+
}
|
|
1809
|
+
delete: {
|
|
1810
|
+
args: Prisma.TerminalSessionLogDeleteArgs<ExtArgs>
|
|
1811
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1812
|
+
}
|
|
1813
|
+
update: {
|
|
1814
|
+
args: Prisma.TerminalSessionLogUpdateArgs<ExtArgs>
|
|
1815
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1816
|
+
}
|
|
1817
|
+
deleteMany: {
|
|
1818
|
+
args: Prisma.TerminalSessionLogDeleteManyArgs<ExtArgs>
|
|
1819
|
+
result: BatchPayload
|
|
1820
|
+
}
|
|
1821
|
+
updateMany: {
|
|
1822
|
+
args: Prisma.TerminalSessionLogUpdateManyArgs<ExtArgs>
|
|
1823
|
+
result: BatchPayload
|
|
1824
|
+
}
|
|
1825
|
+
updateManyAndReturn: {
|
|
1826
|
+
args: Prisma.TerminalSessionLogUpdateManyAndReturnArgs<ExtArgs>
|
|
1827
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>[]
|
|
1828
|
+
}
|
|
1829
|
+
upsert: {
|
|
1830
|
+
args: Prisma.TerminalSessionLogUpsertArgs<ExtArgs>
|
|
1831
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TerminalSessionLogPayload>
|
|
1832
|
+
}
|
|
1833
|
+
aggregate: {
|
|
1834
|
+
args: Prisma.TerminalSessionLogAggregateArgs<ExtArgs>
|
|
1835
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateTerminalSessionLog>
|
|
1836
|
+
}
|
|
1837
|
+
groupBy: {
|
|
1838
|
+
args: Prisma.TerminalSessionLogGroupByArgs<ExtArgs>
|
|
1839
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalSessionLogGroupByOutputType>[]
|
|
1840
|
+
}
|
|
1841
|
+
count: {
|
|
1842
|
+
args: Prisma.TerminalSessionLogCountArgs<ExtArgs>
|
|
1843
|
+
result: runtime.Types.Utils.Optional<Prisma.TerminalSessionLogCountAggregateOutputType> | number
|
|
1844
|
+
}
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
Trigger: {
|
|
1848
|
+
payload: Prisma.$TriggerPayload<ExtArgs>
|
|
1849
|
+
fields: Prisma.TriggerFieldRefs
|
|
1850
|
+
operations: {
|
|
1851
|
+
findUnique: {
|
|
1852
|
+
args: Prisma.TriggerFindUniqueArgs<ExtArgs>
|
|
1853
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload> | null
|
|
1854
|
+
}
|
|
1855
|
+
findUniqueOrThrow: {
|
|
1856
|
+
args: Prisma.TriggerFindUniqueOrThrowArgs<ExtArgs>
|
|
1857
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1858
|
+
}
|
|
1859
|
+
findFirst: {
|
|
1860
|
+
args: Prisma.TriggerFindFirstArgs<ExtArgs>
|
|
1861
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload> | null
|
|
1862
|
+
}
|
|
1863
|
+
findFirstOrThrow: {
|
|
1864
|
+
args: Prisma.TriggerFindFirstOrThrowArgs<ExtArgs>
|
|
1865
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1866
|
+
}
|
|
1867
|
+
findMany: {
|
|
1868
|
+
args: Prisma.TriggerFindManyArgs<ExtArgs>
|
|
1869
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>[]
|
|
1870
|
+
}
|
|
1871
|
+
create: {
|
|
1872
|
+
args: Prisma.TriggerCreateArgs<ExtArgs>
|
|
1873
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1874
|
+
}
|
|
1875
|
+
createMany: {
|
|
1876
|
+
args: Prisma.TriggerCreateManyArgs<ExtArgs>
|
|
1877
|
+
result: BatchPayload
|
|
1878
|
+
}
|
|
1879
|
+
createManyAndReturn: {
|
|
1880
|
+
args: Prisma.TriggerCreateManyAndReturnArgs<ExtArgs>
|
|
1881
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>[]
|
|
1882
|
+
}
|
|
1883
|
+
delete: {
|
|
1884
|
+
args: Prisma.TriggerDeleteArgs<ExtArgs>
|
|
1885
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1886
|
+
}
|
|
1887
|
+
update: {
|
|
1888
|
+
args: Prisma.TriggerUpdateArgs<ExtArgs>
|
|
1889
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1890
|
+
}
|
|
1891
|
+
deleteMany: {
|
|
1892
|
+
args: Prisma.TriggerDeleteManyArgs<ExtArgs>
|
|
1893
|
+
result: BatchPayload
|
|
1894
|
+
}
|
|
1895
|
+
updateMany: {
|
|
1896
|
+
args: Prisma.TriggerUpdateManyArgs<ExtArgs>
|
|
1897
|
+
result: BatchPayload
|
|
1898
|
+
}
|
|
1899
|
+
updateManyAndReturn: {
|
|
1900
|
+
args: Prisma.TriggerUpdateManyAndReturnArgs<ExtArgs>
|
|
1901
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>[]
|
|
1902
|
+
}
|
|
1903
|
+
upsert: {
|
|
1904
|
+
args: Prisma.TriggerUpsertArgs<ExtArgs>
|
|
1905
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$TriggerPayload>
|
|
1906
|
+
}
|
|
1907
|
+
aggregate: {
|
|
1908
|
+
args: Prisma.TriggerAggregateArgs<ExtArgs>
|
|
1909
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateTrigger>
|
|
1910
|
+
}
|
|
1911
|
+
groupBy: {
|
|
1912
|
+
args: Prisma.TriggerGroupByArgs<ExtArgs>
|
|
1913
|
+
result: runtime.Types.Utils.Optional<Prisma.TriggerGroupByOutputType>[]
|
|
1914
|
+
}
|
|
1915
|
+
count: {
|
|
1916
|
+
args: Prisma.TriggerCountArgs<ExtArgs>
|
|
1917
|
+
result: runtime.Types.Utils.Optional<Prisma.TriggerCountAggregateOutputType> | number
|
|
1918
|
+
}
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
UnlockMethod: {
|
|
1922
|
+
payload: Prisma.$UnlockMethodPayload<ExtArgs>
|
|
1923
|
+
fields: Prisma.UnlockMethodFieldRefs
|
|
1924
|
+
operations: {
|
|
1925
|
+
findUnique: {
|
|
1926
|
+
args: Prisma.UnlockMethodFindUniqueArgs<ExtArgs>
|
|
1927
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload> | null
|
|
1928
|
+
}
|
|
1929
|
+
findUniqueOrThrow: {
|
|
1930
|
+
args: Prisma.UnlockMethodFindUniqueOrThrowArgs<ExtArgs>
|
|
1931
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1932
|
+
}
|
|
1933
|
+
findFirst: {
|
|
1934
|
+
args: Prisma.UnlockMethodFindFirstArgs<ExtArgs>
|
|
1935
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload> | null
|
|
1936
|
+
}
|
|
1937
|
+
findFirstOrThrow: {
|
|
1938
|
+
args: Prisma.UnlockMethodFindFirstOrThrowArgs<ExtArgs>
|
|
1939
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1940
|
+
}
|
|
1941
|
+
findMany: {
|
|
1942
|
+
args: Prisma.UnlockMethodFindManyArgs<ExtArgs>
|
|
1943
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>[]
|
|
1944
|
+
}
|
|
1945
|
+
create: {
|
|
1946
|
+
args: Prisma.UnlockMethodCreateArgs<ExtArgs>
|
|
1947
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1948
|
+
}
|
|
1949
|
+
createMany: {
|
|
1950
|
+
args: Prisma.UnlockMethodCreateManyArgs<ExtArgs>
|
|
1951
|
+
result: BatchPayload
|
|
1952
|
+
}
|
|
1953
|
+
createManyAndReturn: {
|
|
1954
|
+
args: Prisma.UnlockMethodCreateManyAndReturnArgs<ExtArgs>
|
|
1955
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>[]
|
|
1956
|
+
}
|
|
1957
|
+
delete: {
|
|
1958
|
+
args: Prisma.UnlockMethodDeleteArgs<ExtArgs>
|
|
1959
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1960
|
+
}
|
|
1961
|
+
update: {
|
|
1962
|
+
args: Prisma.UnlockMethodUpdateArgs<ExtArgs>
|
|
1963
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1964
|
+
}
|
|
1965
|
+
deleteMany: {
|
|
1966
|
+
args: Prisma.UnlockMethodDeleteManyArgs<ExtArgs>
|
|
1967
|
+
result: BatchPayload
|
|
1968
|
+
}
|
|
1969
|
+
updateMany: {
|
|
1970
|
+
args: Prisma.UnlockMethodUpdateManyArgs<ExtArgs>
|
|
1971
|
+
result: BatchPayload
|
|
1972
|
+
}
|
|
1973
|
+
updateManyAndReturn: {
|
|
1974
|
+
args: Prisma.UnlockMethodUpdateManyAndReturnArgs<ExtArgs>
|
|
1975
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>[]
|
|
1976
|
+
}
|
|
1977
|
+
upsert: {
|
|
1978
|
+
args: Prisma.UnlockMethodUpsertArgs<ExtArgs>
|
|
1979
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$UnlockMethodPayload>
|
|
1980
|
+
}
|
|
1981
|
+
aggregate: {
|
|
1982
|
+
args: Prisma.UnlockMethodAggregateArgs<ExtArgs>
|
|
1983
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateUnlockMethod>
|
|
1984
|
+
}
|
|
1985
|
+
groupBy: {
|
|
1986
|
+
args: Prisma.UnlockMethodGroupByArgs<ExtArgs>
|
|
1987
|
+
result: runtime.Types.Utils.Optional<Prisma.UnlockMethodGroupByOutputType>[]
|
|
1988
|
+
}
|
|
1989
|
+
count: {
|
|
1990
|
+
args: Prisma.UnlockMethodCountArgs<ExtArgs>
|
|
1991
|
+
result: runtime.Types.Utils.Optional<Prisma.UnlockMethodCountAggregateOutputType> | number
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
Worker: {
|
|
1996
|
+
payload: Prisma.$WorkerPayload<ExtArgs>
|
|
1997
|
+
fields: Prisma.WorkerFieldRefs
|
|
1998
|
+
operations: {
|
|
1999
|
+
findUnique: {
|
|
2000
|
+
args: Prisma.WorkerFindUniqueArgs<ExtArgs>
|
|
2001
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload> | null
|
|
2002
|
+
}
|
|
2003
|
+
findUniqueOrThrow: {
|
|
2004
|
+
args: Prisma.WorkerFindUniqueOrThrowArgs<ExtArgs>
|
|
2005
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2006
|
+
}
|
|
2007
|
+
findFirst: {
|
|
2008
|
+
args: Prisma.WorkerFindFirstArgs<ExtArgs>
|
|
2009
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload> | null
|
|
2010
|
+
}
|
|
2011
|
+
findFirstOrThrow: {
|
|
2012
|
+
args: Prisma.WorkerFindFirstOrThrowArgs<ExtArgs>
|
|
2013
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2014
|
+
}
|
|
2015
|
+
findMany: {
|
|
2016
|
+
args: Prisma.WorkerFindManyArgs<ExtArgs>
|
|
2017
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>[]
|
|
2018
|
+
}
|
|
2019
|
+
create: {
|
|
2020
|
+
args: Prisma.WorkerCreateArgs<ExtArgs>
|
|
2021
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2022
|
+
}
|
|
2023
|
+
createMany: {
|
|
2024
|
+
args: Prisma.WorkerCreateManyArgs<ExtArgs>
|
|
2025
|
+
result: BatchPayload
|
|
2026
|
+
}
|
|
2027
|
+
createManyAndReturn: {
|
|
2028
|
+
args: Prisma.WorkerCreateManyAndReturnArgs<ExtArgs>
|
|
2029
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>[]
|
|
2030
|
+
}
|
|
2031
|
+
delete: {
|
|
2032
|
+
args: Prisma.WorkerDeleteArgs<ExtArgs>
|
|
2033
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2034
|
+
}
|
|
2035
|
+
update: {
|
|
2036
|
+
args: Prisma.WorkerUpdateArgs<ExtArgs>
|
|
2037
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2038
|
+
}
|
|
2039
|
+
deleteMany: {
|
|
2040
|
+
args: Prisma.WorkerDeleteManyArgs<ExtArgs>
|
|
2041
|
+
result: BatchPayload
|
|
2042
|
+
}
|
|
2043
|
+
updateMany: {
|
|
2044
|
+
args: Prisma.WorkerUpdateManyArgs<ExtArgs>
|
|
2045
|
+
result: BatchPayload
|
|
2046
|
+
}
|
|
2047
|
+
updateManyAndReturn: {
|
|
2048
|
+
args: Prisma.WorkerUpdateManyAndReturnArgs<ExtArgs>
|
|
2049
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>[]
|
|
2050
|
+
}
|
|
2051
|
+
upsert: {
|
|
2052
|
+
args: Prisma.WorkerUpsertArgs<ExtArgs>
|
|
2053
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerPayload>
|
|
2054
|
+
}
|
|
2055
|
+
aggregate: {
|
|
2056
|
+
args: Prisma.WorkerAggregateArgs<ExtArgs>
|
|
2057
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorker>
|
|
2058
|
+
}
|
|
2059
|
+
groupBy: {
|
|
2060
|
+
args: Prisma.WorkerGroupByArgs<ExtArgs>
|
|
2061
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerGroupByOutputType>[]
|
|
2062
|
+
}
|
|
2063
|
+
count: {
|
|
2064
|
+
args: Prisma.WorkerCountArgs<ExtArgs>
|
|
2065
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerCountAggregateOutputType> | number
|
|
2066
|
+
}
|
|
2067
|
+
}
|
|
2068
|
+
}
|
|
2069
|
+
WorkerVersion: {
|
|
2070
|
+
payload: Prisma.$WorkerVersionPayload<ExtArgs>
|
|
2071
|
+
fields: Prisma.WorkerVersionFieldRefs
|
|
2072
|
+
operations: {
|
|
2073
|
+
findUnique: {
|
|
2074
|
+
args: Prisma.WorkerVersionFindUniqueArgs<ExtArgs>
|
|
2075
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload> | null
|
|
2076
|
+
}
|
|
2077
|
+
findUniqueOrThrow: {
|
|
2078
|
+
args: Prisma.WorkerVersionFindUniqueOrThrowArgs<ExtArgs>
|
|
2079
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2080
|
+
}
|
|
2081
|
+
findFirst: {
|
|
2082
|
+
args: Prisma.WorkerVersionFindFirstArgs<ExtArgs>
|
|
2083
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload> | null
|
|
2084
|
+
}
|
|
2085
|
+
findFirstOrThrow: {
|
|
2086
|
+
args: Prisma.WorkerVersionFindFirstOrThrowArgs<ExtArgs>
|
|
2087
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2088
|
+
}
|
|
2089
|
+
findMany: {
|
|
2090
|
+
args: Prisma.WorkerVersionFindManyArgs<ExtArgs>
|
|
2091
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>[]
|
|
2092
|
+
}
|
|
2093
|
+
create: {
|
|
2094
|
+
args: Prisma.WorkerVersionCreateArgs<ExtArgs>
|
|
2095
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2096
|
+
}
|
|
2097
|
+
createMany: {
|
|
2098
|
+
args: Prisma.WorkerVersionCreateManyArgs<ExtArgs>
|
|
2099
|
+
result: BatchPayload
|
|
2100
|
+
}
|
|
2101
|
+
createManyAndReturn: {
|
|
2102
|
+
args: Prisma.WorkerVersionCreateManyAndReturnArgs<ExtArgs>
|
|
2103
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>[]
|
|
2104
|
+
}
|
|
2105
|
+
delete: {
|
|
2106
|
+
args: Prisma.WorkerVersionDeleteArgs<ExtArgs>
|
|
2107
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2108
|
+
}
|
|
2109
|
+
update: {
|
|
2110
|
+
args: Prisma.WorkerVersionUpdateArgs<ExtArgs>
|
|
2111
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2112
|
+
}
|
|
2113
|
+
deleteMany: {
|
|
2114
|
+
args: Prisma.WorkerVersionDeleteManyArgs<ExtArgs>
|
|
2115
|
+
result: BatchPayload
|
|
2116
|
+
}
|
|
2117
|
+
updateMany: {
|
|
2118
|
+
args: Prisma.WorkerVersionUpdateManyArgs<ExtArgs>
|
|
2119
|
+
result: BatchPayload
|
|
2120
|
+
}
|
|
2121
|
+
updateManyAndReturn: {
|
|
2122
|
+
args: Prisma.WorkerVersionUpdateManyAndReturnArgs<ExtArgs>
|
|
2123
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>[]
|
|
2124
|
+
}
|
|
2125
|
+
upsert: {
|
|
2126
|
+
args: Prisma.WorkerVersionUpsertArgs<ExtArgs>
|
|
2127
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionPayload>
|
|
2128
|
+
}
|
|
2129
|
+
aggregate: {
|
|
2130
|
+
args: Prisma.WorkerVersionAggregateArgs<ExtArgs>
|
|
2131
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkerVersion>
|
|
2132
|
+
}
|
|
2133
|
+
groupBy: {
|
|
2134
|
+
args: Prisma.WorkerVersionGroupByArgs<ExtArgs>
|
|
2135
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerVersionGroupByOutputType>[]
|
|
2136
|
+
}
|
|
2137
|
+
count: {
|
|
2138
|
+
args: Prisma.WorkerVersionCountArgs<ExtArgs>
|
|
2139
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerVersionCountAggregateOutputType> | number
|
|
2140
|
+
}
|
|
2141
|
+
}
|
|
2142
|
+
}
|
|
2143
|
+
WorkerUnitRegistration: {
|
|
2144
|
+
payload: Prisma.$WorkerUnitRegistrationPayload<ExtArgs>
|
|
2145
|
+
fields: Prisma.WorkerUnitRegistrationFieldRefs
|
|
2146
|
+
operations: {
|
|
2147
|
+
findUnique: {
|
|
2148
|
+
args: Prisma.WorkerUnitRegistrationFindUniqueArgs<ExtArgs>
|
|
2149
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload> | null
|
|
2150
|
+
}
|
|
2151
|
+
findUniqueOrThrow: {
|
|
2152
|
+
args: Prisma.WorkerUnitRegistrationFindUniqueOrThrowArgs<ExtArgs>
|
|
2153
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2154
|
+
}
|
|
2155
|
+
findFirst: {
|
|
2156
|
+
args: Prisma.WorkerUnitRegistrationFindFirstArgs<ExtArgs>
|
|
2157
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload> | null
|
|
2158
|
+
}
|
|
2159
|
+
findFirstOrThrow: {
|
|
2160
|
+
args: Prisma.WorkerUnitRegistrationFindFirstOrThrowArgs<ExtArgs>
|
|
2161
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2162
|
+
}
|
|
2163
|
+
findMany: {
|
|
2164
|
+
args: Prisma.WorkerUnitRegistrationFindManyArgs<ExtArgs>
|
|
2165
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>[]
|
|
2166
|
+
}
|
|
2167
|
+
create: {
|
|
2168
|
+
args: Prisma.WorkerUnitRegistrationCreateArgs<ExtArgs>
|
|
2169
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2170
|
+
}
|
|
2171
|
+
createMany: {
|
|
2172
|
+
args: Prisma.WorkerUnitRegistrationCreateManyArgs<ExtArgs>
|
|
2173
|
+
result: BatchPayload
|
|
2174
|
+
}
|
|
2175
|
+
createManyAndReturn: {
|
|
2176
|
+
args: Prisma.WorkerUnitRegistrationCreateManyAndReturnArgs<ExtArgs>
|
|
2177
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>[]
|
|
2178
|
+
}
|
|
2179
|
+
delete: {
|
|
2180
|
+
args: Prisma.WorkerUnitRegistrationDeleteArgs<ExtArgs>
|
|
2181
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2182
|
+
}
|
|
2183
|
+
update: {
|
|
2184
|
+
args: Prisma.WorkerUnitRegistrationUpdateArgs<ExtArgs>
|
|
2185
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2186
|
+
}
|
|
2187
|
+
deleteMany: {
|
|
2188
|
+
args: Prisma.WorkerUnitRegistrationDeleteManyArgs<ExtArgs>
|
|
2189
|
+
result: BatchPayload
|
|
2190
|
+
}
|
|
2191
|
+
updateMany: {
|
|
2192
|
+
args: Prisma.WorkerUnitRegistrationUpdateManyArgs<ExtArgs>
|
|
2193
|
+
result: BatchPayload
|
|
2194
|
+
}
|
|
2195
|
+
updateManyAndReturn: {
|
|
2196
|
+
args: Prisma.WorkerUnitRegistrationUpdateManyAndReturnArgs<ExtArgs>
|
|
2197
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>[]
|
|
2198
|
+
}
|
|
2199
|
+
upsert: {
|
|
2200
|
+
args: Prisma.WorkerUnitRegistrationUpsertArgs<ExtArgs>
|
|
2201
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerUnitRegistrationPayload>
|
|
2202
|
+
}
|
|
2203
|
+
aggregate: {
|
|
2204
|
+
args: Prisma.WorkerUnitRegistrationAggregateArgs<ExtArgs>
|
|
2205
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkerUnitRegistration>
|
|
2206
|
+
}
|
|
2207
|
+
groupBy: {
|
|
2208
|
+
args: Prisma.WorkerUnitRegistrationGroupByArgs<ExtArgs>
|
|
2209
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerUnitRegistrationGroupByOutputType>[]
|
|
2210
|
+
}
|
|
2211
|
+
count: {
|
|
2212
|
+
args: Prisma.WorkerUnitRegistrationCountArgs<ExtArgs>
|
|
2213
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerUnitRegistrationCountAggregateOutputType> | number
|
|
2214
|
+
}
|
|
2215
|
+
}
|
|
2216
|
+
}
|
|
2217
|
+
WorkerVersionLog: {
|
|
2218
|
+
payload: Prisma.$WorkerVersionLogPayload<ExtArgs>
|
|
2219
|
+
fields: Prisma.WorkerVersionLogFieldRefs
|
|
2220
|
+
operations: {
|
|
2221
|
+
findUnique: {
|
|
2222
|
+
args: Prisma.WorkerVersionLogFindUniqueArgs<ExtArgs>
|
|
2223
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload> | null
|
|
2224
|
+
}
|
|
2225
|
+
findUniqueOrThrow: {
|
|
2226
|
+
args: Prisma.WorkerVersionLogFindUniqueOrThrowArgs<ExtArgs>
|
|
2227
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2228
|
+
}
|
|
2229
|
+
findFirst: {
|
|
2230
|
+
args: Prisma.WorkerVersionLogFindFirstArgs<ExtArgs>
|
|
2231
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload> | null
|
|
2232
|
+
}
|
|
2233
|
+
findFirstOrThrow: {
|
|
2234
|
+
args: Prisma.WorkerVersionLogFindFirstOrThrowArgs<ExtArgs>
|
|
2235
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2236
|
+
}
|
|
2237
|
+
findMany: {
|
|
2238
|
+
args: Prisma.WorkerVersionLogFindManyArgs<ExtArgs>
|
|
2239
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>[]
|
|
2240
|
+
}
|
|
2241
|
+
create: {
|
|
2242
|
+
args: Prisma.WorkerVersionLogCreateArgs<ExtArgs>
|
|
2243
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2244
|
+
}
|
|
2245
|
+
createMany: {
|
|
2246
|
+
args: Prisma.WorkerVersionLogCreateManyArgs<ExtArgs>
|
|
2247
|
+
result: BatchPayload
|
|
2248
|
+
}
|
|
2249
|
+
createManyAndReturn: {
|
|
2250
|
+
args: Prisma.WorkerVersionLogCreateManyAndReturnArgs<ExtArgs>
|
|
2251
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>[]
|
|
2252
|
+
}
|
|
2253
|
+
delete: {
|
|
2254
|
+
args: Prisma.WorkerVersionLogDeleteArgs<ExtArgs>
|
|
2255
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2256
|
+
}
|
|
2257
|
+
update: {
|
|
2258
|
+
args: Prisma.WorkerVersionLogUpdateArgs<ExtArgs>
|
|
2259
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2260
|
+
}
|
|
2261
|
+
deleteMany: {
|
|
2262
|
+
args: Prisma.WorkerVersionLogDeleteManyArgs<ExtArgs>
|
|
2263
|
+
result: BatchPayload
|
|
2264
|
+
}
|
|
2265
|
+
updateMany: {
|
|
2266
|
+
args: Prisma.WorkerVersionLogUpdateManyArgs<ExtArgs>
|
|
2267
|
+
result: BatchPayload
|
|
2268
|
+
}
|
|
2269
|
+
updateManyAndReturn: {
|
|
2270
|
+
args: Prisma.WorkerVersionLogUpdateManyAndReturnArgs<ExtArgs>
|
|
2271
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>[]
|
|
2272
|
+
}
|
|
2273
|
+
upsert: {
|
|
2274
|
+
args: Prisma.WorkerVersionLogUpsertArgs<ExtArgs>
|
|
2275
|
+
result: runtime.Types.Utils.PayloadToResult<Prisma.$WorkerVersionLogPayload>
|
|
2276
|
+
}
|
|
2277
|
+
aggregate: {
|
|
2278
|
+
args: Prisma.WorkerVersionLogAggregateArgs<ExtArgs>
|
|
2279
|
+
result: runtime.Types.Utils.Optional<Prisma.AggregateWorkerVersionLog>
|
|
2280
|
+
}
|
|
2281
|
+
groupBy: {
|
|
2282
|
+
args: Prisma.WorkerVersionLogGroupByArgs<ExtArgs>
|
|
2283
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerVersionLogGroupByOutputType>[]
|
|
2284
|
+
}
|
|
2285
|
+
count: {
|
|
2286
|
+
args: Prisma.WorkerVersionLogCountArgs<ExtArgs>
|
|
2287
|
+
result: runtime.Types.Utils.Optional<Prisma.WorkerVersionLogCountAggregateOutputType> | number
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
} & {
|
|
2293
|
+
other: {
|
|
2294
|
+
payload: any
|
|
2295
|
+
operations: {
|
|
2296
|
+
$executeRaw: {
|
|
2297
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]],
|
|
2298
|
+
result: any
|
|
2299
|
+
}
|
|
2300
|
+
$executeRawUnsafe: {
|
|
2301
|
+
args: [query: string, ...values: any[]],
|
|
2302
|
+
result: any
|
|
2303
|
+
}
|
|
2304
|
+
$queryRaw: {
|
|
2305
|
+
args: [query: TemplateStringsArray | Sql, ...values: any[]],
|
|
2306
|
+
result: any
|
|
2307
|
+
}
|
|
2308
|
+
$queryRawUnsafe: {
|
|
2309
|
+
args: [query: string, ...values: any[]],
|
|
2310
|
+
result: any
|
|
2311
|
+
}
|
|
2312
|
+
}
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
/**
|
|
2317
|
+
* Enums
|
|
2318
|
+
*/
|
|
2319
|
+
|
|
2320
|
+
export const TransactionIsolationLevel = runtime.makeStrictEnum({
|
|
2321
|
+
Serializable: 'Serializable'
|
|
2322
|
+
} as const)
|
|
2323
|
+
|
|
2324
|
+
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
|
|
2325
|
+
|
|
2326
|
+
|
|
2327
|
+
export const ApiKeyScalarFieldEnum = {
|
|
2328
|
+
id: 'id',
|
|
2329
|
+
meta: 'meta',
|
|
2330
|
+
serviceAccountId: 'serviceAccountId',
|
|
2331
|
+
token: 'token',
|
|
2332
|
+
createdAt: 'createdAt',
|
|
2333
|
+
updatedAt: 'updatedAt'
|
|
2334
|
+
} as const
|
|
2335
|
+
|
|
2336
|
+
export type ApiKeyScalarFieldEnum = (typeof ApiKeyScalarFieldEnum)[keyof typeof ApiKeyScalarFieldEnum]
|
|
2337
|
+
|
|
2338
|
+
|
|
2339
|
+
export const ArtifactScalarFieldEnum = {
|
|
2340
|
+
id: 'id',
|
|
2341
|
+
meta: 'meta',
|
|
2342
|
+
hash: 'hash',
|
|
2343
|
+
size: 'size',
|
|
2344
|
+
chunkSize: 'chunkSize',
|
|
2345
|
+
createdAt: 'createdAt',
|
|
2346
|
+
updatedAt: 'updatedAt'
|
|
2347
|
+
} as const
|
|
2348
|
+
|
|
2349
|
+
export type ArtifactScalarFieldEnum = (typeof ArtifactScalarFieldEnum)[keyof typeof ArtifactScalarFieldEnum]
|
|
2350
|
+
|
|
2351
|
+
|
|
2352
|
+
export const InstanceCustomStatusScalarFieldEnum = {
|
|
2353
|
+
stateId: 'stateId',
|
|
2354
|
+
serviceAccountId: 'serviceAccountId',
|
|
2355
|
+
name: 'name',
|
|
2356
|
+
meta: 'meta',
|
|
2357
|
+
value: 'value',
|
|
2358
|
+
message: 'message',
|
|
2359
|
+
order: 'order',
|
|
2360
|
+
createdAt: 'createdAt',
|
|
2361
|
+
updatedAt: 'updatedAt'
|
|
2362
|
+
} as const
|
|
2363
|
+
|
|
2364
|
+
export type InstanceCustomStatusScalarFieldEnum = (typeof InstanceCustomStatusScalarFieldEnum)[keyof typeof InstanceCustomStatusScalarFieldEnum]
|
|
2365
|
+
|
|
2366
|
+
|
|
2367
|
+
export const InstanceEvaluationStateScalarFieldEnum = {
|
|
2368
|
+
stateId: 'stateId',
|
|
2369
|
+
status: 'status',
|
|
2370
|
+
message: 'message',
|
|
2371
|
+
model: 'model',
|
|
2372
|
+
evaluatedAt: 'evaluatedAt'
|
|
2373
|
+
} as const
|
|
2374
|
+
|
|
2375
|
+
export type InstanceEvaluationStateScalarFieldEnum = (typeof InstanceEvaluationStateScalarFieldEnum)[keyof typeof InstanceEvaluationStateScalarFieldEnum]
|
|
2376
|
+
|
|
2377
|
+
|
|
2378
|
+
export const InstanceStateScalarFieldEnum = {
|
|
2379
|
+
id: 'id',
|
|
2380
|
+
instanceId: 'instanceId',
|
|
2381
|
+
status: 'status',
|
|
2382
|
+
source: 'source',
|
|
2383
|
+
kind: 'kind',
|
|
2384
|
+
parentId: 'parentId',
|
|
2385
|
+
inputHashNonce: 'inputHashNonce',
|
|
2386
|
+
statusFields: 'statusFields',
|
|
2387
|
+
inputHash: 'inputHash',
|
|
2388
|
+
outputHash: 'outputHash',
|
|
2389
|
+
dependencyOutputHash: 'dependencyOutputHash',
|
|
2390
|
+
exportedArtifactIds: 'exportedArtifactIds',
|
|
2391
|
+
currentResourceCount: 'currentResourceCount',
|
|
2392
|
+
message: 'message',
|
|
2393
|
+
model: 'model',
|
|
2394
|
+
resolvedInputs: 'resolvedInputs'
|
|
2395
|
+
} as const
|
|
2396
|
+
|
|
2397
|
+
export type InstanceStateScalarFieldEnum = (typeof InstanceStateScalarFieldEnum)[keyof typeof InstanceStateScalarFieldEnum]
|
|
2398
|
+
|
|
2399
|
+
|
|
2400
|
+
export const UserProjectViewportScalarFieldEnum = {
|
|
2401
|
+
userId: 'userId',
|
|
2402
|
+
viewport: 'viewport'
|
|
2403
|
+
} as const
|
|
2404
|
+
|
|
2405
|
+
export type UserProjectViewportScalarFieldEnum = (typeof UserProjectViewportScalarFieldEnum)[keyof typeof UserProjectViewportScalarFieldEnum]
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
export const UserCompositeViewportScalarFieldEnum = {
|
|
2409
|
+
userId: 'userId',
|
|
2410
|
+
stateId: 'stateId',
|
|
2411
|
+
viewport: 'viewport'
|
|
2412
|
+
} as const
|
|
2413
|
+
|
|
2414
|
+
export type UserCompositeViewportScalarFieldEnum = (typeof UserCompositeViewportScalarFieldEnum)[keyof typeof UserCompositeViewportScalarFieldEnum]
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
export const InstanceLockScalarFieldEnum = {
|
|
2418
|
+
stateId: 'stateId',
|
|
2419
|
+
meta: 'meta',
|
|
2420
|
+
token: 'token',
|
|
2421
|
+
acquiredAt: 'acquiredAt'
|
|
2422
|
+
} as const
|
|
2423
|
+
|
|
2424
|
+
export type InstanceLockScalarFieldEnum = (typeof InstanceLockScalarFieldEnum)[keyof typeof InstanceLockScalarFieldEnum]
|
|
2425
|
+
|
|
2426
|
+
|
|
2427
|
+
export const InstanceModelScalarFieldEnum = {
|
|
2428
|
+
id: 'id',
|
|
2429
|
+
model: 'model',
|
|
2430
|
+
createdAt: 'createdAt',
|
|
2431
|
+
updatedAt: 'updatedAt'
|
|
2432
|
+
} as const
|
|
2433
|
+
|
|
2434
|
+
export type InstanceModelScalarFieldEnum = (typeof InstanceModelScalarFieldEnum)[keyof typeof InstanceModelScalarFieldEnum]
|
|
2435
|
+
|
|
2436
|
+
|
|
2437
|
+
export const HubModelScalarFieldEnum = {
|
|
2438
|
+
id: 'id',
|
|
2439
|
+
model: 'model',
|
|
2440
|
+
createdAt: 'createdAt',
|
|
2441
|
+
updatedAt: 'updatedAt'
|
|
2442
|
+
} as const
|
|
2443
|
+
|
|
2444
|
+
export type HubModelScalarFieldEnum = (typeof HubModelScalarFieldEnum)[keyof typeof HubModelScalarFieldEnum]
|
|
2445
|
+
|
|
2446
|
+
|
|
2447
|
+
export const OperationScalarFieldEnum = {
|
|
2448
|
+
id: 'id',
|
|
2449
|
+
meta: 'meta',
|
|
2450
|
+
type: 'type',
|
|
2451
|
+
status: 'status',
|
|
2452
|
+
options: 'options',
|
|
2453
|
+
requestedInstanceIds: 'requestedInstanceIds',
|
|
2454
|
+
phases: 'phases',
|
|
2455
|
+
startedAt: 'startedAt',
|
|
2456
|
+
updatedAt: 'updatedAt',
|
|
2457
|
+
finishedAt: 'finishedAt'
|
|
2458
|
+
} as const
|
|
2459
|
+
|
|
2460
|
+
export type OperationScalarFieldEnum = (typeof OperationScalarFieldEnum)[keyof typeof OperationScalarFieldEnum]
|
|
2461
|
+
|
|
2462
|
+
|
|
2463
|
+
export const InstanceOperationStateScalarFieldEnum = {
|
|
2464
|
+
operationId: 'operationId',
|
|
2465
|
+
stateId: 'stateId',
|
|
2466
|
+
status: 'status',
|
|
2467
|
+
currentResourceCount: 'currentResourceCount',
|
|
2468
|
+
totalResourceCount: 'totalResourceCount',
|
|
2469
|
+
model: 'model',
|
|
2470
|
+
resolvedInputs: 'resolvedInputs',
|
|
2471
|
+
startedAt: 'startedAt',
|
|
2472
|
+
finishedAt: 'finishedAt'
|
|
2473
|
+
} as const
|
|
2474
|
+
|
|
2475
|
+
export type InstanceOperationStateScalarFieldEnum = (typeof InstanceOperationStateScalarFieldEnum)[keyof typeof InstanceOperationStateScalarFieldEnum]
|
|
2476
|
+
|
|
2477
|
+
|
|
2478
|
+
export const OperationLogScalarFieldEnum = {
|
|
2479
|
+
id: 'id',
|
|
2480
|
+
operationId: 'operationId',
|
|
2481
|
+
stateId: 'stateId',
|
|
2482
|
+
content: 'content'
|
|
2483
|
+
} as const
|
|
2484
|
+
|
|
2485
|
+
export type OperationLogScalarFieldEnum = (typeof OperationLogScalarFieldEnum)[keyof typeof OperationLogScalarFieldEnum]
|
|
2486
|
+
|
|
2487
|
+
|
|
2488
|
+
export const PageScalarFieldEnum = {
|
|
2489
|
+
id: 'id',
|
|
2490
|
+
meta: 'meta',
|
|
2491
|
+
stateId: 'stateId',
|
|
2492
|
+
name: 'name',
|
|
2493
|
+
serviceAccountId: 'serviceAccountId',
|
|
2494
|
+
content: 'content',
|
|
2495
|
+
createdAt: 'createdAt',
|
|
2496
|
+
updatedAt: 'updatedAt'
|
|
2497
|
+
} as const
|
|
2498
|
+
|
|
2499
|
+
export type PageScalarFieldEnum = (typeof PageScalarFieldEnum)[keyof typeof PageScalarFieldEnum]
|
|
2500
|
+
|
|
2501
|
+
|
|
2502
|
+
export const SecretScalarFieldEnum = {
|
|
2503
|
+
id: 'id',
|
|
2504
|
+
meta: 'meta',
|
|
2505
|
+
stateId: 'stateId',
|
|
2506
|
+
name: 'name',
|
|
2507
|
+
systemName: 'systemName',
|
|
2508
|
+
serviceAccountId: 'serviceAccountId',
|
|
2509
|
+
content: 'content',
|
|
2510
|
+
createdAt: 'createdAt',
|
|
2511
|
+
updatedAt: 'updatedAt'
|
|
2512
|
+
} as const
|
|
2513
|
+
|
|
2514
|
+
export type SecretScalarFieldEnum = (typeof SecretScalarFieldEnum)[keyof typeof SecretScalarFieldEnum]
|
|
2515
|
+
|
|
2516
|
+
|
|
2517
|
+
export const ServiceAccountScalarFieldEnum = {
|
|
2518
|
+
id: 'id',
|
|
2519
|
+
meta: 'meta',
|
|
2520
|
+
createdAt: 'createdAt',
|
|
2521
|
+
updatedAt: 'updatedAt'
|
|
2522
|
+
} as const
|
|
2523
|
+
|
|
2524
|
+
export type ServiceAccountScalarFieldEnum = (typeof ServiceAccountScalarFieldEnum)[keyof typeof ServiceAccountScalarFieldEnum]
|
|
2525
|
+
|
|
2526
|
+
|
|
2527
|
+
export const TerminalScalarFieldEnum = {
|
|
2528
|
+
id: 'id',
|
|
2529
|
+
meta: 'meta',
|
|
2530
|
+
status: 'status',
|
|
2531
|
+
spec: 'spec',
|
|
2532
|
+
stateId: 'stateId',
|
|
2533
|
+
name: 'name',
|
|
2534
|
+
serviceAccountId: 'serviceAccountId',
|
|
2535
|
+
createdAt: 'createdAt',
|
|
2536
|
+
updatedAt: 'updatedAt'
|
|
2537
|
+
} as const
|
|
2538
|
+
|
|
2539
|
+
export type TerminalScalarFieldEnum = (typeof TerminalScalarFieldEnum)[keyof typeof TerminalScalarFieldEnum]
|
|
2540
|
+
|
|
2541
|
+
|
|
2542
|
+
export const TerminalSessionScalarFieldEnum = {
|
|
2543
|
+
id: 'id',
|
|
2544
|
+
terminalId: 'terminalId',
|
|
2545
|
+
startedAt: 'startedAt',
|
|
2546
|
+
finishedAt: 'finishedAt'
|
|
2547
|
+
} as const
|
|
2548
|
+
|
|
2549
|
+
export type TerminalSessionScalarFieldEnum = (typeof TerminalSessionScalarFieldEnum)[keyof typeof TerminalSessionScalarFieldEnum]
|
|
2550
|
+
|
|
2551
|
+
|
|
2552
|
+
export const TerminalSessionLogScalarFieldEnum = {
|
|
2553
|
+
id: 'id',
|
|
2554
|
+
sessionId: 'sessionId',
|
|
2555
|
+
content: 'content'
|
|
2556
|
+
} as const
|
|
2557
|
+
|
|
2558
|
+
export type TerminalSessionLogScalarFieldEnum = (typeof TerminalSessionLogScalarFieldEnum)[keyof typeof TerminalSessionLogScalarFieldEnum]
|
|
2559
|
+
|
|
2560
|
+
|
|
2561
|
+
export const TriggerScalarFieldEnum = {
|
|
2562
|
+
id: 'id',
|
|
2563
|
+
meta: 'meta',
|
|
2564
|
+
stateId: 'stateId',
|
|
2565
|
+
name: 'name',
|
|
2566
|
+
spec: 'spec',
|
|
2567
|
+
createdAt: 'createdAt',
|
|
2568
|
+
updatedAt: 'updatedAt'
|
|
2569
|
+
} as const
|
|
2570
|
+
|
|
2571
|
+
export type TriggerScalarFieldEnum = (typeof TriggerScalarFieldEnum)[keyof typeof TriggerScalarFieldEnum]
|
|
2572
|
+
|
|
2573
|
+
|
|
2574
|
+
export const UnlockMethodScalarFieldEnum = {
|
|
2575
|
+
id: 'id',
|
|
2576
|
+
meta: 'meta',
|
|
2577
|
+
type: 'type',
|
|
2578
|
+
encryptedIdentity: 'encryptedIdentity',
|
|
2579
|
+
recipient: 'recipient',
|
|
2580
|
+
createdAt: 'createdAt',
|
|
2581
|
+
updatedAt: 'updatedAt'
|
|
2582
|
+
} as const
|
|
2583
|
+
|
|
2584
|
+
export type UnlockMethodScalarFieldEnum = (typeof UnlockMethodScalarFieldEnum)[keyof typeof UnlockMethodScalarFieldEnum]
|
|
2585
|
+
|
|
2586
|
+
|
|
2587
|
+
export const WorkerScalarFieldEnum = {
|
|
2588
|
+
id: 'id',
|
|
2589
|
+
identity: 'identity',
|
|
2590
|
+
serviceAccountId: 'serviceAccountId',
|
|
2591
|
+
createdAt: 'createdAt'
|
|
2592
|
+
} as const
|
|
2593
|
+
|
|
2594
|
+
export type WorkerScalarFieldEnum = (typeof WorkerScalarFieldEnum)[keyof typeof WorkerScalarFieldEnum]
|
|
2595
|
+
|
|
2596
|
+
|
|
2597
|
+
export const WorkerVersionScalarFieldEnum = {
|
|
2598
|
+
id: 'id',
|
|
2599
|
+
meta: 'meta',
|
|
2600
|
+
status: 'status',
|
|
2601
|
+
enabled: 'enabled',
|
|
2602
|
+
runtimeId: 'runtimeId',
|
|
2603
|
+
workerId: 'workerId',
|
|
2604
|
+
digest: 'digest',
|
|
2605
|
+
apiKeyId: 'apiKeyId',
|
|
2606
|
+
createdAt: 'createdAt',
|
|
2607
|
+
updatedAt: 'updatedAt'
|
|
2608
|
+
} as const
|
|
2609
|
+
|
|
2610
|
+
export type WorkerVersionScalarFieldEnum = (typeof WorkerVersionScalarFieldEnum)[keyof typeof WorkerVersionScalarFieldEnum]
|
|
2611
|
+
|
|
2612
|
+
|
|
2613
|
+
export const WorkerUnitRegistrationScalarFieldEnum = {
|
|
2614
|
+
stateId: 'stateId',
|
|
2615
|
+
name: 'name',
|
|
2616
|
+
params: 'params',
|
|
2617
|
+
workerVersionId: 'workerVersionId',
|
|
2618
|
+
createdAt: 'createdAt',
|
|
2619
|
+
updatedAt: 'updatedAt'
|
|
2620
|
+
} as const
|
|
2621
|
+
|
|
2622
|
+
export type WorkerUnitRegistrationScalarFieldEnum = (typeof WorkerUnitRegistrationScalarFieldEnum)[keyof typeof WorkerUnitRegistrationScalarFieldEnum]
|
|
2623
|
+
|
|
2624
|
+
|
|
2625
|
+
export const WorkerVersionLogScalarFieldEnum = {
|
|
2626
|
+
id: 'id',
|
|
2627
|
+
workerVersionId: 'workerVersionId',
|
|
2628
|
+
content: 'content',
|
|
2629
|
+
isSystem: 'isSystem'
|
|
2630
|
+
} as const
|
|
2631
|
+
|
|
2632
|
+
export type WorkerVersionLogScalarFieldEnum = (typeof WorkerVersionLogScalarFieldEnum)[keyof typeof WorkerVersionLogScalarFieldEnum]
|
|
2633
|
+
|
|
2634
|
+
|
|
2635
|
+
export const SortOrder = {
|
|
2636
|
+
asc: 'asc',
|
|
2637
|
+
desc: 'desc'
|
|
2638
|
+
} as const
|
|
2639
|
+
|
|
2640
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
export const JsonNullValueInput = {
|
|
2644
|
+
JsonNull: JsonNull
|
|
2645
|
+
} as const
|
|
2646
|
+
|
|
2647
|
+
export type JsonNullValueInput = (typeof JsonNullValueInput)[keyof typeof JsonNullValueInput]
|
|
2648
|
+
|
|
2649
|
+
|
|
2650
|
+
export const NullableJsonNullValueInput = {
|
|
2651
|
+
DbNull: DbNull,
|
|
2652
|
+
JsonNull: JsonNull
|
|
2653
|
+
} as const
|
|
2654
|
+
|
|
2655
|
+
export type NullableJsonNullValueInput = (typeof NullableJsonNullValueInput)[keyof typeof NullableJsonNullValueInput]
|
|
2656
|
+
|
|
2657
|
+
|
|
2658
|
+
export const JsonNullValueFilter = {
|
|
2659
|
+
DbNull: DbNull,
|
|
2660
|
+
JsonNull: JsonNull,
|
|
2661
|
+
AnyNull: AnyNull
|
|
2662
|
+
} as const
|
|
2663
|
+
|
|
2664
|
+
export type JsonNullValueFilter = (typeof JsonNullValueFilter)[keyof typeof JsonNullValueFilter]
|
|
2665
|
+
|
|
2666
|
+
|
|
2667
|
+
export const QueryMode = {
|
|
2668
|
+
default: 'default',
|
|
2669
|
+
insensitive: 'insensitive'
|
|
2670
|
+
} as const
|
|
2671
|
+
|
|
2672
|
+
export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode]
|
|
2673
|
+
|
|
2674
|
+
|
|
2675
|
+
export const NullsOrder = {
|
|
2676
|
+
first: 'first',
|
|
2677
|
+
last: 'last'
|
|
2678
|
+
} as const
|
|
2679
|
+
|
|
2680
|
+
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder]
|
|
2681
|
+
|
|
2682
|
+
|
|
2683
|
+
|
|
2684
|
+
/**
|
|
2685
|
+
* Field references
|
|
2686
|
+
*/
|
|
2687
|
+
|
|
2688
|
+
|
|
2689
|
+
/**
|
|
2690
|
+
* Reference to a field of type 'String'
|
|
2691
|
+
*/
|
|
2692
|
+
export type StringFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'String'>
|
|
2693
|
+
|
|
2694
|
+
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* Reference to a field of type 'Json'
|
|
2698
|
+
*/
|
|
2699
|
+
export type JsonFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Json'>
|
|
2700
|
+
|
|
2701
|
+
|
|
2702
|
+
|
|
2703
|
+
/**
|
|
2704
|
+
* Reference to a field of type 'QueryMode'
|
|
2705
|
+
*/
|
|
2706
|
+
export type EnumQueryModeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QueryMode'>
|
|
2707
|
+
|
|
2708
|
+
|
|
2709
|
+
|
|
2710
|
+
/**
|
|
2711
|
+
* Reference to a field of type 'DateTime'
|
|
2712
|
+
*/
|
|
2713
|
+
export type DateTimeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DateTime'>
|
|
2714
|
+
|
|
2715
|
+
|
|
2716
|
+
|
|
2717
|
+
/**
|
|
2718
|
+
* Reference to a field of type 'Int'
|
|
2719
|
+
*/
|
|
2720
|
+
export type IntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Int'>
|
|
2721
|
+
|
|
2722
|
+
|
|
2723
|
+
|
|
2724
|
+
/**
|
|
2725
|
+
* Reference to a field of type 'InstanceEvaluationStatus'
|
|
2726
|
+
*/
|
|
2727
|
+
export type EnumInstanceEvaluationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InstanceEvaluationStatus'>
|
|
2728
|
+
|
|
2729
|
+
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
* Reference to a field of type 'InstanceStatus'
|
|
2733
|
+
*/
|
|
2734
|
+
export type EnumInstanceStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InstanceStatus'>
|
|
2735
|
+
|
|
2736
|
+
|
|
2737
|
+
|
|
2738
|
+
/**
|
|
2739
|
+
* Reference to a field of type 'InstanceSource'
|
|
2740
|
+
*/
|
|
2741
|
+
export type EnumInstanceSourceFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InstanceSource'>
|
|
2742
|
+
|
|
2743
|
+
|
|
2744
|
+
|
|
2745
|
+
/**
|
|
2746
|
+
* Reference to a field of type 'OperationType'
|
|
2747
|
+
*/
|
|
2748
|
+
export type EnumOperationTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OperationType'>
|
|
2749
|
+
|
|
2750
|
+
|
|
2751
|
+
|
|
2752
|
+
/**
|
|
2753
|
+
* Reference to a field of type 'OperationStatus'
|
|
2754
|
+
*/
|
|
2755
|
+
export type EnumOperationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'OperationStatus'>
|
|
2756
|
+
|
|
2757
|
+
|
|
2758
|
+
|
|
2759
|
+
/**
|
|
2760
|
+
* Reference to a field of type 'InstanceOperationStatus'
|
|
2761
|
+
*/
|
|
2762
|
+
export type EnumInstanceOperationStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'InstanceOperationStatus'>
|
|
2763
|
+
|
|
2764
|
+
|
|
2765
|
+
|
|
2766
|
+
/**
|
|
2767
|
+
* Reference to a field of type 'TerminalStatus'
|
|
2768
|
+
*/
|
|
2769
|
+
export type EnumTerminalStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TerminalStatus'>
|
|
2770
|
+
|
|
2771
|
+
|
|
2772
|
+
|
|
2773
|
+
/**
|
|
2774
|
+
* Reference to a field of type 'UnlockMethodType'
|
|
2775
|
+
*/
|
|
2776
|
+
export type EnumUnlockMethodTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'UnlockMethodType'>
|
|
2777
|
+
|
|
2778
|
+
|
|
2779
|
+
|
|
2780
|
+
/**
|
|
2781
|
+
* Reference to a field of type 'WorkerVersionStatus'
|
|
2782
|
+
*/
|
|
2783
|
+
export type EnumWorkerVersionStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'WorkerVersionStatus'>
|
|
2784
|
+
|
|
2785
|
+
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* Reference to a field of type 'Boolean'
|
|
2789
|
+
*/
|
|
2790
|
+
export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
|
|
2791
|
+
|
|
2792
|
+
|
|
2793
|
+
|
|
2794
|
+
/**
|
|
2795
|
+
* Reference to a field of type 'Float'
|
|
2796
|
+
*/
|
|
2797
|
+
export type FloatFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Float'>
|
|
2798
|
+
|
|
2799
|
+
|
|
2800
|
+
/**
|
|
2801
|
+
* Batch Payload for updateMany & deleteMany & createMany
|
|
2802
|
+
*/
|
|
2803
|
+
export type BatchPayload = {
|
|
2804
|
+
count: number
|
|
2805
|
+
}
|
|
2806
|
+
|
|
2807
|
+
|
|
2808
|
+
export type Datasource = {
|
|
2809
|
+
url?: string
|
|
2810
|
+
}
|
|
2811
|
+
export type Datasources = {
|
|
2812
|
+
db?: Datasource
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2815
|
+
export const defineExtension = runtime.Extensions.defineExtension as unknown as runtime.Types.Extensions.ExtendsHook<"define", TypeMapCb, runtime.Types.Extensions.DefaultArgs>
|
|
2816
|
+
export type DefaultPrismaClient = PrismaClient
|
|
2817
|
+
export type ErrorFormat = 'pretty' | 'colorless' | 'minimal'
|
|
2818
|
+
export interface PrismaClientOptions {
|
|
2819
|
+
/**
|
|
2820
|
+
* Overwrites the datasource url from your schema.prisma file
|
|
2821
|
+
*/
|
|
2822
|
+
datasources?: Datasources
|
|
2823
|
+
/**
|
|
2824
|
+
* Overwrites the datasource url from your schema.prisma file
|
|
2825
|
+
*/
|
|
2826
|
+
datasourceUrl?: string
|
|
2827
|
+
/**
|
|
2828
|
+
* @default "colorless"
|
|
2829
|
+
*/
|
|
2830
|
+
errorFormat?: ErrorFormat
|
|
2831
|
+
/**
|
|
2832
|
+
* @example
|
|
2833
|
+
* ```
|
|
2834
|
+
* // Shorthand for `emit: 'stdout'`
|
|
2835
|
+
* log: ['query', 'info', 'warn', 'error']
|
|
2836
|
+
*
|
|
2837
|
+
* // Emit as events only
|
|
2838
|
+
* log: [
|
|
2839
|
+
* { emit: 'event', level: 'query' },
|
|
2840
|
+
* { emit: 'event', level: 'info' },
|
|
2841
|
+
* { emit: 'event', level: 'warn' }
|
|
2842
|
+
* { emit: 'event', level: 'error' }
|
|
2843
|
+
* ]
|
|
2844
|
+
*
|
|
2845
|
+
* / Emit as events and log to stdout
|
|
2846
|
+
* og: [
|
|
2847
|
+
* { emit: 'stdout', level: 'query' },
|
|
2848
|
+
* { emit: 'stdout', level: 'info' },
|
|
2849
|
+
* { emit: 'stdout', level: 'warn' }
|
|
2850
|
+
* { emit: 'stdout', level: 'error' }
|
|
2851
|
+
*
|
|
2852
|
+
* ```
|
|
2853
|
+
* Read more in our [docs](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/logging#the-log-option).
|
|
2854
|
+
*/
|
|
2855
|
+
log?: (LogLevel | LogDefinition)[]
|
|
2856
|
+
/**
|
|
2857
|
+
* The default values for transactionOptions
|
|
2858
|
+
* maxWait ?= 2000
|
|
2859
|
+
* timeout ?= 5000
|
|
2860
|
+
*/
|
|
2861
|
+
transactionOptions?: {
|
|
2862
|
+
maxWait?: number
|
|
2863
|
+
timeout?: number
|
|
2864
|
+
isolationLevel?: TransactionIsolationLevel
|
|
2865
|
+
}
|
|
2866
|
+
/**
|
|
2867
|
+
* Instance of a Driver Adapter, e.g., like one provided by `@prisma/adapter-planetscale`
|
|
2868
|
+
*/
|
|
2869
|
+
adapter?: runtime.SqlDriverAdapterFactory | null
|
|
2870
|
+
/**
|
|
2871
|
+
* Global configuration for omitting model fields by default.
|
|
2872
|
+
*
|
|
2873
|
+
* @example
|
|
2874
|
+
* ```
|
|
2875
|
+
* const prisma = new PrismaClient({
|
|
2876
|
+
* omit: {
|
|
2877
|
+
* user: {
|
|
2878
|
+
* password: true
|
|
2879
|
+
* }
|
|
2880
|
+
* }
|
|
2881
|
+
* })
|
|
2882
|
+
* ```
|
|
2883
|
+
*/
|
|
2884
|
+
omit?: GlobalOmitConfig
|
|
2885
|
+
}
|
|
2886
|
+
export type GlobalOmitConfig = {
|
|
2887
|
+
apiKey?: Prisma.ApiKeyOmit
|
|
2888
|
+
artifact?: Prisma.ArtifactOmit
|
|
2889
|
+
instanceCustomStatus?: Prisma.InstanceCustomStatusOmit
|
|
2890
|
+
instanceEvaluationState?: Prisma.InstanceEvaluationStateOmit
|
|
2891
|
+
instanceState?: Prisma.InstanceStateOmit
|
|
2892
|
+
userProjectViewport?: Prisma.UserProjectViewportOmit
|
|
2893
|
+
userCompositeViewport?: Prisma.UserCompositeViewportOmit
|
|
2894
|
+
instanceLock?: Prisma.InstanceLockOmit
|
|
2895
|
+
instanceModel?: Prisma.InstanceModelOmit
|
|
2896
|
+
hubModel?: Prisma.HubModelOmit
|
|
2897
|
+
operation?: Prisma.OperationOmit
|
|
2898
|
+
instanceOperationState?: Prisma.InstanceOperationStateOmit
|
|
2899
|
+
operationLog?: Prisma.OperationLogOmit
|
|
2900
|
+
page?: Prisma.PageOmit
|
|
2901
|
+
secret?: Prisma.SecretOmit
|
|
2902
|
+
serviceAccount?: Prisma.ServiceAccountOmit
|
|
2903
|
+
terminal?: Prisma.TerminalOmit
|
|
2904
|
+
terminalSession?: Prisma.TerminalSessionOmit
|
|
2905
|
+
terminalSessionLog?: Prisma.TerminalSessionLogOmit
|
|
2906
|
+
trigger?: Prisma.TriggerOmit
|
|
2907
|
+
unlockMethod?: Prisma.UnlockMethodOmit
|
|
2908
|
+
worker?: Prisma.WorkerOmit
|
|
2909
|
+
workerVersion?: Prisma.WorkerVersionOmit
|
|
2910
|
+
workerUnitRegistration?: Prisma.WorkerUnitRegistrationOmit
|
|
2911
|
+
workerVersionLog?: Prisma.WorkerVersionLogOmit
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2914
|
+
/* Types for Logging */
|
|
2915
|
+
export type LogLevel = 'info' | 'query' | 'warn' | 'error'
|
|
2916
|
+
export type LogDefinition = {
|
|
2917
|
+
level: LogLevel
|
|
2918
|
+
emit: 'stdout' | 'event'
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
export type CheckIsLogLevel<T> = T extends LogLevel ? T : never;
|
|
2922
|
+
|
|
2923
|
+
export type GetLogType<T> = CheckIsLogLevel<
|
|
2924
|
+
T extends LogDefinition ? T['level'] : T
|
|
2925
|
+
>;
|
|
2926
|
+
|
|
2927
|
+
export type GetEvents<T extends any[]> = T extends Array<LogLevel | LogDefinition>
|
|
2928
|
+
? GetLogType<T[number]>
|
|
2929
|
+
: never;
|
|
2930
|
+
|
|
2931
|
+
export type QueryEvent = {
|
|
2932
|
+
timestamp: Date
|
|
2933
|
+
query: string
|
|
2934
|
+
params: string
|
|
2935
|
+
duration: number
|
|
2936
|
+
target: string
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
export type LogEvent = {
|
|
2940
|
+
timestamp: Date
|
|
2941
|
+
message: string
|
|
2942
|
+
target: string
|
|
2943
|
+
}
|
|
2944
|
+
/* End Types for Logging */
|
|
2945
|
+
|
|
2946
|
+
|
|
2947
|
+
export type PrismaAction =
|
|
2948
|
+
| 'findUnique'
|
|
2949
|
+
| 'findUniqueOrThrow'
|
|
2950
|
+
| 'findMany'
|
|
2951
|
+
| 'findFirst'
|
|
2952
|
+
| 'findFirstOrThrow'
|
|
2953
|
+
| 'create'
|
|
2954
|
+
| 'createMany'
|
|
2955
|
+
| 'createManyAndReturn'
|
|
2956
|
+
| 'update'
|
|
2957
|
+
| 'updateMany'
|
|
2958
|
+
| 'updateManyAndReturn'
|
|
2959
|
+
| 'upsert'
|
|
2960
|
+
| 'delete'
|
|
2961
|
+
| 'deleteMany'
|
|
2962
|
+
| 'executeRaw'
|
|
2963
|
+
| 'queryRaw'
|
|
2964
|
+
| 'aggregate'
|
|
2965
|
+
| 'count'
|
|
2966
|
+
| 'runCommandRaw'
|
|
2967
|
+
| 'findRaw'
|
|
2968
|
+
| 'groupBy'
|
|
2969
|
+
|
|
2970
|
+
/**
|
|
2971
|
+
* `PrismaClient` proxy available in interactive transactions.
|
|
2972
|
+
*/
|
|
2973
|
+
export type TransactionClient = Omit<DefaultPrismaClient, runtime.ITXClientDenyList>
|
|
2974
|
+
|