vercel-api-js 1.17.0 → 1.17.1
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 +47205 -47205
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{schemas-fvbjfupl.js → schemas-n16erwje.js} +6146 -6146
- package/dist/{schemas-k0m5cdq9.cjs → schemas-n8tvo4vu.cjs} +6146 -6146
- package/dist/schemas.cjs +1 -1
- package/dist/schemas.d.mts +5950 -5950
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1521 -1521
- package/dist/types.d.mts +6160 -6160
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1521 -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,824 @@ 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-updated": "project-custom-environment-updated",
|
|
2127
|
+
"project-customer-success-code-visibility-updated": "project-customer-success-code-visibility-updated",
|
|
2128
|
+
"project-delete": "project-delete",
|
|
2129
|
+
"project-deployment-policy-updated": "project-deployment-policy-updated",
|
|
2130
|
+
"project-deployment-retention-updated": "project-deployment-retention-updated",
|
|
2131
|
+
"project-directory-listing": "project-directory-listing",
|
|
2132
|
+
"project-domain-deleted": "project-domain-deleted",
|
|
2133
|
+
"project-domain-moved": "project-domain-moved",
|
|
2134
|
+
"project-domain-unverified": "project-domain-unverified",
|
|
2135
|
+
"project-domain-updated": "project-domain-updated",
|
|
2136
|
+
"project-domain-verified": "project-domain-verified",
|
|
2137
|
+
"project-elastic-concurrency-updated": "project-elastic-concurrency-updated",
|
|
2138
|
+
"project-expiration-locked": "project-expiration-locked",
|
|
2139
|
+
"project-expiration-reached": "project-expiration-reached",
|
|
2140
|
+
"project-expiration-scheduled": "project-expiration-scheduled",
|
|
2141
|
+
"project-expiration-unlocked": "project-expiration-unlocked",
|
|
2142
|
+
"project-external-rewrite-caching-updated": "project-external-rewrite-caching-updated",
|
|
2143
|
+
"project-framework-updated": "project-framework-updated",
|
|
2144
|
+
"project-function-cpu-memory": "project-function-cpu-memory",
|
|
2145
|
+
"project-function-failover": "project-function-failover",
|
|
2146
|
+
"project-function-max-duration": "project-function-max-duration",
|
|
2147
|
+
"project-function-regions": "project-function-regions",
|
|
2148
|
+
"project-functions-beta-updated": "project-functions-beta-updated",
|
|
2149
|
+
"project-functions-fluid-disabled": "project-functions-fluid-disabled",
|
|
2150
|
+
"project-functions-fluid-enabled": "project-functions-fluid-enabled",
|
|
2151
|
+
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
2152
|
+
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
2153
|
+
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
2154
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
2155
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
2156
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
2157
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
2158
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
2159
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
2160
|
+
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
2161
|
+
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
2162
|
+
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
2163
|
+
"project-git-repository-connected": "project-git-repository-connected",
|
|
2164
|
+
"project-git-repository-disconnected": "project-git-repository-disconnected",
|
|
2165
|
+
"project-git-repository-dispatch-events-toggled": "project-git-repository-dispatch-events-toggled",
|
|
2166
|
+
"project-git-require-verified-commits-toggled": "project-git-require-verified-commits-toggled",
|
|
2167
|
+
"project-ignored-build-step-updated": "project-ignored-build-step-updated",
|
|
2168
|
+
"project-install-command-updated": "project-install-command-updated",
|
|
2169
|
+
"project-member-added": "project-member-added",
|
|
2170
|
+
"project-member-invited": "project-member-invited",
|
|
2171
|
+
"project-member-removed": "project-member-removed",
|
|
2172
|
+
"project-member-removed-batch": "project-member-removed-batch",
|
|
2173
|
+
"project-member-updated": "project-member-updated",
|
|
2174
|
+
"project-move-in-success": "project-move-in-success",
|
|
2175
|
+
"project-move-out-failed": "project-move-out-failed",
|
|
2176
|
+
"project-move-out-started": "project-move-out-started",
|
|
2177
|
+
"project-move-out-success": "project-move-out-success",
|
|
2178
|
+
"project-name": "project-name",
|
|
2179
|
+
"project-node-version-updated": "project-node-version-updated",
|
|
2180
|
+
"project-oidc-issuer-mode-updated": "project-oidc-issuer-mode-updated",
|
|
2181
|
+
"project-oidc-token-created": "project-oidc-token-created",
|
|
2182
|
+
"project-options-allowlist": "project-options-allowlist",
|
|
2183
|
+
"project-output-directory-updated": "project-output-directory-updated",
|
|
2184
|
+
"project-passport-updated": "project-passport-updated",
|
|
2185
|
+
"project-password-protection": "project-password-protection",
|
|
2186
|
+
"project-paused": "project-paused",
|
|
2187
|
+
"project-preview-deployment-suffix": "project-preview-deployment-suffix",
|
|
2188
|
+
"project-preview-environment-branch-tracking-updated": "project-preview-environment-branch-tracking-updated",
|
|
2189
|
+
"project-prioritize-production-builds-updated": "project-prioritize-production-builds-updated",
|
|
2190
|
+
"project-program-enrollment-changed": "project-program-enrollment-changed",
|
|
2191
|
+
"project-protected-sourcemaps-updated": "project-protected-sourcemaps-updated",
|
|
2192
|
+
"project-rollback-description-updated": "project-rollback-description-updated",
|
|
2193
|
+
"project-rolling-release-aborted": "project-rolling-release-aborted",
|
|
2194
|
+
"project-rolling-release-approved": "project-rolling-release-approved",
|
|
2195
|
+
"project-rolling-release-completed": "project-rolling-release-completed",
|
|
2196
|
+
"project-rolling-release-configured": "project-rolling-release-configured",
|
|
2197
|
+
"project-rolling-release-continued": "project-rolling-release-continued",
|
|
2198
|
+
"project-rolling-release-disabled": "project-rolling-release-disabled",
|
|
2199
|
+
"project-rolling-release-enabled": "project-rolling-release-enabled",
|
|
2200
|
+
"project-rolling-release-paused": "project-rolling-release-paused",
|
|
2201
|
+
"project-rolling-release-started": "project-rolling-release-started",
|
|
2202
|
+
"project-rolling-release-suggested-actions-generated": "project-rolling-release-suggested-actions-generated",
|
|
2203
|
+
"project-rolling-release-timer": "project-rolling-release-timer",
|
|
2204
|
+
"project-root-directory-updated": "project-root-directory-updated",
|
|
2205
|
+
"project-routes-version-promoted": "project-routes-version-promoted",
|
|
2206
|
+
"project-routes-version-restored": "project-routes-version-restored",
|
|
2207
|
+
"project-sandbox-config-updated": "project-sandbox-config-updated",
|
|
2208
|
+
"project-sandbox-url-protection-updated": "project-sandbox-url-protection-updated",
|
|
2209
|
+
"project-skew-protection-allowed-domains-updated": "project-skew-protection-allowed-domains-updated",
|
|
2210
|
+
"project-skew-protection-max-age-updated": "project-skew-protection-max-age-updated",
|
|
2211
|
+
"project-skew-protection-threshold-updated": "project-skew-protection-threshold-updated",
|
|
2212
|
+
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2213
|
+
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2214
|
+
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2215
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2216
|
+
"project-sso-protection": "project-sso-protection",
|
|
2217
|
+
"project-static-ips-updated": "project-static-ips-updated",
|
|
2218
|
+
"project-trusted-ips": "project-trusted-ips",
|
|
2219
|
+
"project-trusted-sources": "project-trusted-sources",
|
|
2220
|
+
"project-unpaused": "project-unpaused",
|
|
2221
|
+
"project-web-analytics-disabled": "project-web-analytics-disabled",
|
|
2222
|
+
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
2223
|
+
"protected-git-scope-added": "protected-git-scope-added",
|
|
2224
|
+
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
2225
|
+
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
2226
|
+
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
2227
|
+
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
2228
|
+
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
2229
|
+
"saml-connection-created": "saml-connection-created",
|
|
2230
|
+
"saml-connection-deleted": "saml-connection-deleted",
|
|
2231
|
+
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
2232
|
+
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
2233
|
+
"sandbox-drive-created": "sandbox-drive-created",
|
|
2234
|
+
"sandbox-drive-deleted": "sandbox-drive-deleted",
|
|
2235
|
+
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
2236
|
+
scale: "scale",
|
|
2237
|
+
"scale-auto": "scale-auto",
|
|
2238
|
+
"secondary-email-added": "secondary-email-added",
|
|
2239
|
+
"secondary-email-removed": "secondary-email-removed",
|
|
2240
|
+
"secondary-email-verified": "secondary-email-verified",
|
|
2241
|
+
"secret-add": "secret-add",
|
|
2242
|
+
"secret-delete": "secret-delete",
|
|
2243
|
+
"secret-rename": "secret-rename",
|
|
2244
|
+
"security-list-created": "security-list-created",
|
|
2245
|
+
"security-list-deleted": "security-list-deleted",
|
|
2246
|
+
"security-list-updated": "security-list-updated",
|
|
2247
|
+
"security-plus-updated": "security-plus-updated",
|
|
2248
|
+
"set-bio": "set-bio",
|
|
2249
|
+
"set-name": "set-name",
|
|
2250
|
+
"set-profiles": "set-profiles",
|
|
2251
|
+
"set-scale": "set-scale",
|
|
2252
|
+
"shared-env-variable-create": "shared-env-variable-create",
|
|
2253
|
+
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
2254
|
+
"shared-env-variable-read": "shared-env-variable-read",
|
|
2255
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
2256
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
2257
|
+
"shared-env-variable-update": "shared-env-variable-update",
|
|
2258
|
+
"show-ip-addresses": "show-ip-addresses",
|
|
2259
|
+
signup: "signup",
|
|
2260
|
+
"signup-via-bitbucket": "signup-via-bitbucket",
|
|
2261
|
+
"signup-via-github": "signup-via-github",
|
|
2262
|
+
"signup-via-gitlab": "signup-via-gitlab",
|
|
2263
|
+
"speed-insights-settings-updated": "speed-insights-settings-updated",
|
|
2264
|
+
"spend-created": "spend-created",
|
|
2265
|
+
"spend-deleted": "spend-deleted",
|
|
2266
|
+
"spend-updated": "spend-updated",
|
|
2267
|
+
"sso-login": "sso-login",
|
|
2268
|
+
"storage-accept-tos": "storage-accept-tos",
|
|
2269
|
+
"storage-access-token-set": "storage-access-token-set",
|
|
2270
|
+
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
2271
|
+
"storage-connect-project": "storage-connect-project",
|
|
2272
|
+
"storage-create": "storage-create",
|
|
2273
|
+
"storage-delete": "storage-delete",
|
|
2274
|
+
"storage-disconnect-project": "storage-disconnect-project",
|
|
2275
|
+
"storage-disconnect-projects": "storage-disconnect-projects",
|
|
2276
|
+
"storage-inactive-store-deleted": "storage-inactive-store-deleted",
|
|
2277
|
+
"storage-reset-credentials": "storage-reset-credentials",
|
|
2278
|
+
"storage-resource-repl-command": "storage-resource-repl-command",
|
|
2279
|
+
"storage-set-locked": "storage-set-locked",
|
|
2280
|
+
"storage-transfer-in-success": "storage-transfer-in-success",
|
|
2281
|
+
"storage-transfer-out-success": "storage-transfer-out-success",
|
|
2282
|
+
"storage-transfer-request-created": "storage-transfer-request-created",
|
|
2283
|
+
"storage-update": "storage-update",
|
|
2284
|
+
"storage-update-project-connection": "storage-update-project-connection",
|
|
2285
|
+
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
2286
|
+
"storage-view-secret": "storage-view-secret",
|
|
2287
|
+
"strict-connectors": "strict-connectors",
|
|
2288
|
+
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
2289
|
+
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
2290
|
+
"strict-shareable-links": "strict-shareable-links",
|
|
2291
|
+
"subscription-created": "subscription-created",
|
|
2292
|
+
"subscription-product-added": "subscription-product-added",
|
|
2293
|
+
"subscription-product-removed": "subscription-product-removed",
|
|
2294
|
+
"subscription-updated": "subscription-updated",
|
|
2295
|
+
"support-session-created": "support-session-created",
|
|
2324
2296
|
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
|
-
|
|
2297
|
+
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
2298
|
+
"team-avatar-update": "team-avatar-update",
|
|
2299
|
+
"team-collaboration-settings-updated": "team-collaboration-settings-updated",
|
|
2300
|
+
"team-default-build-machine-updated": "team-default-build-machine-updated",
|
|
2301
|
+
"team-default-passport-updated": "team-default-passport-updated",
|
|
2302
|
+
"team-delete": "team-delete",
|
|
2303
|
+
"team-deployment-policy-updated": "team-deployment-policy-updated",
|
|
2304
|
+
"team-domain-verification-created": "team-domain-verification-created",
|
|
2305
|
+
"team-domain-verification-deleted": "team-domain-verification-deleted",
|
|
2306
|
+
"team-domain-verification-verified": "team-domain-verification-verified",
|
|
2307
|
+
"team-email-domain-update": "team-email-domain-update",
|
|
2308
|
+
"team-emu-updated": "team-emu-updated",
|
|
2309
|
+
"team-ended-trial": "team-ended-trial",
|
|
2310
|
+
"team-firewall-config-modified": "team-firewall-config-modified",
|
|
2311
|
+
"team-firewall-config-promoted": "team-firewall-config-promoted",
|
|
2312
|
+
"team-git-repository-dispatch-events-toggled": "team-git-repository-dispatch-events-toggled",
|
|
2313
|
+
"team-git-require-verified-commits-toggled": "team-git-require-verified-commits-toggled",
|
|
2314
|
+
"team-invite-bulk-delete": "team-invite-bulk-delete",
|
|
2315
|
+
"team-invite-code-reset": "team-invite-code-reset",
|
|
2316
|
+
"team-invite-link-created": "team-invite-link-created",
|
|
2317
|
+
"team-invite-link-deleted": "team-invite-link-deleted",
|
|
2318
|
+
"team-ip-blocking-rules-created": "team-ip-blocking-rules-created",
|
|
2319
|
+
"team-ip-blocking-rules-removed": "team-ip-blocking-rules-removed",
|
|
2320
|
+
"team-member-add": "team-member-add",
|
|
2321
|
+
"team-member-confirm-request": "team-member-confirm-request",
|
|
2322
|
+
"team-member-decline-request": "team-member-decline-request",
|
|
2323
|
+
"team-member-delete": "team-member-delete",
|
|
2324
|
+
"team-member-entitlement-added": "team-member-entitlement-added",
|
|
2325
|
+
"team-member-entitlement-canceled": "team-member-entitlement-canceled",
|
|
2326
|
+
"team-member-entitlement-reactivated": "team-member-entitlement-reactivated",
|
|
2327
|
+
"team-member-entitlement-removed": "team-member-entitlement-removed",
|
|
2328
|
+
"team-member-join": "team-member-join",
|
|
2329
|
+
"team-member-leave": "team-member-leave",
|
|
2330
|
+
"team-member-request-access": "team-member-request-access",
|
|
2331
|
+
"team-member-role-update": "team-member-role-update",
|
|
2332
|
+
"team-member-sso-authorization-attempt": "team-member-sso-authorization-attempt",
|
|
2333
|
+
"team-mfa-enforcement-updated": "team-mfa-enforcement-updated",
|
|
2334
|
+
"team-name-update": "team-name-update",
|
|
2335
|
+
"team-paid-invoice": "team-paid-invoice",
|
|
2336
|
+
"team-program-enrollment-changed": "team-program-enrollment-changed",
|
|
2337
|
+
"team-remote-caching-purge": "team-remote-caching-purge",
|
|
2338
|
+
"team-remote-caching-update": "team-remote-caching-update",
|
|
2339
|
+
"team-saml-enforced": "team-saml-enforced",
|
|
2340
|
+
"team-saml-roles": "team-saml-roles",
|
|
2341
|
+
"team-slug-update": "team-slug-update",
|
|
2342
|
+
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2343
|
+
"tracing-configured": "tracing-configured",
|
|
2344
|
+
"tracing-disabled": "tracing-disabled",
|
|
2345
|
+
"tracing-paused": "tracing-paused",
|
|
2346
|
+
"tracing-resumed": "tracing-resumed",
|
|
2347
|
+
"unlink-login-connection": "unlink-login-connection",
|
|
2348
|
+
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2349
|
+
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
2350
|
+
"user-auto-block-configured": "user-auto-block-configured",
|
|
2351
|
+
"user-blocked": "user-blocked",
|
|
2352
|
+
"user-delete": "user-delete",
|
|
2353
|
+
"user-delete-requested": "user-delete-requested",
|
|
2354
|
+
"user-emu-account-archived": "user-emu-account-archived",
|
|
2355
|
+
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2356
|
+
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2357
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2358
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2359
|
+
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2360
|
+
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2361
|
+
"user-emu-toggled": "user-emu-toggled",
|
|
2362
|
+
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
2363
|
+
"user-mfa-challenge-initiated": "user-mfa-challenge-initiated",
|
|
2364
|
+
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
2365
|
+
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
2366
|
+
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
2367
|
+
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
2368
|
+
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
2369
|
+
"user-mfa-removed": "user-mfa-removed",
|
|
2370
|
+
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
2371
|
+
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
2372
|
+
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
2373
|
+
"user-phone-removed": "user-phone-removed",
|
|
2374
|
+
"user-phone-updated": "user-phone-updated",
|
|
2375
|
+
"user-primary-email-updated": "user-primary-email-updated",
|
|
2376
|
+
"user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated",
|
|
2377
|
+
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
2378
|
+
"user-token-created": "user-token-created",
|
|
2379
|
+
"user-token-deleted": "user-token-deleted",
|
|
2380
|
+
"user-tokens-deleted": "user-tokens-deleted",
|
|
2381
|
+
"user-unblocked": "user-unblocked",
|
|
2382
|
+
username: "username",
|
|
2383
|
+
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
2384
|
+
"v0-chat-created": "v0-chat-created",
|
|
2385
|
+
"v0-chat-message-sent": "v0-chat-message-sent",
|
|
2386
|
+
"vcr-image-deleted": "vcr-image-deleted",
|
|
2387
|
+
"vcr-image-pushed": "vcr-image-pushed",
|
|
2388
|
+
"vcr-repository-created": "vcr-repository-created",
|
|
2389
|
+
"vcr-repository-deleted": "vcr-repository-deleted",
|
|
2390
|
+
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
2391
|
+
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
2392
|
+
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
2393
|
+
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
2394
|
+
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
2395
|
+
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
2396
|
+
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
2397
|
+
"vercel-agent-team-trial-credits-applied": "vercel-agent-team-trial-credits-applied",
|
|
2398
|
+
"vercel-app-installation-request-dismissed": "vercel-app-installation-request-dismissed",
|
|
2399
|
+
"vercel-app-installation-requested": "vercel-app-installation-requested",
|
|
2400
|
+
"vercel-app-installation-updated": "vercel-app-installation-updated",
|
|
2401
|
+
"vercel-app-installed": "vercel-app-installed",
|
|
2402
|
+
"vercel-app-tokens-revoked": "vercel-app-tokens-revoked",
|
|
2403
|
+
"vercel-app-uninstalled": "vercel-app-uninstalled",
|
|
2404
|
+
"vercel-toolbar": "vercel-toolbar",
|
|
2405
|
+
"vpc-peering-connection-accepted": "vpc-peering-connection-accepted",
|
|
2406
|
+
"vpc-peering-connection-deleted": "vpc-peering-connection-deleted",
|
|
2407
|
+
"vpc-peering-connection-rejected": "vpc-peering-connection-rejected",
|
|
2408
|
+
"vpc-peering-connection-updated": "vpc-peering-connection-updated",
|
|
2409
|
+
"vulnerability-banner-dismissed": "vulnerability-banner-dismissed",
|
|
2410
|
+
"web-analytics-tier-updated": "web-analytics-tier-updated",
|
|
2411
|
+
"webhook-created": "webhook-created",
|
|
2412
|
+
"webhook-deleted": "webhook-deleted",
|
|
2413
|
+
"webhook-updated": "webhook-updated",
|
|
2414
|
+
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2411
2415
|
};
|
|
2412
|
-
const
|
|
2416
|
+
const listEventTypeCategoriesEnum = {
|
|
2413
2417
|
account: "account",
|
|
2414
|
-
|
|
2418
|
+
ai: "ai",
|
|
2419
|
+
"ai-gateway": "ai-gateway",
|
|
2420
|
+
billing: "billing",
|
|
2421
|
+
connect: "connect",
|
|
2422
|
+
deployment: "deployment",
|
|
2423
|
+
domain: "domain",
|
|
2424
|
+
edge: "edge",
|
|
2425
|
+
"env-variable": "env-variable",
|
|
2426
|
+
"feature-flags": "feature-flags",
|
|
2427
|
+
firewall: "firewall",
|
|
2428
|
+
integration: "integration",
|
|
2429
|
+
microfrontends: "microfrontends",
|
|
2430
|
+
network: "network",
|
|
2431
|
+
observability: "observability",
|
|
2432
|
+
other: "other",
|
|
2433
|
+
project: "project",
|
|
2434
|
+
security: "security",
|
|
2435
|
+
storage: "storage",
|
|
2436
|
+
team: "team",
|
|
2437
|
+
v0: "v0",
|
|
2438
|
+
"vercel-app": "vercel-app",
|
|
2439
|
+
workflow: "workflow"
|
|
2415
2440
|
};
|
|
2416
2441
|
const listEventTypeNameEnum = {
|
|
2417
2442
|
"access-group-created": "access-group-created",
|
|
@@ -3094,31 +3119,6 @@ const listEventTypeNameEnum = {
|
|
|
3094
3119
|
"webhook-updated": "webhook-updated",
|
|
3095
3120
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
3096
3121
|
};
|
|
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
3122
|
const listEventTypeReplacedByEnum = {
|
|
3123
3123
|
"access-group-created": "access-group-created",
|
|
3124
3124
|
"access-group-deleted": "access-group-deleted",
|
|
@@ -3825,14 +3825,6 @@ const listEventTypesResponseCategoriesNameEnum = {
|
|
|
3825
3825
|
"vercel-app": "vercel-app",
|
|
3826
3826
|
workflow: "workflow"
|
|
3827
3827
|
};
|
|
3828
|
-
const flagVariantsValue = {
|
|
3829
|
-
false: false,
|
|
3830
|
-
true: true
|
|
3831
|
-
};
|
|
3832
|
-
const typeEnum = {
|
|
3833
|
-
list: "list",
|
|
3834
|
-
"list/inline": "list/inline"
|
|
3835
|
-
};
|
|
3836
3828
|
const cmpEnum = {
|
|
3837
3829
|
after: "after",
|
|
3838
3830
|
before: "before",
|
|
@@ -3851,6 +3843,10 @@ const cmpEnum = {
|
|
|
3851
3843
|
regex: "regex",
|
|
3852
3844
|
startsWith: "startsWith"
|
|
3853
3845
|
};
|
|
3846
|
+
const typeEnum = {
|
|
3847
|
+
list: "list",
|
|
3848
|
+
"list/inline": "list/inline"
|
|
3849
|
+
};
|
|
3854
3850
|
const flagKindEnum = {
|
|
3855
3851
|
boolean: "boolean",
|
|
3856
3852
|
json: "json",
|
|
@@ -3861,21 +3857,17 @@ const flagStateEnum = {
|
|
|
3861
3857
|
active: "active",
|
|
3862
3858
|
archived: "archived"
|
|
3863
3859
|
};
|
|
3864
|
-
const
|
|
3865
|
-
|
|
3866
|
-
|
|
3860
|
+
const flagVariantsValue = {
|
|
3861
|
+
false: false,
|
|
3862
|
+
true: true
|
|
3867
3863
|
};
|
|
3868
3864
|
const marketplaceFlagCategoryEnum = {
|
|
3869
3865
|
experiment: "experiment",
|
|
3870
3866
|
flag: "flag"
|
|
3871
3867
|
};
|
|
3872
|
-
const
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
};
|
|
3876
|
-
const segmentDataRulesConditionsRhs = {
|
|
3877
|
-
false: false,
|
|
3878
|
-
true: true
|
|
3868
|
+
const marketplaceFlagStateEnum = {
|
|
3869
|
+
active: "active",
|
|
3870
|
+
archived: "archived"
|
|
3879
3871
|
};
|
|
3880
3872
|
const segmentDataRulesConditionsCmpEnum = {
|
|
3881
3873
|
after: "after",
|
|
@@ -3895,6 +3887,14 @@ const segmentDataRulesConditionsCmpEnum = {
|
|
|
3895
3887
|
regex: "regex",
|
|
3896
3888
|
startsWith: "startsWith"
|
|
3897
3889
|
};
|
|
3890
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3891
|
+
list: "list",
|
|
3892
|
+
"list/inline": "list/inline"
|
|
3893
|
+
};
|
|
3894
|
+
const segmentDataRulesConditionsRhs = {
|
|
3895
|
+
false: false,
|
|
3896
|
+
true: true
|
|
3897
|
+
};
|
|
3898
3898
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
3899
3899
|
client: "client",
|
|
3900
3900
|
mobile: "mobile",
|
|
@@ -3907,11 +3907,6 @@ const aCLAction = {
|
|
|
3907
3907
|
read: "read",
|
|
3908
3908
|
update: "update"
|
|
3909
3909
|
};
|
|
3910
|
-
const namedSandboxStatusEnum = {
|
|
3911
|
-
running: "running",
|
|
3912
|
-
stopped: "stopped",
|
|
3913
|
-
stopping: "stopping"
|
|
3914
|
-
};
|
|
3915
3910
|
const namedSandboxFailoverRegionsEnum = {
|
|
3916
3911
|
arn1: "arn1",
|
|
3917
3912
|
bom1: "bom1",
|
|
@@ -3933,6 +3928,11 @@ const namedSandboxFailoverRegionsEnum = {
|
|
|
3933
3928
|
syd1: "syd1",
|
|
3934
3929
|
yul1: "yul1"
|
|
3935
3930
|
};
|
|
3931
|
+
const modeEnum = {
|
|
3932
|
+
"read-only": "read-only",
|
|
3933
|
+
"read-write": "read-write",
|
|
3934
|
+
snapshot: "snapshot"
|
|
3935
|
+
};
|
|
3936
3936
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
3937
3937
|
"allow-all": "allow-all",
|
|
3938
3938
|
custom: "custom",
|
|
@@ -3940,10 +3940,10 @@ const namedSandboxNetworkPolicyModeEnum = {
|
|
|
3940
3940
|
"default-deny": "default-deny",
|
|
3941
3941
|
"deny-all": "deny-all"
|
|
3942
3942
|
};
|
|
3943
|
-
const
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
|
|
3943
|
+
const namedSandboxStatusEnum = {
|
|
3944
|
+
running: "running",
|
|
3945
|
+
stopped: "stopped",
|
|
3946
|
+
stopping: "stopping"
|
|
3947
3947
|
};
|
|
3948
3948
|
const sandboxNetworkPolicyModeEnum = {
|
|
3949
3949
|
"allow-all": "allow-all",
|
|
@@ -3959,15 +3959,15 @@ const sessionStatusEnum = {
|
|
|
3959
3959
|
stopped: "stopped",
|
|
3960
3960
|
stopping: "stopping"
|
|
3961
3961
|
};
|
|
3962
|
+
const snapshotCreationMethodEnum = {
|
|
3963
|
+
automatic: "automatic",
|
|
3964
|
+
manual: "manual"
|
|
3965
|
+
};
|
|
3962
3966
|
const snapshotStatusEnum = {
|
|
3963
3967
|
created: "created",
|
|
3964
3968
|
deleted: "deleted",
|
|
3965
3969
|
failed: "failed"
|
|
3966
3970
|
};
|
|
3967
|
-
const snapshotCreationMethodEnum = {
|
|
3968
|
-
automatic: "automatic",
|
|
3969
|
-
manual: "manual"
|
|
3970
|
-
};
|
|
3971
3971
|
const invitedTeamMemberRoleEnum = {
|
|
3972
3972
|
BILLING: "BILLING",
|
|
3973
3973
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -3978,16 +3978,6 @@ const invitedTeamMemberRoleEnum = {
|
|
|
3978
3978
|
VIEWER: "VIEWER",
|
|
3979
3979
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
3980
3980
|
};
|
|
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
3981
|
const invitedTeamMemberTeamPermissionsEnum = {
|
|
3992
3982
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
3993
3983
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4009,25 +3999,7 @@ const invitedTeamMemberTeamPermissionsEnum = {
|
|
|
4009
3999
|
V0Viewer: "V0Viewer",
|
|
4010
4000
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4011
4001
|
};
|
|
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 = {
|
|
4002
|
+
const invitedTeamMemberTeamRolesEnum = {
|
|
4031
4003
|
BILLING: "BILLING",
|
|
4032
4004
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4033
4005
|
DEVELOPER: "DEVELOPER",
|
|
@@ -4037,6 +4009,17 @@ const teamDefaultRolesTeamRolesEnum = {
|
|
|
4037
4009
|
VIEWER: "VIEWER",
|
|
4038
4010
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4039
4011
|
};
|
|
4012
|
+
const teamBillingPlanEnum = {
|
|
4013
|
+
enterprise: "enterprise",
|
|
4014
|
+
hobby: "hobby",
|
|
4015
|
+
pro: "pro"
|
|
4016
|
+
};
|
|
4017
|
+
const teamDefaultPassportDeploymentTypeEnum = {
|
|
4018
|
+
all: "all",
|
|
4019
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
4020
|
+
preview: "preview",
|
|
4021
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
4022
|
+
};
|
|
4040
4023
|
const teamDefaultRolesTeamPermissionsEnum = {
|
|
4041
4024
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4042
4025
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4058,43 +4041,39 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
4058
4041
|
V0Viewer: "V0Viewer",
|
|
4059
4042
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4060
4043
|
};
|
|
4061
|
-
const
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
true: true
|
|
4044
|
+
const teamDefaultRolesTeamRolesEnum = {
|
|
4045
|
+
BILLING: "BILLING",
|
|
4046
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4047
|
+
DEVELOPER: "DEVELOPER",
|
|
4048
|
+
MEMBER: "MEMBER",
|
|
4049
|
+
OWNER: "OWNER",
|
|
4050
|
+
SECURITY: "SECURITY",
|
|
4051
|
+
VIEWER: "VIEWER",
|
|
4052
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4071
4053
|
};
|
|
4072
|
-
const
|
|
4073
|
-
all: "all",
|
|
4074
|
-
all_except_custom_domains: "all_except_custom_domains",
|
|
4054
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
4075
4055
|
preview: "preview",
|
|
4076
|
-
|
|
4056
|
+
production: "production"
|
|
4077
4057
|
};
|
|
4078
|
-
const
|
|
4079
|
-
|
|
4080
|
-
"
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
|
|
4058
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
4059
|
+
cli: "cli",
|
|
4060
|
+
"deploy-hook": "deploy-hook",
|
|
4061
|
+
git: "git",
|
|
4062
|
+
integration: "integration",
|
|
4063
|
+
"rest-api": "rest-api",
|
|
4064
|
+
v0: "v0"
|
|
4085
4065
|
};
|
|
4086
|
-
const
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
off: "off",
|
|
4090
|
-
"off-force": "off-force",
|
|
4091
|
-
on: "on",
|
|
4092
|
-
"on-force": "on-force"
|
|
4066
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
4067
|
+
preview: "preview",
|
|
4068
|
+
production: "production"
|
|
4093
4069
|
};
|
|
4094
|
-
const
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4070
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
4071
|
+
bitbucket: "bitbucket",
|
|
4072
|
+
github: "github"
|
|
4073
|
+
};
|
|
4074
|
+
const teamDisableHardAutoBlocks = {
|
|
4075
|
+
false: false,
|
|
4076
|
+
true: true
|
|
4098
4077
|
};
|
|
4099
4078
|
const teamDisjunctiveProductionSecretPolicyEnum = {
|
|
4100
4079
|
default: "default",
|
|
@@ -4103,33 +4082,45 @@ const teamDisjunctiveProductionSecretPolicyEnum = {
|
|
|
4103
4082
|
};
|
|
4104
4083
|
const teamDpAccessRequestsModeEnum = {
|
|
4105
4084
|
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"
|
|
4085
|
+
"email-domain": "email-domain",
|
|
4086
|
+
none: "none"
|
|
4117
4087
|
};
|
|
4118
|
-
const
|
|
4119
|
-
|
|
4120
|
-
|
|
4088
|
+
const teamEnablePreviewFeedbackEnum = {
|
|
4089
|
+
default: "default",
|
|
4090
|
+
"default-force": "default-force",
|
|
4091
|
+
off: "off",
|
|
4092
|
+
"off-force": "off-force",
|
|
4093
|
+
on: "on",
|
|
4094
|
+
"on-force": "on-force"
|
|
4121
4095
|
};
|
|
4122
|
-
const
|
|
4123
|
-
|
|
4124
|
-
"
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4096
|
+
const teamEnableProductionFeedbackEnum = {
|
|
4097
|
+
default: "default",
|
|
4098
|
+
"default-force": "default-force",
|
|
4099
|
+
off: "off",
|
|
4100
|
+
"off-force": "off-force",
|
|
4101
|
+
on: "on",
|
|
4102
|
+
"on-force": "on-force"
|
|
4129
4103
|
};
|
|
4130
|
-
const
|
|
4131
|
-
|
|
4132
|
-
|
|
4104
|
+
const teamMembershipJoinedFromOriginEnum = {
|
|
4105
|
+
"account-update": "account-update",
|
|
4106
|
+
bitbucket: "bitbucket",
|
|
4107
|
+
dsync: "dsync",
|
|
4108
|
+
feedback: "feedback",
|
|
4109
|
+
github: "github",
|
|
4110
|
+
gitlab: "gitlab",
|
|
4111
|
+
import: "import",
|
|
4112
|
+
link: "link",
|
|
4113
|
+
mail: "mail",
|
|
4114
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
4115
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
4116
|
+
"nsnb-invite": "nsnb-invite",
|
|
4117
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
4118
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
4119
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
4120
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
4121
|
+
"organization-teams": "organization-teams",
|
|
4122
|
+
saml: "saml",
|
|
4123
|
+
teams: "teams"
|
|
4133
4124
|
};
|
|
4134
4125
|
const teamMembershipRoleEnum = {
|
|
4135
4126
|
BILLING: "BILLING",
|
|
@@ -4141,16 +4132,6 @@ const teamMembershipRoleEnum = {
|
|
|
4141
4132
|
VIEWER: "VIEWER",
|
|
4142
4133
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4143
4134
|
};
|
|
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
4135
|
const teamMembershipTeamPermissionsEnum = {
|
|
4155
4136
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4156
4137
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4172,7 +4153,52 @@ const teamMembershipTeamPermissionsEnum = {
|
|
|
4172
4153
|
V0Viewer: "V0Viewer",
|
|
4173
4154
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4174
4155
|
};
|
|
4175
|
-
const
|
|
4156
|
+
const teamMembershipTeamRolesEnum = {
|
|
4157
|
+
BILLING: "BILLING",
|
|
4158
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4159
|
+
DEVELOPER: "DEVELOPER",
|
|
4160
|
+
MEMBER: "MEMBER",
|
|
4161
|
+
OWNER: "OWNER",
|
|
4162
|
+
SECURITY: "SECURITY",
|
|
4163
|
+
VIEWER: "VIEWER",
|
|
4164
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4165
|
+
};
|
|
4166
|
+
const teamNsnbConfigPreferenceEnum = {
|
|
4167
|
+
"auto-approval": "auto-approval",
|
|
4168
|
+
block: "block",
|
|
4169
|
+
"manual-approval": "manual-approval"
|
|
4170
|
+
};
|
|
4171
|
+
const teamResourceConfigBuildMachineDefaultEnum = {
|
|
4172
|
+
basic: "basic",
|
|
4173
|
+
elastic: "elastic",
|
|
4174
|
+
enhanced: "enhanced",
|
|
4175
|
+
standard: "standard",
|
|
4176
|
+
turbo: "turbo"
|
|
4177
|
+
};
|
|
4178
|
+
const teamSamlConnectionSyncStateEnum = {
|
|
4179
|
+
ACTIVE: "ACTIVE",
|
|
4180
|
+
SETUP: "SETUP"
|
|
4181
|
+
};
|
|
4182
|
+
const teamSamlDefaultRedirectUriEnum = {
|
|
4183
|
+
"v0.app": "v0.app",
|
|
4184
|
+
"v0.dev": "v0.dev",
|
|
4185
|
+
"vercel.com": "vercel.com"
|
|
4186
|
+
};
|
|
4187
|
+
const teamSamlDirectorySyncStateEnum = {
|
|
4188
|
+
ACTIVE: "ACTIVE",
|
|
4189
|
+
SETUP: "SETUP"
|
|
4190
|
+
};
|
|
4191
|
+
const teamSensitiveEnvironmentVariablePolicyEnum = {
|
|
4192
|
+
default: "default",
|
|
4193
|
+
off: "off",
|
|
4194
|
+
on: "on"
|
|
4195
|
+
};
|
|
4196
|
+
const teamLimitedLimitedByEnum = {
|
|
4197
|
+
invalidated: "invalidated",
|
|
4198
|
+
mfa: "mfa",
|
|
4199
|
+
scope: "scope"
|
|
4200
|
+
};
|
|
4201
|
+
const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
4176
4202
|
"account-update": "account-update",
|
|
4177
4203
|
bitbucket: "bitbucket",
|
|
4178
4204
|
dsync: "dsync",
|
|
@@ -4193,19 +4219,6 @@ const teamMembershipJoinedFromOriginEnum = {
|
|
|
4193
4219
|
saml: "saml",
|
|
4194
4220
|
teams: "teams"
|
|
4195
4221
|
};
|
|
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
4222
|
const teamLimitedMembershipRoleEnum = {
|
|
4210
4223
|
BILLING: "BILLING",
|
|
4211
4224
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -4216,16 +4229,6 @@ const teamLimitedMembershipRoleEnum = {
|
|
|
4216
4229
|
VIEWER: "VIEWER",
|
|
4217
4230
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4218
4231
|
};
|
|
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
4232
|
const teamLimitedMembershipTeamPermissionsEnum = {
|
|
4230
4233
|
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
4231
4234
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
@@ -4247,33 +4250,23 @@ const teamLimitedMembershipTeamPermissionsEnum = {
|
|
|
4247
4250
|
V0Viewer: "V0Viewer",
|
|
4248
4251
|
WorkflowDecryptor: "WorkflowDecryptor"
|
|
4249
4252
|
};
|
|
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"
|
|
4253
|
+
const teamLimitedMembershipTeamRolesEnum = {
|
|
4254
|
+
BILLING: "BILLING",
|
|
4255
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4256
|
+
DEVELOPER: "DEVELOPER",
|
|
4257
|
+
MEMBER: "MEMBER",
|
|
4258
|
+
OWNER: "OWNER",
|
|
4259
|
+
SECURITY: "SECURITY",
|
|
4260
|
+
VIEWER: "VIEWER",
|
|
4261
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
4270
4262
|
};
|
|
4271
|
-
const
|
|
4272
|
-
|
|
4273
|
-
|
|
4274
|
-
|
|
4275
|
-
|
|
4276
|
-
|
|
4263
|
+
const teamLimitedSamlConnectionSyncStateEnum = {
|
|
4264
|
+
ACTIVE: "ACTIVE",
|
|
4265
|
+
SETUP: "SETUP"
|
|
4266
|
+
};
|
|
4267
|
+
const teamLimitedSamlDirectorySyncStateEnum = {
|
|
4268
|
+
ACTIVE: "ACTIVE",
|
|
4269
|
+
SETUP: "SETUP"
|
|
4277
4270
|
};
|
|
4278
4271
|
const authTokenScopesOriginEnum = {
|
|
4279
4272
|
app: "app",
|
|
@@ -4294,16 +4287,42 @@ const authTokenScopesOriginEnum = {
|
|
|
4294
4287
|
sms: "sms",
|
|
4295
4288
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
4296
4289
|
};
|
|
4297
|
-
const
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4290
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4291
|
+
"email-otp": "email-otp",
|
|
4292
|
+
otp: "otp",
|
|
4293
|
+
"recovery-code": "recovery-code",
|
|
4294
|
+
totp: "totp",
|
|
4295
|
+
webauthn: "webauthn"
|
|
4296
|
+
};
|
|
4297
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4298
|
+
closed: "closed",
|
|
4299
|
+
open: "open"
|
|
4300
|
+
};
|
|
4301
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4302
|
+
closed: "closed",
|
|
4303
|
+
open: "open"
|
|
4304
|
+
};
|
|
4305
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4306
|
+
cards: "cards",
|
|
4307
|
+
list: "list"
|
|
4308
|
+
};
|
|
4309
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4310
|
+
admin_override: "admin_override",
|
|
4311
|
+
hard_blocked: "hard_blocked",
|
|
4312
|
+
limits_exceeded: "limits_exceeded"
|
|
4313
|
+
};
|
|
4314
|
+
const authUserImportFlowGitProviderEnum = {
|
|
4315
|
+
bitbucket: "bitbucket",
|
|
4316
|
+
"cursor-origin": "cursor-origin",
|
|
4317
|
+
github: "github",
|
|
4318
|
+
"github-custom-host": "github-custom-host",
|
|
4319
|
+
"github-limited": "github-limited",
|
|
4320
|
+
gitlab: "gitlab",
|
|
4321
|
+
vercel: "vercel"
|
|
4322
|
+
};
|
|
4323
|
+
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
4324
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4325
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4307
4326
|
};
|
|
4308
4327
|
const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
4309
4328
|
analyticsUsage: "analyticsUsage",
|
|
@@ -4346,35 +4365,16 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
4346
4365
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4347
4366
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4348
4367
|
};
|
|
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"
|
|
4368
|
+
const authUserSoftBlockReasonEnum = {
|
|
4369
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
4370
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
4371
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
4372
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
4373
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
4374
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
4375
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
4376
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
4377
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
4378
4378
|
};
|
|
4379
4379
|
const vcrImageListItemKindEnum = {
|
|
4380
4380
|
attestation: "attestation",
|