@apollo-deploy/schemas 0.4.8 → 0.5.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/approvals/domain.schema.d.ts +18 -7
- package/dist/definitions/approvals/domain.schema.d.ts.map +1 -1
- package/dist/definitions/approvals/domain.schema.js +4 -8
- package/dist/definitions/approvals/domain.schema.js.map +1 -1
- package/dist/definitions/approvals/response.schema.d.ts +42 -26
- package/dist/definitions/approvals/response.schema.d.ts.map +1 -1
- package/dist/definitions/artifacts/response.schema.d.ts +42 -14
- package/dist/definitions/artifacts/response.schema.d.ts.map +1 -1
- package/dist/definitions/artifacts/response.schema.js +2 -3
- package/dist/definitions/artifacts/response.schema.js.map +1 -1
- package/dist/definitions/audit-log/domain.schema.d.ts +70 -65
- package/dist/definitions/audit-log/domain.schema.d.ts.map +1 -1
- package/dist/definitions/audit-log/domain.schema.js +2 -2
- package/dist/definitions/audit-log/domain.schema.js.map +1 -1
- package/dist/definitions/audit-log/request.schema.d.ts +118 -118
- package/dist/definitions/audit-log/response.schema.d.ts +78 -27
- package/dist/definitions/audit-log/response.schema.d.ts.map +1 -1
- package/dist/definitions/audit-log/response.schema.js +6 -10
- package/dist/definitions/audit-log/response.schema.js.map +1 -1
- package/dist/definitions/common.d.ts +12 -0
- package/dist/definitions/common.d.ts.map +1 -1
- package/dist/definitions/common.js +11 -0
- package/dist/definitions/common.js.map +1 -1
- package/dist/definitions/index.d.ts +1 -1
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/index.js +1 -1
- package/dist/definitions/index.js.map +1 -1
- package/dist/definitions/integrations/api.schema.d.ts +9 -9
- package/dist/definitions/releases/domain.schema.d.ts +6 -1
- package/dist/definitions/releases/domain.schema.d.ts.map +1 -1
- package/dist/definitions/releases/domain.schema.js +2 -2
- package/dist/definitions/releases/domain.schema.js.map +1 -1
- package/dist/definitions/releases/response.schema.d.ts +12 -2
- package/dist/definitions/releases/response.schema.d.ts.map +1 -1
- package/dist/definitions/service-accounts/domain.schema.d.ts +2 -2
- package/dist/definitions/service-accounts/response.schema.d.ts +2 -2
- package/dist/definitions/share-links/domain.schema.d.ts +6 -1
- package/dist/definitions/share-links/domain.schema.d.ts.map +1 -1
- package/dist/definitions/share-links/domain.schema.js +2 -2
- package/dist/definitions/share-links/domain.schema.js.map +1 -1
- package/dist/definitions/share-links/request.schema.d.ts +1 -1
- package/dist/definitions/share-links/response.schema.d.ts +12 -2
- package/dist/definitions/share-links/response.schema.d.ts.map +1 -1
- package/dist/definitions/teams/domain.schema.d.ts +6 -1
- package/dist/definitions/teams/domain.schema.d.ts.map +1 -1
- package/dist/definitions/teams/domain.schema.js +2 -2
- package/dist/definitions/teams/domain.schema.js.map +1 -1
- package/dist/definitions/teams/request.schema.d.ts +1 -1
- package/dist/definitions/teams/response.schema.d.ts +12 -2
- package/dist/definitions/teams/response.schema.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -13,82 +13,74 @@ 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";
|
|
16
17
|
timestamp: "timestamp";
|
|
17
18
|
createdAt: "createdAt";
|
|
18
|
-
riskLevel: "riskLevel";
|
|
19
|
-
action: "action";
|
|
20
19
|
module: "module";
|
|
20
|
+
action: "action";
|
|
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
|
-
version: "version";
|
|
28
|
-
member: "member";
|
|
29
27
|
user: "user";
|
|
30
|
-
team: "team";
|
|
31
|
-
app: "app";
|
|
32
|
-
release: "release";
|
|
33
|
-
artifact: "artifact";
|
|
34
|
-
credential: "credential";
|
|
35
|
-
webhook: "webhook";
|
|
36
|
-
organization: "organization";
|
|
37
|
-
billing: "billing";
|
|
38
|
-
analytics: "analytics";
|
|
39
|
-
integration: "integration";
|
|
40
|
-
store: "store";
|
|
41
|
-
audit_log: "audit_log";
|
|
42
|
-
session: "session";
|
|
43
|
-
role: "role";
|
|
44
|
-
email: "email";
|
|
45
28
|
system: "system";
|
|
46
29
|
api_key: "api_key";
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
plan: "plan";
|
|
30
|
+
webhook: "webhook";
|
|
31
|
+
integration: "integration";
|
|
50
32
|
installation: "installation";
|
|
51
|
-
|
|
52
|
-
settings: "settings";
|
|
33
|
+
credential: "credential";
|
|
53
34
|
alert_event: "alert_event";
|
|
35
|
+
audit_log: "audit_log";
|
|
36
|
+
auth: "auth";
|
|
37
|
+
session: "session";
|
|
54
38
|
oauth: "oauth";
|
|
55
39
|
mfa: "mfa";
|
|
56
40
|
security: "security";
|
|
41
|
+
app: "app";
|
|
42
|
+
artifact: "artifact";
|
|
57
43
|
build: "build";
|
|
58
44
|
variant: "variant";
|
|
45
|
+
version: "version";
|
|
46
|
+
release: "release";
|
|
59
47
|
submission: "submission";
|
|
60
48
|
review: "review";
|
|
61
49
|
rollout: "rollout";
|
|
50
|
+
organization: "organization";
|
|
51
|
+
team: "team";
|
|
52
|
+
member: "member";
|
|
62
53
|
invitation: "invitation";
|
|
54
|
+
role: "role";
|
|
63
55
|
permission: "permission";
|
|
56
|
+
billing: "billing";
|
|
57
|
+
subscription: "subscription";
|
|
58
|
+
plan: "plan";
|
|
64
59
|
invoice: "invoice";
|
|
65
60
|
payment: "payment";
|
|
61
|
+
usage: "usage";
|
|
62
|
+
store: "store";
|
|
66
63
|
store_connection: "store_connection";
|
|
67
64
|
store_metadata: "store_metadata";
|
|
68
65
|
store_pricing: "store_pricing";
|
|
69
66
|
store_localization: "store_localization";
|
|
67
|
+
analytics: "analytics";
|
|
70
68
|
report: "report";
|
|
71
69
|
dashboard: "dashboard";
|
|
72
70
|
export: "export";
|
|
71
|
+
settings: "settings";
|
|
73
72
|
notification: "notification";
|
|
73
|
+
email: "email";
|
|
74
74
|
}>>;
|
|
75
75
|
action: z.ZodOptional<z.ZodEnum<{
|
|
76
|
+
export: "export";
|
|
76
77
|
create: "create";
|
|
77
78
|
read: "read";
|
|
78
79
|
update: "update";
|
|
79
80
|
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";
|
|
90
81
|
list: "list";
|
|
91
82
|
get: "get";
|
|
83
|
+
search: "search";
|
|
92
84
|
batch_create: "batch_create";
|
|
93
85
|
batch_update: "batch_update";
|
|
94
86
|
batch_delete: "batch_delete";
|
|
@@ -123,18 +115,22 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
123
115
|
deliver: "deliver";
|
|
124
116
|
retry: "retry";
|
|
125
117
|
acknowledge: "acknowledge";
|
|
118
|
+
skip: "skip";
|
|
126
119
|
fail: "fail";
|
|
127
120
|
connect: "connect";
|
|
128
121
|
disconnect: "disconnect";
|
|
129
122
|
test_connection: "test_connection";
|
|
130
123
|
verify: "verify";
|
|
124
|
+
sync: "sync";
|
|
131
125
|
refresh: "refresh";
|
|
132
126
|
import: "import";
|
|
133
127
|
view: "view";
|
|
134
128
|
download: "download";
|
|
129
|
+
upload: "upload";
|
|
135
130
|
preview: "preview";
|
|
136
131
|
clone: "clone";
|
|
137
132
|
duplicate: "duplicate";
|
|
133
|
+
login: "login";
|
|
138
134
|
logout: "logout";
|
|
139
135
|
register: "register";
|
|
140
136
|
password_reset: "password_reset";
|
|
@@ -158,6 +154,7 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
158
154
|
invite_reject: "invite_reject";
|
|
159
155
|
invite_cancel: "invite_cancel";
|
|
160
156
|
invite_resend: "invite_resend";
|
|
157
|
+
join: "join";
|
|
161
158
|
leave: "leave";
|
|
162
159
|
remove: "remove";
|
|
163
160
|
kick: "kick";
|
|
@@ -171,7 +168,10 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
171
168
|
permission_grant: "permission_grant";
|
|
172
169
|
permission_revoke: "permission_revoke";
|
|
173
170
|
submit: "submit";
|
|
171
|
+
approve: "approve";
|
|
172
|
+
reject: "reject";
|
|
174
173
|
cancel: "cancel";
|
|
174
|
+
rollback: "rollback";
|
|
175
175
|
promote: "promote";
|
|
176
176
|
publish: "publish";
|
|
177
177
|
unpublish: "unpublish";
|
|
@@ -214,60 +214,59 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
214
214
|
notification_update: "notification_update";
|
|
215
215
|
}>>;
|
|
216
216
|
actionCategory: z.ZodOptional<z.ZodEnum<{
|
|
217
|
-
admin: "admin";
|
|
218
|
-
billing: "billing";
|
|
219
|
-
integration: "integration";
|
|
220
217
|
system: "system";
|
|
218
|
+
integration: "integration";
|
|
221
219
|
security: "security";
|
|
220
|
+
billing: "billing";
|
|
222
221
|
export: "export";
|
|
223
222
|
data_access: "data_access";
|
|
224
223
|
data_modification: "data_modification";
|
|
224
|
+
admin: "admin";
|
|
225
225
|
}>>;
|
|
226
226
|
resourceType: z.ZodOptional<z.ZodEnum<{
|
|
227
|
-
version: "version";
|
|
228
|
-
member: "member";
|
|
229
227
|
user: "user";
|
|
230
|
-
|
|
231
|
-
app: "app";
|
|
232
|
-
release: "release";
|
|
233
|
-
artifact: "artifact";
|
|
234
|
-
credential: "credential";
|
|
228
|
+
api_key: "api_key";
|
|
235
229
|
webhook: "webhook";
|
|
236
|
-
organization: "organization";
|
|
237
230
|
integration: "integration";
|
|
238
|
-
store: "store";
|
|
239
|
-
audit_log: "audit_log";
|
|
240
|
-
session: "session";
|
|
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
231
|
installation: "installation";
|
|
250
|
-
|
|
232
|
+
credential: "credential";
|
|
251
233
|
alert_event: "alert_event";
|
|
234
|
+
audit_log: "audit_log";
|
|
235
|
+
session: "session";
|
|
236
|
+
app: "app";
|
|
237
|
+
artifact: "artifact";
|
|
252
238
|
build: "build";
|
|
253
239
|
variant: "variant";
|
|
240
|
+
version: "version";
|
|
241
|
+
release: "release";
|
|
254
242
|
submission: "submission";
|
|
255
243
|
review: "review";
|
|
256
244
|
rollout: "rollout";
|
|
245
|
+
organization: "organization";
|
|
246
|
+
team: "team";
|
|
247
|
+
member: "member";
|
|
257
248
|
invitation: "invitation";
|
|
249
|
+
role: "role";
|
|
258
250
|
permission: "permission";
|
|
251
|
+
subscription: "subscription";
|
|
252
|
+
plan: "plan";
|
|
259
253
|
invoice: "invoice";
|
|
260
254
|
payment: "payment";
|
|
255
|
+
store: "store";
|
|
261
256
|
store_connection: "store_connection";
|
|
262
257
|
store_metadata: "store_metadata";
|
|
263
258
|
store_pricing: "store_pricing";
|
|
264
259
|
store_localization: "store_localization";
|
|
265
260
|
report: "report";
|
|
266
261
|
dashboard: "dashboard";
|
|
262
|
+
settings: "settings";
|
|
267
263
|
webhook_delivery: "webhook_delivery";
|
|
268
264
|
webhook_endpoint: "webhook_endpoint";
|
|
269
265
|
oauth_connection: "oauth_connection";
|
|
270
266
|
mfa_device: "mfa_device";
|
|
267
|
+
access_token: "access_token";
|
|
268
|
+
refresh_token: "refresh_token";
|
|
269
|
+
password: "password";
|
|
271
270
|
email_verification: "email_verification";
|
|
272
271
|
icon: "icon";
|
|
273
272
|
screenshot: "screenshot";
|
|
@@ -282,6 +281,7 @@ export declare const AuditLogFilterQuerySchema: z.ZodObject<{
|
|
|
282
281
|
discount: "discount";
|
|
283
282
|
store_screenshot: "store_screenshot";
|
|
284
283
|
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";
|
|
296
294
|
system: "system";
|
|
297
295
|
api_key: "api_key";
|
|
296
|
+
webhook: "webhook";
|
|
298
297
|
scheduled_job: "scheduled_job";
|
|
298
|
+
integration: "integration";
|
|
299
299
|
}>>;
|
|
300
300
|
status: z.ZodOptional<z.ZodEnum<{
|
|
301
301
|
success: "success";
|
|
302
|
-
pending: "pending";
|
|
303
302
|
failure: "failure";
|
|
303
|
+
pending: "pending";
|
|
304
304
|
}>>;
|
|
305
305
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
306
306
|
low: "low";
|
|
@@ -332,71 +332,63 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
332
332
|
pdf: "pdf";
|
|
333
333
|
}>;
|
|
334
334
|
module: z.ZodOptional<z.ZodEnum<{
|
|
335
|
-
version: "version";
|
|
336
|
-
member: "member";
|
|
337
335
|
user: "user";
|
|
338
|
-
team: "team";
|
|
339
|
-
app: "app";
|
|
340
|
-
release: "release";
|
|
341
|
-
artifact: "artifact";
|
|
342
|
-
credential: "credential";
|
|
343
|
-
webhook: "webhook";
|
|
344
|
-
organization: "organization";
|
|
345
|
-
billing: "billing";
|
|
346
|
-
analytics: "analytics";
|
|
347
|
-
integration: "integration";
|
|
348
|
-
store: "store";
|
|
349
|
-
audit_log: "audit_log";
|
|
350
|
-
session: "session";
|
|
351
|
-
role: "role";
|
|
352
|
-
email: "email";
|
|
353
336
|
system: "system";
|
|
354
337
|
api_key: "api_key";
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
plan: "plan";
|
|
338
|
+
webhook: "webhook";
|
|
339
|
+
integration: "integration";
|
|
358
340
|
installation: "installation";
|
|
359
|
-
|
|
360
|
-
settings: "settings";
|
|
341
|
+
credential: "credential";
|
|
361
342
|
alert_event: "alert_event";
|
|
343
|
+
audit_log: "audit_log";
|
|
344
|
+
auth: "auth";
|
|
345
|
+
session: "session";
|
|
362
346
|
oauth: "oauth";
|
|
363
347
|
mfa: "mfa";
|
|
364
348
|
security: "security";
|
|
349
|
+
app: "app";
|
|
350
|
+
artifact: "artifact";
|
|
365
351
|
build: "build";
|
|
366
352
|
variant: "variant";
|
|
353
|
+
version: "version";
|
|
354
|
+
release: "release";
|
|
367
355
|
submission: "submission";
|
|
368
356
|
review: "review";
|
|
369
357
|
rollout: "rollout";
|
|
358
|
+
organization: "organization";
|
|
359
|
+
team: "team";
|
|
360
|
+
member: "member";
|
|
370
361
|
invitation: "invitation";
|
|
362
|
+
role: "role";
|
|
371
363
|
permission: "permission";
|
|
364
|
+
billing: "billing";
|
|
365
|
+
subscription: "subscription";
|
|
366
|
+
plan: "plan";
|
|
372
367
|
invoice: "invoice";
|
|
373
368
|
payment: "payment";
|
|
369
|
+
usage: "usage";
|
|
370
|
+
store: "store";
|
|
374
371
|
store_connection: "store_connection";
|
|
375
372
|
store_metadata: "store_metadata";
|
|
376
373
|
store_pricing: "store_pricing";
|
|
377
374
|
store_localization: "store_localization";
|
|
375
|
+
analytics: "analytics";
|
|
378
376
|
report: "report";
|
|
379
377
|
dashboard: "dashboard";
|
|
380
378
|
export: "export";
|
|
379
|
+
settings: "settings";
|
|
381
380
|
notification: "notification";
|
|
381
|
+
email: "email";
|
|
382
382
|
}>>;
|
|
383
383
|
action: z.ZodOptional<z.ZodEnum<{
|
|
384
|
+
export: "export";
|
|
384
385
|
create: "create";
|
|
385
386
|
read: "read";
|
|
386
387
|
update: "update";
|
|
387
388
|
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";
|
|
398
389
|
list: "list";
|
|
399
390
|
get: "get";
|
|
391
|
+
search: "search";
|
|
400
392
|
batch_create: "batch_create";
|
|
401
393
|
batch_update: "batch_update";
|
|
402
394
|
batch_delete: "batch_delete";
|
|
@@ -431,18 +423,22 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
431
423
|
deliver: "deliver";
|
|
432
424
|
retry: "retry";
|
|
433
425
|
acknowledge: "acknowledge";
|
|
426
|
+
skip: "skip";
|
|
434
427
|
fail: "fail";
|
|
435
428
|
connect: "connect";
|
|
436
429
|
disconnect: "disconnect";
|
|
437
430
|
test_connection: "test_connection";
|
|
438
431
|
verify: "verify";
|
|
432
|
+
sync: "sync";
|
|
439
433
|
refresh: "refresh";
|
|
440
434
|
import: "import";
|
|
441
435
|
view: "view";
|
|
442
436
|
download: "download";
|
|
437
|
+
upload: "upload";
|
|
443
438
|
preview: "preview";
|
|
444
439
|
clone: "clone";
|
|
445
440
|
duplicate: "duplicate";
|
|
441
|
+
login: "login";
|
|
446
442
|
logout: "logout";
|
|
447
443
|
register: "register";
|
|
448
444
|
password_reset: "password_reset";
|
|
@@ -466,6 +462,7 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
466
462
|
invite_reject: "invite_reject";
|
|
467
463
|
invite_cancel: "invite_cancel";
|
|
468
464
|
invite_resend: "invite_resend";
|
|
465
|
+
join: "join";
|
|
469
466
|
leave: "leave";
|
|
470
467
|
remove: "remove";
|
|
471
468
|
kick: "kick";
|
|
@@ -479,7 +476,10 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
479
476
|
permission_grant: "permission_grant";
|
|
480
477
|
permission_revoke: "permission_revoke";
|
|
481
478
|
submit: "submit";
|
|
479
|
+
approve: "approve";
|
|
480
|
+
reject: "reject";
|
|
482
481
|
cancel: "cancel";
|
|
482
|
+
rollback: "rollback";
|
|
483
483
|
promote: "promote";
|
|
484
484
|
publish: "publish";
|
|
485
485
|
unpublish: "unpublish";
|
|
@@ -522,60 +522,59 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
522
522
|
notification_update: "notification_update";
|
|
523
523
|
}>>;
|
|
524
524
|
actionCategory: z.ZodOptional<z.ZodEnum<{
|
|
525
|
-
admin: "admin";
|
|
526
|
-
billing: "billing";
|
|
527
|
-
integration: "integration";
|
|
528
525
|
system: "system";
|
|
526
|
+
integration: "integration";
|
|
529
527
|
security: "security";
|
|
528
|
+
billing: "billing";
|
|
530
529
|
export: "export";
|
|
531
530
|
data_access: "data_access";
|
|
532
531
|
data_modification: "data_modification";
|
|
532
|
+
admin: "admin";
|
|
533
533
|
}>>;
|
|
534
534
|
resourceType: z.ZodOptional<z.ZodEnum<{
|
|
535
|
-
version: "version";
|
|
536
|
-
member: "member";
|
|
537
535
|
user: "user";
|
|
538
|
-
|
|
539
|
-
app: "app";
|
|
540
|
-
release: "release";
|
|
541
|
-
artifact: "artifact";
|
|
542
|
-
credential: "credential";
|
|
536
|
+
api_key: "api_key";
|
|
543
537
|
webhook: "webhook";
|
|
544
|
-
organization: "organization";
|
|
545
538
|
integration: "integration";
|
|
546
|
-
store: "store";
|
|
547
|
-
audit_log: "audit_log";
|
|
548
|
-
session: "session";
|
|
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
539
|
installation: "installation";
|
|
558
|
-
|
|
540
|
+
credential: "credential";
|
|
559
541
|
alert_event: "alert_event";
|
|
542
|
+
audit_log: "audit_log";
|
|
543
|
+
session: "session";
|
|
544
|
+
app: "app";
|
|
545
|
+
artifact: "artifact";
|
|
560
546
|
build: "build";
|
|
561
547
|
variant: "variant";
|
|
548
|
+
version: "version";
|
|
549
|
+
release: "release";
|
|
562
550
|
submission: "submission";
|
|
563
551
|
review: "review";
|
|
564
552
|
rollout: "rollout";
|
|
553
|
+
organization: "organization";
|
|
554
|
+
team: "team";
|
|
555
|
+
member: "member";
|
|
565
556
|
invitation: "invitation";
|
|
557
|
+
role: "role";
|
|
566
558
|
permission: "permission";
|
|
559
|
+
subscription: "subscription";
|
|
560
|
+
plan: "plan";
|
|
567
561
|
invoice: "invoice";
|
|
568
562
|
payment: "payment";
|
|
563
|
+
store: "store";
|
|
569
564
|
store_connection: "store_connection";
|
|
570
565
|
store_metadata: "store_metadata";
|
|
571
566
|
store_pricing: "store_pricing";
|
|
572
567
|
store_localization: "store_localization";
|
|
573
568
|
report: "report";
|
|
574
569
|
dashboard: "dashboard";
|
|
570
|
+
settings: "settings";
|
|
575
571
|
webhook_delivery: "webhook_delivery";
|
|
576
572
|
webhook_endpoint: "webhook_endpoint";
|
|
577
573
|
oauth_connection: "oauth_connection";
|
|
578
574
|
mfa_device: "mfa_device";
|
|
575
|
+
access_token: "access_token";
|
|
576
|
+
refresh_token: "refresh_token";
|
|
577
|
+
password: "password";
|
|
579
578
|
email_verification: "email_verification";
|
|
580
579
|
icon: "icon";
|
|
581
580
|
screenshot: "screenshot";
|
|
@@ -590,6 +589,7 @@ export declare const AuditLogExportSchema: z.ZodObject<{
|
|
|
590
589
|
discount: "discount";
|
|
591
590
|
store_screenshot: "store_screenshot";
|
|
592
591
|
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";
|
|
604
602
|
system: "system";
|
|
605
603
|
api_key: "api_key";
|
|
604
|
+
webhook: "webhook";
|
|
606
605
|
scheduled_job: "scheduled_job";
|
|
606
|
+
integration: "integration";
|
|
607
607
|
}>>;
|
|
608
608
|
status: z.ZodOptional<z.ZodEnum<{
|
|
609
609
|
success: "success";
|
|
610
|
-
pending: "pending";
|
|
611
610
|
failure: "failure";
|
|
611
|
+
pending: "pending";
|
|
612
612
|
}>>;
|
|
613
613
|
riskLevel: z.ZodOptional<z.ZodEnum<{
|
|
614
614
|
low: "low";
|