vercel-api-js 1.17.0 → 1.18.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/index.cjs +1 -1
- package/dist/index.d.ts +47230 -47200
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-k0m5cdq9.cjs → schemas-h2au2774.cjs} +6150 -6127
- package/dist/{schemas-fvbjfupl.js → schemas-k9fiajx5.js} +6150 -6127
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +5930 -5915
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1524 -1521
- package/dist/types.d.mts +6170 -6155
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1524 -1521
- package/package.json +1 -1
package/dist/types.mjs
CHANGED
|
@@ -4,7 +4,11 @@
|
|
|
4
4
|
*/ /**
|
|
5
5
|
* @description Arbitrary per-provider AI SDK options, keyed by gateway provider slug.
|
|
6
6
|
* @type object
|
|
7
|
-
*/ const
|
|
7
|
+
*/ const aiGatewayVirtualModelConfigHasEnum = {
|
|
8
|
+
"implicit-caching": "implicit-caching",
|
|
9
|
+
vision: "vision"
|
|
10
|
+
};
|
|
11
|
+
const scopeEnum = {
|
|
8
12
|
global: "global",
|
|
9
13
|
specific: "specific",
|
|
10
14
|
zone: "zone"
|
|
@@ -20,6 +24,11 @@ const aiGatewayVirtualModelConfigSelectorEnum = {
|
|
|
20
24
|
tps: "tps",
|
|
21
25
|
ttft: "ttft"
|
|
22
26
|
};
|
|
27
|
+
const aiGatewayVirtualModelConfigServiceTierEnum = {
|
|
28
|
+
fast: "fast",
|
|
29
|
+
flex: "flex",
|
|
30
|
+
priority: "priority"
|
|
31
|
+
};
|
|
23
32
|
const aiGatewayVirtualModelConfigSortEnum = {
|
|
24
33
|
cost: "cost",
|
|
25
34
|
latency: "latency",
|
|
@@ -28,15 +37,6 @@ const aiGatewayVirtualModelConfigSortEnum = {
|
|
|
28
37
|
tps: "tps",
|
|
29
38
|
ttft: "ttft"
|
|
30
39
|
};
|
|
31
|
-
const aiGatewayVirtualModelConfigHasEnum = {
|
|
32
|
-
"implicit-caching": "implicit-caching",
|
|
33
|
-
vision: "vision"
|
|
34
|
-
};
|
|
35
|
-
const aiGatewayVirtualModelConfigServiceTierEnum = {
|
|
36
|
-
fast: "fast",
|
|
37
|
-
flex: "flex",
|
|
38
|
-
priority: "priority"
|
|
39
|
-
};
|
|
40
40
|
const aiGatewayRuleTypeEnum = {
|
|
41
41
|
deny: "deny",
|
|
42
42
|
rewrite: "rewrite"
|
|
@@ -60,6 +60,11 @@ const connectConnectorCreationModeEnum = {
|
|
|
60
60
|
managed: "managed",
|
|
61
61
|
manual: "manual"
|
|
62
62
|
};
|
|
63
|
+
const connectConnectorSupportsIconEnum = {
|
|
64
|
+
false: false,
|
|
65
|
+
maybe: "maybe",
|
|
66
|
+
true: true
|
|
67
|
+
};
|
|
63
68
|
const connectConnectorTypeEnum = {
|
|
64
69
|
"api-key": "api-key",
|
|
65
70
|
"aws-alpha": "aws-alpha",
|
|
@@ -78,15 +83,15 @@ const connectConnectorTypeEnum = {
|
|
|
78
83
|
snowflake: "snowflake",
|
|
79
84
|
"snowflake-wif": "snowflake-wif"
|
|
80
85
|
};
|
|
81
|
-
const connectConnectorSupportsIconEnum = {
|
|
82
|
-
false: false,
|
|
83
|
-
maybe: "maybe",
|
|
84
|
-
true: true
|
|
85
|
-
};
|
|
86
86
|
const connectConnectorCreateResultCreationModeEnum = {
|
|
87
87
|
managed: "managed",
|
|
88
88
|
manual: "manual"
|
|
89
89
|
};
|
|
90
|
+
const connectConnectorCreateResultSupportsIconEnum = {
|
|
91
|
+
false: false,
|
|
92
|
+
maybe: "maybe",
|
|
93
|
+
true: true
|
|
94
|
+
};
|
|
90
95
|
const connectConnectorCreateResultTypeEnum = {
|
|
91
96
|
"api-key": "api-key",
|
|
92
97
|
"aws-alpha": "aws-alpha",
|
|
@@ -105,11 +110,6 @@ const connectConnectorCreateResultTypeEnum = {
|
|
|
105
110
|
snowflake: "snowflake",
|
|
106
111
|
"snowflake-wif": "snowflake-wif"
|
|
107
112
|
};
|
|
108
|
-
const connectConnectorCreateResultSupportsIconEnum = {
|
|
109
|
-
false: false,
|
|
110
|
-
maybe: "maybe",
|
|
111
|
-
true: true
|
|
112
|
-
};
|
|
113
113
|
const connectConnectorCreateDataServerConfigJwksKeysUseEnum = {
|
|
114
114
|
sig: "sig",
|
|
115
115
|
enc: "enc"
|
|
@@ -154,6 +154,31 @@ const globalConfigItemValue = {
|
|
|
154
154
|
false: false,
|
|
155
155
|
true: true
|
|
156
156
|
};
|
|
157
|
+
const userEventCategoriesEnum = {
|
|
158
|
+
account: "account",
|
|
159
|
+
ai: "ai",
|
|
160
|
+
"ai-gateway": "ai-gateway",
|
|
161
|
+
billing: "billing",
|
|
162
|
+
connect: "connect",
|
|
163
|
+
deployment: "deployment",
|
|
164
|
+
domain: "domain",
|
|
165
|
+
edge: "edge",
|
|
166
|
+
"env-variable": "env-variable",
|
|
167
|
+
"feature-flags": "feature-flags",
|
|
168
|
+
firewall: "firewall",
|
|
169
|
+
integration: "integration",
|
|
170
|
+
microfrontends: "microfrontends",
|
|
171
|
+
network: "network",
|
|
172
|
+
observability: "observability",
|
|
173
|
+
other: "other",
|
|
174
|
+
project: "project",
|
|
175
|
+
security: "security",
|
|
176
|
+
storage: "storage",
|
|
177
|
+
team: "team",
|
|
178
|
+
v0: "v0",
|
|
179
|
+
"vercel-app": "vercel-app",
|
|
180
|
+
workflow: "workflow"
|
|
181
|
+
};
|
|
157
182
|
const userEventEntitiesTypeEnum = {
|
|
158
183
|
app: "app",
|
|
159
184
|
author: "author",
|
|
@@ -179,855 +204,143 @@ const userEventEntitiesTypeEnum = {
|
|
|
179
204
|
system: "system",
|
|
180
205
|
target: "target"
|
|
181
206
|
};
|
|
182
|
-
const
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
"
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
"
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"
|
|
278
|
-
|
|
279
|
-
"
|
|
280
|
-
"
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
296
|
-
"connect
|
|
297
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
"
|
|
301
|
-
"
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"
|
|
308
|
-
"
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
"custom-metric-metadata-updated": "custom-metric-metadata-updated",
|
|
320
|
-
"custom-suffix-clear": "custom-suffix-clear",
|
|
321
|
-
"custom-suffix-disable": "custom-suffix-disable",
|
|
322
|
-
"custom-suffix-enable": "custom-suffix-enable",
|
|
323
|
-
"custom-suffix-pending": "custom-suffix-pending",
|
|
324
|
-
"custom-suffix-ready": "custom-suffix-ready",
|
|
325
|
-
"deploy-hook-created": "deploy-hook-created",
|
|
326
|
-
"deploy-hook-deduped": "deploy-hook-deduped",
|
|
327
|
-
"deploy-hook-deleted": "deploy-hook-deleted",
|
|
328
|
-
"deploy-hook-processed": "deploy-hook-processed",
|
|
329
|
-
deployment: "deployment",
|
|
330
|
-
"deployment-check-created": "deployment-check-created",
|
|
331
|
-
"deployment-check-deleted": "deployment-check-deleted",
|
|
332
|
-
"deployment-check-updated": "deployment-check-updated",
|
|
333
|
-
"deployment-chown": "deployment-chown",
|
|
334
|
-
"deployment-creation-blocked": "deployment-creation-blocked",
|
|
335
|
-
"deployment-delete": "deployment-delete",
|
|
336
|
-
"deployment-policy-blocked": "deployment-policy-blocked",
|
|
337
|
-
"deployment-undeleted": "deployment-undeleted",
|
|
338
|
-
"disabled-integration-installation-removed": "disabled-integration-installation-removed",
|
|
339
|
-
"disconnect-bitbucket-app": "disconnect-bitbucket-app",
|
|
340
|
-
"disconnect-github": "disconnect-github",
|
|
341
|
-
"disconnect-github-custom-host": "disconnect-github-custom-host",
|
|
342
|
-
"disconnect-github-limited": "disconnect-github-limited",
|
|
343
|
-
"disconnect-gitlab-app": "disconnect-gitlab-app",
|
|
344
|
-
"dns-add": "dns-add",
|
|
345
|
-
"dns-delete": "dns-delete",
|
|
346
|
-
"dns-record-internal": "dns-record-internal",
|
|
347
|
-
"dns-update": "dns-update",
|
|
348
|
-
"dns-zonefile-import": "dns-zonefile-import",
|
|
349
|
-
domain: "domain",
|
|
350
|
-
"domain-buy": "domain-buy",
|
|
351
|
-
"domain-cdn": "domain-cdn",
|
|
352
|
-
"domain-chown": "domain-chown",
|
|
353
|
-
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
354
|
-
"domain-delegated": "domain-delegated",
|
|
355
|
-
"domain-delete": "domain-delete",
|
|
356
|
-
"domain-ech-change": "domain-ech-change",
|
|
357
|
-
"domain-move-in": "domain-move-in",
|
|
358
|
-
"domain-move-out": "domain-move-out",
|
|
359
|
-
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
360
|
-
"domain-renew-change": "domain-renew-change",
|
|
361
|
-
"domain-service-type-updated": "domain-service-type-updated",
|
|
362
|
-
"domain-transfer-in": "domain-transfer-in",
|
|
363
|
-
"domain-transfer-in-canceled": "domain-transfer-in-canceled",
|
|
364
|
-
"domain-transfer-in-completed": "domain-transfer-in-completed",
|
|
365
|
-
"domain-zone-change": "domain-zone-change",
|
|
366
|
-
"domain-zone-change-internal": "domain-zone-change-internal",
|
|
367
|
-
"drain-created": "drain-created",
|
|
368
|
-
"drain-deleted": "drain-deleted",
|
|
369
|
-
"drain-disabled": "drain-disabled",
|
|
370
|
-
"drain-enabled": "drain-enabled",
|
|
371
|
-
"drain-updated": "drain-updated",
|
|
372
|
-
"edge-cache-dangerously-delete-by-src-images": "edge-cache-dangerously-delete-by-src-images",
|
|
373
|
-
"edge-cache-dangerously-delete-by-tags": "edge-cache-dangerously-delete-by-tags",
|
|
374
|
-
"edge-cache-dangerously-delete-immutable-static": "edge-cache-dangerously-delete-immutable-static",
|
|
375
|
-
"edge-cache-invalidate-by-src-images": "edge-cache-invalidate-by-src-images",
|
|
376
|
-
"edge-cache-invalidate-by-tags": "edge-cache-invalidate-by-tags",
|
|
377
|
-
"edge-cache-purge-all": "edge-cache-purge-all",
|
|
378
|
-
"edge-cache-rollback-purge": "edge-cache-rollback-purge",
|
|
379
|
-
"edge-config-backup-restored": "edge-config-backup-restored",
|
|
380
|
-
"edge-config-created": "edge-config-created",
|
|
381
|
-
"edge-config-deleted": "edge-config-deleted",
|
|
382
|
-
"edge-config-items-updated": "edge-config-items-updated",
|
|
383
|
-
"edge-config-schema-deleted": "edge-config-schema-deleted",
|
|
384
|
-
"edge-config-schema-updated": "edge-config-schema-updated",
|
|
385
|
-
"edge-config-token-created": "edge-config-token-created",
|
|
386
|
-
"edge-config-token-deleted": "edge-config-token-deleted",
|
|
387
|
-
"edge-config-transfer-in": "edge-config-transfer-in",
|
|
388
|
-
"edge-config-transfer-out": "edge-config-transfer-out",
|
|
389
|
-
"edge-config-updated": "edge-config-updated",
|
|
390
|
-
email: "email",
|
|
391
|
-
"email-notification-rule-removed": "email-notification-rule-removed",
|
|
392
|
-
"email-notification-rule-updated": "email-notification-rule-updated",
|
|
393
|
-
"emu-member-removed-unverified-domain": "emu-member-removed-unverified-domain",
|
|
394
|
-
"enforce-disjunctive-production-secrets": "enforce-disjunctive-production-secrets",
|
|
395
|
-
"enforce-sensitive-environment-variables": "enforce-sensitive-environment-variables",
|
|
396
|
-
"env-variable-add": "env-variable-add",
|
|
397
|
-
"env-variable-delete": "env-variable-delete",
|
|
398
|
-
"env-variable-edit": "env-variable-edit",
|
|
399
|
-
"env-variable-masked": "env-variable-masked",
|
|
400
|
-
"env-variable-read": "env-variable-read",
|
|
401
|
-
"env-variable-read:cli:dev": "env-variable-read:cli:dev",
|
|
402
|
-
"env-variable-read:cli:env:add": "env-variable-read:cli:env:add",
|
|
403
|
-
"env-variable-read:cli:env:ls": "env-variable-read:cli:env:ls",
|
|
404
|
-
"env-variable-read:cli:env:pull": "env-variable-read:cli:env:pull",
|
|
405
|
-
"env-variable-read:cli:env:rm": "env-variable-read:cli:env:rm",
|
|
406
|
-
"env-variable-read:cli:pull": "env-variable-read:cli:pull",
|
|
407
|
-
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
408
|
-
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
409
|
-
"env-variable-rotated": "env-variable-rotated",
|
|
410
|
-
"experiment-created": "experiment-created",
|
|
411
|
-
"experiment-deleted": "experiment-deleted",
|
|
412
|
-
"experiment-transitioned": "experiment-transitioned",
|
|
413
|
-
"experiment-updated": "experiment-updated",
|
|
414
|
-
"firewall-bypass-created": "firewall-bypass-created",
|
|
415
|
-
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
416
|
-
"firewall-config-modified": "firewall-config-modified",
|
|
417
|
-
"firewall-config-promoted": "firewall-config-promoted",
|
|
418
|
-
"firewall-config-removed": "firewall-config-removed",
|
|
419
|
-
"firewall-managed-rulegroup-updated": "firewall-managed-rulegroup-updated",
|
|
420
|
-
"firewall-managed-ruleset-updated": "firewall-managed-ruleset-updated",
|
|
421
|
-
flag: "flag",
|
|
422
|
-
"flag-archived": "flag-archived",
|
|
423
|
-
"flag-created": "flag-created",
|
|
424
|
-
"flag-deleted": "flag-deleted",
|
|
425
|
-
"flag-unarchived": "flag-unarchived",
|
|
426
|
-
"flag-updated": "flag-updated",
|
|
427
|
-
"flags-explorer-subscription": "flags-explorer-subscription",
|
|
428
|
-
"flags-sdk-key": "flags-sdk-key",
|
|
429
|
-
"flags-sdk-key-added": "flags-sdk-key-added",
|
|
430
|
-
"flags-sdk-key-deleted": "flags-sdk-key-deleted",
|
|
431
|
-
"flags-sdk-key-read": "flags-sdk-key-read",
|
|
432
|
-
"flags-segment": "flags-segment",
|
|
433
|
-
"flags-settings": "flags-settings",
|
|
434
|
-
"flags-transferred": "flags-transferred",
|
|
435
|
-
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
436
|
-
"git-integration-repo-push": "git-integration-repo-push",
|
|
437
|
-
git_account_integration_link_added: "git_account_integration_link_added",
|
|
438
|
-
"global-config-backup-restored": "global-config-backup-restored",
|
|
439
|
-
"global-config-created": "global-config-created",
|
|
440
|
-
"global-config-deleted": "global-config-deleted",
|
|
441
|
-
"global-config-items-updated": "global-config-items-updated",
|
|
442
|
-
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
443
|
-
"global-config-schema-updated": "global-config-schema-updated",
|
|
444
|
-
"global-config-token-created": "global-config-token-created",
|
|
445
|
-
"global-config-token-deleted": "global-config-token-deleted",
|
|
446
|
-
"global-config-transfer-in": "global-config-transfer-in",
|
|
447
|
-
"global-config-transfer-out": "global-config-transfer-out",
|
|
448
|
-
"global-config-updated": "global-config-updated",
|
|
449
|
-
"instant-rollback-created": "instant-rollback-created",
|
|
450
|
-
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
451
|
-
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
452
|
-
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
453
|
-
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
454
|
-
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
455
|
-
"integration-configuration-transfer-out-success": "integration-configuration-transfer-out-success",
|
|
456
|
-
"integration-configurations-disabled": "integration-configurations-disabled",
|
|
457
|
-
"integration-installation-billing-plan-updated": "integration-installation-billing-plan-updated",
|
|
458
|
-
"integration-installation-completed": "integration-installation-completed",
|
|
459
|
-
"integration-installation-permission-updated": "integration-installation-permission-updated",
|
|
460
|
-
"integration-installation-removed": "integration-installation-removed",
|
|
461
|
-
"integration-resource-redis-command-executed": "integration-resource-redis-command-executed",
|
|
462
|
-
"integration-resource-sql-query-executed": "integration-resource-sql-query-executed",
|
|
463
|
-
"integration-scope-changed": "integration-scope-changed",
|
|
464
|
-
"invoice-modified": "invoice-modified",
|
|
465
|
-
"invoice-refunded": "invoice-refunded",
|
|
466
|
-
"kms-issuer-created": "kms-issuer-created",
|
|
467
|
-
"kms-issuer-deleted": "kms-issuer-deleted",
|
|
468
|
-
"kms-issuer-key-activated": "kms-issuer-key-activated",
|
|
469
|
-
"kms-issuer-key-created": "kms-issuer-key-created",
|
|
470
|
-
"kms-issuer-key-revoked": "kms-issuer-key-revoked",
|
|
471
|
-
"kms-issuer-key-rotated": "kms-issuer-key-rotated",
|
|
472
|
-
"kms-issuer-policy-created": "kms-issuer-policy-created",
|
|
473
|
-
"kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
|
|
474
|
-
"kms-issuer-policy-updated": "kms-issuer-policy-updated",
|
|
475
|
-
"kms-issuer-updated": "kms-issuer-updated",
|
|
476
|
-
"log-drain-created": "log-drain-created",
|
|
477
|
-
"log-drain-deleted": "log-drain-deleted",
|
|
478
|
-
"log-drain-disabled": "log-drain-disabled",
|
|
479
|
-
"log-drain-enabled": "log-drain-enabled",
|
|
480
|
-
login: "login",
|
|
481
|
-
"login-connection-linked": "login-connection-linked",
|
|
482
|
-
"login-connection-unlinked": "login-connection-unlinked",
|
|
483
|
-
"manual-deployment-promotion-created": "manual-deployment-promotion-created",
|
|
484
|
-
"marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
|
|
485
|
-
"marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
|
|
486
|
-
"microfrontend-group-added": "microfrontend-group-added",
|
|
487
|
-
"microfrontend-group-deleted": "microfrontend-group-deleted",
|
|
488
|
-
"microfrontend-group-updated": "microfrontend-group-updated",
|
|
489
|
-
"microfrontend-project-added-to-group": "microfrontend-project-added-to-group",
|
|
490
|
-
"microfrontend-project-removed-from-group": "microfrontend-project-removed-from-group",
|
|
491
|
-
"microfrontend-project-updated": "microfrontend-project-updated",
|
|
492
|
-
"monitoring-alert-updated": "monitoring-alert-updated",
|
|
493
|
-
"monitoring-disabled": "monitoring-disabled",
|
|
494
|
-
"monitoring-enabled": "monitoring-enabled",
|
|
495
|
-
"oauth-app-connection-created": "oauth-app-connection-created",
|
|
496
|
-
"oauth-app-connection-removed": "oauth-app-connection-removed",
|
|
497
|
-
"oauth-app-connection-updated": "oauth-app-connection-updated",
|
|
498
|
-
"oauth-app-created": "oauth-app-created",
|
|
499
|
-
"oauth-app-deleted": "oauth-app-deleted",
|
|
500
|
-
"oauth-app-secret-deleted": "oauth-app-secret-deleted",
|
|
501
|
-
"oauth-app-secret-generated": "oauth-app-secret-generated",
|
|
502
|
-
"oauth-app-token-created": "oauth-app-token-created",
|
|
503
|
-
"oauth-app-updated": "oauth-app-updated",
|
|
504
|
-
"observability-disabled": "observability-disabled",
|
|
505
|
-
"observability-enabled": "observability-enabled",
|
|
506
|
-
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
507
|
-
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
508
|
-
"oidc-policy-created": "oidc-policy-created",
|
|
509
|
-
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
510
|
-
"oidc-policy-updated": "oidc-policy-updated",
|
|
511
|
-
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
512
|
-
"organization-create": "organization-create",
|
|
513
|
-
"organization-delete": "organization-delete",
|
|
514
|
-
"organization-dsync-group-delete": "organization-dsync-group-delete",
|
|
515
|
-
"organization-dsync-group-upsert": "organization-dsync-group-upsert",
|
|
516
|
-
"organization-emu-updated": "organization-emu-updated",
|
|
517
|
-
"organization-slug-update": "organization-slug-update",
|
|
518
|
-
"organization-team-add": "organization-team-add",
|
|
519
|
-
"organization-team-create": "organization-team-create",
|
|
520
|
-
"organization-team-delete": "organization-team-delete",
|
|
521
|
-
"organization-team-sso-update": "organization-team-sso-update",
|
|
522
|
-
"owner-blocked": "owner-blocked",
|
|
523
|
-
"owner-soft-blocked": "owner-soft-blocked",
|
|
524
|
-
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
525
|
-
"owner-unblocked": "owner-unblocked",
|
|
526
|
-
"page-integrity-config-updated": "page-integrity-config-updated",
|
|
527
|
-
"page-integrity-header-approved": "page-integrity-header-approved",
|
|
528
|
-
"page-integrity-header-rejected": "page-integrity-header-rejected",
|
|
529
|
-
"page-integrity-inventory-cleared": "page-integrity-inventory-cleared",
|
|
530
|
-
"page-integrity-resource-approved": "page-integrity-resource-approved",
|
|
531
|
-
"page-integrity-resource-deleted": "page-integrity-resource-deleted",
|
|
532
|
-
"page-integrity-resource-rejected": "page-integrity-resource-rejected",
|
|
533
|
-
"page-integrity-script-approval-rule-created": "page-integrity-script-approval-rule-created",
|
|
534
|
-
"page-integrity-script-approval-rule-deleted": "page-integrity-script-approval-rule-deleted",
|
|
535
|
-
"passkey-created": "passkey-created",
|
|
536
|
-
"passkey-deleted": "passkey-deleted",
|
|
537
|
-
"passkey-updated": "passkey-updated",
|
|
538
|
-
"passport-access-granted": "passport-access-granted",
|
|
539
|
-
"password-protection-disabled": "password-protection-disabled",
|
|
540
|
-
"password-protection-enabled": "password-protection-enabled",
|
|
541
|
-
"payment-method-added": "payment-method-added",
|
|
542
|
-
"payment-method-default-updated": "payment-method-default-updated",
|
|
543
|
-
"payment-method-removed": "payment-method-removed",
|
|
544
|
-
plan: "plan",
|
|
545
|
-
"preview-deployment-suffix-disabled": "preview-deployment-suffix-disabled",
|
|
546
|
-
"preview-deployment-suffix-enabled": "preview-deployment-suffix-enabled",
|
|
547
|
-
"preview-deployment-suffix-update": "preview-deployment-suffix-update",
|
|
548
|
-
"privatelink-endpoint-created": "privatelink-endpoint-created",
|
|
549
|
-
"privatelink-endpoint-deleted": "privatelink-endpoint-deleted",
|
|
550
|
-
"privatelink-endpoint-updated": "privatelink-endpoint-updated",
|
|
551
|
-
"production-branch-updated": "production-branch-updated",
|
|
552
|
-
"project-add-alias": "project-add-alias",
|
|
553
|
-
"project-add-redirect": "project-add-redirect",
|
|
554
|
-
"project-affected-projects-deployments-updated": "project-affected-projects-deployments-updated",
|
|
555
|
-
"project-alias-configured-change": "project-alias-configured-change",
|
|
556
|
-
"project-analytics-disabled": "project-analytics-disabled",
|
|
557
|
-
"project-analytics-enabled": "project-analytics-enabled",
|
|
558
|
-
"project-auto-assign-custom-production-domains-updated": "project-auto-assign-custom-production-domains-updated",
|
|
559
|
-
"project-automation-bypass": "project-automation-bypass",
|
|
560
|
-
"project-avatar-update": "project-avatar-update",
|
|
561
|
-
"project-build-command-updated": "project-build-command-updated",
|
|
562
|
-
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
563
|
-
"project-build-machine-updated": "project-build-machine-updated",
|
|
564
|
-
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
565
|
-
"project-client-cert-delete": "project-client-cert-delete",
|
|
566
|
-
"project-client-cert-upload": "project-client-cert-upload",
|
|
567
|
-
"project-connect-configurations": "project-connect-configurations",
|
|
568
|
-
"project-consolidated-git-commit-status-updated": "project-consolidated-git-commit-status-updated",
|
|
569
|
-
"project-created": "project-created",
|
|
570
|
-
"project-cron-jobs-toggled": "project-cron-jobs-toggled",
|
|
571
|
-
"project-custom-environment-created": "project-custom-environment-created",
|
|
572
|
-
"project-custom-environment-deleted": "project-custom-environment-deleted",
|
|
573
|
-
"project-custom-environment-updated": "project-custom-environment-updated",
|
|
574
|
-
"project-customer-success-code-visibility-updated": "project-customer-success-code-visibility-updated",
|
|
575
|
-
"project-delete": "project-delete",
|
|
576
|
-
"project-deployment-policy-updated": "project-deployment-policy-updated",
|
|
577
|
-
"project-deployment-retention-updated": "project-deployment-retention-updated",
|
|
578
|
-
"project-directory-listing": "project-directory-listing",
|
|
579
|
-
"project-domain-deleted": "project-domain-deleted",
|
|
580
|
-
"project-domain-moved": "project-domain-moved",
|
|
581
|
-
"project-domain-unverified": "project-domain-unverified",
|
|
582
|
-
"project-domain-updated": "project-domain-updated",
|
|
583
|
-
"project-domain-verified": "project-domain-verified",
|
|
584
|
-
"project-elastic-concurrency-updated": "project-elastic-concurrency-updated",
|
|
585
|
-
"project-expiration-locked": "project-expiration-locked",
|
|
586
|
-
"project-expiration-reached": "project-expiration-reached",
|
|
587
|
-
"project-expiration-scheduled": "project-expiration-scheduled",
|
|
588
|
-
"project-expiration-unlocked": "project-expiration-unlocked",
|
|
589
|
-
"project-external-rewrite-caching-updated": "project-external-rewrite-caching-updated",
|
|
590
|
-
"project-framework-updated": "project-framework-updated",
|
|
591
|
-
"project-function-cpu-memory": "project-function-cpu-memory",
|
|
592
|
-
"project-function-failover": "project-function-failover",
|
|
593
|
-
"project-function-max-duration": "project-function-max-duration",
|
|
594
|
-
"project-function-regions": "project-function-regions",
|
|
595
|
-
"project-functions-beta-updated": "project-functions-beta-updated",
|
|
596
|
-
"project-functions-fluid-disabled": "project-functions-fluid-disabled",
|
|
597
|
-
"project-functions-fluid-enabled": "project-functions-fluid-enabled",
|
|
598
|
-
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
599
|
-
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
600
|
-
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
601
|
-
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
602
|
-
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
603
|
-
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
604
|
-
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
605
|
-
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
606
|
-
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
607
|
-
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
608
|
-
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
609
|
-
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
610
|
-
"project-git-repository-connected": "project-git-repository-connected",
|
|
611
|
-
"project-git-repository-disconnected": "project-git-repository-disconnected",
|
|
612
|
-
"project-git-repository-dispatch-events-toggled": "project-git-repository-dispatch-events-toggled",
|
|
613
|
-
"project-git-require-verified-commits-toggled": "project-git-require-verified-commits-toggled",
|
|
614
|
-
"project-ignored-build-step-updated": "project-ignored-build-step-updated",
|
|
615
|
-
"project-install-command-updated": "project-install-command-updated",
|
|
616
|
-
"project-member-added": "project-member-added",
|
|
617
|
-
"project-member-invited": "project-member-invited",
|
|
618
|
-
"project-member-removed": "project-member-removed",
|
|
619
|
-
"project-member-removed-batch": "project-member-removed-batch",
|
|
620
|
-
"project-member-updated": "project-member-updated",
|
|
621
|
-
"project-move-in-success": "project-move-in-success",
|
|
622
|
-
"project-move-out-failed": "project-move-out-failed",
|
|
623
|
-
"project-move-out-started": "project-move-out-started",
|
|
624
|
-
"project-move-out-success": "project-move-out-success",
|
|
625
|
-
"project-name": "project-name",
|
|
626
|
-
"project-node-version-updated": "project-node-version-updated",
|
|
627
|
-
"project-oidc-issuer-mode-updated": "project-oidc-issuer-mode-updated",
|
|
628
|
-
"project-oidc-token-created": "project-oidc-token-created",
|
|
629
|
-
"project-options-allowlist": "project-options-allowlist",
|
|
630
|
-
"project-output-directory-updated": "project-output-directory-updated",
|
|
631
|
-
"project-passport-updated": "project-passport-updated",
|
|
632
|
-
"project-password-protection": "project-password-protection",
|
|
633
|
-
"project-paused": "project-paused",
|
|
634
|
-
"project-preview-deployment-suffix": "project-preview-deployment-suffix",
|
|
635
|
-
"project-preview-environment-branch-tracking-updated": "project-preview-environment-branch-tracking-updated",
|
|
636
|
-
"project-prioritize-production-builds-updated": "project-prioritize-production-builds-updated",
|
|
637
|
-
"project-program-enrollment-changed": "project-program-enrollment-changed",
|
|
638
|
-
"project-protected-sourcemaps-updated": "project-protected-sourcemaps-updated",
|
|
639
|
-
"project-rollback-description-updated": "project-rollback-description-updated",
|
|
640
|
-
"project-rolling-release-aborted": "project-rolling-release-aborted",
|
|
641
|
-
"project-rolling-release-approved": "project-rolling-release-approved",
|
|
642
|
-
"project-rolling-release-completed": "project-rolling-release-completed",
|
|
643
|
-
"project-rolling-release-configured": "project-rolling-release-configured",
|
|
644
|
-
"project-rolling-release-continued": "project-rolling-release-continued",
|
|
645
|
-
"project-rolling-release-disabled": "project-rolling-release-disabled",
|
|
646
|
-
"project-rolling-release-enabled": "project-rolling-release-enabled",
|
|
647
|
-
"project-rolling-release-paused": "project-rolling-release-paused",
|
|
648
|
-
"project-rolling-release-started": "project-rolling-release-started",
|
|
649
|
-
"project-rolling-release-suggested-actions-generated": "project-rolling-release-suggested-actions-generated",
|
|
650
|
-
"project-rolling-release-timer": "project-rolling-release-timer",
|
|
651
|
-
"project-root-directory-updated": "project-root-directory-updated",
|
|
652
|
-
"project-routes-version-promoted": "project-routes-version-promoted",
|
|
653
|
-
"project-routes-version-restored": "project-routes-version-restored",
|
|
654
|
-
"project-sandbox-config-updated": "project-sandbox-config-updated",
|
|
655
|
-
"project-sandbox-url-protection-updated": "project-sandbox-url-protection-updated",
|
|
656
|
-
"project-skew-protection-allowed-domains-updated": "project-skew-protection-allowed-domains-updated",
|
|
657
|
-
"project-skew-protection-max-age-updated": "project-skew-protection-max-age-updated",
|
|
658
|
-
"project-skew-protection-threshold-updated": "project-skew-protection-threshold-updated",
|
|
659
|
-
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
660
|
-
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
661
|
-
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
662
|
-
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
663
|
-
"project-sso-protection": "project-sso-protection",
|
|
664
|
-
"project-static-ips-updated": "project-static-ips-updated",
|
|
665
|
-
"project-trusted-ips": "project-trusted-ips",
|
|
666
|
-
"project-trusted-sources": "project-trusted-sources",
|
|
667
|
-
"project-unpaused": "project-unpaused",
|
|
668
|
-
"project-web-analytics-disabled": "project-web-analytics-disabled",
|
|
669
|
-
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
670
|
-
"protected-git-scope-added": "protected-git-scope-added",
|
|
671
|
-
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
672
|
-
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
673
|
-
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
674
|
-
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
675
|
-
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
676
|
-
"saml-connection-created": "saml-connection-created",
|
|
677
|
-
"saml-connection-deleted": "saml-connection-deleted",
|
|
678
|
-
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
679
|
-
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
680
|
-
"sandbox-drive-created": "sandbox-drive-created",
|
|
681
|
-
"sandbox-drive-deleted": "sandbox-drive-deleted",
|
|
682
|
-
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
683
|
-
scale: "scale",
|
|
684
|
-
"scale-auto": "scale-auto",
|
|
685
|
-
"secondary-email-added": "secondary-email-added",
|
|
686
|
-
"secondary-email-removed": "secondary-email-removed",
|
|
687
|
-
"secondary-email-verified": "secondary-email-verified",
|
|
688
|
-
"secret-add": "secret-add",
|
|
689
|
-
"secret-delete": "secret-delete",
|
|
690
|
-
"secret-rename": "secret-rename",
|
|
691
|
-
"security-list-created": "security-list-created",
|
|
692
|
-
"security-list-deleted": "security-list-deleted",
|
|
693
|
-
"security-list-updated": "security-list-updated",
|
|
694
|
-
"security-plus-updated": "security-plus-updated",
|
|
695
|
-
"set-bio": "set-bio",
|
|
696
|
-
"set-name": "set-name",
|
|
697
|
-
"set-profiles": "set-profiles",
|
|
698
|
-
"set-scale": "set-scale",
|
|
699
|
-
"shared-env-variable-create": "shared-env-variable-create",
|
|
700
|
-
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
701
|
-
"shared-env-variable-read": "shared-env-variable-read",
|
|
702
|
-
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
703
|
-
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
704
|
-
"shared-env-variable-update": "shared-env-variable-update",
|
|
705
|
-
"show-ip-addresses": "show-ip-addresses",
|
|
706
|
-
signup: "signup",
|
|
707
|
-
"signup-via-bitbucket": "signup-via-bitbucket",
|
|
708
|
-
"signup-via-github": "signup-via-github",
|
|
709
|
-
"signup-via-gitlab": "signup-via-gitlab",
|
|
710
|
-
"speed-insights-settings-updated": "speed-insights-settings-updated",
|
|
711
|
-
"spend-created": "spend-created",
|
|
712
|
-
"spend-deleted": "spend-deleted",
|
|
713
|
-
"spend-updated": "spend-updated",
|
|
714
|
-
"sso-login": "sso-login",
|
|
715
|
-
"storage-accept-tos": "storage-accept-tos",
|
|
716
|
-
"storage-access-token-set": "storage-access-token-set",
|
|
717
|
-
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
718
|
-
"storage-connect-project": "storage-connect-project",
|
|
719
|
-
"storage-create": "storage-create",
|
|
720
|
-
"storage-delete": "storage-delete",
|
|
721
|
-
"storage-disconnect-project": "storage-disconnect-project",
|
|
722
|
-
"storage-disconnect-projects": "storage-disconnect-projects",
|
|
723
|
-
"storage-inactive-store-deleted": "storage-inactive-store-deleted",
|
|
724
|
-
"storage-reset-credentials": "storage-reset-credentials",
|
|
725
|
-
"storage-resource-repl-command": "storage-resource-repl-command",
|
|
726
|
-
"storage-set-locked": "storage-set-locked",
|
|
727
|
-
"storage-transfer-in-success": "storage-transfer-in-success",
|
|
728
|
-
"storage-transfer-out-success": "storage-transfer-out-success",
|
|
729
|
-
"storage-transfer-request-created": "storage-transfer-request-created",
|
|
730
|
-
"storage-update": "storage-update",
|
|
731
|
-
"storage-update-project-connection": "storage-update-project-connection",
|
|
732
|
-
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
733
|
-
"storage-view-secret": "storage-view-secret",
|
|
734
|
-
"strict-connectors": "strict-connectors",
|
|
735
|
-
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
736
|
-
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
737
|
-
"strict-shareable-links": "strict-shareable-links",
|
|
738
|
-
"subscription-created": "subscription-created",
|
|
739
|
-
"subscription-product-added": "subscription-product-added",
|
|
740
|
-
"subscription-product-removed": "subscription-product-removed",
|
|
741
|
-
"subscription-updated": "subscription-updated",
|
|
742
|
-
"support-session-created": "support-session-created",
|
|
743
|
-
team: "team",
|
|
744
|
-
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
745
|
-
"team-avatar-update": "team-avatar-update",
|
|
746
|
-
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
747
|
-
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
748
|
-
"team-default-passport-updated": "team-default-passport-updated",
|
|
749
|
-
"team-delete": "team-delete",
|
|
750
|
-
"team-deployment-policy-updated": "team-deployment-policy-updated",
|
|
751
|
-
"team-domain-verification-created": "team-domain-verification-created",
|
|
752
|
-
"team-domain-verification-deleted": "team-domain-verification-deleted",
|
|
753
|
-
"team-domain-verification-verified": "team-domain-verification-verified",
|
|
754
|
-
"team-email-domain-update": "team-email-domain-update",
|
|
755
|
-
"team-emu-updated": "team-emu-updated",
|
|
756
|
-
"team-ended-trial": "team-ended-trial",
|
|
757
|
-
"team-firewall-config-modified": "team-firewall-config-modified",
|
|
758
|
-
"team-firewall-config-promoted": "team-firewall-config-promoted",
|
|
759
|
-
"team-git-repository-dispatch-events-toggled": "team-git-repository-dispatch-events-toggled",
|
|
760
|
-
"team-git-require-verified-commits-toggled": "team-git-require-verified-commits-toggled",
|
|
761
|
-
"team-invite-bulk-delete": "team-invite-bulk-delete",
|
|
762
|
-
"team-invite-code-reset": "team-invite-code-reset",
|
|
763
|
-
"team-invite-link-created": "team-invite-link-created",
|
|
764
|
-
"team-invite-link-deleted": "team-invite-link-deleted",
|
|
765
|
-
"team-ip-blocking-rules-created": "team-ip-blocking-rules-created",
|
|
766
|
-
"team-ip-blocking-rules-removed": "team-ip-blocking-rules-removed",
|
|
767
|
-
"team-member-add": "team-member-add",
|
|
768
|
-
"team-member-confirm-request": "team-member-confirm-request",
|
|
769
|
-
"team-member-decline-request": "team-member-decline-request",
|
|
770
|
-
"team-member-delete": "team-member-delete",
|
|
771
|
-
"team-member-entitlement-added": "team-member-entitlement-added",
|
|
772
|
-
"team-member-entitlement-canceled": "team-member-entitlement-canceled",
|
|
773
|
-
"team-member-entitlement-reactivated": "team-member-entitlement-reactivated",
|
|
774
|
-
"team-member-entitlement-removed": "team-member-entitlement-removed",
|
|
775
|
-
"team-member-join": "team-member-join",
|
|
776
|
-
"team-member-leave": "team-member-leave",
|
|
777
|
-
"team-member-request-access": "team-member-request-access",
|
|
778
|
-
"team-member-role-update": "team-member-role-update",
|
|
779
|
-
"team-member-sso-authorization-attempt": "team-member-sso-authorization-attempt",
|
|
780
|
-
"team-mfa-enforcement-updated": "team-mfa-enforcement-updated",
|
|
781
|
-
"team-name-update": "team-name-update",
|
|
782
|
-
"team-paid-invoice": "team-paid-invoice",
|
|
783
|
-
"team-program-enrollment-changed": "team-program-enrollment-changed",
|
|
784
|
-
"team-remote-caching-purge": "team-remote-caching-purge",
|
|
785
|
-
"team-remote-caching-update": "team-remote-caching-update",
|
|
786
|
-
"team-saml-enforced": "team-saml-enforced",
|
|
787
|
-
"team-saml-roles": "team-saml-roles",
|
|
788
|
-
"team-slug-update": "team-slug-update",
|
|
789
|
-
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
790
|
-
"tracing-configured": "tracing-configured",
|
|
791
|
-
"tracing-disabled": "tracing-disabled",
|
|
792
|
-
"tracing-paused": "tracing-paused",
|
|
793
|
-
"tracing-resumed": "tracing-resumed",
|
|
794
|
-
"unlink-login-connection": "unlink-login-connection",
|
|
795
|
-
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
796
|
-
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
797
|
-
"user-auto-block-configured": "user-auto-block-configured",
|
|
798
|
-
"user-blocked": "user-blocked",
|
|
799
|
-
"user-delete": "user-delete",
|
|
800
|
-
"user-delete-requested": "user-delete-requested",
|
|
801
|
-
"user-emu-account-archived": "user-emu-account-archived",
|
|
802
|
-
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
803
|
-
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
804
|
-
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
805
|
-
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
806
|
-
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
807
|
-
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
808
|
-
"user-emu-toggled": "user-emu-toggled",
|
|
809
|
-
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
810
|
-
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated",
|
|
811
|
-
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
812
|
-
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
813
|
-
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
814
|
-
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
815
|
-
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
816
|
-
"user-mfa-removed": "user-mfa-removed",
|
|
817
|
-
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
818
|
-
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
819
|
-
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
820
|
-
"user-phone-removed": "user-phone-removed",
|
|
821
|
-
"user-phone-updated": "user-phone-updated",
|
|
822
|
-
"user-primary-email-updated": "user-primary-email-updated",
|
|
823
|
-
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated",
|
|
824
|
-
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
825
|
-
"user-token-created": "user-token-created",
|
|
826
|
-
"user-token-deleted": "user-token-deleted",
|
|
827
|
-
"user-tokens-deleted": "user-tokens-deleted",
|
|
828
|
-
"user-unblocked": "user-unblocked",
|
|
829
|
-
username: "username",
|
|
830
|
-
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
831
|
-
"v0-chat-created": "v0-chat-created",
|
|
832
|
-
"v0-chat-message-sent": "v0-chat-message-sent",
|
|
833
|
-
"vcr-image-deleted": "vcr-image-deleted",
|
|
834
|
-
"vcr-image-pushed": "vcr-image-pushed",
|
|
835
|
-
"vcr-repository-created": "vcr-repository-created",
|
|
836
|
-
"vcr-repository-deleted": "vcr-repository-deleted",
|
|
837
|
-
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
838
|
-
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
839
|
-
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
840
|
-
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
841
|
-
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
842
|
-
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
843
|
-
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
844
|
-
"vercel-agent-team-trial-credits-applied": "vercel-agent-team-trial-credits-applied",
|
|
845
|
-
"vercel-app-installation-request-dismissed": "vercel-app-installation-request-dismissed",
|
|
846
|
-
"vercel-app-installation-requested": "vercel-app-installation-requested",
|
|
847
|
-
"vercel-app-installation-updated": "vercel-app-installation-updated",
|
|
848
|
-
"vercel-app-installed": "vercel-app-installed",
|
|
849
|
-
"vercel-app-tokens-revoked": "vercel-app-tokens-revoked",
|
|
850
|
-
"vercel-app-uninstalled": "vercel-app-uninstalled",
|
|
851
|
-
"vercel-toolbar": "vercel-toolbar",
|
|
852
|
-
"vpc-peering-connection-accepted": "vpc-peering-connection-accepted",
|
|
853
|
-
"vpc-peering-connection-deleted": "vpc-peering-connection-deleted",
|
|
854
|
-
"vpc-peering-connection-rejected": "vpc-peering-connection-rejected",
|
|
855
|
-
"vpc-peering-connection-updated": "vpc-peering-connection-updated",
|
|
856
|
-
"vulnerability-banner-dismissed": "vulnerability-banner-dismissed",
|
|
857
|
-
"web-analytics-tier-updated": "web-analytics-tier-updated",
|
|
858
|
-
"webhook-created": "webhook-created",
|
|
859
|
-
"webhook-deleted": "webhook-deleted",
|
|
860
|
-
"webhook-updated": "webhook-updated",
|
|
861
|
-
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
862
|
-
};
|
|
863
|
-
const userEventCategoriesEnum = {
|
|
864
|
-
account: "account",
|
|
865
|
-
ai: "ai",
|
|
866
|
-
"ai-gateway": "ai-gateway",
|
|
867
|
-
billing: "billing",
|
|
868
|
-
connect: "connect",
|
|
869
|
-
deployment: "deployment",
|
|
870
|
-
domain: "domain",
|
|
871
|
-
edge: "edge",
|
|
872
|
-
"env-variable": "env-variable",
|
|
873
|
-
"feature-flags": "feature-flags",
|
|
874
|
-
firewall: "firewall",
|
|
875
|
-
integration: "integration",
|
|
876
|
-
microfrontends: "microfrontends",
|
|
877
|
-
network: "network",
|
|
878
|
-
observability: "observability",
|
|
879
|
-
other: "other",
|
|
880
|
-
project: "project",
|
|
881
|
-
security: "security",
|
|
882
|
-
storage: "storage",
|
|
883
|
-
team: "team",
|
|
884
|
-
v0: "v0",
|
|
885
|
-
"vercel-app": "vercel-app",
|
|
886
|
-
workflow: "workflow"
|
|
887
|
-
};
|
|
888
|
-
const userEventPayloadActionEnum = {
|
|
889
|
-
"add-passkey": "add-passkey",
|
|
890
|
-
"add-totp": "add-totp",
|
|
891
|
-
"admin-remove": "admin-remove",
|
|
892
|
-
disable: "disable",
|
|
893
|
-
enable: "enable",
|
|
894
|
-
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
895
|
-
"remove-passkey": "remove-passkey"
|
|
896
|
-
};
|
|
897
|
-
const userEventPayloadProviderEnum = {
|
|
898
|
-
apple: "apple",
|
|
899
|
-
bitbucket: "bitbucket",
|
|
900
|
-
chatgpt: "chatgpt",
|
|
901
|
-
github: "github",
|
|
902
|
-
"github-custom-host": "github-custom-host",
|
|
903
|
-
"github-limited": "github-limited",
|
|
904
|
-
gitlab: "gitlab",
|
|
905
|
-
google: "google",
|
|
906
|
-
saml: "saml"
|
|
907
|
-
};
|
|
908
|
-
const userEventPayloadFromPlanEnum = {
|
|
909
|
-
hobby: "hobby",
|
|
910
|
-
pro: "pro"
|
|
911
|
-
};
|
|
912
|
-
const userEventPayloadToPlanEnum = {
|
|
913
|
-
hobby: "hobby",
|
|
914
|
-
pro: "pro"
|
|
915
|
-
};
|
|
916
|
-
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
917
|
-
daily: "daily",
|
|
918
|
-
monthly: "monthly",
|
|
919
|
-
none: "none",
|
|
920
|
-
weekly: "weekly"
|
|
921
|
-
};
|
|
922
|
-
const userEventPayloadChangeEnum = {
|
|
923
|
-
disable: "disable",
|
|
924
|
-
enable: "enable",
|
|
925
|
-
remove: "remove",
|
|
926
|
-
set: "set"
|
|
927
|
-
};
|
|
928
|
-
const userEventPayloadScopeTypeEnum = {
|
|
929
|
-
project: "project",
|
|
930
|
-
team: "team",
|
|
931
|
-
user: "user"
|
|
932
|
-
};
|
|
933
|
-
const userEventPayloadRetentionDefaultModeEnum = {
|
|
934
|
-
days: "days",
|
|
935
|
-
"until-requested": "until-requested"
|
|
936
|
-
};
|
|
937
|
-
const userEventPayloadRetentionCeilingModeEnum = {
|
|
938
|
-
days: "days",
|
|
939
|
-
"until-requested": "until-requested"
|
|
940
|
-
};
|
|
941
|
-
const userEventPayloadNextRoleEnum = {
|
|
942
|
-
ADMIN: "ADMIN",
|
|
943
|
-
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
944
|
-
PROJECT_GUEST: "PROJECT_GUEST",
|
|
945
|
-
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
946
|
-
};
|
|
947
|
-
const userEventPayloadPreviousRoleEnum = {
|
|
948
|
-
ADMIN: "ADMIN",
|
|
949
|
-
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
950
|
-
PROJECT_GUEST: "PROJECT_GUEST",
|
|
951
|
-
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
952
|
-
};
|
|
953
|
-
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
954
|
-
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
955
|
-
IGNORE_STEP: "IGNORE_STEP",
|
|
956
|
-
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
957
|
-
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
958
|
-
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
959
|
-
};
|
|
960
|
-
const userEventPayloadScopesEnum = {
|
|
961
|
-
email: "email",
|
|
962
|
-
offline_access: "offline_access",
|
|
963
|
-
openid: "openid",
|
|
964
|
-
profile: "profile"
|
|
965
|
-
};
|
|
966
|
-
const userEventPayloadPermissionsEnum = {
|
|
967
|
-
"manage:speed-insights": "manage:speed-insights",
|
|
968
|
-
"manage:web-analytics": "manage:web-analytics",
|
|
969
|
-
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
970
|
-
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
971
|
-
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
972
|
-
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
973
|
-
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
974
|
-
"read-write:alerts": "read-write:alerts",
|
|
975
|
-
"read-write:automations": "read-write:automations",
|
|
976
|
-
"read-write:billing": "read-write:billing",
|
|
977
|
-
"read-write:blob": "read-write:blob",
|
|
978
|
-
"read-write:connect": "read-write:connect",
|
|
979
|
-
"read-write:deployment": "read-write:deployment",
|
|
980
|
-
"read-write:domain": "read-write:domain",
|
|
981
|
-
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
982
|
-
"read-write:drains": "read-write:drains",
|
|
983
|
-
"read-write:edge-cache": "read-write:edge-cache",
|
|
984
|
-
"read-write:edge-config": "read-write:edge-config",
|
|
985
|
-
"read-write:firewall": "read-write:firewall",
|
|
986
|
-
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
987
|
-
"read-write:integration-resource": "read-write:integration-resource",
|
|
988
|
-
"read-write:kms": "read-write:kms",
|
|
989
|
-
"read-write:project": "read-write:project",
|
|
990
|
-
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
991
|
-
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
992
|
-
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
993
|
-
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
994
|
-
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
995
|
-
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
996
|
-
"read-write:remote-cache": "read-write:remote-cache",
|
|
997
|
-
"read-write:sandbox": "read-write:sandbox",
|
|
998
|
-
"read-write:team-members": "read-write:team-members",
|
|
999
|
-
"read-write:vcr": "read-write:vcr",
|
|
1000
|
-
"read:access-group": "read:access-group",
|
|
1001
|
-
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1002
|
-
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1003
|
-
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1004
|
-
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1005
|
-
"read:alerts": "read:alerts",
|
|
1006
|
-
"read:automations": "read:automations",
|
|
1007
|
-
"read:billing": "read:billing",
|
|
1008
|
-
"read:connect": "read:connect",
|
|
1009
|
-
"read:deployment": "read:deployment",
|
|
1010
|
-
"read:domain": "read:domain",
|
|
1011
|
-
"read:event": "read:event",
|
|
1012
|
-
"read:firewall": "read:firewall",
|
|
1013
|
-
"read:integration-configuration": "read:integration-configuration",
|
|
1014
|
-
"read:integration-resource": "read:integration-resource",
|
|
1015
|
-
"read:kms": "read:kms",
|
|
1016
|
-
"read:monitoring": "read:monitoring",
|
|
1017
|
-
"read:project": "read:project",
|
|
1018
|
-
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1019
|
-
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1020
|
-
"read:project-flags": "read:project-flags",
|
|
1021
|
-
"read:remote-cache": "read:remote-cache",
|
|
1022
|
-
"read:sandbox": "read:sandbox",
|
|
1023
|
-
"read:speed-insights": "read:speed-insights",
|
|
1024
|
-
"read:team": "read:team",
|
|
1025
|
-
"read:vcr": "read:vcr",
|
|
1026
|
-
"read:web-analytics": "read:web-analytics",
|
|
1027
|
-
"read:webhooks": "read:webhooks",
|
|
1028
|
-
"use:ai-gateway": "use:ai-gateway"
|
|
1029
|
-
};
|
|
1030
|
-
const userEventPayloadNextScopesEnum = {
|
|
207
|
+
const userEventPayloadActionEnum = {
|
|
208
|
+
"add-passkey": "add-passkey",
|
|
209
|
+
"add-totp": "add-totp",
|
|
210
|
+
"admin-remove": "admin-remove",
|
|
211
|
+
disable: "disable",
|
|
212
|
+
enable: "enable",
|
|
213
|
+
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
214
|
+
"remove-passkey": "remove-passkey"
|
|
215
|
+
};
|
|
216
|
+
const userEventPayloadProviderEnum = {
|
|
217
|
+
apple: "apple",
|
|
218
|
+
bitbucket: "bitbucket",
|
|
219
|
+
chatgpt: "chatgpt",
|
|
220
|
+
github: "github",
|
|
221
|
+
"github-custom-host": "github-custom-host",
|
|
222
|
+
"github-limited": "github-limited",
|
|
223
|
+
gitlab: "gitlab",
|
|
224
|
+
google: "google",
|
|
225
|
+
saml: "saml"
|
|
226
|
+
};
|
|
227
|
+
const userEventPayloadFromPlanEnum = {
|
|
228
|
+
hobby: "hobby",
|
|
229
|
+
pro: "pro"
|
|
230
|
+
};
|
|
231
|
+
const userEventPayloadToPlanEnum = {
|
|
232
|
+
hobby: "hobby",
|
|
233
|
+
pro: "pro"
|
|
234
|
+
};
|
|
235
|
+
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
236
|
+
daily: "daily",
|
|
237
|
+
monthly: "monthly",
|
|
238
|
+
none: "none",
|
|
239
|
+
weekly: "weekly"
|
|
240
|
+
};
|
|
241
|
+
const userEventPayloadChangeEnum = {
|
|
242
|
+
disable: "disable",
|
|
243
|
+
enable: "enable",
|
|
244
|
+
remove: "remove",
|
|
245
|
+
set: "set"
|
|
246
|
+
};
|
|
247
|
+
const userEventPayloadScopeTypeEnum = {
|
|
248
|
+
project: "project",
|
|
249
|
+
team: "team",
|
|
250
|
+
user: "user"
|
|
251
|
+
};
|
|
252
|
+
const userEventPayloadRetentionCeilingModeEnum = {
|
|
253
|
+
days: "days",
|
|
254
|
+
"until-requested": "until-requested"
|
|
255
|
+
};
|
|
256
|
+
const userEventPayloadRetentionDefaultModeEnum = {
|
|
257
|
+
days: "days",
|
|
258
|
+
"until-requested": "until-requested"
|
|
259
|
+
};
|
|
260
|
+
const userEventPayloadNextRoleEnum = {
|
|
261
|
+
ADMIN: "ADMIN",
|
|
262
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
263
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
264
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
265
|
+
};
|
|
266
|
+
const userEventPayloadPreviousRoleEnum = {
|
|
267
|
+
ADMIN: "ADMIN",
|
|
268
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
269
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
270
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
271
|
+
};
|
|
272
|
+
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
273
|
+
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
274
|
+
IGNORE_STEP: "IGNORE_STEP",
|
|
275
|
+
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
276
|
+
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
277
|
+
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
278
|
+
};
|
|
279
|
+
const userEventPayloadPermissionsEnum = {
|
|
280
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
281
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
282
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
283
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
284
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
285
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
286
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
287
|
+
"read-write:alerts": "read-write:alerts",
|
|
288
|
+
"read-write:automations": "read-write:automations",
|
|
289
|
+
"read-write:billing": "read-write:billing",
|
|
290
|
+
"read-write:blob": "read-write:blob",
|
|
291
|
+
"read-write:connect": "read-write:connect",
|
|
292
|
+
"read-write:deployment": "read-write:deployment",
|
|
293
|
+
"read-write:domain": "read-write:domain",
|
|
294
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
295
|
+
"read-write:drains": "read-write:drains",
|
|
296
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
297
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
298
|
+
"read-write:firewall": "read-write:firewall",
|
|
299
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
300
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
301
|
+
"read-write:kms": "read-write:kms",
|
|
302
|
+
"read-write:project": "read-write:project",
|
|
303
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
304
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
305
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
306
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
307
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
308
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
309
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
310
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
311
|
+
"read-write:team-members": "read-write:team-members",
|
|
312
|
+
"read-write:vcr": "read-write:vcr",
|
|
313
|
+
"read:access-group": "read:access-group",
|
|
314
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
315
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
316
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
317
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
318
|
+
"read:alerts": "read:alerts",
|
|
319
|
+
"read:automations": "read:automations",
|
|
320
|
+
"read:billing": "read:billing",
|
|
321
|
+
"read:connect": "read:connect",
|
|
322
|
+
"read:deployment": "read:deployment",
|
|
323
|
+
"read:domain": "read:domain",
|
|
324
|
+
"read:event": "read:event",
|
|
325
|
+
"read:firewall": "read:firewall",
|
|
326
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
327
|
+
"read:integration-resource": "read:integration-resource",
|
|
328
|
+
"read:kms": "read:kms",
|
|
329
|
+
"read:monitoring": "read:monitoring",
|
|
330
|
+
"read:project": "read:project",
|
|
331
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
332
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
333
|
+
"read:project-flags": "read:project-flags",
|
|
334
|
+
"read:remote-cache": "read:remote-cache",
|
|
335
|
+
"read:sandbox": "read:sandbox",
|
|
336
|
+
"read:speed-insights": "read:speed-insights",
|
|
337
|
+
"read:team": "read:team",
|
|
338
|
+
"read:vcr": "read:vcr",
|
|
339
|
+
"read:web-analytics": "read:web-analytics",
|
|
340
|
+
"read:webhooks": "read:webhooks",
|
|
341
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
342
|
+
};
|
|
343
|
+
const userEventPayloadScopesEnum = {
|
|
1031
344
|
email: "email",
|
|
1032
345
|
offline_access: "offline_access",
|
|
1033
346
|
openid: "openid",
|
|
@@ -1098,7 +411,13 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
1098
411
|
"read:webhooks": "read:webhooks",
|
|
1099
412
|
"use:ai-gateway": "use:ai-gateway"
|
|
1100
413
|
};
|
|
1101
|
-
const
|
|
414
|
+
const userEventPayloadNextScopesEnum = {
|
|
415
|
+
email: "email",
|
|
416
|
+
offline_access: "offline_access",
|
|
417
|
+
openid: "openid",
|
|
418
|
+
profile: "profile"
|
|
419
|
+
};
|
|
420
|
+
const userEventPayloadAfterPermissionsEnum = {
|
|
1102
421
|
"manage:speed-insights": "manage:speed-insights",
|
|
1103
422
|
"manage:web-analytics": "manage:web-analytics",
|
|
1104
423
|
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
@@ -1162,7 +481,7 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1162
481
|
"read:webhooks": "read:webhooks",
|
|
1163
482
|
"use:ai-gateway": "use:ai-gateway"
|
|
1164
483
|
};
|
|
1165
|
-
const
|
|
484
|
+
const userEventPayloadBeforePermissionsEnum = {
|
|
1166
485
|
"manage:speed-insights": "manage:speed-insights",
|
|
1167
486
|
"manage:web-analytics": "manage:web-analytics",
|
|
1168
487
|
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
@@ -1297,6 +616,11 @@ const userEventPayloadVisibilityEnum = {
|
|
|
1297
616
|
config: "config",
|
|
1298
617
|
secret: "secret"
|
|
1299
618
|
};
|
|
619
|
+
const userEventPayloadTargetEnum = {
|
|
620
|
+
development: "development",
|
|
621
|
+
preview: "preview",
|
|
622
|
+
production: "production"
|
|
623
|
+
};
|
|
1300
624
|
const userEventPayloadTypeEnum = {
|
|
1301
625
|
blob: "blob",
|
|
1302
626
|
"edge-config": "edge-config",
|
|
@@ -1304,12 +628,12 @@ const userEventPayloadTypeEnum = {
|
|
|
1304
628
|
postgres: "postgres",
|
|
1305
629
|
redis: "redis"
|
|
1306
630
|
};
|
|
1307
|
-
const
|
|
631
|
+
const userEventPayloadNewEnvVarTargetEnum = {
|
|
1308
632
|
development: "development",
|
|
1309
633
|
preview: "preview",
|
|
1310
634
|
production: "production"
|
|
1311
635
|
};
|
|
1312
|
-
const
|
|
636
|
+
const userEventPayloadNewEnvVarTypeEnum = {
|
|
1313
637
|
encrypted: "encrypted",
|
|
1314
638
|
plain: "plain",
|
|
1315
639
|
sensitive: "sensitive",
|
|
@@ -1320,13 +644,13 @@ const userEventPayloadOldEnvVarTargetEnum = {
|
|
|
1320
644
|
preview: "preview",
|
|
1321
645
|
production: "production"
|
|
1322
646
|
};
|
|
1323
|
-
const
|
|
647
|
+
const userEventPayloadOldEnvVarTypeEnum = {
|
|
1324
648
|
encrypted: "encrypted",
|
|
1325
649
|
plain: "plain",
|
|
1326
650
|
sensitive: "sensitive",
|
|
1327
651
|
system: "system"
|
|
1328
652
|
};
|
|
1329
|
-
const
|
|
653
|
+
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1330
654
|
development: "development",
|
|
1331
655
|
preview: "preview",
|
|
1332
656
|
production: "production"
|
|
@@ -1336,11 +660,6 @@ const userEventPayloadUpdateDiffOldTargetEnum = {
|
|
|
1336
660
|
preview: "preview",
|
|
1337
661
|
production: "production"
|
|
1338
662
|
};
|
|
1339
|
-
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1340
|
-
development: "development",
|
|
1341
|
-
preview: "preview",
|
|
1342
|
-
production: "production"
|
|
1343
|
-
};
|
|
1344
663
|
const actionEnum = {
|
|
1345
664
|
challenge: "challenge",
|
|
1346
665
|
deny: "deny",
|
|
@@ -1367,10 +686,6 @@ const userEventPayloadSourceEnum = {
|
|
|
1367
686
|
saml: "saml",
|
|
1368
687
|
teams: "teams"
|
|
1369
688
|
};
|
|
1370
|
-
const userEventPayloadOutcomeEnum = {
|
|
1371
|
-
"account-matched": "account-matched",
|
|
1372
|
-
"linking-required": "linking-required"
|
|
1373
|
-
};
|
|
1374
689
|
const userEventPayloadFailureStageEnum = {
|
|
1375
690
|
authorization: "authorization",
|
|
1376
691
|
push: "push",
|
|
@@ -1378,70 +693,16 @@ const userEventPayloadFailureStageEnum = {
|
|
|
1378
693
|
unknown: "unknown",
|
|
1379
694
|
validation: "validation"
|
|
1380
695
|
};
|
|
696
|
+
const userEventPayloadOutcomeEnum = {
|
|
697
|
+
"account-matched": "account-matched",
|
|
698
|
+
"linking-required": "linking-required"
|
|
699
|
+
};
|
|
1381
700
|
const userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = {
|
|
1382
701
|
blocked: "blocked",
|
|
1383
702
|
"hard-blocked": "hard-blocked",
|
|
1384
703
|
"soft-blocked": "soft-blocked",
|
|
1385
704
|
unblocked: "unblocked"
|
|
1386
705
|
};
|
|
1387
|
-
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
1388
|
-
enterprise: "enterprise",
|
|
1389
|
-
hobby: "hobby",
|
|
1390
|
-
pro: "pro"
|
|
1391
|
-
};
|
|
1392
|
-
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
1393
|
-
apple: "apple",
|
|
1394
|
-
bitbucket: "bitbucket",
|
|
1395
|
-
chatgpt: "chatgpt",
|
|
1396
|
-
"github-oauth": "github-oauth",
|
|
1397
|
-
"github-oauth-limited": "github-oauth-limited",
|
|
1398
|
-
gitlab: "gitlab",
|
|
1399
|
-
google: "google",
|
|
1400
|
-
vercel: "vercel"
|
|
1401
|
-
};
|
|
1402
|
-
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
1403
|
-
bitbucket: "bitbucket",
|
|
1404
|
-
"cursor-origin": "cursor-origin",
|
|
1405
|
-
github: "github",
|
|
1406
|
-
"github-custom-host": "github-custom-host",
|
|
1407
|
-
"github-limited": "github-limited",
|
|
1408
|
-
gitlab: "gitlab",
|
|
1409
|
-
vercel: "vercel"
|
|
1410
|
-
};
|
|
1411
|
-
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
1412
|
-
false: false,
|
|
1413
|
-
true: true
|
|
1414
|
-
};
|
|
1415
|
-
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
1416
|
-
"analytics-online": "analytics-online",
|
|
1417
|
-
"analytics-page-views": "analytics-page-views",
|
|
1418
|
-
"analytics-visitors": "analytics-visitors",
|
|
1419
|
-
"firewall-allowed": "firewall-allowed",
|
|
1420
|
-
"firewall-denied": "firewall-denied",
|
|
1421
|
-
"observability-alert": "observability-alert",
|
|
1422
|
-
"observability-edge-requests": "observability-edge-requests",
|
|
1423
|
-
"observability-error-rate": "observability-error-rate",
|
|
1424
|
-
"observability-function-invocations": "observability-function-invocations",
|
|
1425
|
-
shortcut: "shortcut",
|
|
1426
|
-
"speed-insights-cls": "speed-insights-cls",
|
|
1427
|
-
"speed-insights-lcp": "speed-insights-lcp",
|
|
1428
|
-
"speed-insights-res": "speed-insights-res"
|
|
1429
|
-
};
|
|
1430
|
-
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1431
|
-
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1432
|
-
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1433
|
-
};
|
|
1434
|
-
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1435
|
-
basic: "basic",
|
|
1436
|
-
elastic: "elastic",
|
|
1437
|
-
enhanced: "enhanced",
|
|
1438
|
-
standard: "standard",
|
|
1439
|
-
turbo: "turbo"
|
|
1440
|
-
};
|
|
1441
|
-
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
1442
|
-
cards: "cards",
|
|
1443
|
-
list: "list"
|
|
1444
|
-
};
|
|
1445
706
|
const userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
1446
707
|
closed: "closed",
|
|
1447
708
|
open: "open"
|
|
@@ -1450,119 +711,24 @@ const userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
|
1450
711
|
closed: "closed",
|
|
1451
712
|
open: "open"
|
|
1452
713
|
};
|
|
1453
|
-
const
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1457
|
-
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1458
|
-
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1459
|
-
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1460
|
-
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1461
|
-
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1462
|
-
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1463
|
-
};
|
|
1464
|
-
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1465
|
-
analyticsUsage: "analyticsUsage",
|
|
1466
|
-
artifacts: "artifacts",
|
|
1467
|
-
bandwidth: "bandwidth",
|
|
1468
|
-
blobDataTransfer: "blobDataTransfer",
|
|
1469
|
-
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1470
|
-
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1471
|
-
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1472
|
-
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1473
|
-
connectDataTransfer: "connectDataTransfer",
|
|
1474
|
-
dataCacheRead: "dataCacheRead",
|
|
1475
|
-
dataCacheWrite: "dataCacheWrite",
|
|
1476
|
-
edgeConfigRead: "edgeConfigRead",
|
|
1477
|
-
edgeConfigWrite: "edgeConfigWrite",
|
|
1478
|
-
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1479
|
-
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1480
|
-
edgeRequest: "edgeRequest",
|
|
1481
|
-
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1482
|
-
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1483
|
-
fastDataTransfer: "fastDataTransfer",
|
|
1484
|
-
fastOriginTransfer: "fastOriginTransfer",
|
|
1485
|
-
fluidCpuDuration: "fluidCpuDuration",
|
|
1486
|
-
fluidDuration: "fluidDuration",
|
|
1487
|
-
functionDuration: "functionDuration",
|
|
1488
|
-
functionInvocation: "functionInvocation",
|
|
1489
|
-
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1490
|
-
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1491
|
-
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1492
|
-
logDrainsVolume: "logDrainsVolume",
|
|
1493
|
-
monitoringMetric: "monitoringMetric",
|
|
1494
|
-
observabilityEvent: "observabilityEvent",
|
|
1495
|
-
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1496
|
-
runtimeCacheRead: "runtimeCacheRead",
|
|
1497
|
-
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1498
|
-
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1499
|
-
sourceImages: "sourceImages",
|
|
1500
|
-
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1501
|
-
wafOwaspRequests: "wafOwaspRequests",
|
|
1502
|
-
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1503
|
-
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1504
|
-
};
|
|
1505
|
-
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1506
|
-
BILLING: "BILLING",
|
|
1507
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1508
|
-
DEVELOPER: "DEVELOPER",
|
|
1509
|
-
MEMBER: "MEMBER",
|
|
1510
|
-
OWNER: "OWNER",
|
|
1511
|
-
SECURITY: "SECURITY",
|
|
1512
|
-
VIEWER: "VIEWER",
|
|
1513
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1514
|
-
};
|
|
1515
|
-
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1516
|
-
BILLING: "BILLING",
|
|
1517
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1518
|
-
DEVELOPER: "DEVELOPER",
|
|
1519
|
-
MEMBER: "MEMBER",
|
|
1520
|
-
OWNER: "OWNER",
|
|
1521
|
-
SECURITY: "SECURITY",
|
|
1522
|
-
VIEWER: "VIEWER",
|
|
1523
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
714
|
+
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
715
|
+
cards: "cards",
|
|
716
|
+
list: "list"
|
|
1524
717
|
};
|
|
1525
|
-
const
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
AiGatewaySettings: "AiGatewaySettings",
|
|
1530
|
-
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
1531
|
-
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
1532
|
-
ConnectorManager: "ConnectorManager",
|
|
1533
|
-
CreateProject: "CreateProject",
|
|
1534
|
-
EnvVariableManager: "EnvVariableManager",
|
|
1535
|
-
EnvironmentManager: "EnvironmentManager",
|
|
1536
|
-
FullProductionDeployment: "FullProductionDeployment",
|
|
1537
|
-
IntegrationManager: "IntegrationManager",
|
|
1538
|
-
OrgAdmin: "OrgAdmin",
|
|
1539
|
-
OrgViewer: "OrgViewer",
|
|
1540
|
-
UsageViewer: "UsageViewer",
|
|
1541
|
-
V0Builder: "V0Builder",
|
|
1542
|
-
V0Chatter: "V0Chatter",
|
|
1543
|
-
V0Viewer: "V0Viewer",
|
|
1544
|
-
WorkflowDecryptor: "WorkflowDecryptor"
|
|
718
|
+
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
719
|
+
enterprise: "enterprise",
|
|
720
|
+
hobby: "hobby",
|
|
721
|
+
pro: "pro"
|
|
1545
722
|
};
|
|
1546
|
-
const
|
|
1547
|
-
|
|
1548
|
-
bitbucket: "bitbucket",
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
github: "github",
|
|
723
|
+
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
724
|
+
apple: "apple",
|
|
725
|
+
bitbucket: "bitbucket",
|
|
726
|
+
chatgpt: "chatgpt",
|
|
727
|
+
"github-oauth": "github-oauth",
|
|
728
|
+
"github-oauth-limited": "github-oauth-limited",
|
|
1552
729
|
gitlab: "gitlab",
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
mail: "mail",
|
|
1556
|
-
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1557
|
-
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1558
|
-
"nsnb-invite": "nsnb-invite",
|
|
1559
|
-
"nsnb-redeploy": "nsnb-redeploy",
|
|
1560
|
-
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1561
|
-
"nsnb-request-access": "nsnb-request-access",
|
|
1562
|
-
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1563
|
-
"organization-teams": "organization-teams",
|
|
1564
|
-
saml: "saml",
|
|
1565
|
-
teams: "teams"
|
|
730
|
+
google: "google",
|
|
731
|
+
vercel: "vercel"
|
|
1566
732
|
};
|
|
1567
733
|
const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
1568
734
|
default: "default",
|
|
@@ -1572,44 +738,6 @@ const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
|
1572
738
|
on: "on",
|
|
1573
739
|
"on-force": "on-force"
|
|
1574
740
|
};
|
|
1575
|
-
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1576
|
-
admin_override: "admin_override",
|
|
1577
|
-
hard_blocked: "hard_blocked",
|
|
1578
|
-
limits_exceeded: "limits_exceeded"
|
|
1579
|
-
};
|
|
1580
|
-
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
1581
|
-
admin_override: "admin_override",
|
|
1582
|
-
hard_blocked: "hard_blocked",
|
|
1583
|
-
limits_exceeded: "limits_exceeded"
|
|
1584
|
-
};
|
|
1585
|
-
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
1586
|
-
hard: "hard",
|
|
1587
|
-
soft: "soft"
|
|
1588
|
-
};
|
|
1589
|
-
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
1590
|
-
admin_override: "admin_override",
|
|
1591
|
-
hard_blocked: "hard_blocked",
|
|
1592
|
-
limits_exceeded: "limits_exceeded"
|
|
1593
|
-
};
|
|
1594
|
-
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
1595
|
-
hard: "hard",
|
|
1596
|
-
soft: "soft"
|
|
1597
|
-
};
|
|
1598
|
-
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
1599
|
-
admin_override: "admin_override",
|
|
1600
|
-
hard_blocked: "hard_blocked",
|
|
1601
|
-
limits_exceeded: "limits_exceeded"
|
|
1602
|
-
};
|
|
1603
|
-
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
1604
|
-
admin_override: "admin_override",
|
|
1605
|
-
hard_blocked: "hard_blocked",
|
|
1606
|
-
limits_exceeded: "limits_exceeded"
|
|
1607
|
-
};
|
|
1608
|
-
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1609
|
-
admin_override: "admin_override",
|
|
1610
|
-
hard_blocked: "hard_blocked",
|
|
1611
|
-
limits_exceeded: "limits_exceeded"
|
|
1612
|
-
};
|
|
1613
741
|
const userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = {
|
|
1614
742
|
analyticsUsage: "analyticsUsage",
|
|
1615
743
|
artifacts: "artifacts",
|
|
@@ -1655,6 +783,54 @@ const userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = {
|
|
|
1655
783
|
admin_override: "admin_override",
|
|
1656
784
|
hard_blocked: "hard_blocked"
|
|
1657
785
|
};
|
|
786
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = {
|
|
787
|
+
admin_override: "admin_override",
|
|
788
|
+
hard_blocked: "hard_blocked",
|
|
789
|
+
limits_exceeded: "limits_exceeded"
|
|
790
|
+
};
|
|
791
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = {
|
|
792
|
+
admin_override: "admin_override",
|
|
793
|
+
hard_blocked: "hard_blocked",
|
|
794
|
+
limits_exceeded: "limits_exceeded"
|
|
795
|
+
};
|
|
796
|
+
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
797
|
+
admin_override: "admin_override",
|
|
798
|
+
hard_blocked: "hard_blocked",
|
|
799
|
+
limits_exceeded: "limits_exceeded"
|
|
800
|
+
};
|
|
801
|
+
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
802
|
+
admin_override: "admin_override",
|
|
803
|
+
hard_blocked: "hard_blocked",
|
|
804
|
+
limits_exceeded: "limits_exceeded"
|
|
805
|
+
};
|
|
806
|
+
const userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = {
|
|
807
|
+
admin_override: "admin_override",
|
|
808
|
+
hard_blocked: "hard_blocked",
|
|
809
|
+
limits_exceeded: "limits_exceeded"
|
|
810
|
+
};
|
|
811
|
+
const userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = {
|
|
812
|
+
admin_override: "admin_override",
|
|
813
|
+
hard_blocked: "hard_blocked",
|
|
814
|
+
limits_exceeded: "limits_exceeded"
|
|
815
|
+
};
|
|
816
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
817
|
+
admin_override: "admin_override",
|
|
818
|
+
hard_blocked: "hard_blocked",
|
|
819
|
+
limits_exceeded: "limits_exceeded"
|
|
820
|
+
};
|
|
821
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
822
|
+
hard: "hard",
|
|
823
|
+
soft: "soft"
|
|
824
|
+
};
|
|
825
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
826
|
+
admin_override: "admin_override",
|
|
827
|
+
hard_blocked: "hard_blocked",
|
|
828
|
+
limits_exceeded: "limits_exceeded"
|
|
829
|
+
};
|
|
830
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
831
|
+
hard: "hard",
|
|
832
|
+
soft: "soft"
|
|
833
|
+
};
|
|
1658
834
|
const userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = {
|
|
1659
835
|
analyticsUsage: "analyticsUsage",
|
|
1660
836
|
artifacts: "artifacts",
|
|
@@ -1745,71 +921,214 @@ const userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = {
|
|
|
1745
921
|
admin_override: "admin_override",
|
|
1746
922
|
hard_blocked: "hard_blocked"
|
|
1747
923
|
};
|
|
1748
|
-
const
|
|
924
|
+
const userEventPayloadNewOwnerFeatureBlocksSandboxStorageBlockReasonEnum = {
|
|
1749
925
|
admin_override: "admin_override",
|
|
1750
926
|
hard_blocked: "hard_blocked",
|
|
1751
927
|
limits_exceeded: "limits_exceeded"
|
|
1752
928
|
};
|
|
1753
|
-
const
|
|
929
|
+
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1754
930
|
admin_override: "admin_override",
|
|
1755
931
|
hard_blocked: "hard_blocked",
|
|
1756
932
|
limits_exceeded: "limits_exceeded"
|
|
1757
933
|
};
|
|
1758
|
-
const
|
|
934
|
+
const userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
1759
935
|
admin_override: "admin_override",
|
|
1760
936
|
hard_blocked: "hard_blocked",
|
|
1761
937
|
limits_exceeded: "limits_exceeded"
|
|
1762
938
|
};
|
|
1763
|
-
const
|
|
939
|
+
const userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = {
|
|
1764
940
|
admin_override: "admin_override",
|
|
1765
941
|
hard_blocked: "hard_blocked",
|
|
1766
942
|
limits_exceeded: "limits_exceeded"
|
|
1767
943
|
};
|
|
1768
|
-
const
|
|
944
|
+
const userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = {
|
|
1769
945
|
admin_override: "admin_override",
|
|
1770
946
|
hard_blocked: "hard_blocked",
|
|
1771
947
|
limits_exceeded: "limits_exceeded"
|
|
1772
948
|
};
|
|
1773
|
-
const
|
|
949
|
+
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1774
950
|
admin_override: "admin_override",
|
|
1775
951
|
hard_blocked: "hard_blocked",
|
|
1776
952
|
limits_exceeded: "limits_exceeded"
|
|
1777
953
|
};
|
|
1778
|
-
const
|
|
954
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = {
|
|
1779
955
|
admin_override: "admin_override",
|
|
1780
956
|
hard_blocked: "hard_blocked",
|
|
1781
957
|
limits_exceeded: "limits_exceeded"
|
|
1782
958
|
};
|
|
1783
|
-
const
|
|
959
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = {
|
|
1784
960
|
admin_override: "admin_override",
|
|
1785
961
|
hard_blocked: "hard_blocked",
|
|
1786
962
|
limits_exceeded: "limits_exceeded"
|
|
1787
963
|
};
|
|
1788
|
-
const
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
964
|
+
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
965
|
+
bitbucket: "bitbucket",
|
|
966
|
+
"cursor-origin": "cursor-origin",
|
|
967
|
+
github: "github",
|
|
968
|
+
"github-custom-host": "github-custom-host",
|
|
969
|
+
"github-limited": "github-limited",
|
|
970
|
+
gitlab: "gitlab",
|
|
971
|
+
vercel: "vercel"
|
|
1792
972
|
};
|
|
1793
|
-
const
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
973
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = {
|
|
974
|
+
disabled: "disabled",
|
|
975
|
+
enabled: "enabled"
|
|
976
|
+
};
|
|
977
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = {
|
|
978
|
+
admin: "admin",
|
|
979
|
+
user: "user"
|
|
980
|
+
};
|
|
981
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = {
|
|
982
|
+
admin_removal: "admin_removal",
|
|
983
|
+
passkey: "passkey",
|
|
984
|
+
self_serve_recovery: "self_serve_recovery",
|
|
985
|
+
totp: "totp",
|
|
986
|
+
unknown: "unknown",
|
|
987
|
+
user_disabled: "user_disabled"
|
|
988
|
+
};
|
|
989
|
+
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
990
|
+
false: false,
|
|
991
|
+
true: true
|
|
992
|
+
};
|
|
993
|
+
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
994
|
+
"analytics-online": "analytics-online",
|
|
995
|
+
"analytics-page-views": "analytics-page-views",
|
|
996
|
+
"analytics-visitors": "analytics-visitors",
|
|
997
|
+
"firewall-allowed": "firewall-allowed",
|
|
998
|
+
"firewall-denied": "firewall-denied",
|
|
999
|
+
"observability-alert": "observability-alert",
|
|
1000
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
1001
|
+
"observability-error-rate": "observability-error-rate",
|
|
1002
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
1003
|
+
shortcut: "shortcut",
|
|
1004
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
1005
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
1006
|
+
"speed-insights-res": "speed-insights-res"
|
|
1007
|
+
};
|
|
1008
|
+
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1009
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1010
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1011
|
+
};
|
|
1012
|
+
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1013
|
+
basic: "basic",
|
|
1014
|
+
elastic: "elastic",
|
|
1015
|
+
enhanced: "enhanced",
|
|
1016
|
+
standard: "standard",
|
|
1017
|
+
turbo: "turbo"
|
|
1018
|
+
};
|
|
1019
|
+
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1020
|
+
analyticsUsage: "analyticsUsage",
|
|
1021
|
+
artifacts: "artifacts",
|
|
1022
|
+
bandwidth: "bandwidth",
|
|
1023
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1024
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1025
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1026
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1027
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1028
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1029
|
+
dataCacheRead: "dataCacheRead",
|
|
1030
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1031
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1032
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1033
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1034
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1035
|
+
edgeRequest: "edgeRequest",
|
|
1036
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1037
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1038
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1039
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1040
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1041
|
+
fluidDuration: "fluidDuration",
|
|
1042
|
+
functionDuration: "functionDuration",
|
|
1043
|
+
functionInvocation: "functionInvocation",
|
|
1044
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1045
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1046
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1047
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1048
|
+
monitoringMetric: "monitoringMetric",
|
|
1049
|
+
observabilityEvent: "observabilityEvent",
|
|
1050
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1051
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1052
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1053
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1054
|
+
sourceImages: "sourceImages",
|
|
1055
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1056
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1057
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1058
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1059
|
+
};
|
|
1060
|
+
const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
1061
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
1062
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
1063
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1064
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1065
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1066
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1067
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1068
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1069
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1070
|
+
};
|
|
1071
|
+
const userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = {
|
|
1072
|
+
"account-update": "account-update",
|
|
1073
|
+
bitbucket: "bitbucket",
|
|
1074
|
+
dsync: "dsync",
|
|
1075
|
+
feedback: "feedback",
|
|
1076
|
+
github: "github",
|
|
1077
|
+
gitlab: "gitlab",
|
|
1078
|
+
import: "import",
|
|
1079
|
+
link: "link",
|
|
1080
|
+
mail: "mail",
|
|
1081
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1082
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1083
|
+
"nsnb-invite": "nsnb-invite",
|
|
1084
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1085
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1086
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1087
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1088
|
+
"organization-teams": "organization-teams",
|
|
1089
|
+
saml: "saml",
|
|
1090
|
+
teams: "teams"
|
|
1797
1091
|
};
|
|
1798
|
-
const
|
|
1799
|
-
|
|
1800
|
-
|
|
1092
|
+
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1093
|
+
BILLING: "BILLING",
|
|
1094
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1095
|
+
DEVELOPER: "DEVELOPER",
|
|
1096
|
+
MEMBER: "MEMBER",
|
|
1097
|
+
OWNER: "OWNER",
|
|
1098
|
+
SECURITY: "SECURITY",
|
|
1099
|
+
VIEWER: "VIEWER",
|
|
1100
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1801
1101
|
};
|
|
1802
|
-
const
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1102
|
+
const userEventPayloadNewOwnerTeamsTeamPermissionsEnum = {
|
|
1103
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
1104
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
1105
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
1106
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
1107
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
1108
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
1109
|
+
ConnectorManager: "ConnectorManager",
|
|
1110
|
+
CreateProject: "CreateProject",
|
|
1111
|
+
EnvVariableManager: "EnvVariableManager",
|
|
1112
|
+
EnvironmentManager: "EnvironmentManager",
|
|
1113
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
1114
|
+
IntegrationManager: "IntegrationManager",
|
|
1115
|
+
OrgAdmin: "OrgAdmin",
|
|
1116
|
+
OrgViewer: "OrgViewer",
|
|
1117
|
+
UsageViewer: "UsageViewer",
|
|
1118
|
+
V0Builder: "V0Builder",
|
|
1119
|
+
V0Chatter: "V0Chatter",
|
|
1120
|
+
V0Viewer: "V0Viewer",
|
|
1121
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
1809
1122
|
};
|
|
1810
|
-
const
|
|
1811
|
-
|
|
1812
|
-
|
|
1123
|
+
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1124
|
+
BILLING: "BILLING",
|
|
1125
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1126
|
+
DEVELOPER: "DEVELOPER",
|
|
1127
|
+
MEMBER: "MEMBER",
|
|
1128
|
+
OWNER: "OWNER",
|
|
1129
|
+
SECURITY: "SECURITY",
|
|
1130
|
+
VIEWER: "VIEWER",
|
|
1131
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1813
1132
|
};
|
|
1814
1133
|
const userEventPayloadQueryTypeEnum = {
|
|
1815
1134
|
"data-edit": "data-edit",
|
|
@@ -1851,27 +1170,27 @@ const userEventPayloadBillingPlanEnum = {
|
|
|
1851
1170
|
enterprise: "enterprise",
|
|
1852
1171
|
platform: "platform"
|
|
1853
1172
|
};
|
|
1854
|
-
const
|
|
1173
|
+
const userEventPayloadModeEnum = {
|
|
1855
1174
|
organization: "organization",
|
|
1856
1175
|
team: "team"
|
|
1857
1176
|
};
|
|
1858
|
-
const
|
|
1177
|
+
const userEventPayloadPreviousModeEnum = {
|
|
1859
1178
|
organization: "organization",
|
|
1860
1179
|
team: "team"
|
|
1861
1180
|
};
|
|
1862
|
-
const
|
|
1181
|
+
const userEventPayloadNextEnforcementScopeEnum = {
|
|
1863
1182
|
all: "all",
|
|
1864
1183
|
preview: "preview"
|
|
1865
1184
|
};
|
|
1866
|
-
const
|
|
1185
|
+
const userEventPayloadNextNewResourceBlockingPolicyEnum = {
|
|
1867
1186
|
allow: "allow",
|
|
1868
1187
|
block: "block"
|
|
1869
1188
|
};
|
|
1870
|
-
const
|
|
1189
|
+
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1871
1190
|
all: "all",
|
|
1872
1191
|
preview: "preview"
|
|
1873
1192
|
};
|
|
1874
|
-
const
|
|
1193
|
+
const userEventPayloadPreviousNewResourceBlockingPolicyEnum = {
|
|
1875
1194
|
allow: "allow",
|
|
1876
1195
|
block: "block"
|
|
1877
1196
|
};
|
|
@@ -1883,28 +1202,18 @@ const userEventPayloadKindEnum = {
|
|
|
1883
1202
|
connectSrc: "connectSrc",
|
|
1884
1203
|
script: "script"
|
|
1885
1204
|
};
|
|
1886
|
-
const
|
|
1205
|
+
const userEventPayloadNextPassportDeploymentTypeEnum = {
|
|
1887
1206
|
all: "all",
|
|
1888
1207
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1889
1208
|
preview: "preview",
|
|
1890
1209
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1891
1210
|
};
|
|
1892
|
-
const
|
|
1211
|
+
const userEventPayloadPreviousPassportDeploymentTypeEnum = {
|
|
1893
1212
|
all: "all",
|
|
1894
1213
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1895
1214
|
preview: "preview",
|
|
1896
1215
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1897
1216
|
};
|
|
1898
|
-
const roleEnum = {
|
|
1899
|
-
BILLING: "BILLING",
|
|
1900
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1901
|
-
DEVELOPER: "DEVELOPER",
|
|
1902
|
-
MEMBER: "MEMBER",
|
|
1903
|
-
OWNER: "OWNER",
|
|
1904
|
-
SECURITY: "SECURITY",
|
|
1905
|
-
VIEWER: "VIEWER",
|
|
1906
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1907
|
-
};
|
|
1908
1217
|
const originEnum = {
|
|
1909
1218
|
"account-update": "account-update",
|
|
1910
1219
|
bitbucket: "bitbucket",
|
|
@@ -1926,6 +1235,16 @@ const originEnum = {
|
|
|
1926
1235
|
saml: "saml",
|
|
1927
1236
|
teams: "teams"
|
|
1928
1237
|
};
|
|
1238
|
+
const roleEnum = {
|
|
1239
|
+
BILLING: "BILLING",
|
|
1240
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1241
|
+
DEVELOPER: "DEVELOPER",
|
|
1242
|
+
MEMBER: "MEMBER",
|
|
1243
|
+
OWNER: "OWNER",
|
|
1244
|
+
SECURITY: "SECURITY",
|
|
1245
|
+
VIEWER: "VIEWER",
|
|
1246
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1247
|
+
};
|
|
1929
1248
|
const userEventPayloadWidgetEnum = {
|
|
1930
1249
|
alert: "alert",
|
|
1931
1250
|
"analytics-online": "analytics-online",
|
|
@@ -1952,17 +1271,17 @@ const userEventPayloadOldBuildQueueConfigurationEnum = {
|
|
|
1952
1271
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1953
1272
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1954
1273
|
};
|
|
1955
|
-
const
|
|
1274
|
+
const userEventPayloadNextBranchMatcherTypeEnum = {
|
|
1956
1275
|
endsWith: "endsWith",
|
|
1957
1276
|
equals: "equals",
|
|
1958
1277
|
startsWith: "startsWith"
|
|
1959
1278
|
};
|
|
1960
|
-
const
|
|
1279
|
+
const userEventPayloadPreviousBranchMatcherTypeEnum = {
|
|
1961
1280
|
endsWith: "endsWith",
|
|
1962
1281
|
equals: "equals",
|
|
1963
1282
|
startsWith: "startsWith"
|
|
1964
1283
|
};
|
|
1965
|
-
const
|
|
1284
|
+
const userEventPayloadNextGitProviderEnum = {
|
|
1966
1285
|
bitbucket: "bitbucket",
|
|
1967
1286
|
"cursor-origin": "cursor-origin",
|
|
1968
1287
|
github: "github",
|
|
@@ -1972,7 +1291,7 @@ const userEventPayloadPreviousGitProviderEnum = {
|
|
|
1972
1291
|
v0: "v0",
|
|
1973
1292
|
vercel: "vercel"
|
|
1974
1293
|
};
|
|
1975
|
-
const
|
|
1294
|
+
const userEventPayloadPreviousGitProviderEnum = {
|
|
1976
1295
|
bitbucket: "bitbucket",
|
|
1977
1296
|
"cursor-origin": "cursor-origin",
|
|
1978
1297
|
github: "github",
|
|
@@ -2026,25 +1345,25 @@ const userEventPayloadProjectMembershipPreviousRoleEnum = {
|
|
|
2026
1345
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
2027
1346
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
2028
1347
|
};
|
|
2029
|
-
const
|
|
1348
|
+
const userEventPayloadOldPasswordProtectionDeploymentTypeEnum = {
|
|
2030
1349
|
all: "all",
|
|
2031
1350
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2032
1351
|
preview: "preview",
|
|
2033
1352
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2034
1353
|
};
|
|
2035
|
-
const
|
|
1354
|
+
const userEventPayloadOldPasswordProtection = {
|
|
2036
1355
|
all: "all",
|
|
2037
1356
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2038
1357
|
preview: "preview",
|
|
2039
1358
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2040
1359
|
};
|
|
2041
|
-
const
|
|
1360
|
+
const userEventPayloadPasswordProtectionDeploymentTypeEnum = {
|
|
2042
1361
|
all: "all",
|
|
2043
1362
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2044
1363
|
preview: "preview",
|
|
2045
1364
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2046
1365
|
};
|
|
2047
|
-
const
|
|
1366
|
+
const userEventPayloadPasswordProtection = {
|
|
2048
1367
|
all: "all",
|
|
2049
1368
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2050
1369
|
preview: "preview",
|
|
@@ -2058,70 +1377,70 @@ const userEventPayloadConsentEnum = {
|
|
|
2058
1377
|
granted: "granted",
|
|
2059
1378
|
refused: "refused"
|
|
2060
1379
|
};
|
|
2061
|
-
const
|
|
1380
|
+
const userEventPayloadNextIssuerModeEnum = {
|
|
2062
1381
|
global: "global",
|
|
2063
1382
|
team: "team"
|
|
2064
1383
|
};
|
|
2065
|
-
const
|
|
1384
|
+
const userEventPayloadPreviousIssuerModeEnum = {
|
|
2066
1385
|
global: "global",
|
|
2067
1386
|
team: "team"
|
|
2068
1387
|
};
|
|
2069
|
-
const
|
|
1388
|
+
const userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
2070
1389
|
all: "all",
|
|
2071
1390
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2072
1391
|
preview: "preview",
|
|
2073
1392
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2074
1393
|
};
|
|
2075
|
-
const
|
|
1394
|
+
const userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
2076
1395
|
all: "all",
|
|
2077
1396
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2078
1397
|
preview: "preview",
|
|
2079
1398
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2080
1399
|
};
|
|
2081
|
-
const
|
|
1400
|
+
const userEventPayloadOldSsoProtectionDeploymentTypeEnum = {
|
|
2082
1401
|
all: "all",
|
|
2083
1402
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2084
1403
|
preview: "preview",
|
|
2085
1404
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2086
1405
|
};
|
|
2087
|
-
const
|
|
1406
|
+
const userEventPayloadOldSsoProtection = {
|
|
2088
1407
|
all: "all",
|
|
2089
1408
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2090
1409
|
preview: "preview",
|
|
2091
1410
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2092
1411
|
};
|
|
2093
|
-
const
|
|
1412
|
+
const userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
2094
1413
|
all: "all",
|
|
2095
1414
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2096
1415
|
preview: "preview",
|
|
2097
1416
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2098
1417
|
};
|
|
2099
|
-
const
|
|
1418
|
+
const userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
2100
1419
|
all: "all",
|
|
2101
1420
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2102
1421
|
preview: "preview",
|
|
2103
1422
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2104
1423
|
};
|
|
2105
|
-
const
|
|
1424
|
+
const userEventPayloadSsoProtectionDeploymentTypeEnum = {
|
|
2106
1425
|
all: "all",
|
|
2107
1426
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2108
1427
|
preview: "preview",
|
|
2109
1428
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2110
1429
|
};
|
|
2111
|
-
const
|
|
1430
|
+
const userEventPayloadSsoProtection = {
|
|
2112
1431
|
all: "all",
|
|
2113
1432
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2114
1433
|
preview: "preview",
|
|
2115
1434
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2116
1435
|
};
|
|
2117
|
-
const
|
|
1436
|
+
const userEventPayloadOldTrustedIpsEnum = {
|
|
2118
1437
|
all: "all",
|
|
2119
1438
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2120
1439
|
preview: "preview",
|
|
2121
1440
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
2122
1441
|
production: "production"
|
|
2123
1442
|
};
|
|
2124
|
-
const
|
|
1443
|
+
const userEventPayloadTrustedIpsEnum = {
|
|
2125
1444
|
all: "all",
|
|
2126
1445
|
all_except_custom_domains: "all_except_custom_domains",
|
|
2127
1446
|
preview: "preview",
|
|
@@ -2179,26 +1498,26 @@ const userEventPayloadActorTypeEnum = {
|
|
|
2179
1498
|
admin: "admin",
|
|
2180
1499
|
user: "user"
|
|
2181
1500
|
};
|
|
2182
|
-
const
|
|
1501
|
+
const userEventPayloadNextScopeEnum = {
|
|
2183
1502
|
all: "all",
|
|
2184
1503
|
private: "private",
|
|
2185
1504
|
public: "public",
|
|
2186
1505
|
selected_repos: "selected_repos"
|
|
2187
1506
|
};
|
|
2188
|
-
const
|
|
1507
|
+
const userEventPayloadPreviousScopeEnum = {
|
|
2189
1508
|
all: "all",
|
|
2190
1509
|
private: "private",
|
|
2191
1510
|
public: "public",
|
|
2192
1511
|
selected_repos: "selected_repos"
|
|
2193
1512
|
};
|
|
2194
|
-
const
|
|
1513
|
+
const userEventPayloadNextEnum = {
|
|
2195
1514
|
basic: "basic",
|
|
2196
1515
|
elastic: "elastic",
|
|
2197
1516
|
enhanced: "enhanced",
|
|
2198
1517
|
standard: "standard",
|
|
2199
1518
|
turbo: "turbo"
|
|
2200
1519
|
};
|
|
2201
|
-
const
|
|
1520
|
+
const userEventPayloadPreviousEnum = {
|
|
2202
1521
|
basic: "basic",
|
|
2203
1522
|
elastic: "elastic",
|
|
2204
1523
|
enhanced: "enhanced",
|
|
@@ -2228,37 +1547,17 @@ const userEventPayloadEnabledEnum = {
|
|
|
2228
1547
|
off: "off",
|
|
2229
1548
|
on: "on"
|
|
2230
1549
|
};
|
|
2231
|
-
const
|
|
2232
|
-
BILLING: "BILLING",
|
|
2233
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2234
|
-
DEVELOPER: "DEVELOPER",
|
|
2235
|
-
MEMBER: "MEMBER",
|
|
2236
|
-
OWNER: "OWNER",
|
|
2237
|
-
SECURITY: "SECURITY",
|
|
2238
|
-
VIEWER: "VIEWER",
|
|
2239
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2240
|
-
};
|
|
2241
|
-
const userEventPayloadPreviousPlanEnum = {
|
|
1550
|
+
const userEventPayloadNewPlanEnum = {
|
|
2242
1551
|
enterprise: "enterprise",
|
|
2243
1552
|
hobby: "hobby",
|
|
2244
1553
|
pro: "pro"
|
|
2245
1554
|
};
|
|
2246
|
-
const
|
|
1555
|
+
const userEventPayloadPreviousPlanEnum = {
|
|
2247
1556
|
enterprise: "enterprise",
|
|
2248
1557
|
hobby: "hobby",
|
|
2249
1558
|
pro: "pro"
|
|
2250
1559
|
};
|
|
2251
|
-
const
|
|
2252
|
-
BILLING: "BILLING",
|
|
2253
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2254
|
-
DEVELOPER: "DEVELOPER",
|
|
2255
|
-
MEMBER: "MEMBER",
|
|
2256
|
-
OWNER: "OWNER",
|
|
2257
|
-
SECURITY: "SECURITY",
|
|
2258
|
-
VIEWER: "VIEWER",
|
|
2259
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2260
|
-
};
|
|
2261
|
-
const userEventPayloadTeamRolesEnum = {
|
|
1560
|
+
const userEventPayloadRoleEnum = {
|
|
2262
1561
|
BILLING: "BILLING",
|
|
2263
1562
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2264
1563
|
DEVELOPER: "DEVELOPER",
|
|
@@ -2289,6 +1588,16 @@ const userEventPayloadPreviousTeamPermissionsEnum = {
|
|
|
2289
1588
|
V0Viewer: "V0Viewer",
|
|
2290
1589
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2291
1590
|
};
|
|
1591
|
+
const userEventPayloadPreviousTeamRolesEnum = {
|
|
1592
|
+
BILLING: "BILLING",
|
|
1593
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1594
|
+
DEVELOPER: "DEVELOPER",
|
|
1595
|
+
MEMBER: "MEMBER",
|
|
1596
|
+
OWNER: "OWNER",
|
|
1597
|
+
SECURITY: "SECURITY",
|
|
1598
|
+
VIEWER: "VIEWER",
|
|
1599
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1600
|
+
};
|
|
2292
1601
|
const userEventPayloadTeamPermissionsEnum = {
|
|
2293
1602
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2294
1603
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -2310,108 +1619,825 @@ const userEventPayloadTeamPermissionsEnum = {
|
|
|
2310
1619
|
V0Viewer: "V0Viewer",
|
|
2311
1620
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2312
1621
|
};
|
|
2313
|
-
const
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
1622
|
+
const userEventPayloadTeamRolesEnum = {
|
|
1623
|
+
BILLING: "BILLING",
|
|
1624
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1625
|
+
DEVELOPER: "DEVELOPER",
|
|
1626
|
+
MEMBER: "MEMBER",
|
|
1627
|
+
OWNER: "OWNER",
|
|
1628
|
+
SECURITY: "SECURITY",
|
|
1629
|
+
VIEWER: "VIEWER",
|
|
1630
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1631
|
+
};
|
|
1632
|
+
const userEventPayloadPlanEnum = {
|
|
1633
|
+
enterprise: "enterprise",
|
|
1634
|
+
hobby: "hobby",
|
|
1635
|
+
pro: "pro"
|
|
1636
|
+
};
|
|
1637
|
+
const userEventPayloadDecisionEnum = {
|
|
1638
|
+
keep_on: "keep_on",
|
|
1639
|
+
turn_off: "turn_off"
|
|
1640
|
+
};
|
|
1641
|
+
const userEventPayloadScopeEnum = {
|
|
1642
|
+
project: "project",
|
|
1643
|
+
team: "team",
|
|
1644
|
+
user: "user"
|
|
1645
|
+
};
|
|
1646
|
+
const userEventPayloadSamplingEnvEnum = {
|
|
1647
|
+
preview: "preview",
|
|
1648
|
+
production: "production"
|
|
1649
|
+
};
|
|
1650
|
+
const userEventPayloadMethodEnum = {
|
|
1651
|
+
passkey: "passkey",
|
|
1652
|
+
self_serve_recovery: "self_serve_recovery",
|
|
1653
|
+
totp: "totp",
|
|
1654
|
+
user_disabled: "user_disabled"
|
|
1655
|
+
};
|
|
1656
|
+
const userEventPayloadAllowedMethodsEnum = {
|
|
1657
|
+
"recovery-code": "recovery-code",
|
|
1658
|
+
totp: "totp",
|
|
1659
|
+
webauthn: "webauthn"
|
|
1660
|
+
};
|
|
1661
|
+
const userEventPayloadContextEnum = {
|
|
1662
|
+
login: "login",
|
|
1663
|
+
sudo: "sudo"
|
|
1664
|
+
};
|
|
1665
|
+
const userEventPayloadDecisionBasisEnum = {
|
|
1666
|
+
gmail: "gmail",
|
|
1667
|
+
none: "none",
|
|
1668
|
+
"workspace-mx": "workspace-mx"
|
|
1669
|
+
};
|
|
1670
|
+
const userEventPayloadDecisionMxOutcomeEnum = {
|
|
1671
|
+
google: "google",
|
|
1672
|
+
"lookup-error": "lookup-error",
|
|
1673
|
+
"non-google": "non-google",
|
|
1674
|
+
"not-checked": "not-checked"
|
|
1675
|
+
};
|
|
1676
|
+
const userEventPayloadTierEnum = {
|
|
1677
|
+
plus: "plus",
|
|
1678
|
+
pro: "pro"
|
|
1679
|
+
};
|
|
1680
|
+
const userEventPayloadAppClientAuthenticationUsedMethodEnum = {
|
|
1681
|
+
client_secret_basic: "client_secret_basic",
|
|
1682
|
+
client_secret_jwt: "client_secret_jwt",
|
|
1683
|
+
client_secret_post: "client_secret_post",
|
|
1684
|
+
none: "none",
|
|
1685
|
+
oidc_token: "oidc_token",
|
|
1686
|
+
private_key_jwt: "private_key_jwt"
|
|
1687
|
+
};
|
|
1688
|
+
const userEventPayloadAuthMethodEnum = {
|
|
1689
|
+
app: "app",
|
|
1690
|
+
apple: "apple",
|
|
1691
|
+
bitbucket: "bitbucket",
|
|
1692
|
+
chatgpt: "chatgpt",
|
|
1693
|
+
email: "email",
|
|
1694
|
+
emu: "emu",
|
|
1695
|
+
github: "github",
|
|
1696
|
+
"github-webhook": "github-webhook",
|
|
1697
|
+
gitlab: "gitlab",
|
|
1698
|
+
google: "google",
|
|
1699
|
+
invite: "invite",
|
|
1700
|
+
manual: "manual",
|
|
1701
|
+
otp: "otp",
|
|
1702
|
+
passkey: "passkey",
|
|
1703
|
+
saml: "saml",
|
|
1704
|
+
sms: "sms",
|
|
1705
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
1706
|
+
};
|
|
1707
|
+
const userEventPayloadGrantTypeEnum = {
|
|
1708
|
+
authorization_code: "authorization_code",
|
|
1709
|
+
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
1710
|
+
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2317
1711
|
};
|
|
2318
|
-
const
|
|
2319
|
-
|
|
2320
|
-
|
|
1712
|
+
const userEventPayloadOriginEnum = {
|
|
1713
|
+
app: "app",
|
|
1714
|
+
apple: "apple",
|
|
1715
|
+
bitbucket: "bitbucket",
|
|
1716
|
+
chatgpt: "chatgpt",
|
|
1717
|
+
email: "email",
|
|
1718
|
+
emu: "emu",
|
|
1719
|
+
github: "github",
|
|
1720
|
+
"github-webhook": "github-webhook",
|
|
1721
|
+
gitlab: "gitlab",
|
|
1722
|
+
google: "google",
|
|
1723
|
+
invite: "invite",
|
|
1724
|
+
manual: "manual",
|
|
1725
|
+
otp: "otp",
|
|
1726
|
+
passkey: "passkey",
|
|
1727
|
+
saml: "saml",
|
|
1728
|
+
sms: "sms",
|
|
1729
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
2321
1730
|
};
|
|
2322
|
-
const
|
|
2323
|
-
|
|
1731
|
+
const userEventPayloadProjectScopeEnum = {
|
|
1732
|
+
account: "account",
|
|
1733
|
+
"project-only": "project-only"
|
|
1734
|
+
};
|
|
1735
|
+
const userEventTypeEnum = {
|
|
1736
|
+
"access-group-created": "access-group-created",
|
|
1737
|
+
"access-group-deleted": "access-group-deleted",
|
|
1738
|
+
"access-group-project-updated": "access-group-project-updated",
|
|
1739
|
+
"access-group-updated": "access-group-updated",
|
|
1740
|
+
"access-group-user-added": "access-group-user-added",
|
|
1741
|
+
"access-group-user-removed": "access-group-user-removed",
|
|
1742
|
+
"admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked",
|
|
1743
|
+
"admin-plan-updated": "admin-plan-updated",
|
|
1744
|
+
"admin-secondary-email-added": "admin-secondary-email-added",
|
|
1745
|
+
"admin-secondary-email-removed": "admin-secondary-email-removed",
|
|
1746
|
+
"admin-team-name-update": "admin-team-name-update",
|
|
1747
|
+
"admin-team-slug-update": "admin-team-slug-update",
|
|
1748
|
+
"admin-user-delete": "admin-user-delete",
|
|
1749
|
+
"admin-user-primary-email-updated": "admin-user-primary-email-updated",
|
|
1750
|
+
"admin-username-updated": "admin-username-updated",
|
|
1751
|
+
"agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked",
|
|
1752
|
+
"agentic-provisioning-account-linked": "agentic-provisioning-account-linked",
|
|
1753
|
+
"agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked",
|
|
1754
|
+
"agentic-provisioning-account-unlinked": "agentic-provisioning-account-unlinked",
|
|
1755
|
+
"agentic-provisioning-credentials-rotated": "agentic-provisioning-credentials-rotated",
|
|
1756
|
+
"agentic-provisioning-plan-changed": "agentic-provisioning-plan-changed",
|
|
1757
|
+
"agentic-provisioning-team-created": "agentic-provisioning-team-created",
|
|
1758
|
+
"ai-alert-investigation": "ai-alert-investigation",
|
|
1759
|
+
"ai-code-review": "ai-code-review",
|
|
1760
|
+
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
1761
|
+
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
1762
|
+
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
1763
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
1764
|
+
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
1765
|
+
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
1766
|
+
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
1767
|
+
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
1768
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
1769
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
1770
|
+
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
1771
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
1772
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
1773
|
+
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
1774
|
+
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
1775
|
+
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
1776
|
+
"ai-gateway-private-model-deleted": "ai-gateway-private-model-deleted",
|
|
1777
|
+
"ai-gateway-private-model-updated": "ai-gateway-private-model-updated",
|
|
1778
|
+
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
1779
|
+
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
1780
|
+
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
1781
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
1782
|
+
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
1783
|
+
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
1784
|
+
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
1785
|
+
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
1786
|
+
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
1787
|
+
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
1788
|
+
"ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
|
|
1789
|
+
"ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
|
|
1790
|
+
"ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
|
|
1791
|
+
"ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
|
|
1792
|
+
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
1793
|
+
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
1794
|
+
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
1795
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
1796
|
+
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
1797
|
+
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
1798
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
1799
|
+
"ai-omniagent": "ai-omniagent",
|
|
1800
|
+
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
1801
|
+
"alert-rule-created": "alert-rule-created",
|
|
1802
|
+
"alert-rule-deleted": "alert-rule-deleted",
|
|
1803
|
+
"alert-rule-updated": "alert-rule-updated",
|
|
1804
|
+
alias: "alias",
|
|
1805
|
+
"alias-chown": "alias-chown",
|
|
1806
|
+
"alias-delete": "alias-delete",
|
|
1807
|
+
"alias-invite-created": "alias-invite-created",
|
|
1808
|
+
"alias-invite-joined": "alias-invite-joined",
|
|
1809
|
+
"alias-invite-revoked": "alias-invite-revoked",
|
|
1810
|
+
"alias-protection-bypass-created": "alias-protection-bypass-created",
|
|
1811
|
+
"alias-protection-bypass-exception": "alias-protection-bypass-exception",
|
|
1812
|
+
"alias-protection-bypass-regenerated": "alias-protection-bypass-regenerated",
|
|
1813
|
+
"alias-protection-bypass-revoked": "alias-protection-bypass-revoked",
|
|
1814
|
+
"alias-system": "alias-system",
|
|
1815
|
+
"alias-user-scoped-access-denied": "alias-user-scoped-access-denied",
|
|
1816
|
+
"alias-user-scoped-access-granted": "alias-user-scoped-access-granted",
|
|
1817
|
+
"alias-user-scoped-access-requested": "alias-user-scoped-access-requested",
|
|
1818
|
+
"alias-user-scoped-access-revoked": "alias-user-scoped-access-revoked",
|
|
1819
|
+
"aliases-assigned": "aliases-assigned",
|
|
1820
|
+
"attack-mode-disabled": "attack-mode-disabled",
|
|
1821
|
+
"attack-mode-enabled": "attack-mode-enabled",
|
|
1822
|
+
"audit-log-export-downloaded": "audit-log-export-downloaded",
|
|
1823
|
+
"audit-log-export-requested": "audit-log-export-requested",
|
|
1824
|
+
"authorize-git-deployment": "authorize-git-deployment",
|
|
1825
|
+
"auto-expose-system-envs": "auto-expose-system-envs",
|
|
1826
|
+
avatar: "avatar",
|
|
1827
|
+
"billing-settings-updated": "billing-settings-updated",
|
|
1828
|
+
"bulk-redirects-settings-updated": "bulk-redirects-settings-updated",
|
|
1829
|
+
"bulk-redirects-version-promoted": "bulk-redirects-version-promoted",
|
|
1830
|
+
"bulk-redirects-version-restored": "bulk-redirects-version-restored",
|
|
1831
|
+
cert: "cert",
|
|
1832
|
+
"cert-autorenew": "cert-autorenew",
|
|
1833
|
+
"cert-chown": "cert-chown",
|
|
1834
|
+
"cert-clone": "cert-clone",
|
|
1835
|
+
"cert-delete": "cert-delete",
|
|
1836
|
+
"cert-renew": "cert-renew",
|
|
1837
|
+
"cert-replace": "cert-replace",
|
|
1838
|
+
"cert-system-create": "cert-system-create",
|
|
1839
|
+
"code-owners-config-updated": "code-owners-config-updated",
|
|
1840
|
+
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
1841
|
+
"compliance-document-previewed": "compliance-document-previewed",
|
|
1842
|
+
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
1843
|
+
"concurrent-builds-update": "concurrent-builds-update",
|
|
1844
|
+
"connect-attach-project": "connect-attach-project",
|
|
1845
|
+
"connect-bitbucket": "connect-bitbucket",
|
|
1846
|
+
"connect-bitbucket-app": "connect-bitbucket-app",
|
|
1847
|
+
"connect-configuration-created": "connect-configuration-created",
|
|
1848
|
+
"connect-configuration-deleted": "connect-configuration-deleted",
|
|
1849
|
+
"connect-configuration-link-updated": "connect-configuration-link-updated",
|
|
1850
|
+
"connect-configuration-linked": "connect-configuration-linked",
|
|
1851
|
+
"connect-configuration-unlinked": "connect-configuration-unlinked",
|
|
1852
|
+
"connect-configuration-updated": "connect-configuration-updated",
|
|
1853
|
+
"connect-create-connector": "connect-create-connector",
|
|
1854
|
+
"connect-delete-connector": "connect-delete-connector",
|
|
1855
|
+
"connect-delete-installation": "connect-delete-installation",
|
|
1856
|
+
"connect-detach-project": "connect-detach-project",
|
|
1857
|
+
"connect-github": "connect-github",
|
|
1858
|
+
"connect-github-custom-host": "connect-github-custom-host",
|
|
1859
|
+
"connect-github-limited": "connect-github-limited",
|
|
1860
|
+
"connect-gitlab": "connect-gitlab",
|
|
1861
|
+
"connect-gitlab-app": "connect-gitlab-app",
|
|
1862
|
+
"connect-import-tokens": "connect-import-tokens",
|
|
1863
|
+
"connect-revoke-all-tokens": "connect-revoke-all-tokens",
|
|
1864
|
+
"connect-update-connector": "connect-update-connector",
|
|
1865
|
+
"connect-update-trigger-destinations": "connect-update-trigger-destinations",
|
|
1866
|
+
"connect-upsert-installation": "connect-upsert-installation",
|
|
1867
|
+
"custom-alert-created": "custom-alert-created",
|
|
1868
|
+
"custom-alert-deleted": "custom-alert-deleted",
|
|
1869
|
+
"custom-alert-updated": "custom-alert-updated",
|
|
1870
|
+
"custom-environments-settings-updated": "custom-environments-settings-updated",
|
|
1871
|
+
"custom-metric-metadata-deleted": "custom-metric-metadata-deleted",
|
|
1872
|
+
"custom-metric-metadata-updated": "custom-metric-metadata-updated",
|
|
1873
|
+
"custom-suffix-clear": "custom-suffix-clear",
|
|
1874
|
+
"custom-suffix-disable": "custom-suffix-disable",
|
|
1875
|
+
"custom-suffix-enable": "custom-suffix-enable",
|
|
1876
|
+
"custom-suffix-pending": "custom-suffix-pending",
|
|
1877
|
+
"custom-suffix-ready": "custom-suffix-ready",
|
|
1878
|
+
"deploy-hook-created": "deploy-hook-created",
|
|
1879
|
+
"deploy-hook-deduped": "deploy-hook-deduped",
|
|
1880
|
+
"deploy-hook-deleted": "deploy-hook-deleted",
|
|
1881
|
+
"deploy-hook-processed": "deploy-hook-processed",
|
|
1882
|
+
deployment: "deployment",
|
|
1883
|
+
"deployment-check-created": "deployment-check-created",
|
|
1884
|
+
"deployment-check-deleted": "deployment-check-deleted",
|
|
1885
|
+
"deployment-check-updated": "deployment-check-updated",
|
|
1886
|
+
"deployment-chown": "deployment-chown",
|
|
1887
|
+
"deployment-creation-blocked": "deployment-creation-blocked",
|
|
1888
|
+
"deployment-delete": "deployment-delete",
|
|
1889
|
+
"deployment-policy-blocked": "deployment-policy-blocked",
|
|
1890
|
+
"deployment-undeleted": "deployment-undeleted",
|
|
1891
|
+
"disabled-integration-installation-removed": "disabled-integration-installation-removed",
|
|
1892
|
+
"disconnect-bitbucket-app": "disconnect-bitbucket-app",
|
|
1893
|
+
"disconnect-github": "disconnect-github",
|
|
1894
|
+
"disconnect-github-custom-host": "disconnect-github-custom-host",
|
|
1895
|
+
"disconnect-github-limited": "disconnect-github-limited",
|
|
1896
|
+
"disconnect-gitlab-app": "disconnect-gitlab-app",
|
|
1897
|
+
"dns-add": "dns-add",
|
|
1898
|
+
"dns-delete": "dns-delete",
|
|
1899
|
+
"dns-record-internal": "dns-record-internal",
|
|
1900
|
+
"dns-update": "dns-update",
|
|
1901
|
+
"dns-zonefile-import": "dns-zonefile-import",
|
|
1902
|
+
domain: "domain",
|
|
1903
|
+
"domain-buy": "domain-buy",
|
|
1904
|
+
"domain-cdn": "domain-cdn",
|
|
1905
|
+
"domain-chown": "domain-chown",
|
|
1906
|
+
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
1907
|
+
"domain-delegated": "domain-delegated",
|
|
1908
|
+
"domain-delete": "domain-delete",
|
|
1909
|
+
"domain-ech-change": "domain-ech-change",
|
|
1910
|
+
"domain-move-in": "domain-move-in",
|
|
1911
|
+
"domain-move-out": "domain-move-out",
|
|
1912
|
+
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
1913
|
+
"domain-renew-change": "domain-renew-change",
|
|
1914
|
+
"domain-service-type-updated": "domain-service-type-updated",
|
|
1915
|
+
"domain-transfer-in": "domain-transfer-in",
|
|
1916
|
+
"domain-transfer-in-canceled": "domain-transfer-in-canceled",
|
|
1917
|
+
"domain-transfer-in-completed": "domain-transfer-in-completed",
|
|
1918
|
+
"domain-zone-change": "domain-zone-change",
|
|
1919
|
+
"domain-zone-change-internal": "domain-zone-change-internal",
|
|
1920
|
+
"drain-created": "drain-created",
|
|
1921
|
+
"drain-deleted": "drain-deleted",
|
|
1922
|
+
"drain-disabled": "drain-disabled",
|
|
1923
|
+
"drain-enabled": "drain-enabled",
|
|
1924
|
+
"drain-updated": "drain-updated",
|
|
1925
|
+
"edge-cache-dangerously-delete-by-src-images": "edge-cache-dangerously-delete-by-src-images",
|
|
1926
|
+
"edge-cache-dangerously-delete-by-tags": "edge-cache-dangerously-delete-by-tags",
|
|
1927
|
+
"edge-cache-dangerously-delete-immutable-static": "edge-cache-dangerously-delete-immutable-static",
|
|
1928
|
+
"edge-cache-invalidate-by-src-images": "edge-cache-invalidate-by-src-images",
|
|
1929
|
+
"edge-cache-invalidate-by-tags": "edge-cache-invalidate-by-tags",
|
|
1930
|
+
"edge-cache-purge-all": "edge-cache-purge-all",
|
|
1931
|
+
"edge-cache-rollback-purge": "edge-cache-rollback-purge",
|
|
1932
|
+
"edge-config-backup-restored": "edge-config-backup-restored",
|
|
1933
|
+
"edge-config-created": "edge-config-created",
|
|
1934
|
+
"edge-config-deleted": "edge-config-deleted",
|
|
1935
|
+
"edge-config-items-updated": "edge-config-items-updated",
|
|
1936
|
+
"edge-config-schema-deleted": "edge-config-schema-deleted",
|
|
1937
|
+
"edge-config-schema-updated": "edge-config-schema-updated",
|
|
1938
|
+
"edge-config-token-created": "edge-config-token-created",
|
|
1939
|
+
"edge-config-token-deleted": "edge-config-token-deleted",
|
|
1940
|
+
"edge-config-transfer-in": "edge-config-transfer-in",
|
|
1941
|
+
"edge-config-transfer-out": "edge-config-transfer-out",
|
|
1942
|
+
"edge-config-updated": "edge-config-updated",
|
|
1943
|
+
email: "email",
|
|
1944
|
+
"email-notification-rule-removed": "email-notification-rule-removed",
|
|
1945
|
+
"email-notification-rule-updated": "email-notification-rule-updated",
|
|
1946
|
+
"emu-member-removed-unverified-domain": "emu-member-removed-unverified-domain",
|
|
1947
|
+
"enforce-disjunctive-production-secrets": "enforce-disjunctive-production-secrets",
|
|
1948
|
+
"enforce-sensitive-environment-variables": "enforce-sensitive-environment-variables",
|
|
1949
|
+
"env-variable-add": "env-variable-add",
|
|
1950
|
+
"env-variable-delete": "env-variable-delete",
|
|
1951
|
+
"env-variable-edit": "env-variable-edit",
|
|
1952
|
+
"env-variable-masked": "env-variable-masked",
|
|
1953
|
+
"env-variable-read": "env-variable-read",
|
|
1954
|
+
"env-variable-read:cli:dev": "env-variable-read:cli:dev",
|
|
1955
|
+
"env-variable-read:cli:env:add": "env-variable-read:cli:env:add",
|
|
1956
|
+
"env-variable-read:cli:env:ls": "env-variable-read:cli:env:ls",
|
|
1957
|
+
"env-variable-read:cli:env:pull": "env-variable-read:cli:env:pull",
|
|
1958
|
+
"env-variable-read:cli:env:rm": "env-variable-read:cli:env:rm",
|
|
1959
|
+
"env-variable-read:cli:pull": "env-variable-read:cli:pull",
|
|
1960
|
+
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
1961
|
+
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
1962
|
+
"env-variable-rotated": "env-variable-rotated",
|
|
1963
|
+
"experiment-created": "experiment-created",
|
|
1964
|
+
"experiment-deleted": "experiment-deleted",
|
|
1965
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
1966
|
+
"experiment-updated": "experiment-updated",
|
|
1967
|
+
"firewall-bypass-created": "firewall-bypass-created",
|
|
1968
|
+
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
1969
|
+
"firewall-config-modified": "firewall-config-modified",
|
|
1970
|
+
"firewall-config-promoted": "firewall-config-promoted",
|
|
1971
|
+
"firewall-config-removed": "firewall-config-removed",
|
|
1972
|
+
"firewall-managed-rulegroup-updated": "firewall-managed-rulegroup-updated",
|
|
1973
|
+
"firewall-managed-ruleset-updated": "firewall-managed-ruleset-updated",
|
|
1974
|
+
flag: "flag",
|
|
1975
|
+
"flag-archived": "flag-archived",
|
|
1976
|
+
"flag-created": "flag-created",
|
|
1977
|
+
"flag-deleted": "flag-deleted",
|
|
1978
|
+
"flag-unarchived": "flag-unarchived",
|
|
1979
|
+
"flag-updated": "flag-updated",
|
|
1980
|
+
"flags-explorer-subscription": "flags-explorer-subscription",
|
|
1981
|
+
"flags-sdk-key": "flags-sdk-key",
|
|
1982
|
+
"flags-sdk-key-added": "flags-sdk-key-added",
|
|
1983
|
+
"flags-sdk-key-deleted": "flags-sdk-key-deleted",
|
|
1984
|
+
"flags-sdk-key-read": "flags-sdk-key-read",
|
|
1985
|
+
"flags-segment": "flags-segment",
|
|
1986
|
+
"flags-settings": "flags-settings",
|
|
1987
|
+
"flags-transferred": "flags-transferred",
|
|
1988
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
1989
|
+
"git-integration-repo-push": "git-integration-repo-push",
|
|
1990
|
+
git_account_integration_link_added: "git_account_integration_link_added",
|
|
1991
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
1992
|
+
"global-config-created": "global-config-created",
|
|
1993
|
+
"global-config-deleted": "global-config-deleted",
|
|
1994
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
1995
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
1996
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
1997
|
+
"global-config-token-created": "global-config-token-created",
|
|
1998
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
1999
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
2000
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
2001
|
+
"global-config-updated": "global-config-updated",
|
|
2002
|
+
"instant-rollback-created": "instant-rollback-created",
|
|
2003
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
2004
|
+
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2005
|
+
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2006
|
+
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
2007
|
+
"integration-configuration-transfer-in-success": "integration-configuration-transfer-in-success",
|
|
2008
|
+
"integration-configuration-transfer-out-success": "integration-configuration-transfer-out-success",
|
|
2009
|
+
"integration-configurations-disabled": "integration-configurations-disabled",
|
|
2010
|
+
"integration-installation-billing-plan-updated": "integration-installation-billing-plan-updated",
|
|
2011
|
+
"integration-installation-completed": "integration-installation-completed",
|
|
2012
|
+
"integration-installation-permission-updated": "integration-installation-permission-updated",
|
|
2013
|
+
"integration-installation-removed": "integration-installation-removed",
|
|
2014
|
+
"integration-resource-redis-command-executed": "integration-resource-redis-command-executed",
|
|
2015
|
+
"integration-resource-sql-query-executed": "integration-resource-sql-query-executed",
|
|
2016
|
+
"integration-scope-changed": "integration-scope-changed",
|
|
2017
|
+
"invoice-modified": "invoice-modified",
|
|
2018
|
+
"invoice-refunded": "invoice-refunded",
|
|
2019
|
+
"kms-issuer-created": "kms-issuer-created",
|
|
2020
|
+
"kms-issuer-deleted": "kms-issuer-deleted",
|
|
2021
|
+
"kms-issuer-key-activated": "kms-issuer-key-activated",
|
|
2022
|
+
"kms-issuer-key-created": "kms-issuer-key-created",
|
|
2023
|
+
"kms-issuer-key-revoked": "kms-issuer-key-revoked",
|
|
2024
|
+
"kms-issuer-key-rotated": "kms-issuer-key-rotated",
|
|
2025
|
+
"kms-issuer-policy-created": "kms-issuer-policy-created",
|
|
2026
|
+
"kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
|
|
2027
|
+
"kms-issuer-policy-updated": "kms-issuer-policy-updated",
|
|
2028
|
+
"kms-issuer-updated": "kms-issuer-updated",
|
|
2029
|
+
"log-drain-created": "log-drain-created",
|
|
2030
|
+
"log-drain-deleted": "log-drain-deleted",
|
|
2031
|
+
"log-drain-disabled": "log-drain-disabled",
|
|
2032
|
+
"log-drain-enabled": "log-drain-enabled",
|
|
2033
|
+
login: "login",
|
|
2034
|
+
"login-connection-linked": "login-connection-linked",
|
|
2035
|
+
"login-connection-unlinked": "login-connection-unlinked",
|
|
2036
|
+
"manual-deployment-promotion-created": "manual-deployment-promotion-created",
|
|
2037
|
+
"marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
|
|
2038
|
+
"marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
|
|
2039
|
+
"microfrontend-group-added": "microfrontend-group-added",
|
|
2040
|
+
"microfrontend-group-deleted": "microfrontend-group-deleted",
|
|
2041
|
+
"microfrontend-group-updated": "microfrontend-group-updated",
|
|
2042
|
+
"microfrontend-project-added-to-group": "microfrontend-project-added-to-group",
|
|
2043
|
+
"microfrontend-project-removed-from-group": "microfrontend-project-removed-from-group",
|
|
2044
|
+
"microfrontend-project-updated": "microfrontend-project-updated",
|
|
2045
|
+
"monitoring-alert-updated": "monitoring-alert-updated",
|
|
2046
|
+
"monitoring-disabled": "monitoring-disabled",
|
|
2047
|
+
"monitoring-enabled": "monitoring-enabled",
|
|
2048
|
+
"oauth-app-connection-created": "oauth-app-connection-created",
|
|
2049
|
+
"oauth-app-connection-removed": "oauth-app-connection-removed",
|
|
2050
|
+
"oauth-app-connection-updated": "oauth-app-connection-updated",
|
|
2051
|
+
"oauth-app-created": "oauth-app-created",
|
|
2052
|
+
"oauth-app-deleted": "oauth-app-deleted",
|
|
2053
|
+
"oauth-app-secret-deleted": "oauth-app-secret-deleted",
|
|
2054
|
+
"oauth-app-secret-generated": "oauth-app-secret-generated",
|
|
2055
|
+
"oauth-app-token-created": "oauth-app-token-created",
|
|
2056
|
+
"oauth-app-updated": "oauth-app-updated",
|
|
2057
|
+
"observability-disabled": "observability-disabled",
|
|
2058
|
+
"observability-enabled": "observability-enabled",
|
|
2059
|
+
"observability-plus-project-disabled": "observability-plus-project-disabled",
|
|
2060
|
+
"observability-plus-project-enabled": "observability-plus-project-enabled",
|
|
2061
|
+
"oidc-policy-created": "oidc-policy-created",
|
|
2062
|
+
"oidc-policy-deleted": "oidc-policy-deleted",
|
|
2063
|
+
"oidc-policy-updated": "oidc-policy-updated",
|
|
2064
|
+
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
2065
|
+
"organization-create": "organization-create",
|
|
2066
|
+
"organization-delete": "organization-delete",
|
|
2067
|
+
"organization-dsync-group-delete": "organization-dsync-group-delete",
|
|
2068
|
+
"organization-dsync-group-upsert": "organization-dsync-group-upsert",
|
|
2069
|
+
"organization-emu-updated": "organization-emu-updated",
|
|
2070
|
+
"organization-slug-update": "organization-slug-update",
|
|
2071
|
+
"organization-team-add": "organization-team-add",
|
|
2072
|
+
"organization-team-create": "organization-team-create",
|
|
2073
|
+
"organization-team-delete": "organization-team-delete",
|
|
2074
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
2075
|
+
"owner-blocked": "owner-blocked",
|
|
2076
|
+
"owner-soft-blocked": "owner-soft-blocked",
|
|
2077
|
+
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
2078
|
+
"owner-unblocked": "owner-unblocked",
|
|
2079
|
+
"page-integrity-config-updated": "page-integrity-config-updated",
|
|
2080
|
+
"page-integrity-header-approved": "page-integrity-header-approved",
|
|
2081
|
+
"page-integrity-header-rejected": "page-integrity-header-rejected",
|
|
2082
|
+
"page-integrity-inventory-cleared": "page-integrity-inventory-cleared",
|
|
2083
|
+
"page-integrity-resource-approved": "page-integrity-resource-approved",
|
|
2084
|
+
"page-integrity-resource-deleted": "page-integrity-resource-deleted",
|
|
2085
|
+
"page-integrity-resource-rejected": "page-integrity-resource-rejected",
|
|
2086
|
+
"page-integrity-script-approval-rule-created": "page-integrity-script-approval-rule-created",
|
|
2087
|
+
"page-integrity-script-approval-rule-deleted": "page-integrity-script-approval-rule-deleted",
|
|
2088
|
+
"passkey-created": "passkey-created",
|
|
2089
|
+
"passkey-deleted": "passkey-deleted",
|
|
2090
|
+
"passkey-updated": "passkey-updated",
|
|
2091
|
+
"passport-access-granted": "passport-access-granted",
|
|
2092
|
+
"password-protection-disabled": "password-protection-disabled",
|
|
2093
|
+
"password-protection-enabled": "password-protection-enabled",
|
|
2094
|
+
"payment-method-added": "payment-method-added",
|
|
2095
|
+
"payment-method-default-updated": "payment-method-default-updated",
|
|
2096
|
+
"payment-method-removed": "payment-method-removed",
|
|
2097
|
+
plan: "plan",
|
|
2098
|
+
"preview-deployment-suffix-disabled": "preview-deployment-suffix-disabled",
|
|
2099
|
+
"preview-deployment-suffix-enabled": "preview-deployment-suffix-enabled",
|
|
2100
|
+
"preview-deployment-suffix-update": "preview-deployment-suffix-update",
|
|
2101
|
+
"privatelink-endpoint-created": "privatelink-endpoint-created",
|
|
2102
|
+
"privatelink-endpoint-deleted": "privatelink-endpoint-deleted",
|
|
2103
|
+
"privatelink-endpoint-updated": "privatelink-endpoint-updated",
|
|
2104
|
+
"production-branch-updated": "production-branch-updated",
|
|
2105
|
+
"project-add-alias": "project-add-alias",
|
|
2106
|
+
"project-add-redirect": "project-add-redirect",
|
|
2107
|
+
"project-affected-projects-deployments-updated": "project-affected-projects-deployments-updated",
|
|
2108
|
+
"project-alias-configured-change": "project-alias-configured-change",
|
|
2109
|
+
"project-analytics-disabled": "project-analytics-disabled",
|
|
2110
|
+
"project-analytics-enabled": "project-analytics-enabled",
|
|
2111
|
+
"project-auto-assign-custom-production-domains-updated": "project-auto-assign-custom-production-domains-updated",
|
|
2112
|
+
"project-automation-bypass": "project-automation-bypass",
|
|
2113
|
+
"project-avatar-update": "project-avatar-update",
|
|
2114
|
+
"project-build-command-updated": "project-build-command-updated",
|
|
2115
|
+
"project-build-logs-and-source-protection-updated": "project-build-logs-and-source-protection-updated",
|
|
2116
|
+
"project-build-machine-updated": "project-build-machine-updated",
|
|
2117
|
+
"project-card-widget-preference-updated": "project-card-widget-preference-updated",
|
|
2118
|
+
"project-client-cert-delete": "project-client-cert-delete",
|
|
2119
|
+
"project-client-cert-upload": "project-client-cert-upload",
|
|
2120
|
+
"project-connect-configurations": "project-connect-configurations",
|
|
2121
|
+
"project-consolidated-git-commit-status-updated": "project-consolidated-git-commit-status-updated",
|
|
2122
|
+
"project-created": "project-created",
|
|
2123
|
+
"project-cron-jobs-toggled": "project-cron-jobs-toggled",
|
|
2124
|
+
"project-custom-environment-created": "project-custom-environment-created",
|
|
2125
|
+
"project-custom-environment-deleted": "project-custom-environment-deleted",
|
|
2126
|
+
"project-custom-environment-schedules-default-updated": "project-custom-environment-schedules-default-updated",
|
|
2127
|
+
"project-custom-environment-updated": "project-custom-environment-updated",
|
|
2128
|
+
"project-customer-success-code-visibility-updated": "project-customer-success-code-visibility-updated",
|
|
2129
|
+
"project-delete": "project-delete",
|
|
2130
|
+
"project-deployment-policy-updated": "project-deployment-policy-updated",
|
|
2131
|
+
"project-deployment-retention-updated": "project-deployment-retention-updated",
|
|
2132
|
+
"project-directory-listing": "project-directory-listing",
|
|
2133
|
+
"project-domain-deleted": "project-domain-deleted",
|
|
2134
|
+
"project-domain-moved": "project-domain-moved",
|
|
2135
|
+
"project-domain-unverified": "project-domain-unverified",
|
|
2136
|
+
"project-domain-updated": "project-domain-updated",
|
|
2137
|
+
"project-domain-verified": "project-domain-verified",
|
|
2138
|
+
"project-elastic-concurrency-updated": "project-elastic-concurrency-updated",
|
|
2139
|
+
"project-expiration-locked": "project-expiration-locked",
|
|
2140
|
+
"project-expiration-reached": "project-expiration-reached",
|
|
2141
|
+
"project-expiration-scheduled": "project-expiration-scheduled",
|
|
2142
|
+
"project-expiration-unlocked": "project-expiration-unlocked",
|
|
2143
|
+
"project-external-rewrite-caching-updated": "project-external-rewrite-caching-updated",
|
|
2144
|
+
"project-framework-updated": "project-framework-updated",
|
|
2145
|
+
"project-function-cpu-memory": "project-function-cpu-memory",
|
|
2146
|
+
"project-function-failover": "project-function-failover",
|
|
2147
|
+
"project-function-max-duration": "project-function-max-duration",
|
|
2148
|
+
"project-function-regions": "project-function-regions",
|
|
2149
|
+
"project-functions-beta-updated": "project-functions-beta-updated",
|
|
2150
|
+
"project-functions-fluid-disabled": "project-functions-fluid-disabled",
|
|
2151
|
+
"project-functions-fluid-enabled": "project-functions-fluid-enabled",
|
|
2152
|
+
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
2153
|
+
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
2154
|
+
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
2155
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
2156
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
2157
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
2158
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
2159
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
2160
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
2161
|
+
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
2162
|
+
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
2163
|
+
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
2164
|
+
"project-git-repository-connected": "project-git-repository-connected",
|
|
2165
|
+
"project-git-repository-disconnected": "project-git-repository-disconnected",
|
|
2166
|
+
"project-git-repository-dispatch-events-toggled": "project-git-repository-dispatch-events-toggled",
|
|
2167
|
+
"project-git-require-verified-commits-toggled": "project-git-require-verified-commits-toggled",
|
|
2168
|
+
"project-ignored-build-step-updated": "project-ignored-build-step-updated",
|
|
2169
|
+
"project-install-command-updated": "project-install-command-updated",
|
|
2170
|
+
"project-member-added": "project-member-added",
|
|
2171
|
+
"project-member-invited": "project-member-invited",
|
|
2172
|
+
"project-member-removed": "project-member-removed",
|
|
2173
|
+
"project-member-removed-batch": "project-member-removed-batch",
|
|
2174
|
+
"project-member-updated": "project-member-updated",
|
|
2175
|
+
"project-move-in-success": "project-move-in-success",
|
|
2176
|
+
"project-move-out-failed": "project-move-out-failed",
|
|
2177
|
+
"project-move-out-started": "project-move-out-started",
|
|
2178
|
+
"project-move-out-success": "project-move-out-success",
|
|
2179
|
+
"project-name": "project-name",
|
|
2180
|
+
"project-node-version-updated": "project-node-version-updated",
|
|
2181
|
+
"project-oidc-issuer-mode-updated": "project-oidc-issuer-mode-updated",
|
|
2182
|
+
"project-oidc-token-created": "project-oidc-token-created",
|
|
2183
|
+
"project-options-allowlist": "project-options-allowlist",
|
|
2184
|
+
"project-output-directory-updated": "project-output-directory-updated",
|
|
2185
|
+
"project-passport-updated": "project-passport-updated",
|
|
2186
|
+
"project-password-protection": "project-password-protection",
|
|
2187
|
+
"project-paused": "project-paused",
|
|
2188
|
+
"project-preview-deployment-suffix": "project-preview-deployment-suffix",
|
|
2189
|
+
"project-preview-environment-branch-tracking-updated": "project-preview-environment-branch-tracking-updated",
|
|
2190
|
+
"project-prioritize-production-builds-updated": "project-prioritize-production-builds-updated",
|
|
2191
|
+
"project-program-enrollment-changed": "project-program-enrollment-changed",
|
|
2192
|
+
"project-protected-sourcemaps-updated": "project-protected-sourcemaps-updated",
|
|
2193
|
+
"project-rollback-description-updated": "project-rollback-description-updated",
|
|
2194
|
+
"project-rolling-release-aborted": "project-rolling-release-aborted",
|
|
2195
|
+
"project-rolling-release-approved": "project-rolling-release-approved",
|
|
2196
|
+
"project-rolling-release-completed": "project-rolling-release-completed",
|
|
2197
|
+
"project-rolling-release-configured": "project-rolling-release-configured",
|
|
2198
|
+
"project-rolling-release-continued": "project-rolling-release-continued",
|
|
2199
|
+
"project-rolling-release-disabled": "project-rolling-release-disabled",
|
|
2200
|
+
"project-rolling-release-enabled": "project-rolling-release-enabled",
|
|
2201
|
+
"project-rolling-release-paused": "project-rolling-release-paused",
|
|
2202
|
+
"project-rolling-release-started": "project-rolling-release-started",
|
|
2203
|
+
"project-rolling-release-suggested-actions-generated": "project-rolling-release-suggested-actions-generated",
|
|
2204
|
+
"project-rolling-release-timer": "project-rolling-release-timer",
|
|
2205
|
+
"project-root-directory-updated": "project-root-directory-updated",
|
|
2206
|
+
"project-routes-version-promoted": "project-routes-version-promoted",
|
|
2207
|
+
"project-routes-version-restored": "project-routes-version-restored",
|
|
2208
|
+
"project-sandbox-config-updated": "project-sandbox-config-updated",
|
|
2209
|
+
"project-sandbox-url-protection-updated": "project-sandbox-url-protection-updated",
|
|
2210
|
+
"project-skew-protection-allowed-domains-updated": "project-skew-protection-allowed-domains-updated",
|
|
2211
|
+
"project-skew-protection-max-age-updated": "project-skew-protection-max-age-updated",
|
|
2212
|
+
"project-skew-protection-threshold-updated": "project-skew-protection-threshold-updated",
|
|
2213
|
+
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2214
|
+
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2215
|
+
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2216
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2217
|
+
"project-sso-protection": "project-sso-protection",
|
|
2218
|
+
"project-static-ips-updated": "project-static-ips-updated",
|
|
2219
|
+
"project-trusted-ips": "project-trusted-ips",
|
|
2220
|
+
"project-trusted-sources": "project-trusted-sources",
|
|
2221
|
+
"project-unpaused": "project-unpaused",
|
|
2222
|
+
"project-web-analytics-disabled": "project-web-analytics-disabled",
|
|
2223
|
+
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
2224
|
+
"protected-git-scope-added": "protected-git-scope-added",
|
|
2225
|
+
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
2226
|
+
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
2227
|
+
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
2228
|
+
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
2229
|
+
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
2230
|
+
"saml-connection-created": "saml-connection-created",
|
|
2231
|
+
"saml-connection-deleted": "saml-connection-deleted",
|
|
2232
|
+
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
2233
|
+
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
2234
|
+
"sandbox-drive-created": "sandbox-drive-created",
|
|
2235
|
+
"sandbox-drive-deleted": "sandbox-drive-deleted",
|
|
2236
|
+
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
2237
|
+
scale: "scale",
|
|
2238
|
+
"scale-auto": "scale-auto",
|
|
2239
|
+
"secondary-email-added": "secondary-email-added",
|
|
2240
|
+
"secondary-email-removed": "secondary-email-removed",
|
|
2241
|
+
"secondary-email-verified": "secondary-email-verified",
|
|
2242
|
+
"secret-add": "secret-add",
|
|
2243
|
+
"secret-delete": "secret-delete",
|
|
2244
|
+
"secret-rename": "secret-rename",
|
|
2245
|
+
"security-list-created": "security-list-created",
|
|
2246
|
+
"security-list-deleted": "security-list-deleted",
|
|
2247
|
+
"security-list-updated": "security-list-updated",
|
|
2248
|
+
"security-plus-updated": "security-plus-updated",
|
|
2249
|
+
"set-bio": "set-bio",
|
|
2250
|
+
"set-name": "set-name",
|
|
2251
|
+
"set-profiles": "set-profiles",
|
|
2252
|
+
"set-scale": "set-scale",
|
|
2253
|
+
"shared-env-variable-create": "shared-env-variable-create",
|
|
2254
|
+
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
2255
|
+
"shared-env-variable-read": "shared-env-variable-read",
|
|
2256
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
2257
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
2258
|
+
"shared-env-variable-update": "shared-env-variable-update",
|
|
2259
|
+
"show-ip-addresses": "show-ip-addresses",
|
|
2260
|
+
signup: "signup",
|
|
2261
|
+
"signup-via-bitbucket": "signup-via-bitbucket",
|
|
2262
|
+
"signup-via-github": "signup-via-github",
|
|
2263
|
+
"signup-via-gitlab": "signup-via-gitlab",
|
|
2264
|
+
"speed-insights-settings-updated": "speed-insights-settings-updated",
|
|
2265
|
+
"spend-created": "spend-created",
|
|
2266
|
+
"spend-deleted": "spend-deleted",
|
|
2267
|
+
"spend-updated": "spend-updated",
|
|
2268
|
+
"sso-login": "sso-login",
|
|
2269
|
+
"storage-accept-tos": "storage-accept-tos",
|
|
2270
|
+
"storage-access-token-set": "storage-access-token-set",
|
|
2271
|
+
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
2272
|
+
"storage-connect-project": "storage-connect-project",
|
|
2273
|
+
"storage-create": "storage-create",
|
|
2274
|
+
"storage-delete": "storage-delete",
|
|
2275
|
+
"storage-disconnect-project": "storage-disconnect-project",
|
|
2276
|
+
"storage-disconnect-projects": "storage-disconnect-projects",
|
|
2277
|
+
"storage-inactive-store-deleted": "storage-inactive-store-deleted",
|
|
2278
|
+
"storage-reset-credentials": "storage-reset-credentials",
|
|
2279
|
+
"storage-resource-repl-command": "storage-resource-repl-command",
|
|
2280
|
+
"storage-set-locked": "storage-set-locked",
|
|
2281
|
+
"storage-transfer-in-success": "storage-transfer-in-success",
|
|
2282
|
+
"storage-transfer-out-success": "storage-transfer-out-success",
|
|
2283
|
+
"storage-transfer-request-created": "storage-transfer-request-created",
|
|
2284
|
+
"storage-update": "storage-update",
|
|
2285
|
+
"storage-update-project-connection": "storage-update-project-connection",
|
|
2286
|
+
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
2287
|
+
"storage-view-secret": "storage-view-secret",
|
|
2288
|
+
"strict-connectors": "strict-connectors",
|
|
2289
|
+
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
2290
|
+
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
2291
|
+
"strict-shareable-links": "strict-shareable-links",
|
|
2292
|
+
"subscription-created": "subscription-created",
|
|
2293
|
+
"subscription-product-added": "subscription-product-added",
|
|
2294
|
+
"subscription-product-removed": "subscription-product-removed",
|
|
2295
|
+
"subscription-updated": "subscription-updated",
|
|
2296
|
+
"support-session-created": "support-session-created",
|
|
2324
2297
|
team: "team",
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
"
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
"
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
"
|
|
2354
|
-
"
|
|
2355
|
-
"
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
"
|
|
2364
|
-
"
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
"
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
"
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
"
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2298
|
+
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
2299
|
+
"team-avatar-update": "team-avatar-update",
|
|
2300
|
+
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
2301
|
+
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
2302
|
+
"team-default-passport-updated": "team-default-passport-updated",
|
|
2303
|
+
"team-delete": "team-delete",
|
|
2304
|
+
"team-deployment-policy-updated": "team-deployment-policy-updated",
|
|
2305
|
+
"team-domain-verification-created": "team-domain-verification-created",
|
|
2306
|
+
"team-domain-verification-deleted": "team-domain-verification-deleted",
|
|
2307
|
+
"team-domain-verification-verified": "team-domain-verification-verified",
|
|
2308
|
+
"team-email-domain-update": "team-email-domain-update",
|
|
2309
|
+
"team-emu-updated": "team-emu-updated",
|
|
2310
|
+
"team-ended-trial": "team-ended-trial",
|
|
2311
|
+
"team-firewall-config-modified": "team-firewall-config-modified",
|
|
2312
|
+
"team-firewall-config-promoted": "team-firewall-config-promoted",
|
|
2313
|
+
"team-git-repository-dispatch-events-toggled": "team-git-repository-dispatch-events-toggled",
|
|
2314
|
+
"team-git-require-verified-commits-toggled": "team-git-require-verified-commits-toggled",
|
|
2315
|
+
"team-invite-bulk-delete": "team-invite-bulk-delete",
|
|
2316
|
+
"team-invite-code-reset": "team-invite-code-reset",
|
|
2317
|
+
"team-invite-link-created": "team-invite-link-created",
|
|
2318
|
+
"team-invite-link-deleted": "team-invite-link-deleted",
|
|
2319
|
+
"team-ip-blocking-rules-created": "team-ip-blocking-rules-created",
|
|
2320
|
+
"team-ip-blocking-rules-removed": "team-ip-blocking-rules-removed",
|
|
2321
|
+
"team-member-add": "team-member-add",
|
|
2322
|
+
"team-member-confirm-request": "team-member-confirm-request",
|
|
2323
|
+
"team-member-decline-request": "team-member-decline-request",
|
|
2324
|
+
"team-member-delete": "team-member-delete",
|
|
2325
|
+
"team-member-entitlement-added": "team-member-entitlement-added",
|
|
2326
|
+
"team-member-entitlement-canceled": "team-member-entitlement-canceled",
|
|
2327
|
+
"team-member-entitlement-reactivated": "team-member-entitlement-reactivated",
|
|
2328
|
+
"team-member-entitlement-removed": "team-member-entitlement-removed",
|
|
2329
|
+
"team-member-join": "team-member-join",
|
|
2330
|
+
"team-member-leave": "team-member-leave",
|
|
2331
|
+
"team-member-request-access": "team-member-request-access",
|
|
2332
|
+
"team-member-role-update": "team-member-role-update",
|
|
2333
|
+
"team-member-sso-authorization-attempt": "team-member-sso-authorization-attempt",
|
|
2334
|
+
"team-mfa-enforcement-updated": "team-mfa-enforcement-updated",
|
|
2335
|
+
"team-name-update": "team-name-update",
|
|
2336
|
+
"team-paid-invoice": "team-paid-invoice",
|
|
2337
|
+
"team-program-enrollment-changed": "team-program-enrollment-changed",
|
|
2338
|
+
"team-remote-caching-purge": "team-remote-caching-purge",
|
|
2339
|
+
"team-remote-caching-update": "team-remote-caching-update",
|
|
2340
|
+
"team-saml-enforced": "team-saml-enforced",
|
|
2341
|
+
"team-saml-roles": "team-saml-roles",
|
|
2342
|
+
"team-slug-update": "team-slug-update",
|
|
2343
|
+
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2344
|
+
"tracing-configured": "tracing-configured",
|
|
2345
|
+
"tracing-disabled": "tracing-disabled",
|
|
2346
|
+
"tracing-paused": "tracing-paused",
|
|
2347
|
+
"tracing-resumed": "tracing-resumed",
|
|
2348
|
+
"unlink-login-connection": "unlink-login-connection",
|
|
2349
|
+
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2350
|
+
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
2351
|
+
"user-auto-block-configured": "user-auto-block-configured",
|
|
2352
|
+
"user-blocked": "user-blocked",
|
|
2353
|
+
"user-delete": "user-delete",
|
|
2354
|
+
"user-delete-requested": "user-delete-requested",
|
|
2355
|
+
"user-emu-account-archived": "user-emu-account-archived",
|
|
2356
|
+
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2357
|
+
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2358
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2359
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2360
|
+
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2361
|
+
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2362
|
+
"user-emu-toggled": "user-emu-toggled",
|
|
2363
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
2364
|
+
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated",
|
|
2365
|
+
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
2366
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
2367
|
+
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
2368
|
+
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
2369
|
+
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
2370
|
+
"user-mfa-removed": "user-mfa-removed",
|
|
2371
|
+
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
2372
|
+
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
2373
|
+
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
2374
|
+
"user-phone-removed": "user-phone-removed",
|
|
2375
|
+
"user-phone-updated": "user-phone-updated",
|
|
2376
|
+
"user-primary-email-updated": "user-primary-email-updated",
|
|
2377
|
+
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated",
|
|
2378
|
+
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
2379
|
+
"user-token-created": "user-token-created",
|
|
2380
|
+
"user-token-deleted": "user-token-deleted",
|
|
2381
|
+
"user-tokens-deleted": "user-tokens-deleted",
|
|
2382
|
+
"user-unblocked": "user-unblocked",
|
|
2383
|
+
username: "username",
|
|
2384
|
+
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
2385
|
+
"v0-chat-created": "v0-chat-created",
|
|
2386
|
+
"v0-chat-message-sent": "v0-chat-message-sent",
|
|
2387
|
+
"vcr-image-deleted": "vcr-image-deleted",
|
|
2388
|
+
"vcr-image-pushed": "vcr-image-pushed",
|
|
2389
|
+
"vcr-repository-created": "vcr-repository-created",
|
|
2390
|
+
"vcr-repository-deleted": "vcr-repository-deleted",
|
|
2391
|
+
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
2392
|
+
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
2393
|
+
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
2394
|
+
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
2395
|
+
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
2396
|
+
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
2397
|
+
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
2398
|
+
"vercel-agent-team-trial-credits-applied": "vercel-agent-team-trial-credits-applied",
|
|
2399
|
+
"vercel-app-installation-request-dismissed": "vercel-app-installation-request-dismissed",
|
|
2400
|
+
"vercel-app-installation-requested": "vercel-app-installation-requested",
|
|
2401
|
+
"vercel-app-installation-updated": "vercel-app-installation-updated",
|
|
2402
|
+
"vercel-app-installed": "vercel-app-installed",
|
|
2403
|
+
"vercel-app-tokens-revoked": "vercel-app-tokens-revoked",
|
|
2404
|
+
"vercel-app-uninstalled": "vercel-app-uninstalled",
|
|
2405
|
+
"vercel-toolbar": "vercel-toolbar",
|
|
2406
|
+
"vpc-peering-connection-accepted": "vpc-peering-connection-accepted",
|
|
2407
|
+
"vpc-peering-connection-deleted": "vpc-peering-connection-deleted",
|
|
2408
|
+
"vpc-peering-connection-rejected": "vpc-peering-connection-rejected",
|
|
2409
|
+
"vpc-peering-connection-updated": "vpc-peering-connection-updated",
|
|
2410
|
+
"vulnerability-banner-dismissed": "vulnerability-banner-dismissed",
|
|
2411
|
+
"web-analytics-tier-updated": "web-analytics-tier-updated",
|
|
2412
|
+
"webhook-created": "webhook-created",
|
|
2413
|
+
"webhook-deleted": "webhook-deleted",
|
|
2414
|
+
"webhook-updated": "webhook-updated",
|
|
2415
|
+
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2411
2416
|
};
|
|
2412
|
-
const
|
|
2417
|
+
const listEventTypeCategoriesEnum = {
|
|
2413
2418
|
account: "account",
|
|
2414
|
-
|
|
2419
|
+
ai: "ai",
|
|
2420
|
+
"ai-gateway": "ai-gateway",
|
|
2421
|
+
billing: "billing",
|
|
2422
|
+
connect: "connect",
|
|
2423
|
+
deployment: "deployment",
|
|
2424
|
+
domain: "domain",
|
|
2425
|
+
edge: "edge",
|
|
2426
|
+
"env-variable": "env-variable",
|
|
2427
|
+
"feature-flags": "feature-flags",
|
|
2428
|
+
firewall: "firewall",
|
|
2429
|
+
integration: "integration",
|
|
2430
|
+
microfrontends: "microfrontends",
|
|
2431
|
+
network: "network",
|
|
2432
|
+
observability: "observability",
|
|
2433
|
+
other: "other",
|
|
2434
|
+
project: "project",
|
|
2435
|
+
security: "security",
|
|
2436
|
+
storage: "storage",
|
|
2437
|
+
team: "team",
|
|
2438
|
+
v0: "v0",
|
|
2439
|
+
"vercel-app": "vercel-app",
|
|
2440
|
+
workflow: "workflow"
|
|
2415
2441
|
};
|
|
2416
2442
|
const listEventTypeNameEnum = {
|
|
2417
2443
|
"access-group-created": "access-group-created",
|
|
@@ -2804,6 +2830,7 @@ const listEventTypeNameEnum = {
|
|
|
2804
2830
|
"project-cron-jobs-toggled": "project-cron-jobs-toggled",
|
|
2805
2831
|
"project-custom-environment-created": "project-custom-environment-created",
|
|
2806
2832
|
"project-custom-environment-deleted": "project-custom-environment-deleted",
|
|
2833
|
+
"project-custom-environment-schedules-default-updated": "project-custom-environment-schedules-default-updated",
|
|
2807
2834
|
"project-custom-environment-updated": "project-custom-environment-updated",
|
|
2808
2835
|
"project-customer-success-code-visibility-updated": "project-customer-success-code-visibility-updated",
|
|
2809
2836
|
"project-delete": "project-delete",
|
|
@@ -3094,31 +3121,6 @@ const listEventTypeNameEnum = {
|
|
|
3094
3121
|
"webhook-updated": "webhook-updated",
|
|
3095
3122
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
3096
3123
|
};
|
|
3097
|
-
const listEventTypeCategoriesEnum = {
|
|
3098
|
-
account: "account",
|
|
3099
|
-
ai: "ai",
|
|
3100
|
-
"ai-gateway": "ai-gateway",
|
|
3101
|
-
billing: "billing",
|
|
3102
|
-
connect: "connect",
|
|
3103
|
-
deployment: "deployment",
|
|
3104
|
-
domain: "domain",
|
|
3105
|
-
edge: "edge",
|
|
3106
|
-
"env-variable": "env-variable",
|
|
3107
|
-
"feature-flags": "feature-flags",
|
|
3108
|
-
firewall: "firewall",
|
|
3109
|
-
integration: "integration",
|
|
3110
|
-
microfrontends: "microfrontends",
|
|
3111
|
-
network: "network",
|
|
3112
|
-
observability: "observability",
|
|
3113
|
-
other: "other",
|
|
3114
|
-
project: "project",
|
|
3115
|
-
security: "security",
|
|
3116
|
-
storage: "storage",
|
|
3117
|
-
team: "team",
|
|
3118
|
-
v0: "v0",
|
|
3119
|
-
"vercel-app": "vercel-app",
|
|
3120
|
-
workflow: "workflow"
|
|
3121
|
-
};
|
|
3122
3124
|
const listEventTypeReplacedByEnum = {
|
|
3123
3125
|
"access-group-created": "access-group-created",
|
|
3124
3126
|
"access-group-deleted": "access-group-deleted",
|
|
@@ -3510,6 +3512,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3510
3512
|
"project-cron-jobs-toggled": "project-cron-jobs-toggled",
|
|
3511
3513
|
"project-custom-environment-created": "project-custom-environment-created",
|
|
3512
3514
|
"project-custom-environment-deleted": "project-custom-environment-deleted",
|
|
3515
|
+
"project-custom-environment-schedules-default-updated": "project-custom-environment-schedules-default-updated",
|
|
3513
3516
|
"project-custom-environment-updated": "project-custom-environment-updated",
|
|
3514
3517
|
"project-customer-success-code-visibility-updated": "project-customer-success-code-visibility-updated",
|
|
3515
3518
|
"project-delete": "project-delete",
|
|
@@ -3825,14 +3828,6 @@ const listEventTypesResponseCategoriesNameEnum = {
|
|
|
3825
3828
|
"vercel-app": "vercel-app",
|
|
3826
3829
|
workflow: "workflow"
|
|
3827
3830
|
};
|
|
3828
|
-
const flagVariantsValue = {
|
|
3829
|
-
false: false,
|
|
3830
|
-
true: true
|
|
3831
|
-
};
|
|
3832
|
-
const typeEnum = {
|
|
3833
|
-
list: "list",
|
|
3834
|
-
"list/inline": "list/inline"
|
|
3835
|
-
};
|
|
3836
3831
|
const cmpEnum = {
|
|
3837
3832
|
after: "after",
|
|
3838
3833
|
before: "before",
|
|
@@ -3851,6 +3846,10 @@ const cmpEnum = {
|
|
|
3851
3846
|
regex: "regex",
|
|
3852
3847
|
startsWith: "startsWith"
|
|
3853
3848
|
};
|
|
3849
|
+
const typeEnum = {
|
|
3850
|
+
list: "list",
|
|
3851
|
+
"list/inline": "list/inline"
|
|
3852
|
+
};
|
|
3854
3853
|
const flagKindEnum = {
|
|
3855
3854
|
boolean: "boolean",
|
|
3856
3855
|
json: "json",
|
|
@@ -3861,21 +3860,17 @@ const flagStateEnum = {
|
|
|
3861
3860
|
active: "active",
|
|
3862
3861
|
archived: "archived"
|
|
3863
3862
|
};
|
|
3864
|
-
const
|
|
3865
|
-
|
|
3866
|
-
|
|
3863
|
+
const flagVariantsValue = {
|
|
3864
|
+
false: false,
|
|
3865
|
+
true: true
|
|
3867
3866
|
};
|
|
3868
3867
|
const marketplaceFlagCategoryEnum = {
|
|
3869
3868
|
experiment: "experiment",
|
|
3870
3869
|
flag: "flag"
|
|
3871
3870
|
};
|
|
3872
|
-
const
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
};
|
|
3876
|
-
const segmentDataRulesConditionsRhs = {
|
|
3877
|
-
false: false,
|
|
3878
|
-
true: true
|
|
3871
|
+
const marketplaceFlagStateEnum = {
|
|
3872
|
+
active: "active",
|
|
3873
|
+
archived: "archived"
|
|
3879
3874
|
};
|
|
3880
3875
|
const segmentDataRulesConditionsCmpEnum = {
|
|
3881
3876
|
after: "after",
|
|
@@ -3895,6 +3890,14 @@ const segmentDataRulesConditionsCmpEnum = {
|
|
|
3895
3890
|
regex: "regex",
|
|
3896
3891
|
startsWith: "startsWith"
|
|
3897
3892
|
};
|
|
3893
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3894
|
+
list: "list",
|
|
3895
|
+
"list/inline": "list/inline"
|
|
3896
|
+
};
|
|
3897
|
+
const segmentDataRulesConditionsRhs = {
|
|
3898
|
+
false: false,
|
|
3899
|
+
true: true
|
|
3900
|
+
};
|
|
3898
3901
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
3899
3902
|
client: "client",
|
|
3900
3903
|
mobile: "mobile",
|
|
@@ -3907,11 +3910,6 @@ const aCLAction = {
|
|
|
3907
3910
|
read: "read",
|
|
3908
3911
|
update: "update"
|
|
3909
3912
|
};
|
|
3910
|
-
const namedSandboxStatusEnum = {
|
|
3911
|
-
running: "running",
|
|
3912
|
-
stopped: "stopped",
|
|
3913
|
-
stopping: "stopping"
|
|
3914
|
-
};
|
|
3915
3913
|
const namedSandboxFailoverRegionsEnum = {
|
|
3916
3914
|
arn1: "arn1",
|
|
3917
3915
|
bom1: "bom1",
|
|
@@ -3933,6 +3931,11 @@ const namedSandboxFailoverRegionsEnum = {
|
|
|
3933
3931
|
syd1: "syd1",
|
|
3934
3932
|
yul1: "yul1"
|
|
3935
3933
|
};
|
|
3934
|
+
const modeEnum = {
|
|
3935
|
+
"read-only": "read-only",
|
|
3936
|
+
"read-write": "read-write",
|
|
3937
|
+
snapshot: "snapshot"
|
|
3938
|
+
};
|
|
3936
3939
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
3937
3940
|
"allow-all": "allow-all",
|
|
3938
3941
|
custom: "custom",
|
|
@@ -3940,10 +3943,10 @@ const namedSandboxNetworkPolicyModeEnum = {
|
|
|
3940
3943
|
"default-deny": "default-deny",
|
|
3941
3944
|
"deny-all": "deny-all"
|
|
3942
3945
|
};
|
|
3943
|
-
const
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3946
|
+
const namedSandboxStatusEnum = {
|
|
3947
|
+
running: "running",
|
|
3948
|
+
stopped: "stopped",
|
|
3949
|
+
stopping: "stopping"
|
|
3947
3950
|
};
|
|
3948
3951
|
const sandboxNetworkPolicyModeEnum = {
|
|
3949
3952
|
"allow-all": "allow-all",
|
|
@@ -3959,15 +3962,15 @@ const sessionStatusEnum = {
|
|
|
3959
3962
|
stopped: "stopped",
|
|
3960
3963
|
stopping: "stopping"
|
|
3961
3964
|
};
|
|
3965
|
+
const snapshotCreationMethodEnum = {
|
|
3966
|
+
automatic: "automatic",
|
|
3967
|
+
manual: "manual"
|
|
3968
|
+
};
|
|
3962
3969
|
const snapshotStatusEnum = {
|
|
3963
3970
|
created: "created",
|
|
3964
3971
|
deleted: "deleted",
|
|
3965
3972
|
failed: "failed"
|
|
3966
3973
|
};
|
|
3967
|
-
const snapshotCreationMethodEnum = {
|
|
3968
|
-
automatic: "automatic",
|
|
3969
|
-
manual: "manual"
|
|
3970
|
-
};
|
|
3971
3974
|
const invitedTeamMemberRoleEnum = {
|
|
3972
3975
|
BILLING: "BILLING",
|
|
3973
3976
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -3978,16 +3981,6 @@ const invitedTeamMemberRoleEnum = {
|
|
|
3978
3981
|
VIEWER: "VIEWER",
|
|
3979
3982
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
3980
3983
|
};
|
|
3981
|
-
const invitedTeamMemberTeamRolesEnum = {
|
|
3982
|
-
BILLING: "BILLING",
|
|
3983
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
3984
|
-
DEVELOPER: "DEVELOPER",
|
|
3985
|
-
MEMBER: "MEMBER",
|
|
3986
|
-
OWNER: "OWNER",
|
|
3987
|
-
SECURITY: "SECURITY",
|
|
3988
|
-
VIEWER: "VIEWER",
|
|
3989
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
3990
|
-
};
|
|
3991
3984
|
const invitedTeamMemberTeamPermissionsEnum = {
|
|
3992
3985
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
3993
3986
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4009,25 +4002,7 @@ const invitedTeamMemberTeamPermissionsEnum = {
|
|
|
4009
4002
|
V0Viewer: "V0Viewer",
|
|
4010
4003
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4011
4004
|
};
|
|
4012
|
-
const
|
|
4013
|
-
ACTIVE: "ACTIVE",
|
|
4014
|
-
SETUP: "SETUP"
|
|
4015
|
-
};
|
|
4016
|
-
const teamSamlDirectorySyncStateEnum = {
|
|
4017
|
-
ACTIVE: "ACTIVE",
|
|
4018
|
-
SETUP: "SETUP"
|
|
4019
|
-
};
|
|
4020
|
-
const teamSamlDefaultRedirectUriEnum = {
|
|
4021
|
-
"v0.app": "v0.app",
|
|
4022
|
-
"v0.dev": "v0.dev",
|
|
4023
|
-
"vercel.com": "vercel.com"
|
|
4024
|
-
};
|
|
4025
|
-
const teamBillingPlanEnum = {
|
|
4026
|
-
enterprise: "enterprise",
|
|
4027
|
-
hobby: "hobby",
|
|
4028
|
-
pro: "pro"
|
|
4029
|
-
};
|
|
4030
|
-
const teamDefaultRolesTeamRolesEnum = {
|
|
4005
|
+
const invitedTeamMemberTeamRolesEnum = {
|
|
4031
4006
|
BILLING: "BILLING",
|
|
4032
4007
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4033
4008
|
DEVELOPER: "DEVELOPER",
|
|
@@ -4037,6 +4012,17 @@ const teamDefaultRolesTeamRolesEnum = {
|
|
|
4037
4012
|
VIEWER: "VIEWER",
|
|
4038
4013
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4039
4014
|
};
|
|
4015
|
+
const teamBillingPlanEnum = {
|
|
4016
|
+
enterprise: "enterprise",
|
|
4017
|
+
hobby: "hobby",
|
|
4018
|
+
pro: "pro"
|
|
4019
|
+
};
|
|
4020
|
+
const teamDefaultPassportDeploymentTypeEnum = {
|
|
4021
|
+
all: "all",
|
|
4022
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
4023
|
+
preview: "preview",
|
|
4024
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
4025
|
+
};
|
|
4040
4026
|
const teamDefaultRolesTeamPermissionsEnum = {
|
|
4041
4027
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4042
4028
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4058,43 +4044,39 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
4058
4044
|
V0Viewer: "V0Viewer",
|
|
4059
4045
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4060
4046
|
};
|
|
4061
|
-
const
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
true: true
|
|
4047
|
+
const teamDefaultRolesTeamRolesEnum = {
|
|
4048
|
+
BILLING: "BILLING",
|
|
4049
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4050
|
+
DEVELOPER: "DEVELOPER",
|
|
4051
|
+
MEMBER: "MEMBER",
|
|
4052
|
+
OWNER: "OWNER",
|
|
4053
|
+
SECURITY: "SECURITY",
|
|
4054
|
+
VIEWER: "VIEWER",
|
|
4055
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4071
4056
|
};
|
|
4072
|
-
const
|
|
4073
|
-
all: "all",
|
|
4074
|
-
all_except_custom_domains: "all_except_custom_domains",
|
|
4057
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
4075
4058
|
preview: "preview",
|
|
4076
|
-
|
|
4059
|
+
production: "production"
|
|
4077
4060
|
};
|
|
4078
|
-
const
|
|
4079
|
-
|
|
4080
|
-
"
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4061
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
4062
|
+
cli: "cli",
|
|
4063
|
+
"deploy-hook": "deploy-hook",
|
|
4064
|
+
git: "git",
|
|
4065
|
+
integration: "integration",
|
|
4066
|
+
"rest-api": "rest-api",
|
|
4067
|
+
v0: "v0"
|
|
4085
4068
|
};
|
|
4086
|
-
const
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
off: "off",
|
|
4090
|
-
"off-force": "off-force",
|
|
4091
|
-
on: "on",
|
|
4092
|
-
"on-force": "on-force"
|
|
4069
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
4070
|
+
preview: "preview",
|
|
4071
|
+
production: "production"
|
|
4093
4072
|
};
|
|
4094
|
-
const
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4073
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
4074
|
+
bitbucket: "bitbucket",
|
|
4075
|
+
github: "github"
|
|
4076
|
+
};
|
|
4077
|
+
const teamDisableHardAutoBlocks = {
|
|
4078
|
+
false: false,
|
|
4079
|
+
true: true
|
|
4098
4080
|
};
|
|
4099
4081
|
const teamDisjunctiveProductionSecretPolicyEnum = {
|
|
4100
4082
|
default: "default",
|
|
@@ -4103,33 +4085,45 @@ const teamDisjunctiveProductionSecretPolicyEnum = {
|
|
|
4103
4085
|
};
|
|
4104
4086
|
const teamDpAccessRequestsModeEnum = {
|
|
4105
4087
|
all: "all",
|
|
4106
|
-
"email-domain": "email-domain",
|
|
4107
|
-
none: "none"
|
|
4108
|
-
};
|
|
4109
|
-
const teamNsnbConfigPreferenceEnum = {
|
|
4110
|
-
"auto-approval": "auto-approval",
|
|
4111
|
-
block: "block",
|
|
4112
|
-
"manual-approval": "manual-approval"
|
|
4113
|
-
};
|
|
4114
|
-
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
4115
|
-
bitbucket: "bitbucket",
|
|
4116
|
-
github: "github"
|
|
4088
|
+
"email-domain": "email-domain",
|
|
4089
|
+
none: "none"
|
|
4117
4090
|
};
|
|
4118
|
-
const
|
|
4119
|
-
|
|
4120
|
-
|
|
4091
|
+
const teamEnablePreviewFeedbackEnum = {
|
|
4092
|
+
default: "default",
|
|
4093
|
+
"default-force": "default-force",
|
|
4094
|
+
off: "off",
|
|
4095
|
+
"off-force": "off-force",
|
|
4096
|
+
on: "on",
|
|
4097
|
+
"on-force": "on-force"
|
|
4121
4098
|
};
|
|
4122
|
-
const
|
|
4123
|
-
|
|
4124
|
-
"
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4099
|
+
const teamEnableProductionFeedbackEnum = {
|
|
4100
|
+
default: "default",
|
|
4101
|
+
"default-force": "default-force",
|
|
4102
|
+
off: "off",
|
|
4103
|
+
"off-force": "off-force",
|
|
4104
|
+
on: "on",
|
|
4105
|
+
"on-force": "on-force"
|
|
4129
4106
|
};
|
|
4130
|
-
const
|
|
4131
|
-
|
|
4132
|
-
|
|
4107
|
+
const teamMembershipJoinedFromOriginEnum = {
|
|
4108
|
+
"account-update": "account-update",
|
|
4109
|
+
bitbucket: "bitbucket",
|
|
4110
|
+
dsync: "dsync",
|
|
4111
|
+
feedback: "feedback",
|
|
4112
|
+
github: "github",
|
|
4113
|
+
gitlab: "gitlab",
|
|
4114
|
+
import: "import",
|
|
4115
|
+
link: "link",
|
|
4116
|
+
mail: "mail",
|
|
4117
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
4118
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
4119
|
+
"nsnb-invite": "nsnb-invite",
|
|
4120
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
4121
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
4122
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
4123
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
4124
|
+
"organization-teams": "organization-teams",
|
|
4125
|
+
saml: "saml",
|
|
4126
|
+
teams: "teams"
|
|
4133
4127
|
};
|
|
4134
4128
|
const teamMembershipRoleEnum = {
|
|
4135
4129
|
BILLING: "BILLING",
|
|
@@ -4141,16 +4135,6 @@ const teamMembershipRoleEnum = {
|
|
|
4141
4135
|
VIEWER: "VIEWER",
|
|
4142
4136
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4143
4137
|
};
|
|
4144
|
-
const teamMembershipTeamRolesEnum = {
|
|
4145
|
-
BILLING: "BILLING",
|
|
4146
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4147
|
-
DEVELOPER: "DEVELOPER",
|
|
4148
|
-
MEMBER: "MEMBER",
|
|
4149
|
-
OWNER: "OWNER",
|
|
4150
|
-
SECURITY: "SECURITY",
|
|
4151
|
-
VIEWER: "VIEWER",
|
|
4152
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4153
|
-
};
|
|
4154
4138
|
const teamMembershipTeamPermissionsEnum = {
|
|
4155
4139
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4156
4140
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4172,7 +4156,52 @@ const teamMembershipTeamPermissionsEnum = {
|
|
|
4172
4156
|
V0Viewer: "V0Viewer",
|
|
4173
4157
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4174
4158
|
};
|
|
4175
|
-
const
|
|
4159
|
+
const teamMembershipTeamRolesEnum = {
|
|
4160
|
+
BILLING: "BILLING",
|
|
4161
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4162
|
+
DEVELOPER: "DEVELOPER",
|
|
4163
|
+
MEMBER: "MEMBER",
|
|
4164
|
+
OWNER: "OWNER",
|
|
4165
|
+
SECURITY: "SECURITY",
|
|
4166
|
+
VIEWER: "VIEWER",
|
|
4167
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4168
|
+
};
|
|
4169
|
+
const teamNsnbConfigPreferenceEnum = {
|
|
4170
|
+
"auto-approval": "auto-approval",
|
|
4171
|
+
block: "block",
|
|
4172
|
+
"manual-approval": "manual-approval"
|
|
4173
|
+
};
|
|
4174
|
+
const teamResourceConfigBuildMachineDefaultEnum = {
|
|
4175
|
+
basic: "basic",
|
|
4176
|
+
elastic: "elastic",
|
|
4177
|
+
enhanced: "enhanced",
|
|
4178
|
+
standard: "standard",
|
|
4179
|
+
turbo: "turbo"
|
|
4180
|
+
};
|
|
4181
|
+
const teamSamlConnectionSyncStateEnum = {
|
|
4182
|
+
ACTIVE: "ACTIVE",
|
|
4183
|
+
SETUP: "SETUP"
|
|
4184
|
+
};
|
|
4185
|
+
const teamSamlDefaultRedirectUriEnum = {
|
|
4186
|
+
"v0.app": "v0.app",
|
|
4187
|
+
"v0.dev": "v0.dev",
|
|
4188
|
+
"vercel.com": "vercel.com"
|
|
4189
|
+
};
|
|
4190
|
+
const teamSamlDirectorySyncStateEnum = {
|
|
4191
|
+
ACTIVE: "ACTIVE",
|
|
4192
|
+
SETUP: "SETUP"
|
|
4193
|
+
};
|
|
4194
|
+
const teamSensitiveEnvironmentVariablePolicyEnum = {
|
|
4195
|
+
default: "default",
|
|
4196
|
+
off: "off",
|
|
4197
|
+
on: "on"
|
|
4198
|
+
};
|
|
4199
|
+
const teamLimitedLimitedByEnum = {
|
|
4200
|
+
invalidated: "invalidated",
|
|
4201
|
+
mfa: "mfa",
|
|
4202
|
+
scope: "scope"
|
|
4203
|
+
};
|
|
4204
|
+
const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
4176
4205
|
"account-update": "account-update",
|
|
4177
4206
|
bitbucket: "bitbucket",
|
|
4178
4207
|
dsync: "dsync",
|
|
@@ -4193,19 +4222,6 @@ const teamMembershipJoinedFromOriginEnum = {
|
|
|
4193
4222
|
saml: "saml",
|
|
4194
4223
|
teams: "teams"
|
|
4195
4224
|
};
|
|
4196
|
-
const teamLimitedLimitedByEnum = {
|
|
4197
|
-
invalidated: "invalidated",
|
|
4198
|
-
mfa: "mfa",
|
|
4199
|
-
scope: "scope"
|
|
4200
|
-
};
|
|
4201
|
-
const teamLimitedSamlConnectionSyncStateEnum = {
|
|
4202
|
-
ACTIVE: "ACTIVE",
|
|
4203
|
-
SETUP: "SETUP"
|
|
4204
|
-
};
|
|
4205
|
-
const teamLimitedSamlDirectorySyncStateEnum = {
|
|
4206
|
-
ACTIVE: "ACTIVE",
|
|
4207
|
-
SETUP: "SETUP"
|
|
4208
|
-
};
|
|
4209
4225
|
const teamLimitedMembershipRoleEnum = {
|
|
4210
4226
|
BILLING: "BILLING",
|
|
4211
4227
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -4216,16 +4232,6 @@ const teamLimitedMembershipRoleEnum = {
|
|
|
4216
4232
|
VIEWER: "VIEWER",
|
|
4217
4233
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4218
4234
|
};
|
|
4219
|
-
const teamLimitedMembershipTeamRolesEnum = {
|
|
4220
|
-
BILLING: "BILLING",
|
|
4221
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4222
|
-
DEVELOPER: "DEVELOPER",
|
|
4223
|
-
MEMBER: "MEMBER",
|
|
4224
|
-
OWNER: "OWNER",
|
|
4225
|
-
SECURITY: "SECURITY",
|
|
4226
|
-
VIEWER: "VIEWER",
|
|
4227
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4228
|
-
};
|
|
4229
4235
|
const teamLimitedMembershipTeamPermissionsEnum = {
|
|
4230
4236
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4231
4237
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4247,33 +4253,23 @@ const teamLimitedMembershipTeamPermissionsEnum = {
|
|
|
4247
4253
|
V0Viewer: "V0Viewer",
|
|
4248
4254
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4249
4255
|
};
|
|
4250
|
-
const
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
mail: "mail",
|
|
4260
|
-
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
4261
|
-
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
4262
|
-
"nsnb-invite": "nsnb-invite",
|
|
4263
|
-
"nsnb-redeploy": "nsnb-redeploy",
|
|
4264
|
-
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
4265
|
-
"nsnb-request-access": "nsnb-request-access",
|
|
4266
|
-
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
4267
|
-
"organization-teams": "organization-teams",
|
|
4268
|
-
saml: "saml",
|
|
4269
|
-
teams: "teams"
|
|
4256
|
+
const teamLimitedMembershipTeamRolesEnum = {
|
|
4257
|
+
BILLING: "BILLING",
|
|
4258
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4259
|
+
DEVELOPER: "DEVELOPER",
|
|
4260
|
+
MEMBER: "MEMBER",
|
|
4261
|
+
OWNER: "OWNER",
|
|
4262
|
+
SECURITY: "SECURITY",
|
|
4263
|
+
VIEWER: "VIEWER",
|
|
4264
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4270
4265
|
};
|
|
4271
|
-
const
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4266
|
+
const teamLimitedSamlConnectionSyncStateEnum = {
|
|
4267
|
+
ACTIVE: "ACTIVE",
|
|
4268
|
+
SETUP: "SETUP"
|
|
4269
|
+
};
|
|
4270
|
+
const teamLimitedSamlDirectorySyncStateEnum = {
|
|
4271
|
+
ACTIVE: "ACTIVE",
|
|
4272
|
+
SETUP: "SETUP"
|
|
4277
4273
|
};
|
|
4278
4274
|
const authTokenScopesOriginEnum = {
|
|
4279
4275
|
app: "app",
|
|
@@ -4294,16 +4290,42 @@ const authTokenScopesOriginEnum = {
|
|
|
4294
4290
|
sms: "sms",
|
|
4295
4291
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
4296
4292
|
};
|
|
4297
|
-
const
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4293
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4294
|
+
"email-otp": "email-otp",
|
|
4295
|
+
otp: "otp",
|
|
4296
|
+
"recovery-code": "recovery-code",
|
|
4297
|
+
totp: "totp",
|
|
4298
|
+
webauthn: "webauthn"
|
|
4299
|
+
};
|
|
4300
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4301
|
+
closed: "closed",
|
|
4302
|
+
open: "open"
|
|
4303
|
+
};
|
|
4304
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4305
|
+
closed: "closed",
|
|
4306
|
+
open: "open"
|
|
4307
|
+
};
|
|
4308
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4309
|
+
cards: "cards",
|
|
4310
|
+
list: "list"
|
|
4311
|
+
};
|
|
4312
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4313
|
+
admin_override: "admin_override",
|
|
4314
|
+
hard_blocked: "hard_blocked",
|
|
4315
|
+
limits_exceeded: "limits_exceeded"
|
|
4316
|
+
};
|
|
4317
|
+
const authUserImportFlowGitProviderEnum = {
|
|
4318
|
+
bitbucket: "bitbucket",
|
|
4319
|
+
"cursor-origin": "cursor-origin",
|
|
4320
|
+
github: "github",
|
|
4321
|
+
"github-custom-host": "github-custom-host",
|
|
4322
|
+
"github-limited": "github-limited",
|
|
4323
|
+
gitlab: "gitlab",
|
|
4324
|
+
vercel: "vercel"
|
|
4325
|
+
};
|
|
4326
|
+
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
4327
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4328
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4307
4329
|
};
|
|
4308
4330
|
const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
4309
4331
|
analyticsUsage: "analyticsUsage",
|
|
@@ -4346,35 +4368,16 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
4346
4368
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4347
4369
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4348
4370
|
};
|
|
4349
|
-
const
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
open: "open"
|
|
4360
|
-
};
|
|
4361
|
-
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4362
|
-
closed: "closed",
|
|
4363
|
-
open: "open"
|
|
4364
|
-
};
|
|
4365
|
-
const authUserImportFlowGitProviderEnum = {
|
|
4366
|
-
bitbucket: "bitbucket",
|
|
4367
|
-
"cursor-origin": "cursor-origin",
|
|
4368
|
-
github: "github",
|
|
4369
|
-
"github-custom-host": "github-custom-host",
|
|
4370
|
-
"github-limited": "github-limited",
|
|
4371
|
-
gitlab: "gitlab",
|
|
4372
|
-
vercel: "vercel"
|
|
4373
|
-
};
|
|
4374
|
-
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4375
|
-
admin_override: "admin_override",
|
|
4376
|
-
hard_blocked: "hard_blocked",
|
|
4377
|
-
limits_exceeded: "limits_exceeded"
|
|
4371
|
+
const authUserSoftBlockReasonEnum = {
|
|
4372
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
4373
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
4374
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
4375
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
4376
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
4377
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
4378
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
4379
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
4380
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
4378
4381
|
};
|
|
4379
4382
|
const vcrImageListItemKindEnum = {
|
|
4380
4383
|
attestation: "attestation",
|