@apollo-deploy/schemas 0.4.4 → 0.4.5

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.
Files changed (45) hide show
  1. package/dist/definitions/approvals/domain.schema.d.ts +5 -5
  2. package/dist/definitions/approvals/request.schema.d.ts +8 -8
  3. package/dist/definitions/approvals/response.schema.d.ts +6 -6
  4. package/dist/definitions/apps/request.schema.d.ts +2 -2
  5. package/dist/definitions/apps/response.schema.d.ts +6 -6
  6. package/dist/definitions/artifacts/domain.schema.d.ts +2 -2
  7. package/dist/definitions/artifacts/request.schema.d.ts +6 -6
  8. package/dist/definitions/artifacts/response.schema.d.ts +13 -13
  9. package/dist/definitions/audit-log/domain.schema.d.ts +11 -11
  10. package/dist/definitions/audit-log/request.schema.d.ts +17 -17
  11. package/dist/definitions/audit-log/response.schema.d.ts +6 -6
  12. package/dist/definitions/auth/index.d.ts +3 -2
  13. package/dist/definitions/auth/index.d.ts.map +1 -1
  14. package/dist/definitions/auth/index.js +4 -2
  15. package/dist/definitions/auth/index.js.map +1 -1
  16. package/dist/definitions/auth/request.schema.d.ts +361 -0
  17. package/dist/definitions/auth/request.schema.d.ts.map +1 -1
  18. package/dist/definitions/auth/request.schema.js +218 -0
  19. package/dist/definitions/auth/request.schema.js.map +1 -1
  20. package/dist/definitions/auth/response.schema.d.ts +136 -0
  21. package/dist/definitions/auth/response.schema.d.ts.map +1 -1
  22. package/dist/definitions/auth/response.schema.js +111 -0
  23. package/dist/definitions/auth/response.schema.js.map +1 -1
  24. package/dist/definitions/billing/domain.schema.d.ts +6 -6
  25. package/dist/definitions/billing/response.schema.d.ts +5 -5
  26. package/dist/definitions/index.d.ts +1 -1
  27. package/dist/definitions/index.d.ts.map +1 -1
  28. package/dist/definitions/index.js +2 -2
  29. package/dist/definitions/index.js.map +1 -1
  30. package/dist/definitions/integrations/marketplace-request.schema.d.ts +3 -3
  31. package/dist/definitions/integrations/marketplace-response.schema.d.ts +18 -18
  32. package/dist/definitions/policies/request.schema.d.ts +4 -4
  33. package/dist/definitions/releases/domain.schema.d.ts +6 -6
  34. package/dist/definitions/releases/request.schema.d.ts +1 -1
  35. package/dist/definitions/releases/response.schema.d.ts +4 -4
  36. package/dist/definitions/service-accounts/domain.schema.d.ts +1 -1
  37. package/dist/definitions/service-accounts/response.schema.d.ts +1 -1
  38. package/dist/definitions/settings/domain.schema.d.ts +5 -5
  39. package/dist/definitions/settings/response.schema.d.ts +8 -8
  40. package/dist/definitions/webhooks/domain.schema.d.ts +4 -4
  41. package/dist/definitions/webhooks/request.schema.d.ts +1 -1
  42. package/dist/definitions/webhooks/response.schema.d.ts +5 -5
  43. package/dist/definitions/workflows/domain.schema.d.ts +3 -3
  44. package/dist/definitions/workflows/response.schema.d.ts +1 -1
  45. package/package.json +1 -1
@@ -68,6 +68,7 @@ export declare const ApprovalRiskLevelSchema: z.ZodEnum<{
68
68
  critical: "critical";
69
69
  }>;
70
70
  export declare const ApprovalReasonCodeSchema: z.ZodEnum<{
71
+ other: "other";
71
72
  policy_violation: "policy_violation";
72
73
  security_risk: "security_risk";
73
74
  compliance_requirement: "compliance_requirement";
@@ -85,7 +86,6 @@ export declare const ApprovalReasonCodeSchema: z.ZodEnum<{
85
86
  requester_canceled: "requester_canceled";
86
87
  scope_changed: "scope_changed";
87
88
  temporary_access: "temporary_access";
88
- other: "other";
89
89
  }>;
90
90
  export declare const ApprovalLinksSchema: z.ZodDefault<z.ZodArray<z.ZodString>>;
91
91
  export declare const ApprovalDecisionConstraintsSchema: z.ZodObject<{
@@ -261,6 +261,7 @@ export declare const ApprovalDecisionResponseSchema: z.ZodObject<{
261
261
  }>;
262
262
  reason: z.ZodNullable<z.ZodString>;
263
263
  reasonCode: z.ZodNullable<z.ZodEnum<{
264
+ other: "other";
264
265
  policy_violation: "policy_violation";
265
266
  security_risk: "security_risk";
266
267
  compliance_requirement: "compliance_requirement";
@@ -278,7 +279,6 @@ export declare const ApprovalDecisionResponseSchema: z.ZodObject<{
278
279
  requester_canceled: "requester_canceled";
279
280
  scope_changed: "scope_changed";
280
281
  temporary_access: "temporary_access";
281
- other: "other";
282
282
  }>>;
283
283
  links: z.ZodDefault<z.ZodArray<z.ZodString>>;
284
284
  stepKey: z.ZodNullable<z.ZodString>;
@@ -292,6 +292,7 @@ export declare const ApprovalOverrideResponseSchema: z.ZodObject<{
292
292
  actorUserId: z.ZodString;
293
293
  reason: z.ZodString;
294
294
  reasonCode: z.ZodNullable<z.ZodEnum<{
295
+ other: "other";
295
296
  policy_violation: "policy_violation";
296
297
  security_risk: "security_risk";
297
298
  compliance_requirement: "compliance_requirement";
@@ -309,7 +310,6 @@ export declare const ApprovalOverrideResponseSchema: z.ZodObject<{
309
310
  requester_canceled: "requester_canceled";
310
311
  scope_changed: "scope_changed";
311
312
  temporary_access: "temporary_access";
312
- other: "other";
313
313
  }>>;
314
314
  links: z.ZodDefault<z.ZodArray<z.ZodString>>;
315
315
  createdAt: z.ZodString;
@@ -386,15 +386,15 @@ export declare const ApprovalGrantResponseSchema: z.ZodObject<{
386
386
  }>>;
387
387
  }, z.core.$strict>;
388
388
  export declare const ApprovalTemplateScopeSchema: z.ZodEnum<{
389
- system: "system";
390
389
  organization: "organization";
390
+ system: "system";
391
391
  }>;
392
392
  export declare const ApprovalTemplateResponseSchema: z.ZodObject<{
393
393
  id: z.ZodString;
394
394
  orgId: z.ZodNullable<z.ZodString>;
395
395
  scope: z.ZodEnum<{
396
- system: "system";
397
396
  organization: "organization";
397
+ system: "system";
398
398
  }>;
399
399
  name: z.ZodString;
400
400
  description: z.ZodNullable<z.ZodString>;
@@ -92,6 +92,7 @@ export declare const RecordApprovalDecisionSchema: z.ZodObject<{
92
92
  reject: "reject";
93
93
  }>;
94
94
  reasonCode: z.ZodOptional<z.ZodEnum<{
95
+ other: "other";
95
96
  policy_violation: "policy_violation";
96
97
  security_risk: "security_risk";
97
98
  compliance_requirement: "compliance_requirement";
@@ -109,7 +110,6 @@ export declare const RecordApprovalDecisionSchema: z.ZodObject<{
109
110
  requester_canceled: "requester_canceled";
110
111
  scope_changed: "scope_changed";
111
112
  temporary_access: "temporary_access";
112
- other: "other";
113
113
  }>>;
114
114
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
115
115
  reason: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
@@ -119,6 +119,7 @@ export declare const RecordApprovalDecisionSchema: z.ZodObject<{
119
119
  }, z.core.$strict>;
120
120
  export declare const CancelApprovalRequestSchema: z.ZodObject<{
121
121
  reasonCode: z.ZodEnum<{
122
+ other: "other";
122
123
  policy_violation: "policy_violation";
123
124
  security_risk: "security_risk";
124
125
  compliance_requirement: "compliance_requirement";
@@ -136,13 +137,13 @@ export declare const CancelApprovalRequestSchema: z.ZodObject<{
136
137
  requester_canceled: "requester_canceled";
137
138
  scope_changed: "scope_changed";
138
139
  temporary_access: "temporary_access";
139
- other: "other";
140
140
  }>;
141
141
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
142
142
  links: z.ZodDefault<z.ZodDefault<z.ZodArray<z.ZodString>>>;
143
143
  }, z.core.$strict>;
144
144
  export declare const RefreshApprovalRequestSchema: z.ZodObject<{
145
145
  reasonCode: z.ZodEnum<{
146
+ other: "other";
146
147
  policy_violation: "policy_violation";
147
148
  security_risk: "security_risk";
148
149
  compliance_requirement: "compliance_requirement";
@@ -160,7 +161,6 @@ export declare const RefreshApprovalRequestSchema: z.ZodObject<{
160
161
  requester_canceled: "requester_canceled";
161
162
  scope_changed: "scope_changed";
162
163
  temporary_access: "temporary_access";
163
- other: "other";
164
164
  }>;
165
165
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
166
166
  links: z.ZodDefault<z.ZodDefault<z.ZodArray<z.ZodString>>>;
@@ -168,6 +168,7 @@ export declare const RefreshApprovalRequestSchema: z.ZodObject<{
168
168
  }, z.core.$strict>;
169
169
  export declare const RevokeApprovalGrantSchema: z.ZodObject<{
170
170
  reasonCode: z.ZodEnum<{
171
+ other: "other";
171
172
  policy_violation: "policy_violation";
172
173
  security_risk: "security_risk";
173
174
  compliance_requirement: "compliance_requirement";
@@ -185,13 +186,13 @@ export declare const RevokeApprovalGrantSchema: z.ZodObject<{
185
186
  requester_canceled: "requester_canceled";
186
187
  scope_changed: "scope_changed";
187
188
  temporary_access: "temporary_access";
188
- other: "other";
189
189
  }>;
190
190
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
191
191
  links: z.ZodDefault<z.ZodDefault<z.ZodArray<z.ZodString>>>;
192
192
  }, z.core.$strict>;
193
193
  export declare const ExtendApprovalGrantSchema: z.ZodObject<{
194
194
  reasonCode: z.ZodEnum<{
195
+ other: "other";
195
196
  policy_violation: "policy_violation";
196
197
  security_risk: "security_risk";
197
198
  compliance_requirement: "compliance_requirement";
@@ -209,7 +210,6 @@ export declare const ExtendApprovalGrantSchema: z.ZodObject<{
209
210
  requester_canceled: "requester_canceled";
210
211
  scope_changed: "scope_changed";
211
212
  temporary_access: "temporary_access";
212
- other: "other";
213
213
  }>;
214
214
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
215
215
  links: z.ZodDefault<z.ZodDefault<z.ZodArray<z.ZodString>>>;
@@ -298,8 +298,8 @@ export declare const CreateApprovalTemplateSchema: z.ZodObject<{
298
298
  name: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
299
299
  description: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
300
300
  scope: z.ZodDefault<z.ZodEnum<{
301
- system: "system";
302
301
  organization: "organization";
302
+ system: "system";
303
303
  }>>;
304
304
  actionType: z.ZodEnum<{
305
305
  "release.submit": "release.submit";
@@ -418,6 +418,7 @@ export declare const UpdateApprovalTemplateSchema: z.ZodObject<{
418
418
  }, z.core.$strict>;
419
419
  export declare const ArchiveApprovalTemplateSchema: z.ZodObject<{
420
420
  reasonCode: z.ZodOptional<z.ZodEnum<{
421
+ other: "other";
421
422
  policy_violation: "policy_violation";
422
423
  security_risk: "security_risk";
423
424
  compliance_requirement: "compliance_requirement";
@@ -435,14 +436,13 @@ export declare const ArchiveApprovalTemplateSchema: z.ZodObject<{
435
436
  requester_canceled: "requester_canceled";
436
437
  scope_changed: "scope_changed";
437
438
  temporary_access: "temporary_access";
438
- other: "other";
439
439
  }>>;
440
440
  comment: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>>;
441
441
  }, z.core.$strict>;
442
442
  export declare const ListApprovalTemplatesQuerySchema: z.ZodObject<{
443
443
  scope: z.ZodOptional<z.ZodEnum<{
444
- system: "system";
445
444
  organization: "organization";
445
+ system: "system";
446
446
  }>>;
447
447
  actionType: z.ZodOptional<z.ZodEnum<{
448
448
  "release.submit": "release.submit";
@@ -91,6 +91,7 @@ export declare const ApprovalRequestWithDetailsResponseSchema: z.ZodObject<{
91
91
  }>;
92
92
  reason: z.ZodNullable<z.ZodString>;
93
93
  reasonCode: z.ZodNullable<z.ZodEnum<{
94
+ other: "other";
94
95
  policy_violation: "policy_violation";
95
96
  security_risk: "security_risk";
96
97
  compliance_requirement: "compliance_requirement";
@@ -108,7 +109,6 @@ export declare const ApprovalRequestWithDetailsResponseSchema: z.ZodObject<{
108
109
  requester_canceled: "requester_canceled";
109
110
  scope_changed: "scope_changed";
110
111
  temporary_access: "temporary_access";
111
- other: "other";
112
112
  }>>;
113
113
  links: z.ZodDefault<z.ZodArray<z.ZodString>>;
114
114
  stepKey: z.ZodNullable<z.ZodString>;
@@ -122,6 +122,7 @@ export declare const ApprovalRequestWithDetailsResponseSchema: z.ZodObject<{
122
122
  actorUserId: z.ZodString;
123
123
  reason: z.ZodString;
124
124
  reasonCode: z.ZodNullable<z.ZodEnum<{
125
+ other: "other";
125
126
  policy_violation: "policy_violation";
126
127
  security_risk: "security_risk";
127
128
  compliance_requirement: "compliance_requirement";
@@ -139,7 +140,6 @@ export declare const ApprovalRequestWithDetailsResponseSchema: z.ZodObject<{
139
140
  requester_canceled: "requester_canceled";
140
141
  scope_changed: "scope_changed";
141
142
  temporary_access: "temporary_access";
142
- other: "other";
143
143
  }>>;
144
144
  links: z.ZodDefault<z.ZodArray<z.ZodString>>;
145
145
  createdAt: z.ZodString;
@@ -725,8 +725,8 @@ export declare const ListApprovalTemplatesResponseSchema: z.ZodObject<{
725
725
  id: z.ZodString;
726
726
  orgId: z.ZodNullable<z.ZodString>;
727
727
  scope: z.ZodEnum<{
728
- system: "system";
729
728
  organization: "organization";
729
+ system: "system";
730
730
  }>;
731
731
  name: z.ZodString;
732
732
  description: z.ZodNullable<z.ZodString>;
@@ -799,8 +799,8 @@ export declare const CreateApprovalTemplateResponseSchema: z.ZodObject<{
799
799
  id: z.ZodString;
800
800
  orgId: z.ZodNullable<z.ZodString>;
801
801
  scope: z.ZodEnum<{
802
- system: "system";
803
802
  organization: "organization";
803
+ system: "system";
804
804
  }>;
805
805
  name: z.ZodString;
806
806
  description: z.ZodNullable<z.ZodString>;
@@ -868,8 +868,8 @@ export declare const UpdateApprovalTemplateResponseSchema: z.ZodObject<{
868
868
  id: z.ZodString;
869
869
  orgId: z.ZodNullable<z.ZodString>;
870
870
  scope: z.ZodEnum<{
871
- system: "system";
872
871
  organization: "organization";
872
+ system: "system";
873
873
  }>;
874
874
  name: z.ZodString;
875
875
  description: z.ZodNullable<z.ZodString>;
@@ -937,8 +937,8 @@ export declare const ArchiveApprovalTemplateResponseSchema: z.ZodObject<{
937
937
  id: z.ZodString;
938
938
  orgId: z.ZodNullable<z.ZodString>;
939
939
  scope: z.ZodEnum<{
940
- system: "system";
941
940
  organization: "organization";
941
+ system: "system";
942
942
  }>;
943
943
  name: z.ZodString;
944
944
  description: z.ZodNullable<z.ZodString>;
@@ -90,9 +90,9 @@ export declare const ArtifactCompleteSchema: z.ZodObject<{
90
90
  */
91
91
  export declare const ReleaseListQuerySchema: z.ZodObject<{
92
92
  status: z.ZodOptional<z.ZodEnum<{
93
+ approved: "approved";
93
94
  draft: "draft";
94
95
  inReview: "inReview";
95
- approved: "approved";
96
96
  scheduled: "scheduled";
97
97
  live: "live";
98
98
  rolledBack: "rolledBack";
@@ -125,9 +125,9 @@ export declare const ReleaseCreateSchema: z.ZodObject<{
125
125
  }>;
126
126
  buildNumber: z.ZodString;
127
127
  status: z.ZodEnum<{
128
+ approved: "approved";
128
129
  draft: "draft";
129
130
  inReview: "inReview";
130
- approved: "approved";
131
131
  scheduled: "scheduled";
132
132
  live: "live";
133
133
  failed: "failed";
@@ -94,9 +94,9 @@ export declare const ArtifactResponseSchema: z.ZodObject<{
94
94
  sizeBytes: z.ZodNumber;
95
95
  contentType: z.ZodString;
96
96
  status: z.ZodEnum<{
97
+ pending: "pending";
97
98
  verified: "verified";
98
99
  failed: "failed";
99
- pending: "pending";
100
100
  uploaded: "uploaded";
101
101
  }>;
102
102
  sha256: z.ZodOptional<z.ZodString>;
@@ -130,9 +130,9 @@ export declare const ReleaseVariantSchema: z.ZodObject<{
130
130
  }>;
131
131
  buildNumber: z.ZodString;
132
132
  status: z.ZodEnum<{
133
+ approved: "approved";
133
134
  draft: "draft";
134
135
  inReview: "inReview";
135
- approved: "approved";
136
136
  scheduled: "scheduled";
137
137
  live: "live";
138
138
  failed: "failed";
@@ -152,9 +152,9 @@ export declare const ReleaseResponseSchema: z.ZodObject<{
152
152
  versionName: z.ZodString;
153
153
  requiresApproval: z.ZodBoolean;
154
154
  status: z.ZodEnum<{
155
+ approved: "approved";
155
156
  draft: "draft";
156
157
  inReview: "inReview";
157
- approved: "approved";
158
158
  scheduled: "scheduled";
159
159
  live: "live";
160
160
  rolledBack: "rolledBack";
@@ -172,9 +172,9 @@ export declare const ReleaseResponseSchema: z.ZodObject<{
172
172
  }>;
173
173
  buildNumber: z.ZodString;
174
174
  status: z.ZodEnum<{
175
+ approved: "approved";
175
176
  draft: "draft";
176
177
  inReview: "inReview";
177
- approved: "approved";
178
178
  scheduled: "scheduled";
179
179
  live: "live";
180
180
  failed: "failed";
@@ -196,9 +196,9 @@ export declare const ReleaseListEnvelopeSchema: z.ZodObject<{
196
196
  versionName: z.ZodString;
197
197
  requiresApproval: z.ZodBoolean;
198
198
  status: z.ZodEnum<{
199
+ approved: "approved";
199
200
  draft: "draft";
200
201
  inReview: "inReview";
201
- approved: "approved";
202
202
  scheduled: "scheduled";
203
203
  live: "live";
204
204
  rolledBack: "rolledBack";
@@ -216,9 +216,9 @@ export declare const ReleaseListEnvelopeSchema: z.ZodObject<{
216
216
  }>;
217
217
  buildNumber: z.ZodString;
218
218
  status: z.ZodEnum<{
219
+ approved: "approved";
219
220
  draft: "draft";
220
221
  inReview: "inReview";
221
- approved: "approved";
222
222
  scheduled: "scheduled";
223
223
  live: "live";
224
224
  failed: "failed";
@@ -37,8 +37,8 @@ export type ArtifactType = z.infer<typeof ArtifactTypeSchema>;
37
37
  export declare const ArtifactPlatformSchema: z.ZodEnum<{
38
38
  android: "android";
39
39
  ios: "ios";
40
- desktop: "desktop";
41
40
  web: "web";
41
+ desktop: "desktop";
42
42
  }>;
43
43
  export type ArtifactPlatform = z.infer<typeof ArtifactPlatformSchema>;
44
44
  /**
@@ -300,8 +300,8 @@ export declare const ArtifactSchema: z.ZodObject<{
300
300
  platform: z.ZodEnum<{
301
301
  android: "android";
302
302
  ios: "ios";
303
- desktop: "desktop";
304
303
  web: "web";
304
+ desktop: "desktop";
305
305
  }>;
306
306
  artifactType: z.ZodEnum<{
307
307
  apk: "apk";
@@ -22,8 +22,8 @@ export declare const CreateArtifactSchema: z.ZodObject<{
22
22
  platform: z.ZodEnum<{
23
23
  android: "android";
24
24
  ios: "ios";
25
- desktop: "desktop";
26
25
  web: "web";
26
+ desktop: "desktop";
27
27
  }>;
28
28
  artifactType: z.ZodEnum<{
29
29
  apk: "apk";
@@ -529,8 +529,8 @@ export declare const ArtifactFiltersSchema: z.ZodObject<{
529
529
  platform: z.ZodOptional<z.ZodEnum<{
530
530
  android: "android";
531
531
  ios: "ios";
532
- desktop: "desktop";
533
532
  web: "web";
533
+ desktop: "desktop";
534
534
  }>>;
535
535
  status: z.ZodOptional<z.ZodEnum<{
536
536
  failed: "failed";
@@ -584,8 +584,8 @@ export declare const ListArtifactsQuerySchema: z.ZodObject<{
584
584
  platform: z.ZodOptional<z.ZodEnum<{
585
585
  android: "android";
586
586
  ios: "ios";
587
- desktop: "desktop";
588
587
  web: "web";
588
+ desktop: "desktop";
589
589
  }>>;
590
590
  status: z.ZodOptional<z.ZodEnum<{
591
591
  failed: "failed";
@@ -644,8 +644,8 @@ export declare const BulkCreateArtifactsSchema: z.ZodObject<{
644
644
  platform: z.ZodEnum<{
645
645
  android: "android";
646
646
  ios: "ios";
647
- desktop: "desktop";
648
647
  web: "web";
648
+ desktop: "desktop";
649
649
  }>;
650
650
  artifactType: z.ZodEnum<{
651
651
  apk: "apk";
@@ -894,8 +894,8 @@ export declare const BulkCreateArtifactsSchema: z.ZodObject<{
894
894
  * Compare artifacts category filter
895
895
  */
896
896
  export declare const CompareArtifactsCategorySchema: z.ZodEnum<{
897
- dex: "dex";
898
897
  native: "native";
898
+ dex: "dex";
899
899
  resources: "resources";
900
900
  assets: "assets";
901
901
  other: "other";
@@ -913,8 +913,8 @@ export declare const CompareArtifactsQuerySchema: z.ZodObject<{
913
913
  sortByDiff: z.ZodDefault<z.ZodCoercedBoolean<unknown>>;
914
914
  breakdown: z.ZodDefault<z.ZodCoercedBoolean<unknown>>;
915
915
  category: z.ZodOptional<z.ZodEnum<{
916
- dex: "dex";
917
916
  native: "native";
917
+ dex: "dex";
918
918
  resources: "resources";
919
919
  assets: "assets";
920
920
  other: "other";
@@ -32,8 +32,8 @@ export declare const ArtifactResponseSchema: z.ZodObject<{
32
32
  platform: z.ZodEnum<{
33
33
  android: "android";
34
34
  ios: "ios";
35
- desktop: "desktop";
36
35
  web: "web";
36
+ desktop: "desktop";
37
37
  }>;
38
38
  artifactType: z.ZodEnum<{
39
39
  apk: "apk";
@@ -307,8 +307,8 @@ export declare const ArtifactListResponseSchema: z.ZodObject<{
307
307
  platform: z.ZodEnum<{
308
308
  android: "android";
309
309
  ios: "ios";
310
- desktop: "desktop";
311
310
  web: "web";
311
+ desktop: "desktop";
312
312
  }>;
313
313
  artifactType: z.ZodEnum<{
314
314
  apk: "apk";
@@ -611,8 +611,8 @@ export declare const EnhancedArtifactListItemSchema: z.ZodObject<{
611
611
  platform: z.ZodEnum<{
612
612
  android: "android";
613
613
  ios: "ios";
614
- desktop: "desktop";
615
614
  web: "web";
615
+ desktop: "desktop";
616
616
  }>;
617
617
  artifactType: z.ZodEnum<{
618
618
  apk: "apk";
@@ -902,8 +902,8 @@ export declare const EnhancedArtifactListResponseSchema: z.ZodObject<{
902
902
  platform: z.ZodEnum<{
903
903
  android: "android";
904
904
  ios: "ios";
905
- desktop: "desktop";
906
905
  web: "web";
906
+ desktop: "desktop";
907
907
  }>;
908
908
  artifactType: z.ZodEnum<{
909
909
  apk: "apk";
@@ -1201,8 +1201,8 @@ export declare const BatchResultSchema: z.ZodObject<{
1201
1201
  platform: z.ZodEnum<{
1202
1202
  android: "android";
1203
1203
  ios: "ios";
1204
- desktop: "desktop";
1205
1204
  web: "web";
1205
+ desktop: "desktop";
1206
1206
  }>;
1207
1207
  artifactType: z.ZodEnum<{
1208
1208
  apk: "apk";
@@ -1719,8 +1719,8 @@ export declare const EnhancedArtifactResponseSchema: z.ZodObject<{
1719
1719
  platform: z.ZodEnum<{
1720
1720
  android: "android";
1721
1721
  ios: "ios";
1722
- desktop: "desktop";
1723
1722
  web: "web";
1723
+ desktop: "desktop";
1724
1724
  }>;
1725
1725
  artifactType: z.ZodEnum<{
1726
1726
  apk: "apk";
@@ -2244,8 +2244,8 @@ export type ResourceInflationAnalysis = z.infer<typeof ResourceInflationAnalysis
2244
2244
  * Upload progress stage schema
2245
2245
  */
2246
2246
  export declare const UploadProgressStageSchema: z.ZodEnum<{
2247
- failed: "failed";
2248
2247
  pending: "pending";
2248
+ failed: "failed";
2249
2249
  uploading: "uploading";
2250
2250
  processing: "processing";
2251
2251
  complete: "complete";
@@ -2255,8 +2255,8 @@ export declare const UploadProgressStageSchema: z.ZodEnum<{
2255
2255
  */
2256
2256
  export declare const UploadProgressSchema: z.ZodObject<{
2257
2257
  stage: z.ZodEnum<{
2258
- failed: "failed";
2259
2258
  pending: "pending";
2259
+ failed: "failed";
2260
2260
  uploading: "uploading";
2261
2261
  processing: "processing";
2262
2262
  complete: "complete";
@@ -2281,8 +2281,8 @@ export declare const UploadStatusResponseSchema: z.ZodObject<{
2281
2281
  sizeBytes: z.ZodNumber;
2282
2282
  progress: z.ZodObject<{
2283
2283
  stage: z.ZodEnum<{
2284
- failed: "failed";
2285
2284
  pending: "pending";
2285
+ failed: "failed";
2286
2286
  uploading: "uploading";
2287
2287
  processing: "processing";
2288
2288
  complete: "complete";
@@ -2322,8 +2322,8 @@ export declare const BatchUploadStatusResponseSchema: z.ZodObject<{
2322
2322
  sizeBytes: z.ZodNumber;
2323
2323
  progress: z.ZodObject<{
2324
2324
  stage: z.ZodEnum<{
2325
- failed: "failed";
2326
2325
  pending: "pending";
2326
+ failed: "failed";
2327
2327
  uploading: "uploading";
2328
2328
  processing: "processing";
2329
2329
  complete: "complete";
@@ -2374,8 +2374,8 @@ export declare const PrepareUploadItemSchema: z.ZodObject<{
2374
2374
  platform: z.ZodEnum<{
2375
2375
  android: "android";
2376
2376
  ios: "ios";
2377
- desktop: "desktop";
2378
2377
  web: "web";
2378
+ desktop: "desktop";
2379
2379
  }>;
2380
2380
  uploadType: z.ZodEnum<{
2381
2381
  simple: "simple";
@@ -2413,8 +2413,8 @@ export declare const PrepareUploadResponseSchema: z.ZodObject<{
2413
2413
  platform: z.ZodEnum<{
2414
2414
  android: "android";
2415
2415
  ios: "ios";
2416
- desktop: "desktop";
2417
2416
  web: "web";
2417
+ desktop: "desktop";
2418
2418
  }>;
2419
2419
  uploadType: z.ZodEnum<{
2420
2420
  simple: "simple";
@@ -2462,8 +2462,8 @@ export declare const FinalizeUploadResponseSchema: z.ZodObject<{
2462
2462
  platform: z.ZodEnum<{
2463
2463
  android: "android";
2464
2464
  ios: "ios";
2465
- desktop: "desktop";
2466
2465
  web: "web";
2466
+ desktop: "desktop";
2467
2467
  }>;
2468
2468
  artifactType: z.ZodEnum<{
2469
2469
  apk: "apk";
@@ -30,8 +30,8 @@ export declare const ActorTypeSchema: z.ZodEnum<{
30
30
  user: "user";
31
31
  webhook: "webhook";
32
32
  integration: "integration";
33
- api_key: "api_key";
34
33
  system: "system";
34
+ api_key: "api_key";
35
35
  scheduled_job: "scheduled_job";
36
36
  }>;
37
37
  export type ActorType = z.infer<typeof ActorTypeSchema>;
@@ -57,12 +57,12 @@ export declare const AuditLogModuleSchema: z.ZodEnum<{
57
57
  session: "session";
58
58
  role: "role";
59
59
  email: "email";
60
+ system: "system";
60
61
  api_key: "api_key";
61
62
  plan: "plan";
62
63
  usage: "usage";
63
64
  subscription: "subscription";
64
65
  installation: "installation";
65
- system: "system";
66
66
  alert_event: "alert_event";
67
67
  auth: "auth";
68
68
  oauth: "oauth";
@@ -110,10 +110,14 @@ export declare const AuditLogActionSchema: z.ZodEnum<{
110
110
  read: "read";
111
111
  update: "update";
112
112
  delete: "delete";
113
+ login: "login";
113
114
  upload: "upload";
114
115
  search: "search";
116
+ skip: "skip";
117
+ rollback: "rollback";
115
118
  approve: "approve";
116
119
  reject: "reject";
120
+ join: "join";
117
121
  sync: "sync";
118
122
  export: "export";
119
123
  list: "list";
@@ -152,7 +156,6 @@ export declare const AuditLogActionSchema: z.ZodEnum<{
152
156
  deliver: "deliver";
153
157
  retry: "retry";
154
158
  acknowledge: "acknowledge";
155
- skip: "skip";
156
159
  fail: "fail";
157
160
  connect: "connect";
158
161
  disconnect: "disconnect";
@@ -165,7 +168,6 @@ export declare const AuditLogActionSchema: z.ZodEnum<{
165
168
  preview: "preview";
166
169
  clone: "clone";
167
170
  duplicate: "duplicate";
168
- login: "login";
169
171
  logout: "logout";
170
172
  register: "register";
171
173
  password_reset: "password_reset";
@@ -189,7 +191,6 @@ export declare const AuditLogActionSchema: z.ZodEnum<{
189
191
  invite_reject: "invite_reject";
190
192
  invite_cancel: "invite_cancel";
191
193
  invite_resend: "invite_resend";
192
- join: "join";
193
194
  leave: "leave";
194
195
  remove: "remove";
195
196
  kick: "kick";
@@ -204,7 +205,6 @@ export declare const AuditLogActionSchema: z.ZodEnum<{
204
205
  permission_revoke: "permission_revoke";
205
206
  submit: "submit";
206
207
  cancel: "cancel";
207
- rollback: "rollback";
208
208
  promote: "promote";
209
209
  publish: "publish";
210
210
  unpublish: "unpublish";
@@ -267,6 +267,8 @@ export declare const AuditLogResourceTypeSchema: z.ZodEnum<{
267
267
  session: "session";
268
268
  role: "role";
269
269
  password: "password";
270
+ refresh_token: "refresh_token";
271
+ access_token: "access_token";
270
272
  api_key: "api_key";
271
273
  plan: "plan";
272
274
  subscription: "subscription";
@@ -293,8 +295,6 @@ export declare const AuditLogResourceTypeSchema: z.ZodEnum<{
293
295
  webhook_endpoint: "webhook_endpoint";
294
296
  oauth_connection: "oauth_connection";
295
297
  mfa_device: "mfa_device";
296
- access_token: "access_token";
297
- refresh_token: "refresh_token";
298
298
  email_verification: "email_verification";
299
299
  icon: "icon";
300
300
  screenshot: "screenshot";
@@ -319,8 +319,8 @@ export type AuditLogResourceType = z.infer<typeof AuditLogResourceTypeSchema>;
319
319
  * Audit Log Export Format Schema
320
320
  */
321
321
  export declare const AuditLogExportFormatSchema: z.ZodEnum<{
322
- csv: "csv";
323
322
  json: "json";
323
+ csv: "csv";
324
324
  pdf: "pdf";
325
325
  }>;
326
326
  export type AuditLogExportFormat = z.infer<typeof AuditLogExportFormatSchema>;
@@ -364,8 +364,8 @@ export declare const ActorInfoSchema: z.ZodObject<{
364
364
  user: "user";
365
365
  webhook: "webhook";
366
366
  integration: "integration";
367
- api_key: "api_key";
368
367
  system: "system";
368
+ api_key: "api_key";
369
369
  scheduled_job: "scheduled_job";
370
370
  }>;
371
371
  email: z.ZodOptional<z.ZodString>;
@@ -428,8 +428,8 @@ export declare const AuditLogResponseSchema: z.ZodObject<{
428
428
  user: "user";
429
429
  webhook: "webhook";
430
430
  integration: "integration";
431
- api_key: "api_key";
432
431
  system: "system";
432
+ api_key: "api_key";
433
433
  scheduled_job: "scheduled_job";
434
434
  }>;
435
435
  email: z.ZodOptional<z.ZodString>;