@apollo-deploy/schemas 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/definitions/audit-log/domain.schema.d.ts +64 -64
- package/dist/definitions/audit-log/request.schema.d.ts +118 -118
- package/dist/definitions/audit-log/response.schema.d.ts +12 -12
- package/dist/definitions/deployments/domain.schema.d.ts +12 -12
- package/dist/definitions/deployments/request.schema.d.ts +12 -12
- package/dist/definitions/deployments/response.schema.d.ts +8 -8
- package/dist/definitions/integrations/api.schema.d.ts +79 -4
- package/dist/definitions/integrations/api.schema.d.ts.map +1 -1
- package/dist/definitions/integrations/api.schema.js +38 -4
- package/dist/definitions/integrations/api.schema.js.map +1 -1
- package/dist/definitions/integrations/domain.schema.d.ts +122 -0
- package/dist/definitions/integrations/domain.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/domain.schema.js +85 -0
- package/dist/definitions/integrations/domain.schema.js.map +1 -0
- package/dist/definitions/integrations/index.d.ts +1 -1
- package/dist/definitions/integrations/index.d.ts.map +1 -1
- package/dist/definitions/integrations/index.js +3 -1
- package/dist/definitions/integrations/index.js.map +1 -1
- package/dist/definitions/integrations/request.schema.d.ts +141 -0
- package/dist/definitions/integrations/request.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/request.schema.js +136 -0
- package/dist/definitions/integrations/request.schema.js.map +1 -0
- package/dist/definitions/integrations/response.schema.d.ts +142 -0
- package/dist/definitions/integrations/response.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/response.schema.js +55 -0
- package/dist/definitions/integrations/response.schema.js.map +1 -0
- package/dist/definitions/releases/domain.schema.d.ts +26 -18
- package/dist/definitions/releases/domain.schema.d.ts.map +1 -1
- package/dist/definitions/releases/domain.schema.js +7 -6
- package/dist/definitions/releases/domain.schema.js.map +1 -1
- package/dist/definitions/releases/request.schema.d.ts +5 -3
- package/dist/definitions/releases/request.schema.d.ts.map +1 -1
- package/dist/definitions/releases/request.schema.js +1 -1
- package/dist/definitions/releases/request.schema.js.map +1 -1
- package/dist/definitions/releases/response.schema.d.ts +26 -18
- package/dist/definitions/releases/response.schema.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -13,74 +13,82 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
13
13
|
page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
14
14
|
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
15
15
|
sortBy: z.ZodDefault<z.ZodEnum<{
|
|
16
|
-
riskLevel: "riskLevel";
|
|
17
16
|
timestamp: "timestamp";
|
|
18
17
|
createdAt: "createdAt";
|
|
19
|
-
|
|
18
|
+
riskLevel: "riskLevel";
|
|
20
19
|
action: "action";
|
|
20
|
+
module: "module";
|
|
21
21
|
}>>;
|
|
22
22
|
sortOrder: z.ZodDefault<z.ZodEnum<{
|
|
23
23
|
asc: "asc";
|
|
24
24
|
desc: "desc";
|
|
25
25
|
}>>;
|
|
26
26
|
module: z.ZodOptional<z.ZodEnum<{
|
|
27
|
+
email: "email";
|
|
28
|
+
member: "member";
|
|
27
29
|
user: "user";
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
team: "team";
|
|
31
|
+
version: "version";
|
|
32
|
+
app: "app";
|
|
33
|
+
release: "release";
|
|
34
|
+
artifact: "artifact";
|
|
35
|
+
credential: "credential";
|
|
30
36
|
webhook: "webhook";
|
|
37
|
+
organization: "organization";
|
|
38
|
+
billing: "billing";
|
|
39
|
+
analytics: "analytics";
|
|
31
40
|
integration: "integration";
|
|
32
|
-
|
|
33
|
-
credential: "credential";
|
|
34
|
-
alert_event: "alert_event";
|
|
41
|
+
store: "store";
|
|
35
42
|
audit_log: "audit_log";
|
|
36
|
-
auth: "auth";
|
|
37
43
|
session: "session";
|
|
44
|
+
role: "role";
|
|
45
|
+
system: "system";
|
|
46
|
+
api_key: "api_key";
|
|
47
|
+
usage: "usage";
|
|
48
|
+
subscription: "subscription";
|
|
49
|
+
plan: "plan";
|
|
50
|
+
installation: "installation";
|
|
51
|
+
auth: "auth";
|
|
52
|
+
settings: "settings";
|
|
53
|
+
alert_event: "alert_event";
|
|
38
54
|
oauth: "oauth";
|
|
39
55
|
mfa: "mfa";
|
|
40
56
|
security: "security";
|
|
41
|
-
app: "app";
|
|
42
|
-
artifact: "artifact";
|
|
43
57
|
build: "build";
|
|
44
58
|
variant: "variant";
|
|
45
|
-
version: "version";
|
|
46
|
-
release: "release";
|
|
47
59
|
submission: "submission";
|
|
48
60
|
review: "review";
|
|
49
61
|
rollout: "rollout";
|
|
50
|
-
organization: "organization";
|
|
51
|
-
team: "team";
|
|
52
|
-
member: "member";
|
|
53
62
|
invitation: "invitation";
|
|
54
|
-
role: "role";
|
|
55
63
|
permission: "permission";
|
|
56
|
-
billing: "billing";
|
|
57
|
-
subscription: "subscription";
|
|
58
|
-
plan: "plan";
|
|
59
64
|
invoice: "invoice";
|
|
60
65
|
payment: "payment";
|
|
61
|
-
usage: "usage";
|
|
62
|
-
store: "store";
|
|
63
66
|
store_connection: "store_connection";
|
|
64
67
|
store_metadata: "store_metadata";
|
|
65
68
|
store_pricing: "store_pricing";
|
|
66
69
|
store_localization: "store_localization";
|
|
67
|
-
analytics: "analytics";
|
|
68
70
|
report: "report";
|
|
69
71
|
dashboard: "dashboard";
|
|
70
72
|
export: "export";
|
|
71
|
-
settings: "settings";
|
|
72
73
|
notification: "notification";
|
|
73
|
-
email: "email";
|
|
74
74
|
}>>;
|
|
75
75
|
action: z.ZodOptional<z.ZodEnum<{
|
|
76
|
-
export: "export";
|
|
77
76
|
create: "create";
|
|
78
77
|
read: "read";
|
|
79
78
|
update: "update";
|
|
80
79
|
delete: "delete";
|
|
80
|
+
login: "login";
|
|
81
|
+
upload: "upload";
|
|
82
|
+
search: "search";
|
|
83
|
+
approve: "approve";
|
|
84
|
+
reject: "reject";
|
|
85
|
+
join: "join";
|
|
86
|
+
skip: "skip";
|
|
87
|
+
rollback: "rollback";
|
|
88
|
+
sync: "sync";
|
|
89
|
+
export: "export";
|
|
81
90
|
list: "list";
|
|
82
91
|
get: "get";
|
|
83
|
-
search: "search";
|
|
84
92
|
batch_create: "batch_create";
|
|
85
93
|
batch_update: "batch_update";
|
|
86
94
|
batch_delete: "batch_delete";
|
|
@@ -115,22 +123,18 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
115
123
|
deliver: "deliver";
|
|
116
124
|
retry: "retry";
|
|
117
125
|
acknowledge: "acknowledge";
|
|
118
|
-
skip: "skip";
|
|
119
126
|
fail: "fail";
|
|
120
127
|
connect: "connect";
|
|
121
128
|
disconnect: "disconnect";
|
|
122
129
|
test_connection: "test_connection";
|
|
123
130
|
verify: "verify";
|
|
124
|
-
sync: "sync";
|
|
125
131
|
refresh: "refresh";
|
|
126
132
|
import: "import";
|
|
127
133
|
view: "view";
|
|
128
134
|
download: "download";
|
|
129
|
-
upload: "upload";
|
|
130
135
|
preview: "preview";
|
|
131
136
|
clone: "clone";
|
|
132
137
|
duplicate: "duplicate";
|
|
133
|
-
login: "login";
|
|
134
138
|
logout: "logout";
|
|
135
139
|
register: "register";
|
|
136
140
|
password_reset: "password_reset";
|
|
@@ -154,7 +158,6 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
154
158
|
invite_reject: "invite_reject";
|
|
155
159
|
invite_cancel: "invite_cancel";
|
|
156
160
|
invite_resend: "invite_resend";
|
|
157
|
-
join: "join";
|
|
158
161
|
leave: "leave";
|
|
159
162
|
remove: "remove";
|
|
160
163
|
kick: "kick";
|
|
@@ -168,10 +171,7 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
168
171
|
permission_grant: "permission_grant";
|
|
169
172
|
permission_revoke: "permission_revoke";
|
|
170
173
|
submit: "submit";
|
|
171
|
-
approve: "approve";
|
|
172
|
-
reject: "reject";
|
|
173
174
|
cancel: "cancel";
|
|
174
|
-
rollback: "rollback";
|
|
175
175
|
promote: "promote";
|
|
176
176
|
publish: "publish";
|
|
177
177
|
unpublish: "unpublish";
|
|
@@ -214,59 +214,60 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
214
214
|
notification_update: "notification_update";
|
|
215
215
|
}>>;
|
|
216
216
|
actionCategory: z.ZodOptional<z.ZodEnum<{
|
|
217
|
-
|
|
217
|
+
admin: "admin";
|
|
218
|
+
billing: "billing";
|
|
218
219
|
integration: "integration";
|
|
220
|
+
system: "system";
|
|
219
221
|
security: "security";
|
|
220
|
-
billing: "billing";
|
|
221
222
|
export: "export";
|
|
222
223
|
data_access: "data_access";
|
|
223
224
|
data_modification: "data_modification";
|
|
224
|
-
admin: "admin";
|
|
225
225
|
}>>;
|
|
226
226
|
resourceType: z.ZodOptional<z.ZodEnum<{
|
|
227
|
+
member: "member";
|
|
227
228
|
user: "user";
|
|
228
|
-
|
|
229
|
+
team: "team";
|
|
230
|
+
version: "version";
|
|
231
|
+
app: "app";
|
|
232
|
+
release: "release";
|
|
233
|
+
artifact: "artifact";
|
|
234
|
+
credential: "credential";
|
|
229
235
|
webhook: "webhook";
|
|
236
|
+
organization: "organization";
|
|
230
237
|
integration: "integration";
|
|
231
|
-
|
|
232
|
-
credential: "credential";
|
|
233
|
-
alert_event: "alert_event";
|
|
238
|
+
store: "store";
|
|
234
239
|
audit_log: "audit_log";
|
|
235
240
|
session: "session";
|
|
236
|
-
|
|
237
|
-
|
|
241
|
+
role: "role";
|
|
242
|
+
password: "password";
|
|
243
|
+
refresh_token: "refresh_token";
|
|
244
|
+
access_token: "access_token";
|
|
245
|
+
api_key: "api_key";
|
|
246
|
+
subscription: "subscription";
|
|
247
|
+
plan: "plan";
|
|
248
|
+
metrics: "metrics";
|
|
249
|
+
installation: "installation";
|
|
250
|
+
settings: "settings";
|
|
251
|
+
alert_event: "alert_event";
|
|
238
252
|
build: "build";
|
|
239
253
|
variant: "variant";
|
|
240
|
-
version: "version";
|
|
241
|
-
release: "release";
|
|
242
254
|
submission: "submission";
|
|
243
255
|
review: "review";
|
|
244
256
|
rollout: "rollout";
|
|
245
|
-
organization: "organization";
|
|
246
|
-
team: "team";
|
|
247
|
-
member: "member";
|
|
248
257
|
invitation: "invitation";
|
|
249
|
-
role: "role";
|
|
250
258
|
permission: "permission";
|
|
251
|
-
subscription: "subscription";
|
|
252
|
-
plan: "plan";
|
|
253
259
|
invoice: "invoice";
|
|
254
260
|
payment: "payment";
|
|
255
|
-
store: "store";
|
|
256
261
|
store_connection: "store_connection";
|
|
257
262
|
store_metadata: "store_metadata";
|
|
258
263
|
store_pricing: "store_pricing";
|
|
259
264
|
store_localization: "store_localization";
|
|
260
265
|
report: "report";
|
|
261
266
|
dashboard: "dashboard";
|
|
262
|
-
settings: "settings";
|
|
263
267
|
webhook_delivery: "webhook_delivery";
|
|
264
268
|
webhook_endpoint: "webhook_endpoint";
|
|
265
269
|
oauth_connection: "oauth_connection";
|
|
266
270
|
mfa_device: "mfa_device";
|
|
267
|
-
access_token: "access_token";
|
|
268
|
-
refresh_token: "refresh_token";
|
|
269
|
-
password: "password";
|
|
270
271
|
email_verification: "email_verification";
|
|
271
272
|
icon: "icon";
|
|
272
273
|
screenshot: "screenshot";
|
|
@@ -281,7 +282,6 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
281
282
|
discount: "discount";
|
|
282
283
|
store_screenshot: "store_screenshot";
|
|
283
284
|
store_review: "store_review";
|
|
284
|
-
metrics: "metrics";
|
|
285
285
|
export_job: "export_job";
|
|
286
286
|
preference: "preference";
|
|
287
287
|
notification_settings: "notification_settings";
|
|
@@ -291,16 +291,16 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
291
291
|
userId: z.ZodOptional<z.ZodString>;
|
|
292
292
|
actorType: z.ZodOptional<z.ZodEnum<{
|
|
293
293
|
user: "user";
|
|
294
|
+
webhook: "webhook";
|
|
295
|
+
integration: "integration";
|
|
294
296
|
system: "system";
|
|
295
297
|
api_key: "api_key";
|
|
296
|
-
webhook: "webhook";
|
|
297
298
|
scheduled_job: "scheduled_job";
|
|
298
|
-
integration: "integration";
|
|
299
299
|
}>>;
|
|
300
300
|
status: z.ZodOptional<z.ZodEnum<{
|
|
301
301
|
success: "success";
|
|
302
|
-
failure: "failure";
|
|
303
302
|
pending: "pending";
|
|
303
|
+
failure: "failure";
|
|
304
304
|
}>>;
|
|
305
305
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
306
306
|
low: "low";
|
|
@@ -332,63 +332,71 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
332
332
|
pdf: "pdf";
|
|
333
333
|
}>;
|
|
334
334
|
module: z.ZodOptional<z.ZodEnum<{
|
|
335
|
+
email: "email";
|
|
336
|
+
member: "member";
|
|
335
337
|
user: "user";
|
|
336
|
-
|
|
337
|
-
|
|
338
|
+
team: "team";
|
|
339
|
+
version: "version";
|
|
340
|
+
app: "app";
|
|
341
|
+
release: "release";
|
|
342
|
+
artifact: "artifact";
|
|
343
|
+
credential: "credential";
|
|
338
344
|
webhook: "webhook";
|
|
345
|
+
organization: "organization";
|
|
346
|
+
billing: "billing";
|
|
347
|
+
analytics: "analytics";
|
|
339
348
|
integration: "integration";
|
|
340
|
-
|
|
341
|
-
credential: "credential";
|
|
342
|
-
alert_event: "alert_event";
|
|
349
|
+
store: "store";
|
|
343
350
|
audit_log: "audit_log";
|
|
344
|
-
auth: "auth";
|
|
345
351
|
session: "session";
|
|
352
|
+
role: "role";
|
|
353
|
+
system: "system";
|
|
354
|
+
api_key: "api_key";
|
|
355
|
+
usage: "usage";
|
|
356
|
+
subscription: "subscription";
|
|
357
|
+
plan: "plan";
|
|
358
|
+
installation: "installation";
|
|
359
|
+
auth: "auth";
|
|
360
|
+
settings: "settings";
|
|
361
|
+
alert_event: "alert_event";
|
|
346
362
|
oauth: "oauth";
|
|
347
363
|
mfa: "mfa";
|
|
348
364
|
security: "security";
|
|
349
|
-
app: "app";
|
|
350
|
-
artifact: "artifact";
|
|
351
365
|
build: "build";
|
|
352
366
|
variant: "variant";
|
|
353
|
-
version: "version";
|
|
354
|
-
release: "release";
|
|
355
367
|
submission: "submission";
|
|
356
368
|
review: "review";
|
|
357
369
|
rollout: "rollout";
|
|
358
|
-
organization: "organization";
|
|
359
|
-
team: "team";
|
|
360
|
-
member: "member";
|
|
361
370
|
invitation: "invitation";
|
|
362
|
-
role: "role";
|
|
363
371
|
permission: "permission";
|
|
364
|
-
billing: "billing";
|
|
365
|
-
subscription: "subscription";
|
|
366
|
-
plan: "plan";
|
|
367
372
|
invoice: "invoice";
|
|
368
373
|
payment: "payment";
|
|
369
|
-
usage: "usage";
|
|
370
|
-
store: "store";
|
|
371
374
|
store_connection: "store_connection";
|
|
372
375
|
store_metadata: "store_metadata";
|
|
373
376
|
store_pricing: "store_pricing";
|
|
374
377
|
store_localization: "store_localization";
|
|
375
|
-
analytics: "analytics";
|
|
376
378
|
report: "report";
|
|
377
379
|
dashboard: "dashboard";
|
|
378
380
|
export: "export";
|
|
379
|
-
settings: "settings";
|
|
380
381
|
notification: "notification";
|
|
381
|
-
email: "email";
|
|
382
382
|
}>>;
|
|
383
383
|
action: z.ZodOptional<z.ZodEnum<{
|
|
384
|
-
export: "export";
|
|
385
384
|
create: "create";
|
|
386
385
|
read: "read";
|
|
387
386
|
update: "update";
|
|
388
387
|
delete: "delete";
|
|
388
|
+
login: "login";
|
|
389
|
+
upload: "upload";
|
|
390
|
+
search: "search";
|
|
391
|
+
approve: "approve";
|
|
392
|
+
reject: "reject";
|
|
393
|
+
join: "join";
|
|
394
|
+
skip: "skip";
|
|
395
|
+
rollback: "rollback";
|
|
396
|
+
sync: "sync";
|
|
397
|
+
export: "export";
|
|
389
398
|
list: "list";
|
|
390
399
|
get: "get";
|
|
391
|
-
search: "search";
|
|
392
400
|
batch_create: "batch_create";
|
|
393
401
|
batch_update: "batch_update";
|
|
394
402
|
batch_delete: "batch_delete";
|
|
@@ -423,22 +431,18 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
423
431
|
deliver: "deliver";
|
|
424
432
|
retry: "retry";
|
|
425
433
|
acknowledge: "acknowledge";
|
|
426
|
-
skip: "skip";
|
|
427
434
|
fail: "fail";
|
|
428
435
|
connect: "connect";
|
|
429
436
|
disconnect: "disconnect";
|
|
430
437
|
test_connection: "test_connection";
|
|
431
438
|
verify: "verify";
|
|
432
|
-
sync: "sync";
|
|
433
439
|
refresh: "refresh";
|
|
434
440
|
import: "import";
|
|
435
441
|
view: "view";
|
|
436
442
|
download: "download";
|
|
437
|
-
upload: "upload";
|
|
438
443
|
preview: "preview";
|
|
439
444
|
clone: "clone";
|
|
440
445
|
duplicate: "duplicate";
|
|
441
|
-
login: "login";
|
|
442
446
|
logout: "logout";
|
|
443
447
|
register: "register";
|
|
444
448
|
password_reset: "password_reset";
|
|
@@ -462,7 +466,6 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
462
466
|
invite_reject: "invite_reject";
|
|
463
467
|
invite_cancel: "invite_cancel";
|
|
464
468
|
invite_resend: "invite_resend";
|
|
465
|
-
join: "join";
|
|
466
469
|
leave: "leave";
|
|
467
470
|
remove: "remove";
|
|
468
471
|
kick: "kick";
|
|
@@ -476,10 +479,7 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
476
479
|
permission_grant: "permission_grant";
|
|
477
480
|
permission_revoke: "permission_revoke";
|
|
478
481
|
submit: "submit";
|
|
479
|
-
approve: "approve";
|
|
480
|
-
reject: "reject";
|
|
481
482
|
cancel: "cancel";
|
|
482
|
-
rollback: "rollback";
|
|
483
483
|
promote: "promote";
|
|
484
484
|
publish: "publish";
|
|
485
485
|
unpublish: "unpublish";
|
|
@@ -522,59 +522,60 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
522
522
|
notification_update: "notification_update";
|
|
523
523
|
}>>;
|
|
524
524
|
actionCategory: z.ZodOptional<z.ZodEnum<{
|
|
525
|
-
|
|
525
|
+
admin: "admin";
|
|
526
|
+
billing: "billing";
|
|
526
527
|
integration: "integration";
|
|
528
|
+
system: "system";
|
|
527
529
|
security: "security";
|
|
528
|
-
billing: "billing";
|
|
529
530
|
export: "export";
|
|
530
531
|
data_access: "data_access";
|
|
531
532
|
data_modification: "data_modification";
|
|
532
|
-
admin: "admin";
|
|
533
533
|
}>>;
|
|
534
534
|
resourceType: z.ZodOptional<z.ZodEnum<{
|
|
535
|
+
member: "member";
|
|
535
536
|
user: "user";
|
|
536
|
-
|
|
537
|
+
team: "team";
|
|
538
|
+
version: "version";
|
|
539
|
+
app: "app";
|
|
540
|
+
release: "release";
|
|
541
|
+
artifact: "artifact";
|
|
542
|
+
credential: "credential";
|
|
537
543
|
webhook: "webhook";
|
|
544
|
+
organization: "organization";
|
|
538
545
|
integration: "integration";
|
|
539
|
-
|
|
540
|
-
credential: "credential";
|
|
541
|
-
alert_event: "alert_event";
|
|
546
|
+
store: "store";
|
|
542
547
|
audit_log: "audit_log";
|
|
543
548
|
session: "session";
|
|
544
|
-
|
|
545
|
-
|
|
549
|
+
role: "role";
|
|
550
|
+
password: "password";
|
|
551
|
+
refresh_token: "refresh_token";
|
|
552
|
+
access_token: "access_token";
|
|
553
|
+
api_key: "api_key";
|
|
554
|
+
subscription: "subscription";
|
|
555
|
+
plan: "plan";
|
|
556
|
+
metrics: "metrics";
|
|
557
|
+
installation: "installation";
|
|
558
|
+
settings: "settings";
|
|
559
|
+
alert_event: "alert_event";
|
|
546
560
|
build: "build";
|
|
547
561
|
variant: "variant";
|
|
548
|
-
version: "version";
|
|
549
|
-
release: "release";
|
|
550
562
|
submission: "submission";
|
|
551
563
|
review: "review";
|
|
552
564
|
rollout: "rollout";
|
|
553
|
-
organization: "organization";
|
|
554
|
-
team: "team";
|
|
555
|
-
member: "member";
|
|
556
565
|
invitation: "invitation";
|
|
557
|
-
role: "role";
|
|
558
566
|
permission: "permission";
|
|
559
|
-
subscription: "subscription";
|
|
560
|
-
plan: "plan";
|
|
561
567
|
invoice: "invoice";
|
|
562
568
|
payment: "payment";
|
|
563
|
-
store: "store";
|
|
564
569
|
store_connection: "store_connection";
|
|
565
570
|
store_metadata: "store_metadata";
|
|
566
571
|
store_pricing: "store_pricing";
|
|
567
572
|
store_localization: "store_localization";
|
|
568
573
|
report: "report";
|
|
569
574
|
dashboard: "dashboard";
|
|
570
|
-
settings: "settings";
|
|
571
575
|
webhook_delivery: "webhook_delivery";
|
|
572
576
|
webhook_endpoint: "webhook_endpoint";
|
|
573
577
|
oauth_connection: "oauth_connection";
|
|
574
578
|
mfa_device: "mfa_device";
|
|
575
|
-
access_token: "access_token";
|
|
576
|
-
refresh_token: "refresh_token";
|
|
577
|
-
password: "password";
|
|
578
579
|
email_verification: "email_verification";
|
|
579
580
|
icon: "icon";
|
|
580
581
|
screenshot: "screenshot";
|
|
@@ -589,7 +590,6 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
589
590
|
discount: "discount";
|
|
590
591
|
store_screenshot: "store_screenshot";
|
|
591
592
|
store_review: "store_review";
|
|
592
|
-
metrics: "metrics";
|
|
593
593
|
export_job: "export_job";
|
|
594
594
|
preference: "preference";
|
|
595
595
|
notification_settings: "notification_settings";
|
|
@@ -599,16 +599,16 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
599
599
|
userId: z.ZodOptional<z.ZodString>;
|
|
600
600
|
actorType: z.ZodOptional<z.ZodEnum<{
|
|
601
601
|
user: "user";
|
|
602
|
+
webhook: "webhook";
|
|
603
|
+
integration: "integration";
|
|
602
604
|
system: "system";
|
|
603
605
|
api_key: "api_key";
|
|
604
|
-
webhook: "webhook";
|
|
605
606
|
scheduled_job: "scheduled_job";
|
|
606
|
-
integration: "integration";
|
|
607
607
|
}>>;
|
|
608
608
|
status: z.ZodOptional<z.ZodEnum<{
|
|
609
609
|
success: "success";
|
|
610
|
-
failure: "failure";
|
|
611
610
|
pending: "pending";
|
|
611
|
+
failure: "failure";
|
|
612
612
|
}>>;
|
|
613
613
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
614
614
|
low: "low";
|
|
@@ -37,11 +37,11 @@ export declare const AuditLogListResponseSchema: z.ZodObject<{
|
|
|
37
37
|
id: z.ZodString;
|
|
38
38
|
type: z.ZodEnum<{
|
|
39
39
|
user: "user";
|
|
40
|
+
webhook: "webhook";
|
|
41
|
+
integration: "integration";
|
|
40
42
|
system: "system";
|
|
41
43
|
api_key: "api_key";
|
|
42
|
-
webhook: "webhook";
|
|
43
44
|
scheduled_job: "scheduled_job";
|
|
44
|
-
integration: "integration";
|
|
45
45
|
}>;
|
|
46
46
|
email: z.ZodOptional<z.ZodString>;
|
|
47
47
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -180,11 +180,11 @@ export declare const ActivitySummaryResponseSchema: z.ZodObject<{
|
|
|
180
180
|
id: z.ZodString;
|
|
181
181
|
type: z.ZodEnum<{
|
|
182
182
|
user: "user";
|
|
183
|
+
webhook: "webhook";
|
|
184
|
+
integration: "integration";
|
|
183
185
|
system: "system";
|
|
184
186
|
api_key: "api_key";
|
|
185
|
-
webhook: "webhook";
|
|
186
187
|
scheduled_job: "scheduled_job";
|
|
187
|
-
integration: "integration";
|
|
188
188
|
}>;
|
|
189
189
|
email: z.ZodOptional<z.ZodString>;
|
|
190
190
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -314,11 +314,11 @@ export declare const UserActivityTimelineResponseSchema: z.ZodObject<{
|
|
|
314
314
|
id: z.ZodString;
|
|
315
315
|
type: z.ZodEnum<{
|
|
316
316
|
user: "user";
|
|
317
|
+
webhook: "webhook";
|
|
318
|
+
integration: "integration";
|
|
317
319
|
system: "system";
|
|
318
320
|
api_key: "api_key";
|
|
319
|
-
webhook: "webhook";
|
|
320
321
|
scheduled_job: "scheduled_job";
|
|
321
|
-
integration: "integration";
|
|
322
322
|
}>;
|
|
323
323
|
email: z.ZodOptional<z.ZodString>;
|
|
324
324
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -441,11 +441,11 @@ export declare const ResourceHistoryResponseSchema: z.ZodObject<{
|
|
|
441
441
|
id: z.ZodString;
|
|
442
442
|
type: z.ZodEnum<{
|
|
443
443
|
user: "user";
|
|
444
|
+
webhook: "webhook";
|
|
445
|
+
integration: "integration";
|
|
444
446
|
system: "system";
|
|
445
447
|
api_key: "api_key";
|
|
446
|
-
webhook: "webhook";
|
|
447
448
|
scheduled_job: "scheduled_job";
|
|
448
|
-
integration: "integration";
|
|
449
449
|
}>;
|
|
450
450
|
email: z.ZodOptional<z.ZodString>;
|
|
451
451
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -555,11 +555,11 @@ export declare const SecurityInsightsResponseSchema: z.ZodObject<{
|
|
|
555
555
|
id: z.ZodString;
|
|
556
556
|
type: z.ZodEnum<{
|
|
557
557
|
user: "user";
|
|
558
|
+
webhook: "webhook";
|
|
559
|
+
integration: "integration";
|
|
558
560
|
system: "system";
|
|
559
561
|
api_key: "api_key";
|
|
560
|
-
webhook: "webhook";
|
|
561
562
|
scheduled_job: "scheduled_job";
|
|
562
|
-
integration: "integration";
|
|
563
563
|
}>;
|
|
564
564
|
email: z.ZodOptional<z.ZodString>;
|
|
565
565
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -668,11 +668,11 @@ export declare const SecurityInsightsResponseSchema: z.ZodObject<{
|
|
|
668
668
|
id: z.ZodString;
|
|
669
669
|
type: z.ZodEnum<{
|
|
670
670
|
user: "user";
|
|
671
|
+
webhook: "webhook";
|
|
672
|
+
integration: "integration";
|
|
671
673
|
system: "system";
|
|
672
674
|
api_key: "api_key";
|
|
673
|
-
webhook: "webhook";
|
|
674
675
|
scheduled_job: "scheduled_job";
|
|
675
|
-
integration: "integration";
|
|
676
676
|
}>;
|
|
677
677
|
email: z.ZodOptional<z.ZodString>;
|
|
678
678
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9,24 +9,24 @@ export declare const DeploymentProviderSchema: z.ZodEnum<{
|
|
|
9
9
|
byoc: "byoc";
|
|
10
10
|
}>;
|
|
11
11
|
export declare const DeploymentEnvironmentSchema: z.ZodEnum<{
|
|
12
|
+
production: "production";
|
|
12
13
|
development: "development";
|
|
13
14
|
staging: "staging";
|
|
14
|
-
production: "production";
|
|
15
15
|
}>;
|
|
16
16
|
export declare const DeploymentTargetStatusSchema: z.ZodEnum<{
|
|
17
17
|
active: "active";
|
|
18
18
|
inactive: "inactive";
|
|
19
19
|
}>;
|
|
20
20
|
export declare const DeploymentStatusSchema: z.ZodEnum<{
|
|
21
|
-
canceled: "canceled";
|
|
22
21
|
failed: "failed";
|
|
23
|
-
queued: "queued";
|
|
24
22
|
succeeded: "succeeded";
|
|
23
|
+
canceled: "canceled";
|
|
24
|
+
rolled_back: "rolled_back";
|
|
25
|
+
queued: "queued";
|
|
25
26
|
awaiting_approval: "awaiting_approval";
|
|
26
27
|
running: "running";
|
|
27
28
|
verifying: "verifying";
|
|
28
29
|
rollback_in_progress: "rollback_in_progress";
|
|
29
|
-
rolled_back: "rolled_back";
|
|
30
30
|
}>;
|
|
31
31
|
export declare const AwsDeploymentTargetConfigSchema: z.ZodObject<{
|
|
32
32
|
roleArn: z.ZodString;
|
|
@@ -73,9 +73,9 @@ export declare const DeploymentTargetSchema: z.ZodObject<{
|
|
|
73
73
|
byoc: "byoc";
|
|
74
74
|
}>;
|
|
75
75
|
environment: z.ZodEnum<{
|
|
76
|
+
production: "production";
|
|
76
77
|
development: "development";
|
|
77
78
|
staging: "staging";
|
|
78
|
-
production: "production";
|
|
79
79
|
}>;
|
|
80
80
|
region: z.ZodNullable<z.ZodString>;
|
|
81
81
|
integrationInstallationId: z.ZodNullable<z.ZodString>;
|
|
@@ -105,15 +105,15 @@ export declare const DeploymentSchema: z.ZodObject<{
|
|
|
105
105
|
byoc: "byoc";
|
|
106
106
|
}>;
|
|
107
107
|
status: z.ZodEnum<{
|
|
108
|
-
canceled: "canceled";
|
|
109
108
|
failed: "failed";
|
|
110
|
-
queued: "queued";
|
|
111
109
|
succeeded: "succeeded";
|
|
110
|
+
canceled: "canceled";
|
|
111
|
+
rolled_back: "rolled_back";
|
|
112
|
+
queued: "queued";
|
|
112
113
|
awaiting_approval: "awaiting_approval";
|
|
113
114
|
running: "running";
|
|
114
115
|
verifying: "verifying";
|
|
115
116
|
rollback_in_progress: "rollback_in_progress";
|
|
116
|
-
rolled_back: "rolled_back";
|
|
117
117
|
}>;
|
|
118
118
|
statusReason: z.ZodNullable<z.ZodString>;
|
|
119
119
|
approvalRequestId: z.ZodNullable<z.ZodString>;
|
|
@@ -141,15 +141,15 @@ export declare const DeploymentListResponseSchema: z.ZodObject<{
|
|
|
141
141
|
byoc: "byoc";
|
|
142
142
|
}>;
|
|
143
143
|
status: z.ZodEnum<{
|
|
144
|
-
canceled: "canceled";
|
|
145
144
|
failed: "failed";
|
|
146
|
-
queued: "queued";
|
|
147
145
|
succeeded: "succeeded";
|
|
146
|
+
canceled: "canceled";
|
|
147
|
+
rolled_back: "rolled_back";
|
|
148
|
+
queued: "queued";
|
|
148
149
|
awaiting_approval: "awaiting_approval";
|
|
149
150
|
running: "running";
|
|
150
151
|
verifying: "verifying";
|
|
151
152
|
rollback_in_progress: "rollback_in_progress";
|
|
152
|
-
rolled_back: "rolled_back";
|
|
153
153
|
}>;
|
|
154
154
|
statusReason: z.ZodNullable<z.ZodString>;
|
|
155
155
|
approvalRequestId: z.ZodNullable<z.ZodString>;
|
|
@@ -182,9 +182,9 @@ export declare const DeploymentTargetListResponseSchema: z.ZodObject<{
|
|
|
182
182
|
byoc: "byoc";
|
|
183
183
|
}>;
|
|
184
184
|
environment: z.ZodEnum<{
|
|
185
|
+
production: "production";
|
|
185
186
|
development: "development";
|
|
186
187
|
staging: "staging";
|
|
187
|
-
production: "production";
|
|
188
188
|
}>;
|
|
189
189
|
region: z.ZodNullable<z.ZodString>;
|
|
190
190
|
integrationInstallationId: z.ZodNullable<z.ZodString>;
|