@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
|
@@ -6,17 +6,17 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
export declare const IntegrationsAuthTypeSchema: z.ZodEnum<{
|
|
9
|
+
none: "none";
|
|
9
10
|
oauth: "oauth";
|
|
10
11
|
credential_form: "credential_form";
|
|
11
|
-
none: "none";
|
|
12
12
|
}>;
|
|
13
13
|
export declare const IntegrationsCredentialInputFieldSchema: z.ZodObject<{
|
|
14
14
|
key: z.ZodString;
|
|
15
15
|
label: z.ZodString;
|
|
16
16
|
type: z.ZodEnum<{
|
|
17
17
|
url: "url";
|
|
18
|
-
text: "text";
|
|
19
18
|
password: "password";
|
|
19
|
+
text: "text";
|
|
20
20
|
select: "select";
|
|
21
21
|
textarea: "textarea";
|
|
22
22
|
copy: "copy";
|
|
@@ -35,22 +35,22 @@ export declare const IntegrationsCredentialInputFieldSchema: z.ZodObject<{
|
|
|
35
35
|
}, z.core.$strip>;
|
|
36
36
|
export declare const IntegrationsClientAuthConfigSchema: z.ZodObject<{
|
|
37
37
|
type: z.ZodOptional<z.ZodEnum<{
|
|
38
|
+
none: "none";
|
|
38
39
|
oauth: "oauth";
|
|
39
40
|
credential_form: "credential_form";
|
|
40
|
-
none: "none";
|
|
41
41
|
}>>;
|
|
42
42
|
types: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
43
|
+
none: "none";
|
|
43
44
|
oauth: "oauth";
|
|
44
45
|
credential_form: "credential_form";
|
|
45
|
-
none: "none";
|
|
46
46
|
}>>>;
|
|
47
47
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
48
48
|
key: z.ZodString;
|
|
49
49
|
label: z.ZodString;
|
|
50
50
|
type: z.ZodEnum<{
|
|
51
51
|
url: "url";
|
|
52
|
-
text: "text";
|
|
53
52
|
password: "password";
|
|
53
|
+
text: "text";
|
|
54
54
|
select: "select";
|
|
55
55
|
textarea: "textarea";
|
|
56
56
|
copy: "copy";
|
|
@@ -46,10 +46,10 @@ export declare const EvaluationScopeSchema: z.ZodEnum<{
|
|
|
46
46
|
* Impact level of a rule outcome, used for conflict resolution.
|
|
47
47
|
*/
|
|
48
48
|
export declare const SeveritySchema: z.ZodEnum<{
|
|
49
|
-
info: "info";
|
|
50
49
|
warning: "warning";
|
|
51
|
-
high: "high";
|
|
52
50
|
critical: "critical";
|
|
51
|
+
high: "high";
|
|
52
|
+
info: "info";
|
|
53
53
|
}>;
|
|
54
54
|
/**
|
|
55
55
|
* Outcome enum
|
|
@@ -100,13 +100,13 @@ export declare const StoreSubmissionStatusSchema: z.ZodEnum<{
|
|
|
100
100
|
*/
|
|
101
101
|
export declare const ComparisonOperatorSchema: z.ZodEnum<{
|
|
102
102
|
in: "in";
|
|
103
|
-
regex: "regex";
|
|
104
|
-
eq: "eq";
|
|
105
|
-
neq: "neq";
|
|
106
|
-
gt: "gt";
|
|
107
|
-
gte: "gte";
|
|
108
103
|
lt: "lt";
|
|
104
|
+
gt: "gt";
|
|
109
105
|
lte: "lte";
|
|
106
|
+
gte: "gte";
|
|
107
|
+
eq: "eq";
|
|
108
|
+
regex: "regex";
|
|
109
|
+
neq: "neq";
|
|
110
110
|
nin: "nin";
|
|
111
111
|
contains: "contains";
|
|
112
112
|
}>;
|
|
@@ -155,13 +155,13 @@ export declare const LeafConditionSchema: z.ZodObject<{
|
|
|
155
155
|
field: z.ZodString;
|
|
156
156
|
operator: z.ZodEnum<{
|
|
157
157
|
in: "in";
|
|
158
|
-
regex: "regex";
|
|
159
|
-
eq: "eq";
|
|
160
|
-
neq: "neq";
|
|
161
|
-
gt: "gt";
|
|
162
|
-
gte: "gte";
|
|
163
158
|
lt: "lt";
|
|
159
|
+
gt: "gt";
|
|
164
160
|
lte: "lte";
|
|
161
|
+
gte: "gte";
|
|
162
|
+
eq: "eq";
|
|
163
|
+
regex: "regex";
|
|
164
|
+
neq: "neq";
|
|
165
165
|
nin: "nin";
|
|
166
166
|
contains: "contains";
|
|
167
167
|
}>;
|
|
@@ -255,10 +255,10 @@ export declare const PolicyRuleTemplateSchema: z.ZodObject<{
|
|
|
255
255
|
description: z.ZodNullable<z.ZodString>;
|
|
256
256
|
conditionTemplate: z.ZodType<Condition, unknown, z.core.$ZodTypeInternals<Condition, unknown>>;
|
|
257
257
|
defaultSeverity: z.ZodEnum<{
|
|
258
|
-
info: "info";
|
|
259
258
|
warning: "warning";
|
|
260
|
-
high: "high";
|
|
261
259
|
critical: "critical";
|
|
260
|
+
high: "high";
|
|
261
|
+
info: "info";
|
|
262
262
|
}>;
|
|
263
263
|
defaultOutcome: z.ZodEnum<{
|
|
264
264
|
fail: "fail";
|
|
@@ -303,10 +303,10 @@ export declare const PolicyRuleSchema: z.ZodObject<{
|
|
|
303
303
|
evaluationWindow: z.ZodNullable<z.ZodNumber>;
|
|
304
304
|
lookbackDays: z.ZodNullable<z.ZodNumber>;
|
|
305
305
|
severity: z.ZodEnum<{
|
|
306
|
-
info: "info";
|
|
307
306
|
warning: "warning";
|
|
308
|
-
high: "high";
|
|
309
307
|
critical: "critical";
|
|
308
|
+
high: "high";
|
|
309
|
+
info: "info";
|
|
310
310
|
}>;
|
|
311
311
|
outcome: z.ZodEnum<{
|
|
312
312
|
fail: "fail";
|
|
@@ -375,10 +375,10 @@ export declare const PolicyEvaluationAuditSchema: z.ZodObject<{
|
|
|
375
375
|
blocked: "blocked";
|
|
376
376
|
}>;
|
|
377
377
|
highestSeverity: z.ZodNullable<z.ZodEnum<{
|
|
378
|
-
info: "info";
|
|
379
378
|
warning: "warning";
|
|
380
|
-
high: "high";
|
|
381
379
|
critical: "critical";
|
|
380
|
+
high: "high";
|
|
381
|
+
info: "info";
|
|
382
382
|
}>>;
|
|
383
383
|
rulesEvaluated: z.ZodNumber;
|
|
384
384
|
rulesPassed: z.ZodNumber;
|
|
@@ -18,10 +18,10 @@ export declare const CreateRuleRequestSchema: z.ZodObject<{
|
|
|
18
18
|
platformId: z.ZodString;
|
|
19
19
|
policyVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
severity: z.ZodEnum<{
|
|
21
|
-
info: "info";
|
|
22
21
|
warning: "warning";
|
|
23
|
-
high: "high";
|
|
24
22
|
critical: "critical";
|
|
23
|
+
high: "high";
|
|
24
|
+
info: "info";
|
|
25
25
|
}>;
|
|
26
26
|
outcome: z.ZodEnum<{
|
|
27
27
|
fail: "fail";
|
|
@@ -66,10 +66,10 @@ export declare const UpdateRuleRequestSchema: z.ZodObject<{
|
|
|
66
66
|
condition: z.ZodOptional<z.ZodType<import("./domain.schema.js").Condition, unknown, z.core.$ZodTypeInternals<import("./domain.schema.js").Condition, unknown>>>;
|
|
67
67
|
policyVersionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
68
|
severity: z.ZodOptional<z.ZodEnum<{
|
|
69
|
-
info: "info";
|
|
70
69
|
warning: "warning";
|
|
71
|
-
high: "high";
|
|
72
70
|
critical: "critical";
|
|
71
|
+
high: "high";
|
|
72
|
+
info: "info";
|
|
73
73
|
}>>;
|
|
74
74
|
outcome: z.ZodOptional<z.ZodEnum<{
|
|
75
75
|
fail: "fail";
|
|
@@ -166,10 +166,10 @@ export declare const SerializedRuleSchema: z.ZodObject<{
|
|
|
166
166
|
historical: "historical";
|
|
167
167
|
}>;
|
|
168
168
|
severity: z.ZodEnum<{
|
|
169
|
-
info: "info";
|
|
170
169
|
warning: "warning";
|
|
171
|
-
high: "high";
|
|
172
170
|
critical: "critical";
|
|
171
|
+
high: "high";
|
|
172
|
+
info: "info";
|
|
173
173
|
}>;
|
|
174
174
|
outcome: z.ZodEnum<{
|
|
175
175
|
fail: "fail";
|
|
@@ -209,10 +209,10 @@ export declare const RuleImportRequestSchema: z.ZodObject<{
|
|
|
209
209
|
historical: "historical";
|
|
210
210
|
}>;
|
|
211
211
|
severity: z.ZodEnum<{
|
|
212
|
-
info: "info";
|
|
213
212
|
warning: "warning";
|
|
214
|
-
high: "high";
|
|
215
213
|
critical: "critical";
|
|
214
|
+
high: "high";
|
|
215
|
+
info: "info";
|
|
216
216
|
}>;
|
|
217
217
|
outcome: z.ZodEnum<{
|
|
218
218
|
fail: "fail";
|
|
@@ -20,10 +20,10 @@ export declare const RuleEvaluationResultSchema: z.ZodObject<{
|
|
|
20
20
|
warn: "warn";
|
|
21
21
|
}>;
|
|
22
22
|
severity: z.ZodEnum<{
|
|
23
|
-
info: "info";
|
|
24
23
|
warning: "warning";
|
|
25
|
-
high: "high";
|
|
26
24
|
critical: "critical";
|
|
25
|
+
high: "high";
|
|
26
|
+
info: "info";
|
|
27
27
|
}>;
|
|
28
28
|
storeImpact: z.ZodEnum<{
|
|
29
29
|
allowed: "allowed";
|
|
@@ -66,10 +66,10 @@ export declare const AggregateEvaluationResultSchema: z.ZodObject<{
|
|
|
66
66
|
blocked: "blocked";
|
|
67
67
|
}>;
|
|
68
68
|
highestSeverity: z.ZodNullable<z.ZodEnum<{
|
|
69
|
-
info: "info";
|
|
70
69
|
warning: "warning";
|
|
71
|
-
high: "high";
|
|
72
70
|
critical: "critical";
|
|
71
|
+
high: "high";
|
|
72
|
+
info: "info";
|
|
73
73
|
}>>;
|
|
74
74
|
counts: z.ZodObject<{
|
|
75
75
|
total: z.ZodNumber;
|
|
@@ -89,10 +89,10 @@ export declare const AggregateEvaluationResultSchema: z.ZodObject<{
|
|
|
89
89
|
warn: "warn";
|
|
90
90
|
}>;
|
|
91
91
|
severity: z.ZodEnum<{
|
|
92
|
-
info: "info";
|
|
93
92
|
warning: "warning";
|
|
94
|
-
high: "high";
|
|
95
93
|
critical: "critical";
|
|
94
|
+
high: "high";
|
|
95
|
+
info: "info";
|
|
96
96
|
}>;
|
|
97
97
|
storeImpact: z.ZodEnum<{
|
|
98
98
|
allowed: "allowed";
|
|
@@ -120,10 +120,10 @@ export declare const AggregateEvaluationResultSchema: z.ZodObject<{
|
|
|
120
120
|
warn: "warn";
|
|
121
121
|
}>;
|
|
122
122
|
severity: z.ZodEnum<{
|
|
123
|
-
info: "info";
|
|
124
123
|
warning: "warning";
|
|
125
|
-
high: "high";
|
|
126
124
|
critical: "critical";
|
|
125
|
+
high: "high";
|
|
126
|
+
info: "info";
|
|
127
127
|
}>;
|
|
128
128
|
storeImpact: z.ZodEnum<{
|
|
129
129
|
allowed: "allowed";
|
|
@@ -208,10 +208,10 @@ export declare const ExportResultSchema: z.ZodObject<{
|
|
|
208
208
|
historical: "historical";
|
|
209
209
|
}>;
|
|
210
210
|
severity: z.ZodEnum<{
|
|
211
|
-
info: "info";
|
|
212
211
|
warning: "warning";
|
|
213
|
-
high: "high";
|
|
214
212
|
critical: "critical";
|
|
213
|
+
high: "high";
|
|
214
|
+
info: "info";
|
|
215
215
|
}>;
|
|
216
216
|
outcome: z.ZodEnum<{
|
|
217
217
|
fail: "fail";
|
|
@@ -295,10 +295,10 @@ export declare const PolicyRuleResponseSchema: z.ZodObject<{
|
|
|
295
295
|
evaluationWindow: z.ZodNullable<z.ZodNumber>;
|
|
296
296
|
lookbackDays: z.ZodNullable<z.ZodNumber>;
|
|
297
297
|
severity: z.ZodEnum<{
|
|
298
|
-
info: "info";
|
|
299
298
|
warning: "warning";
|
|
300
|
-
high: "high";
|
|
301
299
|
critical: "critical";
|
|
300
|
+
high: "high";
|
|
301
|
+
info: "info";
|
|
302
302
|
}>;
|
|
303
303
|
outcome: z.ZodEnum<{
|
|
304
304
|
fail: "fail";
|
|
@@ -349,10 +349,10 @@ export declare const PolicyAuditResponseSchema: z.ZodObject<{
|
|
|
349
349
|
blocked: "blocked";
|
|
350
350
|
}>;
|
|
351
351
|
highestSeverity: z.ZodNullable<z.ZodEnum<{
|
|
352
|
-
info: "info";
|
|
353
352
|
warning: "warning";
|
|
354
|
-
high: "high";
|
|
355
353
|
critical: "critical";
|
|
354
|
+
high: "high";
|
|
355
|
+
info: "info";
|
|
356
356
|
}>>;
|
|
357
357
|
rulesEvaluated: z.ZodNumber;
|
|
358
358
|
rulesPassed: z.ZodNumber;
|
|
@@ -435,10 +435,10 @@ export declare const PolicyRuleListResponseSchema: z.ZodObject<{
|
|
|
435
435
|
evaluationWindow: z.ZodNullable<z.ZodNumber>;
|
|
436
436
|
lookbackDays: z.ZodNullable<z.ZodNumber>;
|
|
437
437
|
severity: z.ZodEnum<{
|
|
438
|
-
info: "info";
|
|
439
438
|
warning: "warning";
|
|
440
|
-
high: "high";
|
|
441
439
|
critical: "critical";
|
|
440
|
+
high: "high";
|
|
441
|
+
info: "info";
|
|
442
442
|
}>;
|
|
443
443
|
outcome: z.ZodEnum<{
|
|
444
444
|
fail: "fail";
|
|
@@ -491,10 +491,10 @@ export declare const PolicyAuditListResponseSchema: z.ZodObject<{
|
|
|
491
491
|
blocked: "blocked";
|
|
492
492
|
}>;
|
|
493
493
|
highestSeverity: z.ZodNullable<z.ZodEnum<{
|
|
494
|
-
info: "info";
|
|
495
494
|
warning: "warning";
|
|
496
|
-
high: "high";
|
|
497
495
|
critical: "critical";
|
|
496
|
+
high: "high";
|
|
497
|
+
info: "info";
|
|
498
498
|
}>>;
|
|
499
499
|
rulesEvaluated: z.ZodNumber;
|
|
500
500
|
rulesPassed: z.ZodNumber;
|
|
@@ -44,9 +44,9 @@ export declare const ReleasePipelineGateFailModeSchema: z.ZodEnum<{
|
|
|
44
44
|
* Release pipeline transition type schema
|
|
45
45
|
*/
|
|
46
46
|
export declare const ReleasePipelineTransitionTypeSchema: z.ZodEnum<{
|
|
47
|
+
rollback: "rollback";
|
|
47
48
|
forward: "forward";
|
|
48
49
|
skip: "skip";
|
|
49
|
-
rollback: "rollback";
|
|
50
50
|
hotfix: "hotfix";
|
|
51
51
|
}>;
|
|
52
52
|
/**
|
|
@@ -67,9 +67,9 @@ export declare const ReleasePipelineStageRolloutConfigSchema: z.ZodObject<{
|
|
|
67
67
|
}>>;
|
|
68
68
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
69
69
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
70
|
-
blue_green: "blue_green";
|
|
71
|
-
rolling: "rolling";
|
|
72
70
|
canary: "canary";
|
|
71
|
+
rolling: "rolling";
|
|
72
|
+
blue_green: "blue_green";
|
|
73
73
|
}>>;
|
|
74
74
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
75
75
|
}, z.core.$strict>;
|
|
@@ -132,10 +132,10 @@ export declare const ReleasePipelineApprovalGateConfigSchema: z.ZodObject<{
|
|
|
132
132
|
}, z.core.$strict>>;
|
|
133
133
|
}, z.core.$strict>>;
|
|
134
134
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
135
|
+
critical: "critical";
|
|
135
136
|
low: "low";
|
|
136
137
|
medium: "medium";
|
|
137
138
|
high: "high";
|
|
138
|
-
critical: "critical";
|
|
139
139
|
}>>;
|
|
140
140
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
141
141
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -186,10 +186,10 @@ export declare const ReleasePipelineApprovalGateConfigInputSchema: z.ZodUnion<re
|
|
|
186
186
|
}, z.core.$strict>>;
|
|
187
187
|
}, z.core.$strict>>;
|
|
188
188
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
189
|
+
critical: "critical";
|
|
189
190
|
low: "low";
|
|
190
191
|
medium: "medium";
|
|
191
192
|
high: "high";
|
|
192
|
-
critical: "critical";
|
|
193
193
|
}>>;
|
|
194
194
|
expiresInSeconds: z.ZodOptional<z.ZodNumber>;
|
|
195
195
|
reason: z.ZodOptional<z.ZodString>;
|
|
@@ -240,9 +240,9 @@ export declare const ReleasePipelineStageSchema: z.ZodObject<{
|
|
|
240
240
|
}>>;
|
|
241
241
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
242
242
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
243
|
-
blue_green: "blue_green";
|
|
244
|
-
rolling: "rolling";
|
|
245
243
|
canary: "canary";
|
|
244
|
+
rolling: "rolling";
|
|
245
|
+
blue_green: "blue_green";
|
|
246
246
|
}>>;
|
|
247
247
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
248
248
|
}, z.core.$strict>;
|
|
@@ -280,9 +280,9 @@ export declare const ReleasePipelineTransitionSchema: z.ZodObject<{
|
|
|
280
280
|
fromStageId: z.ZodString;
|
|
281
281
|
toStageId: z.ZodString;
|
|
282
282
|
type: z.ZodEnum<{
|
|
283
|
+
rollback: "rollback";
|
|
283
284
|
forward: "forward";
|
|
284
285
|
skip: "skip";
|
|
285
|
-
rollback: "rollback";
|
|
286
286
|
hotfix: "hotfix";
|
|
287
287
|
}>;
|
|
288
288
|
requiresReason: z.ZodBoolean;
|
|
@@ -329,9 +329,9 @@ export declare const ReleasePipelineSchema: z.ZodObject<{
|
|
|
329
329
|
}>>;
|
|
330
330
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
331
331
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
332
|
-
blue_green: "blue_green";
|
|
333
|
-
rolling: "rolling";
|
|
334
332
|
canary: "canary";
|
|
333
|
+
rolling: "rolling";
|
|
334
|
+
blue_green: "blue_green";
|
|
335
335
|
}>>;
|
|
336
336
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
337
337
|
}, z.core.$strict>;
|
|
@@ -366,9 +366,9 @@ export declare const ReleasePipelineSchema: z.ZodObject<{
|
|
|
366
366
|
fromStageId: z.ZodString;
|
|
367
367
|
toStageId: z.ZodString;
|
|
368
368
|
type: z.ZodEnum<{
|
|
369
|
+
rollback: "rollback";
|
|
369
370
|
forward: "forward";
|
|
370
371
|
skip: "skip";
|
|
371
|
-
rollback: "rollback";
|
|
372
372
|
hotfix: "hotfix";
|
|
373
373
|
}>;
|
|
374
374
|
requiresReason: z.ZodBoolean;
|
|
@@ -412,9 +412,9 @@ export declare const ReleasePipelineVersionHistoryEntrySchema: z.ZodObject<{
|
|
|
412
412
|
}>>;
|
|
413
413
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
414
414
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
415
|
-
blue_green: "blue_green";
|
|
416
|
-
rolling: "rolling";
|
|
417
415
|
canary: "canary";
|
|
416
|
+
rolling: "rolling";
|
|
417
|
+
blue_green: "blue_green";
|
|
418
418
|
}>>;
|
|
419
419
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
420
420
|
}, z.core.$strict>;
|
|
@@ -449,9 +449,9 @@ export declare const ReleasePipelineVersionHistoryEntrySchema: z.ZodObject<{
|
|
|
449
449
|
fromStageId: z.ZodString;
|
|
450
450
|
toStageId: z.ZodString;
|
|
451
451
|
type: z.ZodEnum<{
|
|
452
|
+
rollback: "rollback";
|
|
452
453
|
forward: "forward";
|
|
453
454
|
skip: "skip";
|
|
454
|
-
rollback: "rollback";
|
|
455
455
|
hotfix: "hotfix";
|
|
456
456
|
}>;
|
|
457
457
|
requiresReason: z.ZodBoolean;
|
|
@@ -489,9 +489,9 @@ export declare const ReleaseStageGateStatusSchema: z.ZodObject<{
|
|
|
489
489
|
export declare const ReleaseStageAvailableTransitionSchema: z.ZodObject<{
|
|
490
490
|
transitionId: z.ZodString;
|
|
491
491
|
type: z.ZodEnum<{
|
|
492
|
+
rollback: "rollback";
|
|
492
493
|
forward: "forward";
|
|
493
494
|
skip: "skip";
|
|
494
|
-
rollback: "rollback";
|
|
495
495
|
hotfix: "hotfix";
|
|
496
496
|
}>;
|
|
497
497
|
requiresReason: z.ZodBoolean;
|
|
@@ -517,9 +517,9 @@ export declare const ReleaseStageAvailableTransitionSchema: z.ZodObject<{
|
|
|
517
517
|
}>>;
|
|
518
518
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
519
519
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
520
|
-
blue_green: "blue_green";
|
|
521
|
-
rolling: "rolling";
|
|
522
520
|
canary: "canary";
|
|
521
|
+
rolling: "rolling";
|
|
522
|
+
blue_green: "blue_green";
|
|
523
523
|
}>>;
|
|
524
524
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
525
525
|
}, z.core.$strict>;
|
|
@@ -599,9 +599,9 @@ export declare const ReleaseStageStateSchema: z.ZodObject<{
|
|
|
599
599
|
}>>;
|
|
600
600
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
601
601
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
602
|
-
blue_green: "blue_green";
|
|
603
|
-
rolling: "rolling";
|
|
604
602
|
canary: "canary";
|
|
603
|
+
rolling: "rolling";
|
|
604
|
+
blue_green: "blue_green";
|
|
605
605
|
}>>;
|
|
606
606
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
607
607
|
}, z.core.$strict>;
|
|
@@ -632,9 +632,9 @@ export declare const ReleaseStageStateSchema: z.ZodObject<{
|
|
|
632
632
|
availableTransitions: z.ZodArray<z.ZodObject<{
|
|
633
633
|
transitionId: z.ZodString;
|
|
634
634
|
type: z.ZodEnum<{
|
|
635
|
+
rollback: "rollback";
|
|
635
636
|
forward: "forward";
|
|
636
637
|
skip: "skip";
|
|
637
|
-
rollback: "rollback";
|
|
638
638
|
hotfix: "hotfix";
|
|
639
639
|
}>;
|
|
640
640
|
requiresReason: z.ZodBoolean;
|
|
@@ -660,9 +660,9 @@ export declare const ReleaseStageStateSchema: z.ZodObject<{
|
|
|
660
660
|
}>>;
|
|
661
661
|
deploymentTargetIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
662
662
|
deploymentStrategy: z.ZodOptional<z.ZodEnum<{
|
|
663
|
-
blue_green: "blue_green";
|
|
664
|
-
rolling: "rolling";
|
|
665
663
|
canary: "canary";
|
|
664
|
+
rolling: "rolling";
|
|
665
|
+
blue_green: "blue_green";
|
|
666
666
|
}>>;
|
|
667
667
|
requireDeploymentApproval: z.ZodDefault<z.ZodBoolean>;
|
|
668
668
|
}, z.core.$strict>;
|
|
@@ -807,6 +807,7 @@ export declare const ReleaseEventSchema: z.ZodObject<{
|
|
|
807
807
|
id: z.ZodString;
|
|
808
808
|
releaseId: z.ZodString;
|
|
809
809
|
type: z.ZodEnum<{
|
|
810
|
+
note: "note";
|
|
810
811
|
created: "created";
|
|
811
812
|
scheduled: "scheduled";
|
|
812
813
|
failed: "failed";
|
|
@@ -814,7 +815,6 @@ export declare const ReleaseEventSchema: z.ZodObject<{
|
|
|
814
815
|
submitted: "submitted";
|
|
815
816
|
published: "published";
|
|
816
817
|
rolled_back: "rolled_back";
|
|
817
|
-
note: "note";
|
|
818
818
|
changelog_generated: "changelog_generated";
|
|
819
819
|
"pipeline.assigned": "pipeline.assigned";
|
|
820
820
|
"stage.transition.requested": "stage.transition.requested";
|