@highstate/backend 0.12.1 → 0.13.1
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-SEPC66ZL.js → chunk-4JUMOKLV.js} +4 -3
- package/dist/chunk-4JUMOKLV.js.map +1 -0
- package/dist/highstate.manifest.json +2 -2
- package/dist/index.js +86 -60
- package/dist/index.js.map +1 -1
- package/dist/shared/index.js +1 -1
- package/package.json +3 -3
- package/prisma/project/main.prisma +1 -1
- package/prisma/project/operation.prisma +1 -0
- package/src/business/instance-state.ts +61 -27
- package/src/database/_generated/project/browser.ts +244 -0
- package/src/database/_generated/project/client.ts +5 -30
- package/src/database/_generated/project/commonInputTypes.ts +2 -2
- package/src/database/_generated/project/enums.ts +3 -1
- package/src/database/_generated/project/internal/class.ts +11 -16
- package/src/database/_generated/project/internal/prismaNamespace.ts +7 -13
- package/src/database/_generated/project/internal/prismaNamespaceBrowser.ts +445 -0
- package/src/database/_generated/project/models/ApiKey.ts +21 -21
- package/src/database/_generated/project/models/Artifact.ts +31 -31
- package/src/database/_generated/project/models/HubModel.ts +11 -11
- package/src/database/_generated/project/models/InstanceCustomStatus.ts +23 -23
- package/src/database/_generated/project/models/InstanceEvaluationState.ts +15 -15
- package/src/database/_generated/project/models/InstanceLock.ts +15 -15
- package/src/database/_generated/project/models/InstanceModel.ts +11 -11
- package/src/database/_generated/project/models/InstanceOperationState.ts +44 -44
- package/src/database/_generated/project/models/InstanceState.ts +206 -206
- package/src/database/_generated/project/models/Operation.ts +70 -70
- package/src/database/_generated/project/models/OperationLog.ts +2 -2
- package/src/database/_generated/project/models/Page.ts +54 -54
- package/src/database/_generated/project/models/Secret.ts +44 -44
- package/src/database/_generated/project/models/ServiceAccount.ts +40 -40
- package/src/database/_generated/project/models/Terminal.ts +62 -62
- package/src/database/_generated/project/models/TerminalSession.ts +2 -2
- package/src/database/_generated/project/models/TerminalSessionLog.ts +2 -2
- package/src/database/_generated/project/models/Trigger.ts +32 -32
- package/src/database/_generated/project/models/UnlockMethod.ts +11 -11
- package/src/database/_generated/project/models/UserCompositeViewport.ts +17 -17
- package/src/database/_generated/project/models/UserProjectViewport.ts +11 -11
- package/src/database/_generated/project/models/Worker.ts +2 -2
- package/src/database/_generated/project/models/WorkerUnitRegistration.ts +23 -23
- package/src/database/_generated/project/models/WorkerVersion.ts +29 -29
- package/src/database/_generated/project/models/WorkerVersionLog.ts +2 -2
- package/src/database/_generated/project/models.ts +1 -1
- package/src/database/_generated/project/pjtg.ts +1 -0
- package/src/orchestrator/operation-workset.ts +22 -11
- package/src/orchestrator/operation.ts +11 -5
- package/src/shared/models/project/operation.ts +1 -0
- package/dist/chunk-SEPC66ZL.js.map +0 -1
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
|
|
5
|
+
/*
|
|
6
6
|
* This file exports the `ServiceAccount` model and its related types.
|
|
7
7
|
*
|
|
8
8
|
* 🟢 You can import this file directly.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
import type * as PJTG from '../pjtg.ts';
|
|
12
|
-
import * as runtime from "@prisma/client/runtime/client"
|
|
12
|
+
import type * as runtime from "@prisma/client/runtime/client"
|
|
13
13
|
import type * as $Enums from "../enums.ts"
|
|
14
14
|
import type * as Prisma from "../internal/prismaNamespace.ts"
|
|
15
15
|
|
|
@@ -145,7 +145,7 @@ export type ServiceAccountGroupByArgs<ExtArgs extends runtime.Types.Extensions.I
|
|
|
145
145
|
|
|
146
146
|
export type ServiceAccountGroupByOutputType = {
|
|
147
147
|
id: string
|
|
148
|
-
meta:
|
|
148
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
149
149
|
createdAt: Date
|
|
150
150
|
updatedAt: Date
|
|
151
151
|
_count: ServiceAccountCountAggregateOutputType | null
|
|
@@ -238,7 +238,7 @@ export type ServiceAccountScalarWhereWithAggregatesInput = {
|
|
|
238
238
|
|
|
239
239
|
export type ServiceAccountCreateInput = {
|
|
240
240
|
id?: string
|
|
241
|
-
meta:
|
|
241
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
242
242
|
createdAt?: Date | string
|
|
243
243
|
updatedAt?: Date | string
|
|
244
244
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -252,7 +252,7 @@ export type ServiceAccountCreateInput = {
|
|
|
252
252
|
|
|
253
253
|
export type ServiceAccountUncheckedCreateInput = {
|
|
254
254
|
id?: string
|
|
255
|
-
meta:
|
|
255
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
256
256
|
createdAt?: Date | string
|
|
257
257
|
updatedAt?: Date | string
|
|
258
258
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -266,7 +266,7 @@ export type ServiceAccountUncheckedCreateInput = {
|
|
|
266
266
|
|
|
267
267
|
export type ServiceAccountUpdateInput = {
|
|
268
268
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
269
|
-
meta?:
|
|
269
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
270
270
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
271
271
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
272
272
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -280,7 +280,7 @@ export type ServiceAccountUpdateInput = {
|
|
|
280
280
|
|
|
281
281
|
export type ServiceAccountUncheckedUpdateInput = {
|
|
282
282
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
283
|
-
meta?:
|
|
283
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
284
284
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
285
285
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
286
286
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -294,21 +294,21 @@ export type ServiceAccountUncheckedUpdateInput = {
|
|
|
294
294
|
|
|
295
295
|
export type ServiceAccountCreateManyInput = {
|
|
296
296
|
id?: string
|
|
297
|
-
meta:
|
|
297
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
298
298
|
createdAt?: Date | string
|
|
299
299
|
updatedAt?: Date | string
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
export type ServiceAccountUpdateManyMutationInput = {
|
|
303
303
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
304
|
-
meta?:
|
|
304
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
305
305
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
306
306
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
export type ServiceAccountUncheckedUpdateManyInput = {
|
|
310
310
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
311
|
-
meta?:
|
|
311
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
312
312
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
313
313
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
314
314
|
}
|
|
@@ -482,7 +482,7 @@ export type ServiceAccountUpdateOneRequiredWithoutWorkersNestedInput = {
|
|
|
482
482
|
|
|
483
483
|
export type ServiceAccountCreateWithoutApiKeysInput = {
|
|
484
484
|
id?: string
|
|
485
|
-
meta:
|
|
485
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
486
486
|
createdAt?: Date | string
|
|
487
487
|
updatedAt?: Date | string
|
|
488
488
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -495,7 +495,7 @@ export type ServiceAccountCreateWithoutApiKeysInput = {
|
|
|
495
495
|
|
|
496
496
|
export type ServiceAccountUncheckedCreateWithoutApiKeysInput = {
|
|
497
497
|
id?: string
|
|
498
|
-
meta:
|
|
498
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
499
499
|
createdAt?: Date | string
|
|
500
500
|
updatedAt?: Date | string
|
|
501
501
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -524,7 +524,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutApiKeysInput = {
|
|
|
524
524
|
|
|
525
525
|
export type ServiceAccountUpdateWithoutApiKeysInput = {
|
|
526
526
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
527
|
-
meta?:
|
|
527
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
528
528
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
529
529
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
530
530
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -537,7 +537,7 @@ export type ServiceAccountUpdateWithoutApiKeysInput = {
|
|
|
537
537
|
|
|
538
538
|
export type ServiceAccountUncheckedUpdateWithoutApiKeysInput = {
|
|
539
539
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
540
|
-
meta?:
|
|
540
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
541
541
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
542
542
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
543
543
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -550,7 +550,7 @@ export type ServiceAccountUncheckedUpdateWithoutApiKeysInput = {
|
|
|
550
550
|
|
|
551
551
|
export type ServiceAccountCreateWithoutArtifactsInput = {
|
|
552
552
|
id?: string
|
|
553
|
-
meta:
|
|
553
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
554
554
|
createdAt?: Date | string
|
|
555
555
|
updatedAt?: Date | string
|
|
556
556
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -563,7 +563,7 @@ export type ServiceAccountCreateWithoutArtifactsInput = {
|
|
|
563
563
|
|
|
564
564
|
export type ServiceAccountUncheckedCreateWithoutArtifactsInput = {
|
|
565
565
|
id?: string
|
|
566
|
-
meta:
|
|
566
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
567
567
|
createdAt?: Date | string
|
|
568
568
|
updatedAt?: Date | string
|
|
569
569
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -607,7 +607,7 @@ export type ServiceAccountScalarWhereInput = {
|
|
|
607
607
|
|
|
608
608
|
export type ServiceAccountCreateWithoutCustomStatusesInput = {
|
|
609
609
|
id?: string
|
|
610
|
-
meta:
|
|
610
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
611
611
|
createdAt?: Date | string
|
|
612
612
|
updatedAt?: Date | string
|
|
613
613
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -620,7 +620,7 @@ export type ServiceAccountCreateWithoutCustomStatusesInput = {
|
|
|
620
620
|
|
|
621
621
|
export type ServiceAccountUncheckedCreateWithoutCustomStatusesInput = {
|
|
622
622
|
id?: string
|
|
623
|
-
meta:
|
|
623
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
624
624
|
createdAt?: Date | string
|
|
625
625
|
updatedAt?: Date | string
|
|
626
626
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -649,7 +649,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutCustomStatusesInput = {
|
|
|
649
649
|
|
|
650
650
|
export type ServiceAccountUpdateWithoutCustomStatusesInput = {
|
|
651
651
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
652
|
-
meta?:
|
|
652
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
653
653
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
654
654
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
655
655
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -662,7 +662,7 @@ export type ServiceAccountUpdateWithoutCustomStatusesInput = {
|
|
|
662
662
|
|
|
663
663
|
export type ServiceAccountUncheckedUpdateWithoutCustomStatusesInput = {
|
|
664
664
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
665
|
-
meta?:
|
|
665
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
666
666
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
667
667
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
668
668
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -675,7 +675,7 @@ export type ServiceAccountUncheckedUpdateWithoutCustomStatusesInput = {
|
|
|
675
675
|
|
|
676
676
|
export type ServiceAccountCreateWithoutPagesInput = {
|
|
677
677
|
id?: string
|
|
678
|
-
meta:
|
|
678
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
679
679
|
createdAt?: Date | string
|
|
680
680
|
updatedAt?: Date | string
|
|
681
681
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -688,7 +688,7 @@ export type ServiceAccountCreateWithoutPagesInput = {
|
|
|
688
688
|
|
|
689
689
|
export type ServiceAccountUncheckedCreateWithoutPagesInput = {
|
|
690
690
|
id?: string
|
|
691
|
-
meta:
|
|
691
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
692
692
|
createdAt?: Date | string
|
|
693
693
|
updatedAt?: Date | string
|
|
694
694
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -717,7 +717,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutPagesInput = {
|
|
|
717
717
|
|
|
718
718
|
export type ServiceAccountUpdateWithoutPagesInput = {
|
|
719
719
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
720
|
-
meta?:
|
|
720
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
721
721
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
722
722
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
723
723
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -730,7 +730,7 @@ export type ServiceAccountUpdateWithoutPagesInput = {
|
|
|
730
730
|
|
|
731
731
|
export type ServiceAccountUncheckedUpdateWithoutPagesInput = {
|
|
732
732
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
733
|
-
meta?:
|
|
733
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
734
734
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
735
735
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
736
736
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -743,7 +743,7 @@ export type ServiceAccountUncheckedUpdateWithoutPagesInput = {
|
|
|
743
743
|
|
|
744
744
|
export type ServiceAccountCreateWithoutSecretsInput = {
|
|
745
745
|
id?: string
|
|
746
|
-
meta:
|
|
746
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
747
747
|
createdAt?: Date | string
|
|
748
748
|
updatedAt?: Date | string
|
|
749
749
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -756,7 +756,7 @@ export type ServiceAccountCreateWithoutSecretsInput = {
|
|
|
756
756
|
|
|
757
757
|
export type ServiceAccountUncheckedCreateWithoutSecretsInput = {
|
|
758
758
|
id?: string
|
|
759
|
-
meta:
|
|
759
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
760
760
|
createdAt?: Date | string
|
|
761
761
|
updatedAt?: Date | string
|
|
762
762
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -785,7 +785,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutSecretsInput = {
|
|
|
785
785
|
|
|
786
786
|
export type ServiceAccountUpdateWithoutSecretsInput = {
|
|
787
787
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
788
|
-
meta?:
|
|
788
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
789
789
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
790
790
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
791
791
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -798,7 +798,7 @@ export type ServiceAccountUpdateWithoutSecretsInput = {
|
|
|
798
798
|
|
|
799
799
|
export type ServiceAccountUncheckedUpdateWithoutSecretsInput = {
|
|
800
800
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
801
|
-
meta?:
|
|
801
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
802
802
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
803
803
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
804
804
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -811,7 +811,7 @@ export type ServiceAccountUncheckedUpdateWithoutSecretsInput = {
|
|
|
811
811
|
|
|
812
812
|
export type ServiceAccountCreateWithoutTerminalsInput = {
|
|
813
813
|
id?: string
|
|
814
|
-
meta:
|
|
814
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
815
815
|
createdAt?: Date | string
|
|
816
816
|
updatedAt?: Date | string
|
|
817
817
|
workers?: Prisma.WorkerCreateNestedManyWithoutServiceAccountInput
|
|
@@ -824,7 +824,7 @@ export type ServiceAccountCreateWithoutTerminalsInput = {
|
|
|
824
824
|
|
|
825
825
|
export type ServiceAccountUncheckedCreateWithoutTerminalsInput = {
|
|
826
826
|
id?: string
|
|
827
|
-
meta:
|
|
827
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
828
828
|
createdAt?: Date | string
|
|
829
829
|
updatedAt?: Date | string
|
|
830
830
|
workers?: Prisma.WorkerUncheckedCreateNestedManyWithoutServiceAccountInput
|
|
@@ -853,7 +853,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutTerminalsInput = {
|
|
|
853
853
|
|
|
854
854
|
export type ServiceAccountUpdateWithoutTerminalsInput = {
|
|
855
855
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
856
|
-
meta?:
|
|
856
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
857
857
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
858
858
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
859
859
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -866,7 +866,7 @@ export type ServiceAccountUpdateWithoutTerminalsInput = {
|
|
|
866
866
|
|
|
867
867
|
export type ServiceAccountUncheckedUpdateWithoutTerminalsInput = {
|
|
868
868
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
869
|
-
meta?:
|
|
869
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
870
870
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
871
871
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
872
872
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -879,7 +879,7 @@ export type ServiceAccountUncheckedUpdateWithoutTerminalsInput = {
|
|
|
879
879
|
|
|
880
880
|
export type ServiceAccountCreateWithoutWorkersInput = {
|
|
881
881
|
id?: string
|
|
882
|
-
meta:
|
|
882
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
883
883
|
createdAt?: Date | string
|
|
884
884
|
updatedAt?: Date | string
|
|
885
885
|
artifacts?: Prisma.ArtifactCreateNestedManyWithoutServiceAccountsInput
|
|
@@ -892,7 +892,7 @@ export type ServiceAccountCreateWithoutWorkersInput = {
|
|
|
892
892
|
|
|
893
893
|
export type ServiceAccountUncheckedCreateWithoutWorkersInput = {
|
|
894
894
|
id?: string
|
|
895
|
-
meta:
|
|
895
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
896
896
|
createdAt?: Date | string
|
|
897
897
|
updatedAt?: Date | string
|
|
898
898
|
artifacts?: Prisma.ArtifactUncheckedCreateNestedManyWithoutServiceAccountsInput
|
|
@@ -921,7 +921,7 @@ export type ServiceAccountUpdateToOneWithWhereWithoutWorkersInput = {
|
|
|
921
921
|
|
|
922
922
|
export type ServiceAccountUpdateWithoutWorkersInput = {
|
|
923
923
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
924
|
-
meta?:
|
|
924
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
925
925
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
926
926
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
927
927
|
artifacts?: Prisma.ArtifactUpdateManyWithoutServiceAccountsNestedInput
|
|
@@ -934,7 +934,7 @@ export type ServiceAccountUpdateWithoutWorkersInput = {
|
|
|
934
934
|
|
|
935
935
|
export type ServiceAccountUncheckedUpdateWithoutWorkersInput = {
|
|
936
936
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
937
|
-
meta?:
|
|
937
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
938
938
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
939
939
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
940
940
|
artifacts?: Prisma.ArtifactUncheckedUpdateManyWithoutServiceAccountsNestedInput
|
|
@@ -947,7 +947,7 @@ export type ServiceAccountUncheckedUpdateWithoutWorkersInput = {
|
|
|
947
947
|
|
|
948
948
|
export type ServiceAccountUpdateWithoutArtifactsInput = {
|
|
949
949
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
950
|
-
meta?:
|
|
950
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
951
951
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
952
952
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
953
953
|
workers?: Prisma.WorkerUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -960,7 +960,7 @@ export type ServiceAccountUpdateWithoutArtifactsInput = {
|
|
|
960
960
|
|
|
961
961
|
export type ServiceAccountUncheckedUpdateWithoutArtifactsInput = {
|
|
962
962
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
963
|
-
meta?:
|
|
963
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
964
964
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
965
965
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
966
966
|
workers?: Prisma.WorkerUncheckedUpdateManyWithoutServiceAccountNestedInput
|
|
@@ -973,7 +973,7 @@ export type ServiceAccountUncheckedUpdateWithoutArtifactsInput = {
|
|
|
973
973
|
|
|
974
974
|
export type ServiceAccountUncheckedUpdateManyWithoutArtifactsInput = {
|
|
975
975
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
976
|
-
meta?:
|
|
976
|
+
meta?:PrismaJson.ServiceAccountMeta
|
|
977
977
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
978
978
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
979
979
|
}
|
|
@@ -1155,7 +1155,7 @@ export type $ServiceAccountPayload<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
1155
1155
|
*
|
|
1156
1156
|
* [ServiceAccountMeta]
|
|
1157
1157
|
*/
|
|
1158
|
-
meta:
|
|
1158
|
+
meta:PrismaJson.ServiceAccountMeta
|
|
1159
1159
|
/**
|
|
1160
1160
|
* The time when the service account was created.
|
|
1161
1161
|
*/
|