@apollo-deploy/schemas 1.3.1 → 1.3.3
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/definitions/analytics/request.schema.d.ts +2 -2
- package/dist/definitions/api-keys/domain.schema.d.ts +13 -0
- package/dist/definitions/api-keys/domain.schema.d.ts.map +1 -1
- package/dist/definitions/api-keys/domain.schema.js +11 -0
- package/dist/definitions/api-keys/domain.schema.js.map +1 -1
- package/dist/definitions/api-keys/index.d.ts +2 -2
- package/dist/definitions/api-keys/index.d.ts.map +1 -1
- package/dist/definitions/api-keys/index.js +2 -2
- package/dist/definitions/api-keys/index.js.map +1 -1
- package/dist/definitions/api-keys/request.schema.d.ts +19 -0
- package/dist/definitions/api-keys/request.schema.d.ts.map +1 -1
- package/dist/definitions/api-keys/request.schema.js +5 -1
- package/dist/definitions/api-keys/request.schema.js.map +1 -1
- package/dist/definitions/api-keys/response.schema.d.ts +12 -0
- package/dist/definitions/api-keys/response.schema.d.ts.map +1 -1
- package/dist/definitions/approvals/domain.schema.d.ts +4 -4
- package/dist/definitions/approvals/request.schema.d.ts +7 -7
- package/dist/definitions/approvals/response.schema.d.ts +11 -11
- package/dist/definitions/artifacts/domain.schema.d.ts +2 -2
- package/dist/definitions/artifacts/request.schema.d.ts +3 -3
- package/dist/definitions/artifacts/response.schema.d.ts +7 -7
- package/dist/definitions/audit-log/domain.schema.d.ts +6 -6
- package/dist/definitions/audit-log/request.schema.d.ts +13 -13
- package/dist/definitions/audit-log/response.schema.d.ts +6 -6
- package/dist/definitions/index.d.ts +9 -2
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/index.js +19 -4
- package/dist/definitions/index.js.map +1 -1
- package/dist/definitions/integrations/domain.schema.d.ts +5 -5
- package/dist/definitions/policies/domain.schema.d.ts +18 -18
- package/dist/definitions/policies/request.schema.d.ts +8 -8
- package/dist/definitions/policies/response.schema.d.ts +18 -18
- package/dist/definitions/releases/domain.schema.d.ts +23 -23
- package/dist/definitions/releases/request.schema.d.ts +27 -27
- package/dist/definitions/releases/response.schema.d.ts +14 -14
- package/dist/definitions/service-accounts/domain.schema.d.ts +8 -8
- package/dist/definitions/service-accounts/response.schema.d.ts +8 -8
- package/dist/definitions/settings/response.schema.d.ts +10 -10
- package/dist/definitions/signals/domain.schema.d.ts +100 -56
- package/dist/definitions/signals/domain.schema.d.ts.map +1 -1
- package/dist/definitions/signals/domain.schema.js +34 -4
- package/dist/definitions/signals/domain.schema.js.map +1 -1
- package/dist/definitions/signals/events.schema.d.ts +713 -0
- package/dist/definitions/signals/events.schema.d.ts.map +1 -0
- package/dist/definitions/signals/events.schema.js +132 -0
- package/dist/definitions/signals/events.schema.js.map +1 -0
- package/dist/definitions/signals/index.d.ts +4 -3
- package/dist/definitions/signals/index.d.ts.map +1 -1
- package/dist/definitions/signals/index.js +5 -3
- package/dist/definitions/signals/index.js.map +1 -1
- package/dist/definitions/signals/request.schema.d.ts +129 -15
- package/dist/definitions/signals/request.schema.d.ts.map +1 -1
- package/dist/definitions/signals/request.schema.js +110 -8
- package/dist/definitions/signals/request.schema.js.map +1 -1
- package/dist/definitions/signals/response.schema.d.ts +204 -85
- package/dist/definitions/signals/response.schema.d.ts.map +1 -1
- package/dist/definitions/signals/response.schema.js +61 -4
- package/dist/definitions/signals/response.schema.js.map +1 -1
- package/dist/definitions/telemetry/index.d.ts +8 -0
- package/dist/definitions/telemetry/index.d.ts.map +1 -0
- package/dist/definitions/telemetry/index.js +10 -0
- package/dist/definitions/telemetry/index.js.map +1 -0
- package/dist/definitions/telemetry/request.schema.d.ts +121 -0
- package/dist/definitions/telemetry/request.schema.d.ts.map +1 -0
- package/dist/definitions/telemetry/request.schema.js +90 -0
- package/dist/definitions/telemetry/request.schema.js.map +1 -0
- package/dist/definitions/telemetry/response.schema.d.ts +92 -0
- package/dist/definitions/telemetry/response.schema.d.ts.map +1 -0
- package/dist/definitions/telemetry/response.schema.js +43 -0
- package/dist/definitions/telemetry/response.schema.js.map +1 -0
- package/dist/definitions/webhooks/domain.schema.d.ts +2 -2
- package/dist/definitions/webhooks/response.schema.d.ts +1 -1
- package/package.json +1 -1
|
@@ -128,10 +128,10 @@ export declare const ReleasePipelineApprovalGateConfigSchema: z.ZodObject<{
|
|
|
128
128
|
}, z.core.$strict>>;
|
|
129
129
|
}, z.core.$strict>>;
|
|
130
130
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
131
|
+
critical: "critical";
|
|
131
132
|
low: "low";
|
|
132
133
|
medium: "medium";
|
|
133
134
|
high: "high";
|
|
134
|
-
critical: "critical";
|
|
135
135
|
}>>;
|
|
136
136
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
137
137
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -181,10 +181,10 @@ export declare const ReleasePipelineApprovalGateUpsertConfigSchema: z.ZodUnion<r
|
|
|
181
181
|
}, z.core.$strict>>;
|
|
182
182
|
}, z.core.$strict>>;
|
|
183
183
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
184
|
+
critical: "critical";
|
|
184
185
|
low: "low";
|
|
185
186
|
medium: "medium";
|
|
186
187
|
high: "high";
|
|
187
|
-
critical: "critical";
|
|
188
188
|
}>>;
|
|
189
189
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
190
190
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -233,10 +233,10 @@ export declare const ReleasePipelineApprovalGateUpsertConfigSchema: z.ZodUnion<r
|
|
|
233
233
|
}, z.core.$strict>>;
|
|
234
234
|
}, z.core.$strict>>;
|
|
235
235
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
236
|
+
critical: "critical";
|
|
236
237
|
low: "low";
|
|
237
238
|
medium: "medium";
|
|
238
239
|
high: "high";
|
|
239
|
-
critical: "critical";
|
|
240
240
|
}>>;
|
|
241
241
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
242
242
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -292,10 +292,10 @@ export declare const ReleasePipelineApprovalGateUpsertSchema: z.ZodObject<{
|
|
|
292
292
|
}, z.core.$strict>>;
|
|
293
293
|
}, z.core.$strict>>;
|
|
294
294
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
295
|
+
critical: "critical";
|
|
295
296
|
low: "low";
|
|
296
297
|
medium: "medium";
|
|
297
298
|
high: "high";
|
|
298
|
-
critical: "critical";
|
|
299
299
|
}>>;
|
|
300
300
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
301
301
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -344,10 +344,10 @@ export declare const ReleasePipelineApprovalGateUpsertSchema: z.ZodObject<{
|
|
|
344
344
|
}, z.core.$strict>>;
|
|
345
345
|
}, z.core.$strict>>;
|
|
346
346
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
347
|
+
critical: "critical";
|
|
347
348
|
low: "low";
|
|
348
349
|
medium: "medium";
|
|
349
350
|
high: "high";
|
|
350
|
-
critical: "critical";
|
|
351
351
|
}>>;
|
|
352
352
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
353
353
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -418,10 +418,10 @@ export declare const ReleasePipelineGateUpsertSchema: z.ZodDiscriminatedUnion<[z
|
|
|
418
418
|
}, z.core.$strict>>;
|
|
419
419
|
}, z.core.$strict>>;
|
|
420
420
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
421
|
+
critical: "critical";
|
|
421
422
|
low: "low";
|
|
422
423
|
medium: "medium";
|
|
423
424
|
high: "high";
|
|
424
|
-
critical: "critical";
|
|
425
425
|
}>>;
|
|
426
426
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
427
427
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -470,10 +470,10 @@ export declare const ReleasePipelineGateUpsertSchema: z.ZodDiscriminatedUnion<[z
|
|
|
470
470
|
}, z.core.$strict>>;
|
|
471
471
|
}, z.core.$strict>>;
|
|
472
472
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
473
|
+
critical: "critical";
|
|
473
474
|
low: "low";
|
|
474
475
|
medium: "medium";
|
|
475
476
|
high: "high";
|
|
476
|
-
critical: "critical";
|
|
477
477
|
}>>;
|
|
478
478
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
479
479
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -514,9 +514,9 @@ export declare const ReleasePipelineStageUpsertSchema: z.ZodObject<{
|
|
|
514
514
|
}>>;
|
|
515
515
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
516
516
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
517
|
-
blue_green: "blue_green";
|
|
518
|
-
rolling: "rolling";
|
|
519
517
|
canary: "canary";
|
|
518
|
+
rolling: "rolling";
|
|
519
|
+
blue_green: "blue_green";
|
|
520
520
|
}>>;
|
|
521
521
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
522
522
|
}, z.core.$strict>>;
|
|
@@ -571,10 +571,10 @@ export declare const ReleasePipelineStageUpsertSchema: z.ZodObject<{
|
|
|
571
571
|
}, z.core.$strict>>;
|
|
572
572
|
}, z.core.$strict>>;
|
|
573
573
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
574
|
+
critical: "critical";
|
|
574
575
|
low: "low";
|
|
575
576
|
medium: "medium";
|
|
576
577
|
high: "high";
|
|
577
|
-
critical: "critical";
|
|
578
578
|
}>>;
|
|
579
579
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
580
580
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -623,10 +623,10 @@ export declare const ReleasePipelineStageUpsertSchema: z.ZodObject<{
|
|
|
623
623
|
}, z.core.$strict>>;
|
|
624
624
|
}, z.core.$strict>>;
|
|
625
625
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
626
|
+
critical: "critical";
|
|
626
627
|
low: "low";
|
|
627
628
|
medium: "medium";
|
|
628
629
|
high: "high";
|
|
629
|
-
critical: "critical";
|
|
630
630
|
}>>;
|
|
631
631
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
632
632
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -653,9 +653,9 @@ export declare const ReleasePipelineTransitionUpsertSchema: z.ZodObject<{
|
|
|
653
653
|
fromStageKey: z.ZodString;
|
|
654
654
|
toStageKey: z.ZodString;
|
|
655
655
|
type: z.ZodDefault<z.ZodEnum<{
|
|
656
|
+
rollback: "rollback";
|
|
656
657
|
forward: "forward";
|
|
657
658
|
skip: "skip";
|
|
658
|
-
rollback: "rollback";
|
|
659
659
|
hotfix: "hotfix";
|
|
660
660
|
}>>;
|
|
661
661
|
requiresReason: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -686,9 +686,9 @@ export declare const ReleasePipelineCreateSchema: z.ZodObject<{
|
|
|
686
686
|
}>>;
|
|
687
687
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
688
688
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
689
|
-
blue_green: "blue_green";
|
|
690
|
-
rolling: "rolling";
|
|
691
689
|
canary: "canary";
|
|
690
|
+
rolling: "rolling";
|
|
691
|
+
blue_green: "blue_green";
|
|
692
692
|
}>>;
|
|
693
693
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
694
694
|
}, z.core.$strict>>;
|
|
@@ -743,10 +743,10 @@ export declare const ReleasePipelineCreateSchema: z.ZodObject<{
|
|
|
743
743
|
}, z.core.$strict>>;
|
|
744
744
|
}, z.core.$strict>>;
|
|
745
745
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
746
|
+
critical: "critical";
|
|
746
747
|
low: "low";
|
|
747
748
|
medium: "medium";
|
|
748
749
|
high: "high";
|
|
749
|
-
critical: "critical";
|
|
750
750
|
}>>;
|
|
751
751
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
752
752
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -795,10 +795,10 @@ export declare const ReleasePipelineCreateSchema: z.ZodObject<{
|
|
|
795
795
|
}, z.core.$strict>>;
|
|
796
796
|
}, z.core.$strict>>;
|
|
797
797
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
798
|
+
critical: "critical";
|
|
798
799
|
low: "low";
|
|
799
800
|
medium: "medium";
|
|
800
801
|
high: "high";
|
|
801
|
-
critical: "critical";
|
|
802
802
|
}>>;
|
|
803
803
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
804
804
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -822,9 +822,9 @@ export declare const ReleasePipelineCreateSchema: z.ZodObject<{
|
|
|
822
822
|
fromStageKey: z.ZodString;
|
|
823
823
|
toStageKey: z.ZodString;
|
|
824
824
|
type: z.ZodDefault<z.ZodEnum<{
|
|
825
|
+
rollback: "rollback";
|
|
825
826
|
forward: "forward";
|
|
826
827
|
skip: "skip";
|
|
827
|
-
rollback: "rollback";
|
|
828
828
|
hotfix: "hotfix";
|
|
829
829
|
}>>;
|
|
830
830
|
requiresReason: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -856,9 +856,9 @@ export declare const ReleasePipelineUpdateSchema: z.ZodObject<{
|
|
|
856
856
|
}>>;
|
|
857
857
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
858
858
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
859
|
-
blue_green: "blue_green";
|
|
860
|
-
rolling: "rolling";
|
|
861
859
|
canary: "canary";
|
|
860
|
+
rolling: "rolling";
|
|
861
|
+
blue_green: "blue_green";
|
|
862
862
|
}>>;
|
|
863
863
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
864
864
|
}, z.core.$strict>>;
|
|
@@ -913,10 +913,10 @@ export declare const ReleasePipelineUpdateSchema: z.ZodObject<{
|
|
|
913
913
|
}, z.core.$strict>>;
|
|
914
914
|
}, z.core.$strict>>;
|
|
915
915
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
916
|
+
critical: "critical";
|
|
916
917
|
low: "low";
|
|
917
918
|
medium: "medium";
|
|
918
919
|
high: "high";
|
|
919
|
-
critical: "critical";
|
|
920
920
|
}>>;
|
|
921
921
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
922
922
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -965,10 +965,10 @@ export declare const ReleasePipelineUpdateSchema: z.ZodObject<{
|
|
|
965
965
|
}, z.core.$strict>>;
|
|
966
966
|
}, z.core.$strict>>;
|
|
967
967
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
968
|
+
critical: "critical";
|
|
968
969
|
low: "low";
|
|
969
970
|
medium: "medium";
|
|
970
971
|
high: "high";
|
|
971
|
-
critical: "critical";
|
|
972
972
|
}>>;
|
|
973
973
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
974
974
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -992,9 +992,9 @@ export declare const ReleasePipelineUpdateSchema: z.ZodObject<{
|
|
|
992
992
|
fromStageKey: z.ZodString;
|
|
993
993
|
toStageKey: z.ZodString;
|
|
994
994
|
type: z.ZodDefault<z.ZodEnum<{
|
|
995
|
+
rollback: "rollback";
|
|
995
996
|
forward: "forward";
|
|
996
997
|
skip: "skip";
|
|
997
|
-
rollback: "rollback";
|
|
998
998
|
hotfix: "hotfix";
|
|
999
999
|
}>>;
|
|
1000
1000
|
requiresReason: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1026,9 +1026,9 @@ export declare const ReleasePipelineValidateSchema: z.ZodObject<{
|
|
|
1026
1026
|
}>>;
|
|
1027
1027
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1028
1028
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
1029
|
-
blue_green: "blue_green";
|
|
1030
|
-
rolling: "rolling";
|
|
1031
1029
|
canary: "canary";
|
|
1030
|
+
rolling: "rolling";
|
|
1031
|
+
blue_green: "blue_green";
|
|
1032
1032
|
}>>;
|
|
1033
1033
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
1034
1034
|
}, z.core.$strict>>;
|
|
@@ -1083,10 +1083,10 @@ export declare const ReleasePipelineValidateSchema: z.ZodObject<{
|
|
|
1083
1083
|
}, z.core.$strict>>;
|
|
1084
1084
|
}, z.core.$strict>>;
|
|
1085
1085
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
1086
|
+
critical: "critical";
|
|
1086
1087
|
low: "low";
|
|
1087
1088
|
medium: "medium";
|
|
1088
1089
|
high: "high";
|
|
1089
|
-
critical: "critical";
|
|
1090
1090
|
}>>;
|
|
1091
1091
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1092
1092
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -1135,10 +1135,10 @@ export declare const ReleasePipelineValidateSchema: z.ZodObject<{
|
|
|
1135
1135
|
}, z.core.$strict>>;
|
|
1136
1136
|
}, z.core.$strict>>;
|
|
1137
1137
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
1138
|
+
critical: "critical";
|
|
1138
1139
|
low: "low";
|
|
1139
1140
|
medium: "medium";
|
|
1140
1141
|
high: "high";
|
|
1141
|
-
critical: "critical";
|
|
1142
1142
|
}>>;
|
|
1143
1143
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
1144
1144
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -1162,9 +1162,9 @@ export declare const ReleasePipelineValidateSchema: z.ZodObject<{
|
|
|
1162
1162
|
fromStageKey: z.ZodString;
|
|
1163
1163
|
toStageKey: z.ZodString;
|
|
1164
1164
|
type: z.ZodDefault<z.ZodEnum<{
|
|
1165
|
+
rollback: "rollback";
|
|
1165
1166
|
forward: "forward";
|
|
1166
1167
|
skip: "skip";
|
|
1167
|
-
rollback: "rollback";
|
|
1168
1168
|
hotfix: "hotfix";
|
|
1169
1169
|
}>>;
|
|
1170
1170
|
requiresReason: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -172,9 +172,9 @@ export declare const ReleasePipelineResponseSchema: z.ZodObject<{
|
|
|
172
172
|
}>>;
|
|
173
173
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
174
174
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
175
|
-
blue_green: "blue_green";
|
|
176
|
-
rolling: "rolling";
|
|
177
175
|
canary: "canary";
|
|
176
|
+
rolling: "rolling";
|
|
177
|
+
blue_green: "blue_green";
|
|
178
178
|
}>>;
|
|
179
179
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
180
180
|
}, z.core.$strict>;
|
|
@@ -209,9 +209,9 @@ export declare const ReleasePipelineResponseSchema: z.ZodObject<{
|
|
|
209
209
|
fromStageId: z.ZodString;
|
|
210
210
|
toStageId: z.ZodString;
|
|
211
211
|
type: z.ZodEnum<{
|
|
212
|
+
rollback: "rollback";
|
|
212
213
|
forward: "forward";
|
|
213
214
|
skip: "skip";
|
|
214
|
-
rollback: "rollback";
|
|
215
215
|
hotfix: "hotfix";
|
|
216
216
|
}>;
|
|
217
217
|
requiresReason: z.ZodBoolean;
|
|
@@ -262,9 +262,9 @@ export declare const ReleasePipelineListResponseSchema: z.ZodObject<{
|
|
|
262
262
|
}>>;
|
|
263
263
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
264
264
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
265
|
-
blue_green: "blue_green";
|
|
266
|
-
rolling: "rolling";
|
|
267
265
|
canary: "canary";
|
|
266
|
+
rolling: "rolling";
|
|
267
|
+
blue_green: "blue_green";
|
|
268
268
|
}>>;
|
|
269
269
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
270
270
|
}, z.core.$strict>;
|
|
@@ -299,9 +299,9 @@ export declare const ReleasePipelineListResponseSchema: z.ZodObject<{
|
|
|
299
299
|
fromStageId: z.ZodString;
|
|
300
300
|
toStageId: z.ZodString;
|
|
301
301
|
type: z.ZodEnum<{
|
|
302
|
+
rollback: "rollback";
|
|
302
303
|
forward: "forward";
|
|
303
304
|
skip: "skip";
|
|
304
|
-
rollback: "rollback";
|
|
305
305
|
hotfix: "hotfix";
|
|
306
306
|
}>;
|
|
307
307
|
requiresReason: z.ZodBoolean;
|
|
@@ -347,9 +347,9 @@ export declare const ReleasePipelineVersionsResponseSchema: z.ZodObject<{
|
|
|
347
347
|
}>>;
|
|
348
348
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
349
349
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
350
|
-
blue_green: "blue_green";
|
|
351
|
-
rolling: "rolling";
|
|
352
350
|
canary: "canary";
|
|
351
|
+
rolling: "rolling";
|
|
352
|
+
blue_green: "blue_green";
|
|
353
353
|
}>>;
|
|
354
354
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
355
355
|
}, z.core.$strict>;
|
|
@@ -384,9 +384,9 @@ export declare const ReleasePipelineVersionsResponseSchema: z.ZodObject<{
|
|
|
384
384
|
fromStageId: z.ZodString;
|
|
385
385
|
toStageId: z.ZodString;
|
|
386
386
|
type: z.ZodEnum<{
|
|
387
|
+
rollback: "rollback";
|
|
387
388
|
forward: "forward";
|
|
388
389
|
skip: "skip";
|
|
389
|
-
rollback: "rollback";
|
|
390
390
|
hotfix: "hotfix";
|
|
391
391
|
}>;
|
|
392
392
|
requiresReason: z.ZodBoolean;
|
|
@@ -436,9 +436,9 @@ export declare const ReleaseStageStateResponseSchema: z.ZodObject<{
|
|
|
436
436
|
}>>;
|
|
437
437
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
438
438
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
439
|
-
blue_green: "blue_green";
|
|
440
|
-
rolling: "rolling";
|
|
441
439
|
canary: "canary";
|
|
440
|
+
rolling: "rolling";
|
|
441
|
+
blue_green: "blue_green";
|
|
442
442
|
}>>;
|
|
443
443
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
444
444
|
}, z.core.$strict>;
|
|
@@ -469,9 +469,9 @@ export declare const ReleaseStageStateResponseSchema: z.ZodObject<{
|
|
|
469
469
|
availableTransitions: z.ZodArray<z.ZodObject<{
|
|
470
470
|
transitionId: z.ZodString;
|
|
471
471
|
type: z.ZodEnum<{
|
|
472
|
+
rollback: "rollback";
|
|
472
473
|
forward: "forward";
|
|
473
474
|
skip: "skip";
|
|
474
|
-
rollback: "rollback";
|
|
475
475
|
hotfix: "hotfix";
|
|
476
476
|
}>;
|
|
477
477
|
requiresReason: z.ZodBoolean;
|
|
@@ -497,9 +497,9 @@ export declare const ReleaseStageStateResponseSchema: z.ZodObject<{
|
|
|
497
497
|
}>>;
|
|
498
498
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
499
499
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
500
|
-
blue_green: "blue_green";
|
|
501
|
-
rolling: "rolling";
|
|
502
500
|
canary: "canary";
|
|
501
|
+
rolling: "rolling";
|
|
502
|
+
blue_green: "blue_green";
|
|
503
503
|
}>>;
|
|
504
504
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
505
505
|
}, z.core.$strict>;
|
|
@@ -82,6 +82,14 @@ export declare const ServiceAccountSchema: z.ZodObject<{
|
|
|
82
82
|
export declare const ServiceAccountResponseSchema: z.ZodObject<{
|
|
83
83
|
id: z.ZodString;
|
|
84
84
|
name: z.ZodString;
|
|
85
|
+
status: z.ZodEnum<{
|
|
86
|
+
active: "active";
|
|
87
|
+
inactive: "inactive";
|
|
88
|
+
deleted: "deleted";
|
|
89
|
+
suspended: "suspended";
|
|
90
|
+
}>;
|
|
91
|
+
description: z.ZodNullable<z.ZodString>;
|
|
92
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
85
93
|
role: z.ZodEnum<{
|
|
86
94
|
admin: "admin";
|
|
87
95
|
viewer: "viewer";
|
|
@@ -91,14 +99,6 @@ export declare const ServiceAccountResponseSchema: z.ZodObject<{
|
|
|
91
99
|
createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodString]>;
|
|
92
100
|
updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodString]>;
|
|
93
101
|
createdBy: z.ZodString;
|
|
94
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
95
|
-
status: z.ZodEnum<{
|
|
96
|
-
active: "active";
|
|
97
|
-
inactive: "inactive";
|
|
98
|
-
deleted: "deleted";
|
|
99
|
-
suspended: "suspended";
|
|
100
|
-
}>;
|
|
101
|
-
description: z.ZodNullable<z.ZodString>;
|
|
102
102
|
organizationId: z.ZodString;
|
|
103
103
|
lastActivityAt: z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodString]>>;
|
|
104
104
|
apiKeyCount: z.ZodNumber;
|
|
@@ -27,6 +27,14 @@ export declare const ServiceAccountListResponseSchema: z.ZodObject<{
|
|
|
27
27
|
data: z.ZodArray<z.ZodObject<{
|
|
28
28
|
id: z.ZodString;
|
|
29
29
|
name: z.ZodString;
|
|
30
|
+
status: z.ZodEnum<{
|
|
31
|
+
active: "active";
|
|
32
|
+
inactive: "inactive";
|
|
33
|
+
deleted: "deleted";
|
|
34
|
+
suspended: "suspended";
|
|
35
|
+
}>;
|
|
36
|
+
description: z.ZodNullable<z.ZodString>;
|
|
37
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
30
38
|
role: z.ZodEnum<{
|
|
31
39
|
admin: "admin";
|
|
32
40
|
viewer: "viewer";
|
|
@@ -36,14 +44,6 @@ export declare const ServiceAccountListResponseSchema: z.ZodObject<{
|
|
|
36
44
|
createdAt: z.ZodUnion<readonly [z.ZodDate, z.ZodString]>;
|
|
37
45
|
updatedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodString]>;
|
|
38
46
|
createdBy: z.ZodString;
|
|
39
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40
|
-
status: z.ZodEnum<{
|
|
41
|
-
active: "active";
|
|
42
|
-
inactive: "inactive";
|
|
43
|
-
deleted: "deleted";
|
|
44
|
-
suspended: "suspended";
|
|
45
|
-
}>;
|
|
46
|
-
description: z.ZodNullable<z.ZodString>;
|
|
47
47
|
organizationId: z.ZodString;
|
|
48
48
|
lastActivityAt: z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodString]>>;
|
|
49
49
|
apiKeyCount: z.ZodNumber;
|
|
@@ -6,12 +6,12 @@ export declare const SettingResponseSchema: z.ZodObject<{
|
|
|
6
6
|
key: z.ZodString;
|
|
7
7
|
value: z.ZodUnknown;
|
|
8
8
|
scope: z.ZodEnum<{
|
|
9
|
-
org: "org";
|
|
10
9
|
user: "user";
|
|
10
|
+
org: "org";
|
|
11
11
|
}>;
|
|
12
12
|
source: z.ZodEnum<{
|
|
13
|
-
org: "org";
|
|
14
13
|
user: "user";
|
|
14
|
+
org: "org";
|
|
15
15
|
system_default: "system_default";
|
|
16
16
|
}>;
|
|
17
17
|
updatedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -22,12 +22,12 @@ export declare const SettingsListResponseSchema: z.ZodObject<{
|
|
|
22
22
|
key: z.ZodString;
|
|
23
23
|
value: z.ZodUnknown;
|
|
24
24
|
scope: z.ZodEnum<{
|
|
25
|
-
org: "org";
|
|
26
25
|
user: "user";
|
|
26
|
+
org: "org";
|
|
27
27
|
}>;
|
|
28
28
|
source: z.ZodEnum<{
|
|
29
|
-
org: "org";
|
|
30
29
|
user: "user";
|
|
30
|
+
org: "org";
|
|
31
31
|
system_default: "system_default";
|
|
32
32
|
}>;
|
|
33
33
|
updatedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -43,12 +43,12 @@ export declare const CombinedSettingsResponseSchema: z.ZodObject<{
|
|
|
43
43
|
key: z.ZodString;
|
|
44
44
|
value: z.ZodUnknown;
|
|
45
45
|
scope: z.ZodEnum<{
|
|
46
|
-
org: "org";
|
|
47
46
|
user: "user";
|
|
47
|
+
org: "org";
|
|
48
48
|
}>;
|
|
49
49
|
source: z.ZodEnum<{
|
|
50
|
-
org: "org";
|
|
51
50
|
user: "user";
|
|
51
|
+
org: "org";
|
|
52
52
|
system_default: "system_default";
|
|
53
53
|
}>;
|
|
54
54
|
updatedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -58,12 +58,12 @@ export declare const CombinedSettingsResponseSchema: z.ZodObject<{
|
|
|
58
58
|
key: z.ZodString;
|
|
59
59
|
value: z.ZodUnknown;
|
|
60
60
|
scope: z.ZodEnum<{
|
|
61
|
-
org: "org";
|
|
62
61
|
user: "user";
|
|
62
|
+
org: "org";
|
|
63
63
|
}>;
|
|
64
64
|
source: z.ZodEnum<{
|
|
65
|
-
org: "org";
|
|
66
65
|
user: "user";
|
|
66
|
+
org: "org";
|
|
67
67
|
system_default: "system_default";
|
|
68
68
|
}>;
|
|
69
69
|
updatedAt: z.ZodNullable<z.ZodString>;
|
|
@@ -92,8 +92,8 @@ export type BulkUpsertResponse = z.infer<typeof BulkUpsertResponseSchema>;
|
|
|
92
92
|
export declare const SettingsRegistryItemSchema: z.ZodObject<{
|
|
93
93
|
key: z.ZodString;
|
|
94
94
|
scope: z.ZodEnum<{
|
|
95
|
-
org: "org";
|
|
96
95
|
user: "user";
|
|
96
|
+
org: "org";
|
|
97
97
|
}>;
|
|
98
98
|
type: z.ZodEnum<{
|
|
99
99
|
string: "string";
|
|
@@ -119,8 +119,8 @@ export declare const SettingsRegistryResponseSchema: z.ZodObject<{
|
|
|
119
119
|
settings: z.ZodArray<z.ZodObject<{
|
|
120
120
|
key: z.ZodString;
|
|
121
121
|
scope: z.ZodEnum<{
|
|
122
|
-
org: "org";
|
|
123
122
|
user: "user";
|
|
123
|
+
org: "org";
|
|
124
124
|
}>;
|
|
125
125
|
type: z.ZodEnum<{
|
|
126
126
|
string: "string";
|