@highstate/backend 0.16.0 → 0.18.0
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-4JUMOKLV.js → chunk-JT4KWE3B.js} +10 -8
- package/dist/chunk-JT4KWE3B.js.map +1 -0
- package/dist/{chunk-VB4YL327.js → chunk-X2WG3WGL.js} +9 -2
- package/dist/chunk-X2WG3WGL.js.map +1 -0
- package/dist/highstate.manifest.json +4 -5
- package/dist/index.js +256 -287
- package/dist/index.js.map +1 -1
- package/dist/library/worker/main.js +1 -1
- package/dist/shared/index.js +1 -1
- package/package.json +9 -10
- package/prisma/backend/postgresql/main.prisma +0 -2
- package/prisma/backend/sqlite/main.prisma +0 -2
- package/prisma/project/instance.prisma +12 -0
- package/prisma/project/main.prisma +0 -1
- package/prisma/project/migrations/20260123000000_add_instance_state_self_hash/migration.sql +2 -0
- package/src/business/instance-state.test.ts +1 -0
- package/src/business/instance-state.ts +3 -0
- package/src/business/project.ts +1 -2
- package/src/common/utils.ts +9 -0
- package/src/database/_generated/backend/postgresql/browser.ts +54 -0
- package/src/database/_generated/backend/postgresql/client.ts +7 -8
- package/src/database/_generated/backend/postgresql/commonInputTypes.ts +3 -2
- package/src/database/_generated/backend/postgresql/enums.ts +3 -1
- package/src/database/_generated/backend/postgresql/internal/class.ts +24 -71
- package/src/database/_generated/backend/postgresql/internal/prismaNamespace.ts +41 -43
- package/src/database/_generated/backend/postgresql/internal/prismaNamespaceBrowser.ts +191 -0
- package/src/database/_generated/backend/postgresql/models/BackendUnlockMethod.ts +12 -11
- package/src/database/_generated/backend/postgresql/models/Library.ts +29 -28
- package/src/database/_generated/backend/postgresql/models/Project.ts +69 -68
- package/src/database/_generated/backend/postgresql/models/ProjectModelStorage.ts +29 -28
- package/src/database/_generated/backend/postgresql/models/ProjectSpace.ts +26 -25
- package/src/database/_generated/backend/postgresql/models/PulumiBackend.ts +29 -28
- package/src/database/_generated/backend/postgresql/models/UserWorkspaceLayout.ts +12 -11
- package/src/database/_generated/backend/postgresql/models.ts +2 -1
- package/src/database/_generated/backend/postgresql/pjtg.ts +1 -0
- package/src/database/_generated/backend/sqlite/browser.ts +54 -0
- package/src/database/_generated/backend/sqlite/client.ts +7 -8
- package/src/database/_generated/backend/sqlite/commonInputTypes.ts +3 -2
- package/src/database/_generated/backend/sqlite/enums.ts +3 -1
- package/src/database/_generated/backend/sqlite/internal/class.ts +24 -71
- package/src/database/_generated/backend/sqlite/internal/prismaNamespace.ts +41 -43
- package/src/database/_generated/backend/sqlite/internal/prismaNamespaceBrowser.ts +188 -0
- package/src/database/_generated/backend/sqlite/models/BackendUnlockMethod.ts +12 -11
- package/src/database/_generated/backend/sqlite/models/Library.ts +29 -28
- package/src/database/_generated/backend/sqlite/models/Project.ts +69 -68
- package/src/database/_generated/backend/sqlite/models/ProjectModelStorage.ts +29 -28
- package/src/database/_generated/backend/sqlite/models/ProjectSpace.ts +26 -25
- package/src/database/_generated/backend/sqlite/models/PulumiBackend.ts +29 -28
- package/src/database/_generated/backend/sqlite/models/UserWorkspaceLayout.ts +12 -11
- package/src/database/_generated/backend/sqlite/models.ts +2 -1
- package/src/database/_generated/backend/sqlite/pjtg.ts +1 -0
- package/src/database/_generated/project/browser.ts +1 -0
- package/src/database/_generated/project/client.ts +4 -5
- package/src/database/_generated/project/commonInputTypes.ts +1 -0
- package/src/database/_generated/project/enums.ts +1 -0
- package/src/database/_generated/project/internal/class.ts +21 -63
- package/src/database/_generated/project/internal/prismaNamespace.ts +41 -36
- package/src/database/_generated/project/internal/prismaNamespaceBrowser.ts +10 -6
- package/src/database/_generated/project/models/ApiKey.ts +1 -0
- package/src/database/_generated/project/models/Artifact.ts +1 -0
- package/src/database/_generated/project/models/HubModel.ts +1 -0
- package/src/database/_generated/project/models/InstanceCustomStatus.ts +1 -0
- package/src/database/_generated/project/models/InstanceEvaluationState.ts +1 -0
- package/src/database/_generated/project/models/InstanceLock.ts +1 -0
- package/src/database/_generated/project/models/InstanceModel.ts +1 -0
- package/src/database/_generated/project/models/InstanceOperationState.ts +1 -0
- package/src/database/_generated/project/models/InstanceState.ts +108 -1
- package/src/database/_generated/project/models/Operation.ts +1 -0
- package/src/database/_generated/project/models/OperationLog.ts +1 -0
- package/src/database/_generated/project/models/Page.ts +1 -0
- package/src/database/_generated/project/models/Secret.ts +1 -0
- package/src/database/_generated/project/models/ServiceAccount.ts +1 -0
- package/src/database/_generated/project/models/Terminal.ts +1 -0
- package/src/database/_generated/project/models/TerminalSession.ts +1 -0
- package/src/database/_generated/project/models/TerminalSessionLog.ts +1 -0
- package/src/database/_generated/project/models/Trigger.ts +1 -0
- package/src/database/_generated/project/models/UnlockMethod.ts +1 -0
- package/src/database/_generated/project/models/UserCompositeViewport.ts +1 -0
- package/src/database/_generated/project/models/UserProjectViewport.ts +1 -0
- package/src/database/_generated/project/models/Worker.ts +1 -0
- package/src/database/_generated/project/models/WorkerUnitRegistration.ts +1 -0
- package/src/database/_generated/project/models/WorkerVersion.ts +1 -0
- package/src/database/_generated/project/models/WorkerVersionLog.ts +1 -0
- package/src/database/_generated/project/models.ts +1 -0
- package/src/database/abstractions.ts +1 -7
- package/src/database/index.ts +1 -0
- package/src/database/local/backend.ts +19 -30
- package/src/database/local/project.ts +4 -9
- package/src/database/manager.ts +28 -34
- package/src/database/migration.ts +126 -0
- package/src/orchestrator/operation.cancel.test.ts +112 -0
- package/src/orchestrator/operation.composite.test.ts +123 -0
- package/src/orchestrator/operation.destroy.test.ts +77 -0
- package/src/orchestrator/operation.preview.test.ts +95 -0
- package/src/orchestrator/operation.refresh.test.ts +77 -0
- package/src/orchestrator/operation.test-utils.ts +646 -0
- package/src/orchestrator/operation.ts +91 -3
- package/src/orchestrator/operation.update.failure.test.ts +88 -0
- package/src/orchestrator/operation.update.skip.test.ts +95 -0
- package/src/orchestrator/operation.update.test.ts +117 -0
- package/src/orchestrator/plan-test-builder.ts +1 -0
- package/src/runner/abstractions.ts +5 -0
- package/src/runner/local.ts +1 -0
- package/src/shared/resolvers/input-hash.ts +10 -6
- package/src/terminal/manager.ts +0 -3
- package/src/test-utils/database.ts +28 -14
- package/dist/chunk-4JUMOKLV.js.map +0 -1
- package/dist/chunk-VB4YL327.js.map +0 -1
- package/dist/database/local/prisma.config.js +0 -26
- package/dist/database/local/prisma.config.js.map +0 -1
- package/src/database/local/prisma.config.ts +0 -25
- package/src/database/migrate.ts +0 -35
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
4
5
|
// @ts-nocheck
|
|
5
|
-
|
|
6
|
+
/*
|
|
6
7
|
* This file exports the `Project` model and its related types.
|
|
7
8
|
*
|
|
8
9
|
* 🟢 You can import this file directly.
|
|
9
10
|
*/
|
|
10
11
|
|
|
11
12
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
13
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
14
|
import type * as $Enums from "../enums.ts"
|
|
14
15
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
16
|
|
|
@@ -216,14 +217,14 @@ export type ProjectGroupByArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
216
217
|
|
|
217
218
|
export type ProjectGroupByOutputType = {
|
|
218
219
|
id: string
|
|
219
|
-
meta:
|
|
220
|
+
meta:PrismaJson.CommonObjectMeta
|
|
220
221
|
name: string
|
|
221
222
|
spaceId: string
|
|
222
223
|
modelStorageId: string
|
|
223
224
|
libraryId: string
|
|
224
225
|
pulumiBackendId: string
|
|
225
226
|
encryptedMasterKey: string
|
|
226
|
-
unlockSuite:
|
|
227
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
227
228
|
databaseVersion: number
|
|
228
229
|
createdAt: Date
|
|
229
230
|
updatedAt: Date
|
|
@@ -353,10 +354,10 @@ export type ProjectScalarWhereWithAggregatesInput = {
|
|
|
353
354
|
|
|
354
355
|
export type ProjectCreateInput = {
|
|
355
356
|
id?: string
|
|
356
|
-
meta:
|
|
357
|
+
meta:PrismaJson.CommonObjectMeta
|
|
357
358
|
name: string
|
|
358
359
|
encryptedMasterKey: string
|
|
359
|
-
unlockSuite:
|
|
360
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
360
361
|
databaseVersion: number
|
|
361
362
|
createdAt?: Date | string
|
|
362
363
|
updatedAt?: Date | string
|
|
@@ -368,14 +369,14 @@ export type ProjectCreateInput = {
|
|
|
368
369
|
|
|
369
370
|
export type ProjectUncheckedCreateInput = {
|
|
370
371
|
id?: string
|
|
371
|
-
meta:
|
|
372
|
+
meta:PrismaJson.CommonObjectMeta
|
|
372
373
|
name: string
|
|
373
374
|
spaceId: string
|
|
374
375
|
modelStorageId: string
|
|
375
376
|
libraryId: string
|
|
376
377
|
pulumiBackendId: string
|
|
377
378
|
encryptedMasterKey: string
|
|
378
|
-
unlockSuite:
|
|
379
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
379
380
|
databaseVersion: number
|
|
380
381
|
createdAt?: Date | string
|
|
381
382
|
updatedAt?: Date | string
|
|
@@ -383,10 +384,10 @@ export type ProjectUncheckedCreateInput = {
|
|
|
383
384
|
|
|
384
385
|
export type ProjectUpdateInput = {
|
|
385
386
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
386
|
-
meta?:
|
|
387
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
387
388
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
388
389
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
389
|
-
unlockSuite?:
|
|
390
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
390
391
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
391
392
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
392
393
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -398,14 +399,14 @@ export type ProjectUpdateInput = {
|
|
|
398
399
|
|
|
399
400
|
export type ProjectUncheckedUpdateInput = {
|
|
400
401
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
401
|
-
meta?:
|
|
402
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
402
403
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
403
404
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
404
405
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
405
406
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
406
407
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
407
408
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
408
|
-
unlockSuite?:
|
|
409
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
409
410
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
410
411
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
411
412
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -413,14 +414,14 @@ export type ProjectUncheckedUpdateInput = {
|
|
|
413
414
|
|
|
414
415
|
export type ProjectCreateManyInput = {
|
|
415
416
|
id?: string
|
|
416
|
-
meta:
|
|
417
|
+
meta:PrismaJson.CommonObjectMeta
|
|
417
418
|
name: string
|
|
418
419
|
spaceId: string
|
|
419
420
|
modelStorageId: string
|
|
420
421
|
libraryId: string
|
|
421
422
|
pulumiBackendId: string
|
|
422
423
|
encryptedMasterKey: string
|
|
423
|
-
unlockSuite:
|
|
424
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
424
425
|
databaseVersion: number
|
|
425
426
|
createdAt?: Date | string
|
|
426
427
|
updatedAt?: Date | string
|
|
@@ -428,10 +429,10 @@ export type ProjectCreateManyInput = {
|
|
|
428
429
|
|
|
429
430
|
export type ProjectUpdateManyMutationInput = {
|
|
430
431
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
431
|
-
meta?:
|
|
432
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
432
433
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
433
434
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
434
|
-
unlockSuite?:
|
|
435
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
435
436
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
436
437
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
437
438
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -439,14 +440,14 @@ export type ProjectUpdateManyMutationInput = {
|
|
|
439
440
|
|
|
440
441
|
export type ProjectUncheckedUpdateManyInput = {
|
|
441
442
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
442
|
-
meta?:
|
|
443
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
443
444
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
444
445
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
445
446
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
446
447
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
447
448
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
448
449
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
449
|
-
unlockSuite?:
|
|
450
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
450
451
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
451
452
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
452
453
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -698,10 +699,10 @@ export type ProjectUncheckedUpdateManyWithoutPulumiBackendNestedInput = {
|
|
|
698
699
|
|
|
699
700
|
export type ProjectCreateWithoutLibraryInput = {
|
|
700
701
|
id?: string
|
|
701
|
-
meta:
|
|
702
|
+
meta:PrismaJson.CommonObjectMeta
|
|
702
703
|
name: string
|
|
703
704
|
encryptedMasterKey: string
|
|
704
|
-
unlockSuite:
|
|
705
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
705
706
|
databaseVersion: number
|
|
706
707
|
createdAt?: Date | string
|
|
707
708
|
updatedAt?: Date | string
|
|
@@ -712,13 +713,13 @@ export type ProjectCreateWithoutLibraryInput = {
|
|
|
712
713
|
|
|
713
714
|
export type ProjectUncheckedCreateWithoutLibraryInput = {
|
|
714
715
|
id?: string
|
|
715
|
-
meta:
|
|
716
|
+
meta:PrismaJson.CommonObjectMeta
|
|
716
717
|
name: string
|
|
717
718
|
spaceId: string
|
|
718
719
|
modelStorageId: string
|
|
719
720
|
pulumiBackendId: string
|
|
720
721
|
encryptedMasterKey: string
|
|
721
|
-
unlockSuite:
|
|
722
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
722
723
|
databaseVersion: number
|
|
723
724
|
createdAt?: Date | string
|
|
724
725
|
updatedAt?: Date | string
|
|
@@ -769,10 +770,10 @@ export type ProjectScalarWhereInput = {
|
|
|
769
770
|
|
|
770
771
|
export type ProjectCreateWithoutSpaceInput = {
|
|
771
772
|
id?: string
|
|
772
|
-
meta:
|
|
773
|
+
meta:PrismaJson.CommonObjectMeta
|
|
773
774
|
name: string
|
|
774
775
|
encryptedMasterKey: string
|
|
775
|
-
unlockSuite:
|
|
776
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
776
777
|
databaseVersion: number
|
|
777
778
|
createdAt?: Date | string
|
|
778
779
|
updatedAt?: Date | string
|
|
@@ -783,13 +784,13 @@ export type ProjectCreateWithoutSpaceInput = {
|
|
|
783
784
|
|
|
784
785
|
export type ProjectUncheckedCreateWithoutSpaceInput = {
|
|
785
786
|
id?: string
|
|
786
|
-
meta:
|
|
787
|
+
meta:PrismaJson.CommonObjectMeta
|
|
787
788
|
name: string
|
|
788
789
|
modelStorageId: string
|
|
789
790
|
libraryId: string
|
|
790
791
|
pulumiBackendId: string
|
|
791
792
|
encryptedMasterKey: string
|
|
792
|
-
unlockSuite:
|
|
793
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
793
794
|
databaseVersion: number
|
|
794
795
|
createdAt?: Date | string
|
|
795
796
|
updatedAt?: Date | string
|
|
@@ -822,10 +823,10 @@ export type ProjectUpdateManyWithWhereWithoutSpaceInput = {
|
|
|
822
823
|
|
|
823
824
|
export type ProjectCreateWithoutModelStorageInput = {
|
|
824
825
|
id?: string
|
|
825
|
-
meta:
|
|
826
|
+
meta:PrismaJson.CommonObjectMeta
|
|
826
827
|
name: string
|
|
827
828
|
encryptedMasterKey: string
|
|
828
|
-
unlockSuite:
|
|
829
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
829
830
|
databaseVersion: number
|
|
830
831
|
createdAt?: Date | string
|
|
831
832
|
updatedAt?: Date | string
|
|
@@ -836,13 +837,13 @@ export type ProjectCreateWithoutModelStorageInput = {
|
|
|
836
837
|
|
|
837
838
|
export type ProjectUncheckedCreateWithoutModelStorageInput = {
|
|
838
839
|
id?: string
|
|
839
|
-
meta:
|
|
840
|
+
meta:PrismaJson.CommonObjectMeta
|
|
840
841
|
name: string
|
|
841
842
|
spaceId: string
|
|
842
843
|
libraryId: string
|
|
843
844
|
pulumiBackendId: string
|
|
844
845
|
encryptedMasterKey: string
|
|
845
|
-
unlockSuite:
|
|
846
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
846
847
|
databaseVersion: number
|
|
847
848
|
createdAt?: Date | string
|
|
848
849
|
updatedAt?: Date | string
|
|
@@ -875,10 +876,10 @@ export type ProjectUpdateManyWithWhereWithoutModelStorageInput = {
|
|
|
875
876
|
|
|
876
877
|
export type ProjectCreateWithoutPulumiBackendInput = {
|
|
877
878
|
id?: string
|
|
878
|
-
meta:
|
|
879
|
+
meta:PrismaJson.CommonObjectMeta
|
|
879
880
|
name: string
|
|
880
881
|
encryptedMasterKey: string
|
|
881
|
-
unlockSuite:
|
|
882
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
882
883
|
databaseVersion: number
|
|
883
884
|
createdAt?: Date | string
|
|
884
885
|
updatedAt?: Date | string
|
|
@@ -889,13 +890,13 @@ export type ProjectCreateWithoutPulumiBackendInput = {
|
|
|
889
890
|
|
|
890
891
|
export type ProjectUncheckedCreateWithoutPulumiBackendInput = {
|
|
891
892
|
id?: string
|
|
892
|
-
meta:
|
|
893
|
+
meta:PrismaJson.CommonObjectMeta
|
|
893
894
|
name: string
|
|
894
895
|
spaceId: string
|
|
895
896
|
modelStorageId: string
|
|
896
897
|
libraryId: string
|
|
897
898
|
encryptedMasterKey: string
|
|
898
|
-
unlockSuite:
|
|
899
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
899
900
|
databaseVersion: number
|
|
900
901
|
createdAt?: Date | string
|
|
901
902
|
updatedAt?: Date | string
|
|
@@ -928,13 +929,13 @@ export type ProjectUpdateManyWithWhereWithoutPulumiBackendInput = {
|
|
|
928
929
|
|
|
929
930
|
export type ProjectCreateManyLibraryInput = {
|
|
930
931
|
id?: string
|
|
931
|
-
meta:
|
|
932
|
+
meta:PrismaJson.CommonObjectMeta
|
|
932
933
|
name: string
|
|
933
934
|
spaceId: string
|
|
934
935
|
modelStorageId: string
|
|
935
936
|
pulumiBackendId: string
|
|
936
937
|
encryptedMasterKey: string
|
|
937
|
-
unlockSuite:
|
|
938
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
938
939
|
databaseVersion: number
|
|
939
940
|
createdAt?: Date | string
|
|
940
941
|
updatedAt?: Date | string
|
|
@@ -942,10 +943,10 @@ export type ProjectCreateManyLibraryInput = {
|
|
|
942
943
|
|
|
943
944
|
export type ProjectUpdateWithoutLibraryInput = {
|
|
944
945
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
945
|
-
meta?:
|
|
946
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
946
947
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
947
948
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
948
|
-
unlockSuite?:
|
|
949
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
949
950
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
950
951
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
951
952
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -956,13 +957,13 @@ export type ProjectUpdateWithoutLibraryInput = {
|
|
|
956
957
|
|
|
957
958
|
export type ProjectUncheckedUpdateWithoutLibraryInput = {
|
|
958
959
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
959
|
-
meta?:
|
|
960
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
960
961
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
961
962
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
962
963
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
963
964
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
964
965
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
965
|
-
unlockSuite?:
|
|
966
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
966
967
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
967
968
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
968
969
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -970,13 +971,13 @@ export type ProjectUncheckedUpdateWithoutLibraryInput = {
|
|
|
970
971
|
|
|
971
972
|
export type ProjectUncheckedUpdateManyWithoutLibraryInput = {
|
|
972
973
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
973
|
-
meta?:
|
|
974
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
974
975
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
975
976
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
976
977
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
977
978
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
978
979
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
979
|
-
unlockSuite?:
|
|
980
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
980
981
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
981
982
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
982
983
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -984,13 +985,13 @@ export type ProjectUncheckedUpdateManyWithoutLibraryInput = {
|
|
|
984
985
|
|
|
985
986
|
export type ProjectCreateManySpaceInput = {
|
|
986
987
|
id?: string
|
|
987
|
-
meta:
|
|
988
|
+
meta:PrismaJson.CommonObjectMeta
|
|
988
989
|
name: string
|
|
989
990
|
modelStorageId: string
|
|
990
991
|
libraryId: string
|
|
991
992
|
pulumiBackendId: string
|
|
992
993
|
encryptedMasterKey: string
|
|
993
|
-
unlockSuite:
|
|
994
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
994
995
|
databaseVersion: number
|
|
995
996
|
createdAt?: Date | string
|
|
996
997
|
updatedAt?: Date | string
|
|
@@ -998,10 +999,10 @@ export type ProjectCreateManySpaceInput = {
|
|
|
998
999
|
|
|
999
1000
|
export type ProjectUpdateWithoutSpaceInput = {
|
|
1000
1001
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1001
|
-
meta?:
|
|
1002
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1002
1003
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1003
1004
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1004
|
-
unlockSuite?:
|
|
1005
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1005
1006
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1006
1007
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1007
1008
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1012,13 +1013,13 @@ export type ProjectUpdateWithoutSpaceInput = {
|
|
|
1012
1013
|
|
|
1013
1014
|
export type ProjectUncheckedUpdateWithoutSpaceInput = {
|
|
1014
1015
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1015
|
-
meta?:
|
|
1016
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1016
1017
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1017
1018
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1018
1019
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1019
1020
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1020
1021
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1021
|
-
unlockSuite?:
|
|
1022
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1022
1023
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1023
1024
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1024
1025
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1026,13 +1027,13 @@ export type ProjectUncheckedUpdateWithoutSpaceInput = {
|
|
|
1026
1027
|
|
|
1027
1028
|
export type ProjectUncheckedUpdateManyWithoutSpaceInput = {
|
|
1028
1029
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1029
|
-
meta?:
|
|
1030
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1030
1031
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1031
1032
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1032
1033
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1033
1034
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1034
1035
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1035
|
-
unlockSuite?:
|
|
1036
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1036
1037
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1037
1038
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1038
1039
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1040,13 +1041,13 @@ export type ProjectUncheckedUpdateManyWithoutSpaceInput = {
|
|
|
1040
1041
|
|
|
1041
1042
|
export type ProjectCreateManyModelStorageInput = {
|
|
1042
1043
|
id?: string
|
|
1043
|
-
meta:
|
|
1044
|
+
meta:PrismaJson.CommonObjectMeta
|
|
1044
1045
|
name: string
|
|
1045
1046
|
spaceId: string
|
|
1046
1047
|
libraryId: string
|
|
1047
1048
|
pulumiBackendId: string
|
|
1048
1049
|
encryptedMasterKey: string
|
|
1049
|
-
unlockSuite:
|
|
1050
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
1050
1051
|
databaseVersion: number
|
|
1051
1052
|
createdAt?: Date | string
|
|
1052
1053
|
updatedAt?: Date | string
|
|
@@ -1054,10 +1055,10 @@ export type ProjectCreateManyModelStorageInput = {
|
|
|
1054
1055
|
|
|
1055
1056
|
export type ProjectUpdateWithoutModelStorageInput = {
|
|
1056
1057
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1057
|
-
meta?:
|
|
1058
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1058
1059
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1059
1060
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1060
|
-
unlockSuite?:
|
|
1061
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1061
1062
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1062
1063
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1063
1064
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1068,13 +1069,13 @@ export type ProjectUpdateWithoutModelStorageInput = {
|
|
|
1068
1069
|
|
|
1069
1070
|
export type ProjectUncheckedUpdateWithoutModelStorageInput = {
|
|
1070
1071
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1071
|
-
meta?:
|
|
1072
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1072
1073
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1073
1074
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1074
1075
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1075
1076
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1076
1077
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1077
|
-
unlockSuite?:
|
|
1078
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1078
1079
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1079
1080
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1080
1081
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1082,13 +1083,13 @@ export type ProjectUncheckedUpdateWithoutModelStorageInput = {
|
|
|
1082
1083
|
|
|
1083
1084
|
export type ProjectUncheckedUpdateManyWithoutModelStorageInput = {
|
|
1084
1085
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1085
|
-
meta?:
|
|
1086
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1086
1087
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1087
1088
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1088
1089
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1089
1090
|
pulumiBackendId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1090
1091
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1091
|
-
unlockSuite?:
|
|
1092
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1092
1093
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1093
1094
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1094
1095
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1096,13 +1097,13 @@ export type ProjectUncheckedUpdateManyWithoutModelStorageInput = {
|
|
|
1096
1097
|
|
|
1097
1098
|
export type ProjectCreateManyPulumiBackendInput = {
|
|
1098
1099
|
id?: string
|
|
1099
|
-
meta:
|
|
1100
|
+
meta:PrismaJson.CommonObjectMeta
|
|
1100
1101
|
name: string
|
|
1101
1102
|
spaceId: string
|
|
1102
1103
|
modelStorageId: string
|
|
1103
1104
|
libraryId: string
|
|
1104
1105
|
encryptedMasterKey: string
|
|
1105
|
-
unlockSuite:
|
|
1106
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
1106
1107
|
databaseVersion: number
|
|
1107
1108
|
createdAt?: Date | string
|
|
1108
1109
|
updatedAt?: Date | string
|
|
@@ -1110,10 +1111,10 @@ export type ProjectCreateManyPulumiBackendInput = {
|
|
|
1110
1111
|
|
|
1111
1112
|
export type ProjectUpdateWithoutPulumiBackendInput = {
|
|
1112
1113
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1113
|
-
meta?:
|
|
1114
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1114
1115
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1115
1116
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1116
|
-
unlockSuite?:
|
|
1117
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1117
1118
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1118
1119
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1119
1120
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1124,13 +1125,13 @@ export type ProjectUpdateWithoutPulumiBackendInput = {
|
|
|
1124
1125
|
|
|
1125
1126
|
export type ProjectUncheckedUpdateWithoutPulumiBackendInput = {
|
|
1126
1127
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1127
|
-
meta?:
|
|
1128
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1128
1129
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1129
1130
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1130
1131
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1131
1132
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1132
1133
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1133
|
-
unlockSuite?:
|
|
1134
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1134
1135
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1135
1136
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1136
1137
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1138,13 +1139,13 @@ export type ProjectUncheckedUpdateWithoutPulumiBackendInput = {
|
|
|
1138
1139
|
|
|
1139
1140
|
export type ProjectUncheckedUpdateManyWithoutPulumiBackendInput = {
|
|
1140
1141
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1141
|
-
meta?:
|
|
1142
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
1142
1143
|
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1143
1144
|
spaceId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1144
1145
|
modelStorageId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1145
1146
|
libraryId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1146
1147
|
encryptedMasterKey?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1147
|
-
unlockSuite?:
|
|
1148
|
+
unlockSuite?:PrismaJson.ProjectUnlockSuite
|
|
1148
1149
|
databaseVersion?: Prisma.IntFieldUpdateOperationsInput | number
|
|
1149
1150
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1150
1151
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -1274,7 +1275,7 @@ export type $ProjectPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
1274
1275
|
*
|
|
1275
1276
|
* [CommonObjectMeta]
|
|
1276
1277
|
*/
|
|
1277
|
-
meta:
|
|
1278
|
+
meta:PrismaJson.CommonObjectMeta
|
|
1278
1279
|
/**
|
|
1279
1280
|
* The name of the project within the space.
|
|
1280
1281
|
*/
|
|
@@ -1304,7 +1305,7 @@ export type $ProjectPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
1304
1305
|
*
|
|
1305
1306
|
* [ProjectUnlockSuite]
|
|
1306
1307
|
*/
|
|
1307
|
-
unlockSuite:
|
|
1308
|
+
unlockSuite:PrismaJson.ProjectUnlockSuite
|
|
1308
1309
|
/**
|
|
1309
1310
|
* The current version of the project database.
|
|
1310
1311
|
* This is used to determine if the project needs to be migrated.
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
|
+
// biome-ignore-all lint: generated file
|
|
4
5
|
// @ts-nocheck
|
|
5
|
-
|
|
6
|
+
/*
|
|
6
7
|
* This file exports the `ProjectModelStorage` model and its related types.
|
|
7
8
|
*
|
|
8
9
|
* 🟢 You can import this file directly.
|
|
9
10
|
*/
|
|
10
11
|
|
|
11
12
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
13
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
14
|
import type * as $Enums from "../enums.ts"
|
|
14
15
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
16
|
|
|
@@ -130,8 +131,8 @@ export type ProjectModelStorageGroupByArgs<ExtArgs extends runtime.Types.Extensi
|
|
|
130
131
|
|
|
131
132
|
export type ProjectModelStorageGroupByOutputType = {
|
|
132
133
|
id: string
|
|
133
|
-
meta:
|
|
134
|
-
spec:
|
|
134
|
+
meta:PrismaJson.CommonObjectMeta
|
|
135
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
135
136
|
_count: ProjectModelStorageCountAggregateOutputType | null
|
|
136
137
|
_min: ProjectModelStorageMinAggregateOutputType | null
|
|
137
138
|
_max: ProjectModelStorageMaxAggregateOutputType | null
|
|
@@ -199,48 +200,48 @@ export type ProjectModelStorageScalarWhereWithAggregatesInput = {
|
|
|
199
200
|
|
|
200
201
|
export type ProjectModelStorageCreateInput = {
|
|
201
202
|
id?: string
|
|
202
|
-
meta:
|
|
203
|
-
spec:
|
|
203
|
+
meta:PrismaJson.CommonObjectMeta
|
|
204
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
204
205
|
projects?: Prisma.ProjectCreateNestedManyWithoutModelStorageInput
|
|
205
206
|
}
|
|
206
207
|
|
|
207
208
|
export type ProjectModelStorageUncheckedCreateInput = {
|
|
208
209
|
id?: string
|
|
209
|
-
meta:
|
|
210
|
-
spec:
|
|
210
|
+
meta:PrismaJson.CommonObjectMeta
|
|
211
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
211
212
|
projects?: Prisma.ProjectUncheckedCreateNestedManyWithoutModelStorageInput
|
|
212
213
|
}
|
|
213
214
|
|
|
214
215
|
export type ProjectModelStorageUpdateInput = {
|
|
215
216
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
216
|
-
meta?:
|
|
217
|
-
spec?:
|
|
217
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
218
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
218
219
|
projects?: Prisma.ProjectUpdateManyWithoutModelStorageNestedInput
|
|
219
220
|
}
|
|
220
221
|
|
|
221
222
|
export type ProjectModelStorageUncheckedUpdateInput = {
|
|
222
223
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
223
|
-
meta?:
|
|
224
|
-
spec?:
|
|
224
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
225
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
225
226
|
projects?: Prisma.ProjectUncheckedUpdateManyWithoutModelStorageNestedInput
|
|
226
227
|
}
|
|
227
228
|
|
|
228
229
|
export type ProjectModelStorageCreateManyInput = {
|
|
229
230
|
id?: string
|
|
230
|
-
meta:
|
|
231
|
-
spec:
|
|
231
|
+
meta:PrismaJson.CommonObjectMeta
|
|
232
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
232
233
|
}
|
|
233
234
|
|
|
234
235
|
export type ProjectModelStorageUpdateManyMutationInput = {
|
|
235
236
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
236
|
-
meta?:
|
|
237
|
-
spec?:
|
|
237
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
238
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
238
239
|
}
|
|
239
240
|
|
|
240
241
|
export type ProjectModelStorageUncheckedUpdateManyInput = {
|
|
241
242
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
242
|
-
meta?:
|
|
243
|
-
spec?:
|
|
243
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
244
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
244
245
|
}
|
|
245
246
|
|
|
246
247
|
export type ProjectModelStorageScalarRelationFilter = {
|
|
@@ -278,14 +279,14 @@ export type ProjectModelStorageUpdateOneRequiredWithoutProjectsNestedInput = {
|
|
|
278
279
|
|
|
279
280
|
export type ProjectModelStorageCreateWithoutProjectsInput = {
|
|
280
281
|
id?: string
|
|
281
|
-
meta:
|
|
282
|
-
spec:
|
|
282
|
+
meta:PrismaJson.CommonObjectMeta
|
|
283
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
283
284
|
}
|
|
284
285
|
|
|
285
286
|
export type ProjectModelStorageUncheckedCreateWithoutProjectsInput = {
|
|
286
287
|
id?: string
|
|
287
|
-
meta:
|
|
288
|
-
spec:
|
|
288
|
+
meta:PrismaJson.CommonObjectMeta
|
|
289
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
289
290
|
}
|
|
290
291
|
|
|
291
292
|
export type ProjectModelStorageCreateOrConnectWithoutProjectsInput = {
|
|
@@ -306,14 +307,14 @@ export type ProjectModelStorageUpdateToOneWithWhereWithoutProjectsInput = {
|
|
|
306
307
|
|
|
307
308
|
export type ProjectModelStorageUpdateWithoutProjectsInput = {
|
|
308
309
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
309
|
-
meta?:
|
|
310
|
-
spec?:
|
|
310
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
311
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
311
312
|
}
|
|
312
313
|
|
|
313
314
|
export type ProjectModelStorageUncheckedUpdateWithoutProjectsInput = {
|
|
314
315
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
315
|
-
meta?:
|
|
316
|
-
spec?:
|
|
316
|
+
meta?:PrismaJson.CommonObjectMeta
|
|
317
|
+
spec?:PrismaJson.ProjectModelStorageSpec
|
|
317
318
|
}
|
|
318
319
|
|
|
319
320
|
|
|
@@ -399,13 +400,13 @@ export type $ProjectModelStoragePayload<ExtArgs extends runtime.Types.Extensions
|
|
|
399
400
|
*
|
|
400
401
|
* [CommonObjectMeta]
|
|
401
402
|
*/
|
|
402
|
-
meta:
|
|
403
|
+
meta:PrismaJson.CommonObjectMeta
|
|
403
404
|
/**
|
|
404
405
|
* The specification of the project model storage.
|
|
405
406
|
*
|
|
406
407
|
* [ProjectModelStorageSpec]
|
|
407
408
|
*/
|
|
408
|
-
spec:
|
|
409
|
+
spec:PrismaJson.ProjectModelStorageSpec
|
|
409
410
|
}, ExtArgs["result"]["projectModelStorage"]>
|
|
410
411
|
composites: {}
|
|
411
412
|
}
|