vercel-api-js 1.12.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{components-j923ydcw.cjs → components-l5748yis.cjs} +364 -52
- package/dist/{components-eqgrkxe2.js → components-nvgbng8u.js} +351 -51
- package/dist/components.cjs +15 -3
- package/dist/components.d.mts +278 -37
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +31 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +789 -165
- package/dist/index.d.ts +16791 -37326
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-o2rt4pyr.js → schemas-bz496bmo.js} +7621 -2116
- package/dist/{schemas-i3c9gf4z.cjs → schemas-rypj5lzu.cjs} +8172 -2133
- package/dist/schemas.cjs +553 -19
- package/dist/schemas.d.mts +1578 -540
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1827 -496
- package/dist/types.d.mts +14847 -36673
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1593 -352
- package/package.json +7 -8
package/dist/types.mjs
CHANGED
|
@@ -32,17 +32,11 @@ const aiGatewayVirtualModelConfigHasEnum = {
|
|
|
32
32
|
"implicit-caching": "implicit-caching",
|
|
33
33
|
vision: "vision"
|
|
34
34
|
};
|
|
35
|
-
const aiGatewayVirtualModelConfigCachingEnum = {
|
|
36
|
-
auto: "auto"
|
|
37
|
-
};
|
|
38
35
|
const aiGatewayVirtualModelConfigServiceTierEnum = {
|
|
39
36
|
fast: "fast",
|
|
40
37
|
flex: "flex",
|
|
41
38
|
priority: "priority"
|
|
42
39
|
};
|
|
43
|
-
const aiGatewayVirtualModelConfigSpeedEnum = {
|
|
44
|
-
fast: "fast"
|
|
45
|
-
};
|
|
46
40
|
const aiGatewayRuleTypeEnum = {
|
|
47
41
|
deny: "deny",
|
|
48
42
|
rewrite: "rewrite"
|
|
@@ -53,161 +47,78 @@ const networkStatusEnum = {
|
|
|
53
47
|
error: "error",
|
|
54
48
|
ready: "ready"
|
|
55
49
|
};
|
|
56
|
-
const
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
const tooManyRequestsStatusEnum = {
|
|
60
|
-
"429": 429
|
|
61
|
-
};
|
|
62
|
-
const tooManyRequestsCodeEnum = {
|
|
63
|
-
too_many_requests: "too_many_requests"
|
|
64
|
-
};
|
|
65
|
-
const unauthorizedStatusEnum = {
|
|
66
|
-
"401": 401
|
|
67
|
-
};
|
|
68
|
-
const unauthorizedCodeEnum = {
|
|
69
|
-
unauthorized: "unauthorized"
|
|
70
|
-
};
|
|
71
|
-
const notAuthorizedForScopeStatusEnum = {
|
|
72
|
-
"403": 403
|
|
73
|
-
};
|
|
74
|
-
const notAuthorizedForScopeCodeEnum = {
|
|
75
|
-
not_authorized_for_scope: "not_authorized_for_scope"
|
|
76
|
-
};
|
|
77
|
-
const internalServerErrorStatusEnum = {
|
|
78
|
-
"500": 500
|
|
79
|
-
};
|
|
80
|
-
const internalServerErrorCodeEnum = {
|
|
81
|
-
internal_server_error: "internal_server_error"
|
|
82
|
-
};
|
|
83
|
-
const tldNotSupportedStatusEnum = {
|
|
84
|
-
"400": 400
|
|
85
|
-
};
|
|
86
|
-
const tldNotSupportedCodeEnum = {
|
|
87
|
-
tld_not_supported: "tld_not_supported"
|
|
88
|
-
};
|
|
89
|
-
const notFoundStatusEnum = {
|
|
90
|
-
"404": 404
|
|
91
|
-
};
|
|
92
|
-
const notFoundCodeEnum = {
|
|
93
|
-
not_found: "not_found"
|
|
94
|
-
};
|
|
95
|
-
const domainTooShortStatusEnum = {
|
|
96
|
-
"400": 400
|
|
97
|
-
};
|
|
98
|
-
const domainTooShortCodeEnum = {
|
|
99
|
-
domain_too_short: "domain_too_short"
|
|
100
|
-
};
|
|
101
|
-
const badRequestStatusEnum = {
|
|
102
|
-
"400": 400
|
|
103
|
-
};
|
|
104
|
-
const badRequestCodeEnum = {
|
|
105
|
-
bad_request: "bad_request"
|
|
106
|
-
};
|
|
107
|
-
const domainNotRegisteredStatusEnum = {
|
|
108
|
-
"400": 400
|
|
109
|
-
};
|
|
110
|
-
const domainNotRegisteredCodeEnum = {
|
|
111
|
-
domain_not_registered: "domain_not_registered"
|
|
112
|
-
};
|
|
113
|
-
const forbiddenStatusEnum = {
|
|
114
|
-
"403": 403
|
|
115
|
-
};
|
|
116
|
-
const forbiddenCodeEnum = {
|
|
117
|
-
forbidden: "forbidden"
|
|
118
|
-
};
|
|
119
|
-
const domainNotFoundStatusEnum = {
|
|
120
|
-
"404": 404
|
|
121
|
-
};
|
|
122
|
-
const domainNotFoundCodeEnum = {
|
|
123
|
-
domain_not_found: "domain_not_found"
|
|
124
|
-
};
|
|
125
|
-
const domainCannotBeTransferedOutUntilStatusEnum = {
|
|
126
|
-
"409": 409
|
|
127
|
-
};
|
|
128
|
-
const domainCannotBeTransferedOutUntilCodeEnum = {
|
|
129
|
-
domain_cannot_be_transfered_out_until: "domain_cannot_be_transfered_out_until"
|
|
130
|
-
};
|
|
131
|
-
const languageCodeRequiredStatusEnum = {
|
|
132
|
-
"400": 400
|
|
133
|
-
};
|
|
134
|
-
const languageCodeRequiredCodeEnum = {
|
|
135
|
-
language_code_required: "language_code_required"
|
|
136
|
-
};
|
|
137
|
-
const domainNotAvailableStatusEnum = {
|
|
138
|
-
"400": 400
|
|
139
|
-
};
|
|
140
|
-
const domainNotAvailableCodeEnum = {
|
|
141
|
-
domain_not_available: "domain_not_available"
|
|
142
|
-
};
|
|
143
|
-
const expectedPriceMismatchStatusEnum = {
|
|
144
|
-
"400": 400
|
|
145
|
-
};
|
|
146
|
-
const expectedPriceMismatchCodeEnum = {
|
|
147
|
-
expected_price_mismatch: "expected_price_mismatch"
|
|
148
|
-
};
|
|
149
|
-
const additionalContactInfoRequiredStatusEnum = {
|
|
150
|
-
"400": 400
|
|
151
|
-
};
|
|
152
|
-
const additionalContactInfoRequiredCodeEnum = {
|
|
153
|
-
additional_contact_info_required: "additional_contact_info_required"
|
|
154
|
-
};
|
|
155
|
-
const invalidAdditionalContactInfoStatusEnum = {
|
|
156
|
-
"400": 400
|
|
157
|
-
};
|
|
158
|
-
const invalidAdditionalContactInfoCodeEnum = {
|
|
159
|
-
invalid_additional_contact_info: "invalid_additional_contact_info"
|
|
160
|
-
};
|
|
161
|
-
const orderTooExpensiveStatusEnum = {
|
|
162
|
-
"400": 400
|
|
163
|
-
};
|
|
164
|
-
const orderTooExpensiveCodeEnum = {
|
|
165
|
-
order_too_expensive: "order_too_expensive"
|
|
166
|
-
};
|
|
167
|
-
const duplicateDomainsStatusEnum = {
|
|
168
|
-
"400": 400
|
|
169
|
-
};
|
|
170
|
-
const duplicateDomainsCodeEnum = {
|
|
171
|
-
duplicate_domains: "duplicate_domains"
|
|
172
|
-
};
|
|
173
|
-
const tooManyDomainsStatusEnum = {
|
|
174
|
-
"400": 400
|
|
175
|
-
};
|
|
176
|
-
const tooManyDomainsCodeEnum = {
|
|
177
|
-
too_many_domains: "too_many_domains"
|
|
178
|
-
};
|
|
179
|
-
const DNSSECEnabledStatusEnum = {
|
|
180
|
-
"400": 400
|
|
181
|
-
};
|
|
182
|
-
const DNSSECEnabledCodeEnum = {
|
|
183
|
-
dnssec_enabled: "dnssec_enabled"
|
|
184
|
-
};
|
|
185
|
-
const domainAlreadyOwnedStatusEnum = {
|
|
186
|
-
"400": 400
|
|
187
|
-
};
|
|
188
|
-
const domainAlreadyOwnedCodeEnum = {
|
|
189
|
-
domain_already_owned: "domain_already_owned"
|
|
190
|
-
};
|
|
191
|
-
const domainNotRenewableStatusEnum = {
|
|
192
|
-
"400": 400
|
|
193
|
-
};
|
|
194
|
-
const domainNotRenewableCodeEnum = {
|
|
195
|
-
domain_not_renewable: "domain_not_renewable"
|
|
50
|
+
const connectConnectorCreateResultCreationModeEnum = {
|
|
51
|
+
managed: "managed",
|
|
52
|
+
manual: "manual"
|
|
196
53
|
};
|
|
197
|
-
const
|
|
198
|
-
"
|
|
54
|
+
const connectConnectorCreateResultTypeEnum = {
|
|
55
|
+
"api-key": "api-key",
|
|
56
|
+
custom: "custom",
|
|
57
|
+
discord: "discord",
|
|
58
|
+
github: "github",
|
|
59
|
+
linear: "linear",
|
|
60
|
+
linq: "linq",
|
|
61
|
+
"microsoft-entra": "microsoft-entra",
|
|
62
|
+
"microsoft-teams": "microsoft-teams",
|
|
63
|
+
oauth: "oauth",
|
|
64
|
+
photon: "photon",
|
|
65
|
+
salesforce: "salesforce",
|
|
66
|
+
sendblue: "sendblue",
|
|
67
|
+
slack: "slack",
|
|
68
|
+
snowflake: "snowflake",
|
|
69
|
+
"snowflake-wif": "snowflake-wif"
|
|
70
|
+
};
|
|
71
|
+
const connectConnectorCreateResultSupportsIconEnum = {
|
|
72
|
+
false: false,
|
|
73
|
+
maybe: "maybe",
|
|
74
|
+
true: true
|
|
75
|
+
};
|
|
76
|
+
const connectConnectorCreateDataServerConfigJwksKeysUseEnum = {
|
|
77
|
+
sig: "sig",
|
|
78
|
+
enc: "enc"
|
|
79
|
+
};
|
|
80
|
+
const connectConnectorCreateDataSubjectTypeEnum = {
|
|
81
|
+
app: "app",
|
|
82
|
+
user: "user"
|
|
199
83
|
};
|
|
200
|
-
const
|
|
201
|
-
|
|
84
|
+
const connectConnectorCreateDataOwnerTypeEnum = {
|
|
85
|
+
user: "user",
|
|
86
|
+
organization: "organization",
|
|
87
|
+
User: "User",
|
|
88
|
+
Organization: "Organization"
|
|
202
89
|
};
|
|
203
|
-
const
|
|
204
|
-
|
|
90
|
+
const flagJSONValue = {
|
|
91
|
+
false: false,
|
|
92
|
+
true: true
|
|
205
93
|
};
|
|
206
|
-
const
|
|
207
|
-
|
|
94
|
+
const globalConfigItemValue = {
|
|
95
|
+
false: false,
|
|
96
|
+
true: true
|
|
208
97
|
};
|
|
209
|
-
const
|
|
210
|
-
|
|
98
|
+
const userEventEntitiesTypeEnum = {
|
|
99
|
+
app: "app",
|
|
100
|
+
author: "author",
|
|
101
|
+
bitbucket_login: "bitbucket_login",
|
|
102
|
+
bold: "bold",
|
|
103
|
+
deployment_host: "deployment_host",
|
|
104
|
+
deployment_inspector: "deployment_inspector",
|
|
105
|
+
dns_record: "dns_record",
|
|
106
|
+
"edge-config": "edge-config",
|
|
107
|
+
env_var_name: "env_var_name",
|
|
108
|
+
flag: "flag",
|
|
109
|
+
"flags-segment": "flags-segment",
|
|
110
|
+
"flags-settings": "flags-settings",
|
|
111
|
+
git_link: "git_link",
|
|
112
|
+
github_login: "github_login",
|
|
113
|
+
gitlab_login: "gitlab_login",
|
|
114
|
+
hook_name: "hook_name",
|
|
115
|
+
integration: "integration",
|
|
116
|
+
link: "link",
|
|
117
|
+
project_name: "project_name",
|
|
118
|
+
scaling_rules: "scaling_rules",
|
|
119
|
+
store: "store",
|
|
120
|
+
system: "system",
|
|
121
|
+
target: "target"
|
|
211
122
|
};
|
|
212
123
|
const userEventTypeEnum = {
|
|
213
124
|
"access-group-created": "access-group-created",
|
|
@@ -237,10 +148,12 @@ const userEventTypeEnum = {
|
|
|
237
148
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
238
149
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
239
150
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
151
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
240
152
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
241
153
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
242
154
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
243
155
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
156
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
244
157
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
245
158
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
246
159
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -374,6 +287,7 @@ const userEventTypeEnum = {
|
|
|
374
287
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
375
288
|
"domain-delegated": "domain-delegated",
|
|
376
289
|
"domain-delete": "domain-delete",
|
|
290
|
+
"domain-ech-change": "domain-ech-change",
|
|
377
291
|
"domain-move-in": "domain-move-in",
|
|
378
292
|
"domain-move-out": "domain-move-out",
|
|
379
293
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -427,6 +341,10 @@ const userEventTypeEnum = {
|
|
|
427
341
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
428
342
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
429
343
|
"env-variable-rotated": "env-variable-rotated",
|
|
344
|
+
"experiment-created": "experiment-created",
|
|
345
|
+
"experiment-deleted": "experiment-deleted",
|
|
346
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
347
|
+
"experiment-updated": "experiment-updated",
|
|
430
348
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
431
349
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
432
350
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -450,7 +368,19 @@ const userEventTypeEnum = {
|
|
|
450
368
|
"flags-transferred": "flags-transferred",
|
|
451
369
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
452
370
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
371
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
372
|
+
"global-config-created": "global-config-created",
|
|
373
|
+
"global-config-deleted": "global-config-deleted",
|
|
374
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
375
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
376
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
377
|
+
"global-config-token-created": "global-config-token-created",
|
|
378
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
379
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
380
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
381
|
+
"global-config-updated": "global-config-updated",
|
|
453
382
|
"instant-rollback-created": "instant-rollback-created",
|
|
383
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
454
384
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
455
385
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
456
386
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -654,6 +584,7 @@ const userEventTypeEnum = {
|
|
|
654
584
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
655
585
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
656
586
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
587
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
657
588
|
"project-sso-protection": "project-sso-protection",
|
|
658
589
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
659
590
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -777,6 +708,8 @@ const userEventTypeEnum = {
|
|
|
777
708
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
778
709
|
"tracing-configured": "tracing-configured",
|
|
779
710
|
"tracing-disabled": "tracing-disabled",
|
|
711
|
+
"tracing-paused": "tracing-paused",
|
|
712
|
+
"tracing-resumed": "tracing-resumed",
|
|
780
713
|
"unlink-login-connection": "unlink-login-connection",
|
|
781
714
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
782
715
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -787,6 +720,8 @@ const userEventTypeEnum = {
|
|
|
787
720
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
788
721
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
789
722
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
723
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
724
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
790
725
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
791
726
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
792
727
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -869,7 +804,7 @@ const userEventCategoriesEnum = {
|
|
|
869
804
|
"vercel-app": "vercel-app",
|
|
870
805
|
workflow: "workflow"
|
|
871
806
|
};
|
|
872
|
-
const
|
|
807
|
+
const userEventPayloadActionEnum = {
|
|
873
808
|
"add-passkey": "add-passkey",
|
|
874
809
|
"add-totp": "add-totp",
|
|
875
810
|
"admin-remove": "admin-remove",
|
|
@@ -878,128 +813,463 @@ const actionEnum = {
|
|
|
878
813
|
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
879
814
|
"remove-passkey": "remove-passkey"
|
|
880
815
|
};
|
|
881
|
-
const
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
816
|
+
const userEventPayloadProviderEnum = {
|
|
817
|
+
apple: "apple",
|
|
818
|
+
bitbucket: "bitbucket",
|
|
819
|
+
chatgpt: "chatgpt",
|
|
820
|
+
github: "github",
|
|
821
|
+
"github-custom-host": "github-custom-host",
|
|
822
|
+
"github-limited": "github-limited",
|
|
823
|
+
gitlab: "gitlab",
|
|
824
|
+
google: "google",
|
|
825
|
+
saml: "saml"
|
|
886
826
|
};
|
|
887
|
-
const
|
|
827
|
+
const userEventPayloadFromPlanEnum = {
|
|
888
828
|
hobby: "hobby",
|
|
889
829
|
pro: "pro"
|
|
890
830
|
};
|
|
891
|
-
const
|
|
831
|
+
const userEventPayloadToPlanEnum = {
|
|
892
832
|
hobby: "hobby",
|
|
893
833
|
pro: "pro"
|
|
894
834
|
};
|
|
895
|
-
const
|
|
835
|
+
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
896
836
|
daily: "daily",
|
|
897
837
|
monthly: "monthly",
|
|
898
838
|
none: "none",
|
|
899
839
|
weekly: "weekly"
|
|
900
840
|
};
|
|
901
|
-
const
|
|
841
|
+
const userEventPayloadChangeEnum = {
|
|
902
842
|
disable: "disable",
|
|
903
843
|
enable: "enable",
|
|
904
844
|
remove: "remove",
|
|
905
845
|
set: "set"
|
|
906
846
|
};
|
|
907
|
-
const
|
|
847
|
+
const userEventPayloadScopeTypeEnum = {
|
|
908
848
|
project: "project",
|
|
909
|
-
team: "team"
|
|
849
|
+
team: "team",
|
|
850
|
+
user: "user"
|
|
910
851
|
};
|
|
911
|
-
const
|
|
852
|
+
const userEventPayloadRetentionDefaultModeEnum = {
|
|
912
853
|
days: "days",
|
|
913
854
|
"until-requested": "until-requested"
|
|
914
855
|
};
|
|
915
|
-
const
|
|
856
|
+
const userEventPayloadRetentionCeilingModeEnum = {
|
|
916
857
|
days: "days",
|
|
917
858
|
"until-requested": "until-requested"
|
|
918
859
|
};
|
|
919
|
-
const
|
|
860
|
+
const userEventPayloadNextRoleEnum = {
|
|
920
861
|
ADMIN: "ADMIN",
|
|
921
862
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
922
863
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
923
864
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
924
865
|
};
|
|
925
|
-
const
|
|
866
|
+
const userEventPayloadPreviousRoleEnum = {
|
|
926
867
|
ADMIN: "ADMIN",
|
|
927
868
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
928
869
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
929
870
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
930
871
|
};
|
|
931
|
-
const
|
|
872
|
+
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
932
873
|
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
933
874
|
IGNORE_STEP: "IGNORE_STEP",
|
|
934
875
|
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
935
876
|
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
936
877
|
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
937
878
|
};
|
|
938
|
-
const
|
|
879
|
+
const userEventPayloadScopesEnum = {
|
|
880
|
+
email: "email",
|
|
881
|
+
offline_access: "offline_access",
|
|
882
|
+
openid: "openid",
|
|
883
|
+
profile: "profile"
|
|
884
|
+
};
|
|
885
|
+
const userEventPayloadPermissionsEnum = {
|
|
886
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
887
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
888
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
889
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
890
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
891
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
892
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
893
|
+
"read-write:alerts": "read-write:alerts",
|
|
894
|
+
"read-write:billing": "read-write:billing",
|
|
895
|
+
"read-write:blob": "read-write:blob",
|
|
896
|
+
"read-write:connect": "read-write:connect",
|
|
897
|
+
"read-write:deployment": "read-write:deployment",
|
|
898
|
+
"read-write:domain": "read-write:domain",
|
|
899
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
900
|
+
"read-write:drains": "read-write:drains",
|
|
901
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
902
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
903
|
+
"read-write:firewall": "read-write:firewall",
|
|
904
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
905
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
906
|
+
"read-write:kms": "read-write:kms",
|
|
907
|
+
"read-write:project": "read-write:project",
|
|
908
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
909
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
910
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
911
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
912
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
913
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
914
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
915
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
916
|
+
"read-write:team-members": "read-write:team-members",
|
|
917
|
+
"read-write:vcr": "read-write:vcr",
|
|
918
|
+
"read:access-group": "read:access-group",
|
|
919
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
920
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
921
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
922
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
923
|
+
"read:alerts": "read:alerts",
|
|
924
|
+
"read:billing": "read:billing",
|
|
925
|
+
"read:deployment": "read:deployment",
|
|
926
|
+
"read:domain": "read:domain",
|
|
927
|
+
"read:event": "read:event",
|
|
928
|
+
"read:firewall": "read:firewall",
|
|
929
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
930
|
+
"read:integration-resource": "read:integration-resource",
|
|
931
|
+
"read:kms": "read:kms",
|
|
932
|
+
"read:monitoring": "read:monitoring",
|
|
933
|
+
"read:project": "read:project",
|
|
934
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
935
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
936
|
+
"read:project-flags": "read:project-flags",
|
|
937
|
+
"read:remote-cache": "read:remote-cache",
|
|
938
|
+
"read:sandbox": "read:sandbox",
|
|
939
|
+
"read:speed-insights": "read:speed-insights",
|
|
940
|
+
"read:team": "read:team",
|
|
941
|
+
"read:vcr": "read:vcr",
|
|
942
|
+
"read:web-analytics": "read:web-analytics",
|
|
943
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
944
|
+
};
|
|
945
|
+
const userEventPayloadNextScopesEnum = {
|
|
946
|
+
email: "email",
|
|
947
|
+
offline_access: "offline_access",
|
|
948
|
+
openid: "openid",
|
|
949
|
+
profile: "profile"
|
|
950
|
+
};
|
|
951
|
+
const userEventPayloadNextPermissionsEnum = {
|
|
952
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
953
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
954
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
955
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
956
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
957
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
958
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
959
|
+
"read-write:alerts": "read-write:alerts",
|
|
960
|
+
"read-write:billing": "read-write:billing",
|
|
961
|
+
"read-write:blob": "read-write:blob",
|
|
962
|
+
"read-write:connect": "read-write:connect",
|
|
963
|
+
"read-write:deployment": "read-write:deployment",
|
|
964
|
+
"read-write:domain": "read-write:domain",
|
|
965
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
966
|
+
"read-write:drains": "read-write:drains",
|
|
967
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
968
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
969
|
+
"read-write:firewall": "read-write:firewall",
|
|
970
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
971
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
972
|
+
"read-write:kms": "read-write:kms",
|
|
973
|
+
"read-write:project": "read-write:project",
|
|
974
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
975
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
976
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
977
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
978
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
979
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
980
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
981
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
982
|
+
"read-write:team-members": "read-write:team-members",
|
|
983
|
+
"read-write:vcr": "read-write:vcr",
|
|
984
|
+
"read:access-group": "read:access-group",
|
|
985
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
986
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
987
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
988
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
989
|
+
"read:alerts": "read:alerts",
|
|
990
|
+
"read:billing": "read:billing",
|
|
991
|
+
"read:deployment": "read:deployment",
|
|
992
|
+
"read:domain": "read:domain",
|
|
993
|
+
"read:event": "read:event",
|
|
994
|
+
"read:firewall": "read:firewall",
|
|
995
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
996
|
+
"read:integration-resource": "read:integration-resource",
|
|
997
|
+
"read:kms": "read:kms",
|
|
998
|
+
"read:monitoring": "read:monitoring",
|
|
999
|
+
"read:project": "read:project",
|
|
1000
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1001
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1002
|
+
"read:project-flags": "read:project-flags",
|
|
1003
|
+
"read:remote-cache": "read:remote-cache",
|
|
1004
|
+
"read:sandbox": "read:sandbox",
|
|
1005
|
+
"read:speed-insights": "read:speed-insights",
|
|
1006
|
+
"read:team": "read:team",
|
|
1007
|
+
"read:user": "read:user",
|
|
1008
|
+
"read:vcr": "read:vcr",
|
|
1009
|
+
"read:web-analytics": "read:web-analytics",
|
|
1010
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1011
|
+
};
|
|
1012
|
+
const userEventPayloadBeforePermissionsEnum = {
|
|
1013
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1014
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1015
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1016
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1017
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1018
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1019
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1020
|
+
"read-write:alerts": "read-write:alerts",
|
|
1021
|
+
"read-write:billing": "read-write:billing",
|
|
1022
|
+
"read-write:blob": "read-write:blob",
|
|
1023
|
+
"read-write:connect": "read-write:connect",
|
|
1024
|
+
"read-write:deployment": "read-write:deployment",
|
|
1025
|
+
"read-write:domain": "read-write:domain",
|
|
1026
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1027
|
+
"read-write:drains": "read-write:drains",
|
|
1028
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1029
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1030
|
+
"read-write:firewall": "read-write:firewall",
|
|
1031
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1032
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1033
|
+
"read-write:kms": "read-write:kms",
|
|
1034
|
+
"read-write:project": "read-write:project",
|
|
1035
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1036
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1037
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1038
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1039
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1040
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1041
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1042
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1043
|
+
"read-write:team-members": "read-write:team-members",
|
|
1044
|
+
"read-write:vcr": "read-write:vcr",
|
|
1045
|
+
"read:access-group": "read:access-group",
|
|
1046
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1047
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1048
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1049
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1050
|
+
"read:alerts": "read:alerts",
|
|
1051
|
+
"read:billing": "read:billing",
|
|
1052
|
+
"read:deployment": "read:deployment",
|
|
1053
|
+
"read:domain": "read:domain",
|
|
1054
|
+
"read:event": "read:event",
|
|
1055
|
+
"read:firewall": "read:firewall",
|
|
1056
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1057
|
+
"read:integration-resource": "read:integration-resource",
|
|
1058
|
+
"read:kms": "read:kms",
|
|
1059
|
+
"read:monitoring": "read:monitoring",
|
|
1060
|
+
"read:project": "read:project",
|
|
1061
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1062
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1063
|
+
"read:project-flags": "read:project-flags",
|
|
1064
|
+
"read:remote-cache": "read:remote-cache",
|
|
1065
|
+
"read:sandbox": "read:sandbox",
|
|
1066
|
+
"read:speed-insights": "read:speed-insights",
|
|
1067
|
+
"read:team": "read:team",
|
|
1068
|
+
"read:vcr": "read:vcr",
|
|
1069
|
+
"read:web-analytics": "read:web-analytics",
|
|
1070
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1071
|
+
};
|
|
1072
|
+
const userEventPayloadAfterPermissionsEnum = {
|
|
1073
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1074
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1075
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1076
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1077
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1078
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1079
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1080
|
+
"read-write:alerts": "read-write:alerts",
|
|
1081
|
+
"read-write:billing": "read-write:billing",
|
|
1082
|
+
"read-write:blob": "read-write:blob",
|
|
1083
|
+
"read-write:connect": "read-write:connect",
|
|
1084
|
+
"read-write:deployment": "read-write:deployment",
|
|
1085
|
+
"read-write:domain": "read-write:domain",
|
|
1086
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1087
|
+
"read-write:drains": "read-write:drains",
|
|
1088
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1089
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1090
|
+
"read-write:firewall": "read-write:firewall",
|
|
1091
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1092
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1093
|
+
"read-write:kms": "read-write:kms",
|
|
1094
|
+
"read-write:project": "read-write:project",
|
|
1095
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1096
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1097
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1098
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1099
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1100
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1101
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1102
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1103
|
+
"read-write:team-members": "read-write:team-members",
|
|
1104
|
+
"read-write:vcr": "read-write:vcr",
|
|
1105
|
+
"read:access-group": "read:access-group",
|
|
1106
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1107
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1108
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1109
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1110
|
+
"read:alerts": "read:alerts",
|
|
1111
|
+
"read:billing": "read:billing",
|
|
1112
|
+
"read:deployment": "read:deployment",
|
|
1113
|
+
"read:domain": "read:domain",
|
|
1114
|
+
"read:event": "read:event",
|
|
1115
|
+
"read:firewall": "read:firewall",
|
|
1116
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1117
|
+
"read:integration-resource": "read:integration-resource",
|
|
1118
|
+
"read:kms": "read:kms",
|
|
1119
|
+
"read:monitoring": "read:monitoring",
|
|
1120
|
+
"read:project": "read:project",
|
|
1121
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1122
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1123
|
+
"read:project-flags": "read:project-flags",
|
|
1124
|
+
"read:remote-cache": "read:remote-cache",
|
|
1125
|
+
"read:sandbox": "read:sandbox",
|
|
1126
|
+
"read:speed-insights": "read:speed-insights",
|
|
1127
|
+
"read:team": "read:team",
|
|
1128
|
+
"read:vcr": "read:vcr",
|
|
1129
|
+
"read:web-analytics": "read:web-analytics",
|
|
1130
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1131
|
+
};
|
|
1132
|
+
const userEventPayloadSettlementMethodEnum = {
|
|
939
1133
|
"credited-paid": "credited-paid",
|
|
940
1134
|
"credited-payment-pending": "credited-payment-pending",
|
|
941
1135
|
"refunded-paid": "refunded-paid",
|
|
942
1136
|
"refunded-payment-pending": "refunded-payment-pending"
|
|
943
1137
|
};
|
|
944
|
-
const
|
|
1138
|
+
const userEventPayloadDataPlanSlugEnum = {
|
|
945
1139
|
v0_business: "v0_business",
|
|
946
1140
|
v0_teams: "v0_teams"
|
|
947
1141
|
};
|
|
948
|
-
const
|
|
949
|
-
"basic-floor": "basic-floor",
|
|
950
|
-
"build-timeout-failure": "build-timeout-failure",
|
|
951
|
-
"enospc-failure": "enospc-failure",
|
|
952
|
-
"enterprise-floor": "enterprise-floor",
|
|
953
|
-
"high-peak-disk": "high-peak-disk",
|
|
954
|
-
"high-peak-memory": "high-peak-memory",
|
|
955
|
-
"long-build-duration": "long-build-duration",
|
|
956
|
-
"oom-failure": "oom-failure",
|
|
957
|
-
"plan-change": "plan-change",
|
|
958
|
-
"short-build-duration": "short-build-duration",
|
|
959
|
-
"sustained-high-cpu": "sustained-high-cpu"
|
|
960
|
-
};
|
|
961
|
-
const subjectTypeEnum = {
|
|
1142
|
+
const userEventPayloadSubjectTypeEnum = {
|
|
962
1143
|
app: "app",
|
|
963
1144
|
user: "user"
|
|
964
1145
|
};
|
|
965
|
-
const
|
|
966
|
-
"external-token": "external-token"
|
|
967
|
-
};
|
|
968
|
-
const commitVerificationEnum = {
|
|
1146
|
+
const userEventPayloadJobCommitVerificationEnum = {
|
|
969
1147
|
unknown: "unknown",
|
|
970
1148
|
unverified: "unverified",
|
|
971
1149
|
verified: "verified"
|
|
972
1150
|
};
|
|
973
|
-
const
|
|
1151
|
+
const userEventPayloadJobNsnbSideEffectActionEnum = {
|
|
1152
|
+
"auto-approved-member": "auto-approved-member",
|
|
1153
|
+
"auto-approved-pending-invite": "auto-approved-pending-invite"
|
|
1154
|
+
};
|
|
1155
|
+
const userEventPayloadJobProviderEnum = {
|
|
1156
|
+
github: "github",
|
|
1157
|
+
"github-custom-host": "github-custom-host",
|
|
1158
|
+
"github-limited": "github-limited"
|
|
1159
|
+
};
|
|
1160
|
+
const userEventPayloadRuleNameEnum = {
|
|
974
1161
|
deploymentSources: "deploymentSources",
|
|
975
1162
|
gitSources: "gitSources"
|
|
976
1163
|
};
|
|
977
|
-
const
|
|
1164
|
+
const userEventPayloadRuleProvenanceEnum = {
|
|
978
1165
|
default: "default",
|
|
979
1166
|
project: "project",
|
|
980
1167
|
team: "team"
|
|
981
1168
|
};
|
|
982
|
-
const
|
|
1169
|
+
const userEventPayloadInitiatorEnum = {
|
|
983
1170
|
system: "system",
|
|
984
1171
|
user: "user"
|
|
985
1172
|
};
|
|
986
|
-
const
|
|
1173
|
+
const userEventPayloadEchModeEnum = {
|
|
1174
|
+
auto: "auto",
|
|
1175
|
+
disabled: "disabled",
|
|
1176
|
+
enabled: "enabled"
|
|
1177
|
+
};
|
|
1178
|
+
const userEventPayloadPreviousEchModeEnum = {
|
|
1179
|
+
auto: "auto",
|
|
1180
|
+
disabled: "disabled",
|
|
1181
|
+
enabled: "enabled"
|
|
1182
|
+
};
|
|
1183
|
+
const userEventPayloadFromAccountTypeEnum = {
|
|
1184
|
+
team: "team",
|
|
1185
|
+
user: "user"
|
|
1186
|
+
};
|
|
1187
|
+
const userEventPayloadToAccountTypeEnum = {
|
|
1188
|
+
team: "team",
|
|
1189
|
+
user: "user"
|
|
1190
|
+
};
|
|
1191
|
+
const userEventPayloadTypeEnum = {
|
|
1192
|
+
blob: "blob",
|
|
1193
|
+
"edge-config": "edge-config",
|
|
1194
|
+
integration: "integration",
|
|
1195
|
+
postgres: "postgres",
|
|
1196
|
+
redis: "redis"
|
|
1197
|
+
};
|
|
1198
|
+
const userEventPayloadTargetEnum = {
|
|
1199
|
+
development: "development",
|
|
1200
|
+
preview: "preview",
|
|
1201
|
+
production: "production"
|
|
1202
|
+
};
|
|
1203
|
+
const userEventPayloadOldEnvVarTypeEnum = {
|
|
1204
|
+
encrypted: "encrypted",
|
|
1205
|
+
plain: "plain",
|
|
1206
|
+
sensitive: "sensitive",
|
|
1207
|
+
system: "system"
|
|
1208
|
+
};
|
|
1209
|
+
const userEventPayloadOldEnvVarTargetEnum = {
|
|
1210
|
+
development: "development",
|
|
1211
|
+
preview: "preview",
|
|
1212
|
+
production: "production"
|
|
1213
|
+
};
|
|
1214
|
+
const userEventPayloadNewEnvVarTypeEnum = {
|
|
1215
|
+
encrypted: "encrypted",
|
|
1216
|
+
plain: "plain",
|
|
1217
|
+
sensitive: "sensitive",
|
|
1218
|
+
system: "system"
|
|
1219
|
+
};
|
|
1220
|
+
const userEventPayloadNewEnvVarTargetEnum = {
|
|
1221
|
+
development: "development",
|
|
1222
|
+
preview: "preview",
|
|
1223
|
+
production: "production"
|
|
1224
|
+
};
|
|
1225
|
+
const userEventPayloadUpdateDiffOldTargetEnum = {
|
|
1226
|
+
development: "development",
|
|
1227
|
+
preview: "preview",
|
|
1228
|
+
production: "production"
|
|
1229
|
+
};
|
|
1230
|
+
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1231
|
+
development: "development",
|
|
1232
|
+
preview: "preview",
|
|
1233
|
+
production: "production"
|
|
1234
|
+
};
|
|
1235
|
+
const actionEnum = {
|
|
1236
|
+
challenge: "challenge",
|
|
1237
|
+
deny: "deny",
|
|
1238
|
+
log: "log"
|
|
1239
|
+
};
|
|
1240
|
+
const userEventPayloadOutcomeEnum = {
|
|
987
1241
|
"account-matched": "account-matched",
|
|
988
1242
|
"linking-required": "linking-required"
|
|
989
1243
|
};
|
|
990
|
-
const
|
|
1244
|
+
const userEventPayloadFailureStageEnum = {
|
|
991
1245
|
authorization: "authorization",
|
|
992
1246
|
push: "push",
|
|
993
1247
|
unexpected: "unexpected",
|
|
994
1248
|
unknown: "unknown",
|
|
995
1249
|
validation: "validation"
|
|
996
1250
|
};
|
|
997
|
-
const
|
|
1251
|
+
const userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = {
|
|
1252
|
+
blocked: "blocked",
|
|
1253
|
+
"hard-blocked": "hard-blocked",
|
|
1254
|
+
"soft-blocked": "soft-blocked",
|
|
1255
|
+
unblocked: "unblocked"
|
|
1256
|
+
};
|
|
1257
|
+
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
998
1258
|
enterprise: "enterprise",
|
|
999
1259
|
hobby: "hobby",
|
|
1000
1260
|
pro: "pro"
|
|
1001
1261
|
};
|
|
1002
|
-
const
|
|
1262
|
+
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
1263
|
+
apple: "apple",
|
|
1264
|
+
bitbucket: "bitbucket",
|
|
1265
|
+
chatgpt: "chatgpt",
|
|
1266
|
+
"github-oauth": "github-oauth",
|
|
1267
|
+
"github-oauth-limited": "github-oauth-limited",
|
|
1268
|
+
gitlab: "gitlab",
|
|
1269
|
+
google: "google",
|
|
1270
|
+
vercel: "vercel"
|
|
1271
|
+
};
|
|
1272
|
+
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
1003
1273
|
bitbucket: "bitbucket",
|
|
1004
1274
|
"cursor-origin": "cursor-origin",
|
|
1005
1275
|
github: "github",
|
|
@@ -1008,8 +1278,11 @@ const importFlowGitProviderEnum = {
|
|
|
1008
1278
|
gitlab: "gitlab",
|
|
1009
1279
|
vercel: "vercel"
|
|
1010
1280
|
};
|
|
1011
|
-
const
|
|
1012
|
-
|
|
1281
|
+
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
1282
|
+
false: false,
|
|
1283
|
+
true: true
|
|
1284
|
+
};
|
|
1285
|
+
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
1013
1286
|
"analytics-online": "analytics-online",
|
|
1014
1287
|
"analytics-page-views": "analytics-page-views",
|
|
1015
1288
|
"analytics-visitors": "analytics-visitors",
|
|
@@ -1019,42 +1292,46 @@ const widgetEnum = {
|
|
|
1019
1292
|
"observability-edge-requests": "observability-edge-requests",
|
|
1020
1293
|
"observability-error-rate": "observability-error-rate",
|
|
1021
1294
|
"observability-function-invocations": "observability-function-invocations",
|
|
1022
|
-
online: "online",
|
|
1023
|
-
res: "res",
|
|
1024
1295
|
"speed-insights-cls": "speed-insights-cls",
|
|
1025
1296
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1026
1297
|
"speed-insights-res": "speed-insights-res"
|
|
1027
1298
|
};
|
|
1028
|
-
const
|
|
1299
|
+
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1029
1300
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1030
1301
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1031
1302
|
};
|
|
1032
|
-
const
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
SECURITY: "SECURITY",
|
|
1039
|
-
VIEWER: "VIEWER",
|
|
1040
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1303
|
+
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1304
|
+
basic: "basic",
|
|
1305
|
+
elastic: "elastic",
|
|
1306
|
+
enhanced: "enhanced",
|
|
1307
|
+
standard: "standard",
|
|
1308
|
+
turbo: "turbo"
|
|
1041
1309
|
};
|
|
1042
|
-
const
|
|
1310
|
+
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
1043
1311
|
cards: "cards",
|
|
1044
1312
|
list: "list"
|
|
1045
1313
|
};
|
|
1046
|
-
const
|
|
1314
|
+
const userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
1047
1315
|
closed: "closed",
|
|
1048
1316
|
open: "open"
|
|
1049
1317
|
};
|
|
1050
|
-
const
|
|
1318
|
+
const userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
1051
1319
|
closed: "closed",
|
|
1052
1320
|
open: "open"
|
|
1053
1321
|
};
|
|
1054
|
-
const
|
|
1055
|
-
|
|
1322
|
+
const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
1323
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
1324
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
1325
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1326
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1327
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1328
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1329
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1330
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1331
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1332
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1056
1333
|
};
|
|
1057
|
-
const
|
|
1334
|
+
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1058
1335
|
analyticsUsage: "analyticsUsage",
|
|
1059
1336
|
artifacts: "artifacts",
|
|
1060
1337
|
bandwidth: "bandwidth",
|
|
@@ -1095,7 +1372,7 @@ const blockedDueToOverageTypeEnum = {
|
|
|
1095
1372
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1096
1373
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1097
1374
|
};
|
|
1098
|
-
const
|
|
1375
|
+
const userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
1099
1376
|
analyticsUsage: "analyticsUsage",
|
|
1100
1377
|
artifacts: "artifacts",
|
|
1101
1378
|
bandwidth: "bandwidth",
|
|
@@ -1136,7 +1413,7 @@ const allocationEnum = {
|
|
|
1136
1413
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1137
1414
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1138
1415
|
};
|
|
1139
|
-
const
|
|
1416
|
+
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1140
1417
|
BILLING: "BILLING",
|
|
1141
1418
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1142
1419
|
DEVELOPER: "DEVELOPER",
|
|
@@ -1146,26 +1423,57 @@ const roleEnum = {
|
|
|
1146
1423
|
VIEWER: "VIEWER",
|
|
1147
1424
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1148
1425
|
};
|
|
1149
|
-
const
|
|
1150
|
-
|
|
1151
|
-
|
|
1426
|
+
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1427
|
+
BILLING: "BILLING",
|
|
1428
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1429
|
+
DEVELOPER: "DEVELOPER",
|
|
1430
|
+
MEMBER: "MEMBER",
|
|
1431
|
+
OWNER: "OWNER",
|
|
1432
|
+
SECURITY: "SECURITY",
|
|
1433
|
+
VIEWER: "VIEWER",
|
|
1434
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1435
|
+
};
|
|
1436
|
+
const userEventPayloadNewOwnerTeamsTeamPermissionsEnum = {
|
|
1437
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
1438
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
1439
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
1440
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
1441
|
+
ConnectorManager: "ConnectorManager",
|
|
1442
|
+
CreateProject: "CreateProject",
|
|
1443
|
+
EnvVariableManager: "EnvVariableManager",
|
|
1444
|
+
EnvironmentManager: "EnvironmentManager",
|
|
1445
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
1446
|
+
IntegrationManager: "IntegrationManager",
|
|
1447
|
+
OrgAdmin: "OrgAdmin",
|
|
1448
|
+
OrgViewer: "OrgViewer",
|
|
1449
|
+
UsageViewer: "UsageViewer",
|
|
1450
|
+
V0Builder: "V0Builder",
|
|
1451
|
+
V0Chatter: "V0Chatter",
|
|
1452
|
+
V0Viewer: "V0Viewer",
|
|
1453
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
1454
|
+
};
|
|
1455
|
+
const userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = {
|
|
1456
|
+
"account-update": "account-update",
|
|
1152
1457
|
bitbucket: "bitbucket",
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
emu: "emu",
|
|
1458
|
+
dsync: "dsync",
|
|
1459
|
+
feedback: "feedback",
|
|
1156
1460
|
github: "github",
|
|
1157
|
-
"github-webhook": "github-webhook",
|
|
1158
1461
|
gitlab: "gitlab",
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1462
|
+
import: "import",
|
|
1463
|
+
link: "link",
|
|
1464
|
+
mail: "mail",
|
|
1465
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1466
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1467
|
+
"nsnb-invite": "nsnb-invite",
|
|
1468
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1469
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1470
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1471
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1472
|
+
"organization-teams": "organization-teams",
|
|
1164
1473
|
saml: "saml",
|
|
1165
|
-
|
|
1166
|
-
"token-exchange-oidc": "token-exchange-oidc"
|
|
1474
|
+
teams: "teams"
|
|
1167
1475
|
};
|
|
1168
|
-
const
|
|
1476
|
+
const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
1169
1477
|
default: "default",
|
|
1170
1478
|
"default-force": "default-force",
|
|
1171
1479
|
off: "off",
|
|
@@ -1173,16 +1481,45 @@ const enablePreviewFeedbackEnum = {
|
|
|
1173
1481
|
on: "on",
|
|
1174
1482
|
"on-force": "on-force"
|
|
1175
1483
|
};
|
|
1176
|
-
const
|
|
1484
|
+
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1485
|
+
admin_override: "admin_override",
|
|
1486
|
+
hard_blocked: "hard_blocked",
|
|
1487
|
+
limits_exceeded: "limits_exceeded"
|
|
1488
|
+
};
|
|
1489
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
1490
|
+
admin_override: "admin_override",
|
|
1491
|
+
hard_blocked: "hard_blocked",
|
|
1492
|
+
limits_exceeded: "limits_exceeded"
|
|
1493
|
+
};
|
|
1494
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
1495
|
+
hard: "hard",
|
|
1496
|
+
soft: "soft"
|
|
1497
|
+
};
|
|
1498
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
1177
1499
|
admin_override: "admin_override",
|
|
1178
1500
|
hard_blocked: "hard_blocked",
|
|
1179
1501
|
limits_exceeded: "limits_exceeded"
|
|
1180
1502
|
};
|
|
1181
|
-
const
|
|
1503
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
1182
1504
|
hard: "hard",
|
|
1183
1505
|
soft: "soft"
|
|
1184
1506
|
};
|
|
1185
|
-
const
|
|
1507
|
+
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
1508
|
+
admin_override: "admin_override",
|
|
1509
|
+
hard_blocked: "hard_blocked",
|
|
1510
|
+
limits_exceeded: "limits_exceeded"
|
|
1511
|
+
};
|
|
1512
|
+
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
1513
|
+
admin_override: "admin_override",
|
|
1514
|
+
hard_blocked: "hard_blocked",
|
|
1515
|
+
limits_exceeded: "limits_exceeded"
|
|
1516
|
+
};
|
|
1517
|
+
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1518
|
+
admin_override: "admin_override",
|
|
1519
|
+
hard_blocked: "hard_blocked",
|
|
1520
|
+
limits_exceeded: "limits_exceeded"
|
|
1521
|
+
};
|
|
1522
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = {
|
|
1186
1523
|
analyticsUsage: "analyticsUsage",
|
|
1187
1524
|
artifacts: "artifacts",
|
|
1188
1525
|
bandwidth: "bandwidth",
|
|
@@ -1223,61 +1560,295 @@ const overageReasonEnum = {
|
|
|
1223
1560
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1224
1561
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1225
1562
|
};
|
|
1226
|
-
const
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
const methodEnum = {
|
|
1230
|
-
client_secret_basic: "client_secret_basic",
|
|
1231
|
-
client_secret_jwt: "client_secret_jwt",
|
|
1232
|
-
client_secret_post: "client_secret_post",
|
|
1233
|
-
none: "none",
|
|
1234
|
-
oidc_token: "oidc_token",
|
|
1235
|
-
private_key_jwt: "private_key_jwt"
|
|
1563
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = {
|
|
1564
|
+
admin_override: "admin_override",
|
|
1565
|
+
hard_blocked: "hard_blocked"
|
|
1236
1566
|
};
|
|
1237
|
-
const
|
|
1238
|
-
|
|
1239
|
-
|
|
1567
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = {
|
|
1568
|
+
analyticsUsage: "analyticsUsage",
|
|
1569
|
+
artifacts: "artifacts",
|
|
1570
|
+
bandwidth: "bandwidth",
|
|
1571
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1572
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1573
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1574
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1575
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1576
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1577
|
+
dataCacheRead: "dataCacheRead",
|
|
1578
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1579
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1580
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1581
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1582
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1583
|
+
edgeRequest: "edgeRequest",
|
|
1584
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1585
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1586
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1587
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1588
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1589
|
+
fluidDuration: "fluidDuration",
|
|
1590
|
+
functionDuration: "functionDuration",
|
|
1591
|
+
functionInvocation: "functionInvocation",
|
|
1592
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1593
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1594
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1595
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1596
|
+
monitoringMetric: "monitoringMetric",
|
|
1597
|
+
observabilityEvent: "observabilityEvent",
|
|
1598
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1599
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1600
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1601
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1602
|
+
sourceImages: "sourceImages",
|
|
1603
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1604
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1605
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1606
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1607
|
+
};
|
|
1608
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = {
|
|
1609
|
+
admin_override: "admin_override",
|
|
1610
|
+
hard_blocked: "hard_blocked"
|
|
1611
|
+
};
|
|
1612
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = {
|
|
1613
|
+
analyticsUsage: "analyticsUsage",
|
|
1614
|
+
artifacts: "artifacts",
|
|
1615
|
+
bandwidth: "bandwidth",
|
|
1616
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1617
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1618
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1619
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1620
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1621
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1622
|
+
dataCacheRead: "dataCacheRead",
|
|
1623
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1624
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1625
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1626
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1627
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1628
|
+
edgeRequest: "edgeRequest",
|
|
1629
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1630
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1631
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1632
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1633
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1634
|
+
fluidDuration: "fluidDuration",
|
|
1635
|
+
functionDuration: "functionDuration",
|
|
1636
|
+
functionInvocation: "functionInvocation",
|
|
1637
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1638
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1639
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1640
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1641
|
+
monitoringMetric: "monitoringMetric",
|
|
1642
|
+
observabilityEvent: "observabilityEvent",
|
|
1643
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1644
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1645
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1646
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1647
|
+
sourceImages: "sourceImages",
|
|
1648
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1649
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1650
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1651
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1652
|
+
};
|
|
1653
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = {
|
|
1654
|
+
admin_override: "admin_override",
|
|
1655
|
+
hard_blocked: "hard_blocked"
|
|
1656
|
+
};
|
|
1657
|
+
const userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = {
|
|
1658
|
+
admin_override: "admin_override",
|
|
1659
|
+
hard_blocked: "hard_blocked",
|
|
1660
|
+
limits_exceeded: "limits_exceeded"
|
|
1661
|
+
};
|
|
1662
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = {
|
|
1663
|
+
admin_override: "admin_override",
|
|
1664
|
+
hard_blocked: "hard_blocked",
|
|
1665
|
+
limits_exceeded: "limits_exceeded"
|
|
1666
|
+
};
|
|
1667
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = {
|
|
1668
|
+
admin_override: "admin_override",
|
|
1669
|
+
hard_blocked: "hard_blocked",
|
|
1670
|
+
limits_exceeded: "limits_exceeded"
|
|
1671
|
+
};
|
|
1672
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = {
|
|
1673
|
+
admin_override: "admin_override",
|
|
1674
|
+
hard_blocked: "hard_blocked",
|
|
1675
|
+
limits_exceeded: "limits_exceeded"
|
|
1676
|
+
};
|
|
1677
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = {
|
|
1678
|
+
admin_override: "admin_override",
|
|
1679
|
+
hard_blocked: "hard_blocked",
|
|
1680
|
+
limits_exceeded: "limits_exceeded"
|
|
1681
|
+
};
|
|
1682
|
+
const userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = {
|
|
1683
|
+
admin_override: "admin_override",
|
|
1684
|
+
hard_blocked: "hard_blocked",
|
|
1685
|
+
limits_exceeded: "limits_exceeded"
|
|
1686
|
+
};
|
|
1687
|
+
const userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = {
|
|
1688
|
+
admin_override: "admin_override",
|
|
1689
|
+
hard_blocked: "hard_blocked",
|
|
1690
|
+
limits_exceeded: "limits_exceeded"
|
|
1691
|
+
};
|
|
1692
|
+
const userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = {
|
|
1693
|
+
admin_override: "admin_override",
|
|
1694
|
+
hard_blocked: "hard_blocked",
|
|
1695
|
+
limits_exceeded: "limits_exceeded"
|
|
1696
|
+
};
|
|
1697
|
+
const userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
1698
|
+
admin_override: "admin_override",
|
|
1699
|
+
hard_blocked: "hard_blocked",
|
|
1700
|
+
limits_exceeded: "limits_exceeded"
|
|
1701
|
+
};
|
|
1702
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = {
|
|
1703
|
+
disabled: "disabled",
|
|
1704
|
+
enabled: "enabled"
|
|
1705
|
+
};
|
|
1706
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = {
|
|
1707
|
+
admin_removal: "admin_removal",
|
|
1708
|
+
passkey: "passkey",
|
|
1709
|
+
self_serve_recovery: "self_serve_recovery",
|
|
1710
|
+
totp: "totp",
|
|
1711
|
+
unknown: "unknown",
|
|
1712
|
+
user_disabled: "user_disabled"
|
|
1713
|
+
};
|
|
1714
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = {
|
|
1715
|
+
admin: "admin",
|
|
1716
|
+
user: "user"
|
|
1717
|
+
};
|
|
1718
|
+
const userEventPayloadQueryTypeEnum = {
|
|
1719
|
+
"data-edit": "data-edit",
|
|
1720
|
+
"data-view": "data-view",
|
|
1240
1721
|
schema: "schema",
|
|
1241
1722
|
user: "user"
|
|
1242
1723
|
};
|
|
1243
|
-
const
|
|
1244
|
-
|
|
1724
|
+
const userEventPayloadFactorsOriginEnum = {
|
|
1725
|
+
apple: "apple",
|
|
1726
|
+
bitbucket: "bitbucket",
|
|
1727
|
+
chatgpt: "chatgpt",
|
|
1728
|
+
email: "email",
|
|
1729
|
+
github: "github",
|
|
1730
|
+
gitlab: "gitlab",
|
|
1731
|
+
google: "google",
|
|
1732
|
+
otp: "otp",
|
|
1733
|
+
saml: "saml"
|
|
1734
|
+
};
|
|
1735
|
+
const userEventPayloadNextDefaultEnum = {
|
|
1736
|
+
BILLING: "BILLING",
|
|
1737
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1738
|
+
DEVELOPER: "DEVELOPER",
|
|
1739
|
+
MEMBER: "MEMBER",
|
|
1740
|
+
OWNER: "OWNER",
|
|
1741
|
+
SECURITY: "SECURITY",
|
|
1742
|
+
VIEWER: "VIEWER",
|
|
1743
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1245
1744
|
};
|
|
1246
|
-
const
|
|
1745
|
+
const userEventPayloadBillingPlanEnum = {
|
|
1247
1746
|
enterprise: "enterprise",
|
|
1248
1747
|
platform: "platform"
|
|
1249
1748
|
};
|
|
1250
|
-
const
|
|
1749
|
+
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1251
1750
|
all: "all",
|
|
1252
1751
|
preview: "preview"
|
|
1253
1752
|
};
|
|
1254
|
-
const
|
|
1753
|
+
const userEventPayloadPreviousNewResourceBlockingPolicyEnum = {
|
|
1255
1754
|
allow: "allow",
|
|
1256
1755
|
block: "block"
|
|
1257
1756
|
};
|
|
1258
|
-
const
|
|
1757
|
+
const userEventPayloadNextEnforcementScopeEnum = {
|
|
1259
1758
|
all: "all",
|
|
1260
1759
|
preview: "preview"
|
|
1261
1760
|
};
|
|
1262
|
-
const
|
|
1761
|
+
const userEventPayloadNextNewResourceBlockingPolicyEnum = {
|
|
1762
|
+
allow: "allow",
|
|
1763
|
+
block: "block"
|
|
1764
|
+
};
|
|
1765
|
+
const userEventPayloadApprovalScopeEnum = {
|
|
1766
|
+
all: "all",
|
|
1767
|
+
preview: "preview"
|
|
1768
|
+
};
|
|
1769
|
+
const userEventPayloadKindEnum = {
|
|
1263
1770
|
connectSrc: "connectSrc",
|
|
1264
1771
|
script: "script"
|
|
1265
1772
|
};
|
|
1266
|
-
const
|
|
1773
|
+
const userEventPayloadPreviousPassportDeploymentTypeEnum = {
|
|
1774
|
+
all: "all",
|
|
1775
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1776
|
+
preview: "preview",
|
|
1777
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1778
|
+
};
|
|
1779
|
+
const userEventPayloadNextPassportDeploymentTypeEnum = {
|
|
1267
1780
|
all: "all",
|
|
1268
1781
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1269
1782
|
preview: "preview",
|
|
1270
1783
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1271
1784
|
};
|
|
1272
|
-
const
|
|
1785
|
+
const roleEnum = {
|
|
1786
|
+
BILLING: "BILLING",
|
|
1787
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1788
|
+
DEVELOPER: "DEVELOPER",
|
|
1789
|
+
MEMBER: "MEMBER",
|
|
1790
|
+
OWNER: "OWNER",
|
|
1791
|
+
SECURITY: "SECURITY",
|
|
1792
|
+
VIEWER: "VIEWER",
|
|
1793
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1794
|
+
};
|
|
1795
|
+
const originEnum = {
|
|
1796
|
+
"account-update": "account-update",
|
|
1797
|
+
bitbucket: "bitbucket",
|
|
1798
|
+
dsync: "dsync",
|
|
1799
|
+
feedback: "feedback",
|
|
1800
|
+
github: "github",
|
|
1801
|
+
gitlab: "gitlab",
|
|
1802
|
+
import: "import",
|
|
1803
|
+
link: "link",
|
|
1804
|
+
mail: "mail",
|
|
1805
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1806
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1807
|
+
"nsnb-invite": "nsnb-invite",
|
|
1808
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1809
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1810
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1811
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1812
|
+
"organization-teams": "organization-teams",
|
|
1813
|
+
saml: "saml",
|
|
1814
|
+
teams: "teams"
|
|
1815
|
+
};
|
|
1816
|
+
const userEventPayloadWidgetEnum = {
|
|
1817
|
+
alert: "alert",
|
|
1818
|
+
"analytics-online": "analytics-online",
|
|
1819
|
+
"analytics-page-views": "analytics-page-views",
|
|
1820
|
+
"analytics-visitors": "analytics-visitors",
|
|
1821
|
+
"firewall-allowed": "firewall-allowed",
|
|
1822
|
+
"firewall-denied": "firewall-denied",
|
|
1823
|
+
"observability-alert": "observability-alert",
|
|
1824
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
1825
|
+
"observability-error-rate": "observability-error-rate",
|
|
1826
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
1827
|
+
online: "online",
|
|
1828
|
+
res: "res",
|
|
1829
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
1830
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
1831
|
+
"speed-insights-res": "speed-insights-res"
|
|
1832
|
+
};
|
|
1833
|
+
const userEventPayloadBuildQueueConfigurationEnum = {
|
|
1273
1834
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1274
1835
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1275
1836
|
};
|
|
1276
|
-
const
|
|
1837
|
+
const userEventPayloadOldBuildQueueConfigurationEnum = {
|
|
1277
1838
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1278
1839
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1279
1840
|
};
|
|
1280
|
-
const
|
|
1841
|
+
const userEventPayloadPreviousBranchMatcherTypeEnum = {
|
|
1842
|
+
endsWith: "endsWith",
|
|
1843
|
+
equals: "equals",
|
|
1844
|
+
startsWith: "startsWith"
|
|
1845
|
+
};
|
|
1846
|
+
const userEventPayloadNextBranchMatcherTypeEnum = {
|
|
1847
|
+
endsWith: "endsWith",
|
|
1848
|
+
equals: "equals",
|
|
1849
|
+
startsWith: "startsWith"
|
|
1850
|
+
};
|
|
1851
|
+
const userEventPayloadPreviousGitProviderEnum = {
|
|
1281
1852
|
bitbucket: "bitbucket",
|
|
1282
1853
|
"cursor-origin": "cursor-origin",
|
|
1283
1854
|
github: "github",
|
|
@@ -1286,96 +1857,265 @@ const gitProviderEnum = {
|
|
|
1286
1857
|
gitlab: "gitlab",
|
|
1287
1858
|
vercel: "vercel"
|
|
1288
1859
|
};
|
|
1289
|
-
const
|
|
1860
|
+
const userEventPayloadNextGitProviderEnum = {
|
|
1861
|
+
bitbucket: "bitbucket",
|
|
1862
|
+
"cursor-origin": "cursor-origin",
|
|
1863
|
+
github: "github",
|
|
1864
|
+
"github-custom-host": "github-custom-host",
|
|
1865
|
+
"github-limited": "github-limited",
|
|
1866
|
+
gitlab: "gitlab",
|
|
1867
|
+
vercel: "vercel"
|
|
1868
|
+
};
|
|
1869
|
+
const userEventPayloadGitProviderEnum = {
|
|
1870
|
+
bitbucket: "bitbucket",
|
|
1871
|
+
"cursor-origin": "cursor-origin",
|
|
1872
|
+
github: "github",
|
|
1873
|
+
"github-custom-host": "github-custom-host",
|
|
1874
|
+
"github-limited": "github-limited",
|
|
1875
|
+
gitlab: "gitlab",
|
|
1876
|
+
vercel: "vercel"
|
|
1877
|
+
};
|
|
1878
|
+
const userEventPayloadCreateDeploymentsEnum = {
|
|
1290
1879
|
disabled: "disabled",
|
|
1291
1880
|
enabled: "enabled"
|
|
1292
1881
|
};
|
|
1293
|
-
const
|
|
1882
|
+
const userEventPayloadProjectsRoleEnum = {
|
|
1883
|
+
ADMIN: "ADMIN",
|
|
1884
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1885
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1886
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1887
|
+
};
|
|
1888
|
+
const userEventPayloadProjectMembershipRoleEnum = {
|
|
1889
|
+
ADMIN: "ADMIN",
|
|
1890
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1891
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1892
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1893
|
+
};
|
|
1894
|
+
const userEventPayloadProjectRoleEnum = {
|
|
1895
|
+
ADMIN: "ADMIN",
|
|
1896
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1897
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1898
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1899
|
+
};
|
|
1900
|
+
const userEventPayloadRemovedMembershipRoleEnum = {
|
|
1901
|
+
ADMIN: "ADMIN",
|
|
1902
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1903
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1904
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1905
|
+
};
|
|
1906
|
+
const userEventPayloadProjectMembershipPreviousRoleEnum = {
|
|
1907
|
+
ADMIN: "ADMIN",
|
|
1908
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1909
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1910
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1911
|
+
};
|
|
1912
|
+
const userEventPayloadPasswordProtectionDeploymentTypeEnum = {
|
|
1913
|
+
all: "all",
|
|
1914
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1915
|
+
preview: "preview",
|
|
1916
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1917
|
+
};
|
|
1918
|
+
const userEventPayloadPasswordProtection = {
|
|
1919
|
+
all: "all",
|
|
1920
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1921
|
+
preview: "preview",
|
|
1922
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1923
|
+
};
|
|
1924
|
+
const userEventPayloadOldPasswordProtectionDeploymentTypeEnum = {
|
|
1925
|
+
all: "all",
|
|
1926
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1927
|
+
preview: "preview",
|
|
1928
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1929
|
+
};
|
|
1930
|
+
const userEventPayloadOldPasswordProtection = {
|
|
1931
|
+
all: "all",
|
|
1932
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1933
|
+
preview: "preview",
|
|
1934
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1935
|
+
};
|
|
1936
|
+
const userEventPayloadReasonCodeEnum = {
|
|
1294
1937
|
BACKOFFICE: "BACKOFFICE",
|
|
1295
1938
|
PUBLIC_API: "PUBLIC_API"
|
|
1296
1939
|
};
|
|
1297
|
-
const
|
|
1940
|
+
const userEventPayloadConsentEnum = {
|
|
1298
1941
|
granted: "granted",
|
|
1299
1942
|
refused: "refused"
|
|
1300
1943
|
};
|
|
1301
|
-
const
|
|
1944
|
+
const userEventPayloadPreviousIssuerModeEnum = {
|
|
1302
1945
|
global: "global",
|
|
1303
1946
|
team: "team"
|
|
1304
1947
|
};
|
|
1305
|
-
const
|
|
1948
|
+
const userEventPayloadNextIssuerModeEnum = {
|
|
1949
|
+
global: "global",
|
|
1950
|
+
team: "team"
|
|
1951
|
+
};
|
|
1952
|
+
const userEventPayloadSsoProtectionDeploymentTypeEnum = {
|
|
1953
|
+
all: "all",
|
|
1954
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1955
|
+
preview: "preview",
|
|
1956
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1957
|
+
};
|
|
1958
|
+
const userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1959
|
+
all: "all",
|
|
1960
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1961
|
+
preview: "preview",
|
|
1962
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1963
|
+
};
|
|
1964
|
+
const userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1965
|
+
all: "all",
|
|
1966
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1967
|
+
preview: "preview",
|
|
1968
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1969
|
+
};
|
|
1970
|
+
const userEventPayloadSsoProtection = {
|
|
1971
|
+
all: "all",
|
|
1972
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1973
|
+
preview: "preview",
|
|
1974
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1975
|
+
};
|
|
1976
|
+
const userEventPayloadOldSsoProtectionDeploymentTypeEnum = {
|
|
1977
|
+
all: "all",
|
|
1978
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1979
|
+
preview: "preview",
|
|
1980
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1981
|
+
};
|
|
1982
|
+
const userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1306
1983
|
all: "all",
|
|
1307
1984
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1308
1985
|
preview: "preview",
|
|
1309
1986
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1310
1987
|
};
|
|
1311
|
-
const
|
|
1988
|
+
const userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1312
1989
|
all: "all",
|
|
1313
1990
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1314
1991
|
preview: "preview",
|
|
1315
1992
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1316
1993
|
};
|
|
1317
|
-
const
|
|
1994
|
+
const userEventPayloadOldSsoProtection = {
|
|
1995
|
+
all: "all",
|
|
1996
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1997
|
+
preview: "preview",
|
|
1998
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1999
|
+
};
|
|
2000
|
+
const userEventPayloadTrustedIpsEnum = {
|
|
1318
2001
|
all: "all",
|
|
1319
2002
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1320
2003
|
preview: "preview",
|
|
1321
2004
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1322
2005
|
production: "production"
|
|
1323
2006
|
};
|
|
1324
|
-
const
|
|
2007
|
+
const userEventPayloadOldTrustedIpsEnum = {
|
|
1325
2008
|
all: "all",
|
|
1326
2009
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1327
2010
|
preview: "preview",
|
|
1328
2011
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1329
2012
|
production: "production"
|
|
1330
2013
|
};
|
|
1331
|
-
const
|
|
2014
|
+
const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
2015
|
+
flex: "flex",
|
|
2016
|
+
legacy: "legacy",
|
|
2017
|
+
platform: "platform",
|
|
2018
|
+
plus: "plus",
|
|
2019
|
+
unbundled: "unbundled"
|
|
2020
|
+
};
|
|
2021
|
+
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2022
|
+
flex: "flex",
|
|
1332
2023
|
legacy: "legacy",
|
|
1333
2024
|
platform: "platform",
|
|
1334
2025
|
plus: "plus",
|
|
1335
2026
|
unbundled: "unbundled"
|
|
1336
2027
|
};
|
|
1337
|
-
const
|
|
2028
|
+
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2029
|
+
flex: "flex",
|
|
2030
|
+
legacy: "legacy",
|
|
2031
|
+
platform: "platform",
|
|
2032
|
+
plus: "plus",
|
|
2033
|
+
unbundled: "unbundled"
|
|
2034
|
+
};
|
|
2035
|
+
const userEventPayloadStoreTypeEnum = {
|
|
2036
|
+
blob: "blob",
|
|
2037
|
+
"edge-config": "edge-config",
|
|
2038
|
+
integration: "integration",
|
|
1338
2039
|
postgres: "postgres",
|
|
1339
2040
|
redis: "redis"
|
|
1340
2041
|
};
|
|
1341
|
-
const
|
|
2042
|
+
const userEventPayloadAccessEnum = {
|
|
1342
2043
|
private: "private",
|
|
1343
2044
|
public: "public"
|
|
1344
2045
|
};
|
|
1345
|
-
const
|
|
2046
|
+
const userEventPayloadActorTypeEnum = {
|
|
2047
|
+
admin: "admin",
|
|
2048
|
+
user: "user"
|
|
2049
|
+
};
|
|
2050
|
+
const userEventPayloadPreviousScopeEnum = {
|
|
2051
|
+
all: "all",
|
|
2052
|
+
private: "private",
|
|
2053
|
+
public: "public",
|
|
2054
|
+
selected_repos: "selected_repos"
|
|
2055
|
+
};
|
|
2056
|
+
const userEventPayloadNextScopeEnum = {
|
|
2057
|
+
all: "all",
|
|
2058
|
+
private: "private",
|
|
2059
|
+
public: "public",
|
|
2060
|
+
selected_repos: "selected_repos"
|
|
2061
|
+
};
|
|
2062
|
+
const userEventPayloadPreviousEnum = {
|
|
1346
2063
|
basic: "basic",
|
|
1347
2064
|
elastic: "elastic",
|
|
1348
2065
|
enhanced: "enhanced",
|
|
1349
2066
|
standard: "standard",
|
|
1350
2067
|
turbo: "turbo"
|
|
1351
2068
|
};
|
|
1352
|
-
const
|
|
2069
|
+
const userEventPayloadNextEnum = {
|
|
1353
2070
|
basic: "basic",
|
|
1354
2071
|
elastic: "elastic",
|
|
1355
2072
|
enhanced: "enhanced",
|
|
1356
2073
|
standard: "standard",
|
|
1357
2074
|
turbo: "turbo"
|
|
1358
2075
|
};
|
|
1359
|
-
const
|
|
2076
|
+
const userEventPayloadReasonEnum = {
|
|
2077
|
+
"basic-floor": "basic-floor",
|
|
2078
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
2079
|
+
"enospc-failure": "enospc-failure",
|
|
2080
|
+
"enterprise-floor": "enterprise-floor",
|
|
2081
|
+
"high-peak-disk": "high-peak-disk",
|
|
2082
|
+
"high-peak-memory": "high-peak-memory",
|
|
2083
|
+
"long-build-duration": "long-build-duration",
|
|
2084
|
+
"oom-failure": "oom-failure",
|
|
2085
|
+
"plan-change": "plan-change",
|
|
2086
|
+
"short-build-duration": "short-build-duration",
|
|
2087
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
2088
|
+
};
|
|
2089
|
+
const userEventPayloadEnvironmentEnum = {
|
|
1360
2090
|
preview: "preview",
|
|
1361
2091
|
production: "production"
|
|
1362
2092
|
};
|
|
1363
|
-
const
|
|
2093
|
+
const userEventPayloadEnabledEnum = {
|
|
1364
2094
|
default: "default",
|
|
1365
2095
|
off: "off",
|
|
1366
2096
|
on: "on"
|
|
1367
2097
|
};
|
|
1368
|
-
const
|
|
2098
|
+
const userEventPayloadRoleEnum = {
|
|
2099
|
+
BILLING: "BILLING",
|
|
2100
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2101
|
+
DEVELOPER: "DEVELOPER",
|
|
2102
|
+
MEMBER: "MEMBER",
|
|
2103
|
+
OWNER: "OWNER",
|
|
2104
|
+
SECURITY: "SECURITY",
|
|
2105
|
+
VIEWER: "VIEWER",
|
|
2106
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2107
|
+
};
|
|
2108
|
+
const userEventPayloadPreviousPlanEnum = {
|
|
1369
2109
|
enterprise: "enterprise",
|
|
1370
2110
|
hobby: "hobby",
|
|
1371
2111
|
pro: "pro"
|
|
1372
2112
|
};
|
|
1373
|
-
const
|
|
2113
|
+
const userEventPayloadNewPlanEnum = {
|
|
1374
2114
|
enterprise: "enterprise",
|
|
1375
2115
|
hobby: "hobby",
|
|
1376
2116
|
pro: "pro"
|
|
1377
2117
|
};
|
|
1378
|
-
const
|
|
2118
|
+
const userEventPayloadSourceEnum = {
|
|
1379
2119
|
"account-update": "account-update",
|
|
1380
2120
|
bitbucket: "bitbucket",
|
|
1381
2121
|
dsync: "dsync",
|
|
@@ -1396,39 +2136,145 @@ const sourceEnum = {
|
|
|
1396
2136
|
saml: "saml",
|
|
1397
2137
|
teams: "teams"
|
|
1398
2138
|
};
|
|
1399
|
-
const
|
|
2139
|
+
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2140
|
+
BILLING: "BILLING",
|
|
2141
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2142
|
+
DEVELOPER: "DEVELOPER",
|
|
2143
|
+
MEMBER: "MEMBER",
|
|
2144
|
+
OWNER: "OWNER",
|
|
2145
|
+
SECURITY: "SECURITY",
|
|
2146
|
+
VIEWER: "VIEWER",
|
|
2147
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2148
|
+
};
|
|
2149
|
+
const userEventPayloadTeamRolesEnum = {
|
|
2150
|
+
BILLING: "BILLING",
|
|
2151
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2152
|
+
DEVELOPER: "DEVELOPER",
|
|
2153
|
+
MEMBER: "MEMBER",
|
|
2154
|
+
OWNER: "OWNER",
|
|
2155
|
+
SECURITY: "SECURITY",
|
|
2156
|
+
VIEWER: "VIEWER",
|
|
2157
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2158
|
+
};
|
|
2159
|
+
const userEventPayloadPreviousTeamPermissionsEnum = {
|
|
2160
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2161
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2162
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2163
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2164
|
+
ConnectorManager: "ConnectorManager",
|
|
2165
|
+
CreateProject: "CreateProject",
|
|
2166
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2167
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2168
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2169
|
+
IntegrationManager: "IntegrationManager",
|
|
2170
|
+
OrgAdmin: "OrgAdmin",
|
|
2171
|
+
OrgViewer: "OrgViewer",
|
|
2172
|
+
UsageViewer: "UsageViewer",
|
|
2173
|
+
V0Builder: "V0Builder",
|
|
2174
|
+
V0Chatter: "V0Chatter",
|
|
2175
|
+
V0Viewer: "V0Viewer",
|
|
2176
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2177
|
+
};
|
|
2178
|
+
const userEventPayloadTeamPermissionsEnum = {
|
|
2179
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2180
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2181
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2182
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2183
|
+
ConnectorManager: "ConnectorManager",
|
|
2184
|
+
CreateProject: "CreateProject",
|
|
2185
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2186
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2187
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2188
|
+
IntegrationManager: "IntegrationManager",
|
|
2189
|
+
OrgAdmin: "OrgAdmin",
|
|
2190
|
+
OrgViewer: "OrgViewer",
|
|
2191
|
+
UsageViewer: "UsageViewer",
|
|
2192
|
+
V0Builder: "V0Builder",
|
|
2193
|
+
V0Chatter: "V0Chatter",
|
|
2194
|
+
V0Viewer: "V0Viewer",
|
|
2195
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2196
|
+
};
|
|
2197
|
+
const userEventPayloadPlanEnum = {
|
|
2198
|
+
enterprise: "enterprise",
|
|
2199
|
+
hobby: "hobby",
|
|
2200
|
+
pro: "pro"
|
|
2201
|
+
};
|
|
2202
|
+
const userEventPayloadDecisionEnum = {
|
|
1400
2203
|
keep_on: "keep_on",
|
|
1401
2204
|
turn_off: "turn_off"
|
|
1402
2205
|
};
|
|
1403
|
-
const
|
|
2206
|
+
const userEventPayloadScopeEnum = {
|
|
2207
|
+
project: "project",
|
|
2208
|
+
team: "team",
|
|
2209
|
+
user: "user"
|
|
2210
|
+
};
|
|
2211
|
+
const userEventPayloadSamplingEnvEnum = {
|
|
1404
2212
|
preview: "preview",
|
|
1405
2213
|
production: "production"
|
|
1406
2214
|
};
|
|
1407
|
-
const
|
|
2215
|
+
const userEventPayloadMethodEnum = {
|
|
2216
|
+
passkey: "passkey",
|
|
2217
|
+
self_serve_recovery: "self_serve_recovery",
|
|
2218
|
+
totp: "totp",
|
|
2219
|
+
user_disabled: "user_disabled"
|
|
2220
|
+
};
|
|
2221
|
+
const userEventPayloadAllowedMethodsEnum = {
|
|
2222
|
+
"recovery-code": "recovery-code",
|
|
2223
|
+
totp: "totp",
|
|
2224
|
+
webauthn: "webauthn"
|
|
2225
|
+
};
|
|
2226
|
+
const userEventPayloadContextEnum = {
|
|
1408
2227
|
login: "login",
|
|
1409
2228
|
sudo: "sudo"
|
|
1410
2229
|
};
|
|
1411
|
-
const
|
|
2230
|
+
const userEventPayloadDecisionBasisEnum = {
|
|
1412
2231
|
gmail: "gmail",
|
|
1413
2232
|
none: "none",
|
|
1414
2233
|
"workspace-mx": "workspace-mx"
|
|
1415
2234
|
};
|
|
1416
|
-
const
|
|
2235
|
+
const userEventPayloadDecisionMxOutcomeEnum = {
|
|
1417
2236
|
google: "google",
|
|
1418
2237
|
"lookup-error": "lookup-error",
|
|
1419
2238
|
"non-google": "non-google",
|
|
1420
2239
|
"not-checked": "not-checked"
|
|
1421
2240
|
};
|
|
1422
|
-
const
|
|
2241
|
+
const userEventPayloadTierEnum = {
|
|
1423
2242
|
plus: "plus",
|
|
1424
2243
|
pro: "pro"
|
|
1425
2244
|
};
|
|
1426
|
-
const
|
|
1427
|
-
authorization_code: "authorization_code",
|
|
1428
|
-
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
1429
|
-
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2245
|
+
const userEventPayloadGrantTypeEnum = {
|
|
2246
|
+
authorization_code: "authorization_code",
|
|
2247
|
+
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
2248
|
+
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2249
|
+
};
|
|
2250
|
+
const userEventPayloadAuthMethodEnum = {
|
|
2251
|
+
app: "app",
|
|
2252
|
+
apple: "apple",
|
|
2253
|
+
bitbucket: "bitbucket",
|
|
2254
|
+
chatgpt: "chatgpt",
|
|
2255
|
+
email: "email",
|
|
2256
|
+
emu: "emu",
|
|
2257
|
+
github: "github",
|
|
2258
|
+
"github-webhook": "github-webhook",
|
|
2259
|
+
gitlab: "gitlab",
|
|
2260
|
+
google: "google",
|
|
2261
|
+
invite: "invite",
|
|
2262
|
+
manual: "manual",
|
|
2263
|
+
otp: "otp",
|
|
2264
|
+
passkey: "passkey",
|
|
2265
|
+
saml: "saml",
|
|
2266
|
+
sms: "sms",
|
|
2267
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
2268
|
+
};
|
|
2269
|
+
const userEventPayloadAppClientAuthenticationUsedMethodEnum = {
|
|
2270
|
+
client_secret_basic: "client_secret_basic",
|
|
2271
|
+
client_secret_jwt: "client_secret_jwt",
|
|
2272
|
+
client_secret_post: "client_secret_post",
|
|
2273
|
+
none: "none",
|
|
2274
|
+
oidc_token: "oidc_token",
|
|
2275
|
+
private_key_jwt: "private_key_jwt"
|
|
1430
2276
|
};
|
|
1431
|
-
const
|
|
2277
|
+
const userEventPayloadOriginEnum = {
|
|
1432
2278
|
app: "app",
|
|
1433
2279
|
apple: "apple",
|
|
1434
2280
|
bitbucket: "bitbucket",
|
|
@@ -1447,13 +2293,7 @@ const authMethodEnum = {
|
|
|
1447
2293
|
sms: "sms",
|
|
1448
2294
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
1449
2295
|
};
|
|
1450
|
-
const
|
|
1451
|
-
vcp_: "vcp_"
|
|
1452
|
-
};
|
|
1453
|
-
const refreshTokenPrefixEnum = {
|
|
1454
|
-
vcr_: "vcr_"
|
|
1455
|
-
};
|
|
1456
|
-
const projectScopeEnum = {
|
|
2296
|
+
const userEventPayloadProjectScopeEnum = {
|
|
1457
2297
|
account: "account",
|
|
1458
2298
|
"project-only": "project-only"
|
|
1459
2299
|
};
|
|
@@ -1485,10 +2325,12 @@ const listEventTypeNameEnum = {
|
|
|
1485
2325
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
1486
2326
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
1487
2327
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
2328
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
1488
2329
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
1489
2330
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
1490
2331
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
1491
2332
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2333
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
1492
2334
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
1493
2335
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
1494
2336
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -1622,6 +2464,7 @@ const listEventTypeNameEnum = {
|
|
|
1622
2464
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
1623
2465
|
"domain-delegated": "domain-delegated",
|
|
1624
2466
|
"domain-delete": "domain-delete",
|
|
2467
|
+
"domain-ech-change": "domain-ech-change",
|
|
1625
2468
|
"domain-move-in": "domain-move-in",
|
|
1626
2469
|
"domain-move-out": "domain-move-out",
|
|
1627
2470
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -1675,6 +2518,10 @@ const listEventTypeNameEnum = {
|
|
|
1675
2518
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
1676
2519
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
1677
2520
|
"env-variable-rotated": "env-variable-rotated",
|
|
2521
|
+
"experiment-created": "experiment-created",
|
|
2522
|
+
"experiment-deleted": "experiment-deleted",
|
|
2523
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
2524
|
+
"experiment-updated": "experiment-updated",
|
|
1678
2525
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
1679
2526
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
1680
2527
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -1698,7 +2545,19 @@ const listEventTypeNameEnum = {
|
|
|
1698
2545
|
"flags-transferred": "flags-transferred",
|
|
1699
2546
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1700
2547
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2548
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
2549
|
+
"global-config-created": "global-config-created",
|
|
2550
|
+
"global-config-deleted": "global-config-deleted",
|
|
2551
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
2552
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
2553
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
2554
|
+
"global-config-token-created": "global-config-token-created",
|
|
2555
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
2556
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
2557
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
2558
|
+
"global-config-updated": "global-config-updated",
|
|
1701
2559
|
"instant-rollback-created": "instant-rollback-created",
|
|
2560
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
1702
2561
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1703
2562
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1704
2563
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -1902,6 +2761,7 @@ const listEventTypeNameEnum = {
|
|
|
1902
2761
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
1903
2762
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
1904
2763
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2764
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
1905
2765
|
"project-sso-protection": "project-sso-protection",
|
|
1906
2766
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
1907
2767
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2025,6 +2885,8 @@ const listEventTypeNameEnum = {
|
|
|
2025
2885
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2026
2886
|
"tracing-configured": "tracing-configured",
|
|
2027
2887
|
"tracing-disabled": "tracing-disabled",
|
|
2888
|
+
"tracing-paused": "tracing-paused",
|
|
2889
|
+
"tracing-resumed": "tracing-resumed",
|
|
2028
2890
|
"unlink-login-connection": "unlink-login-connection",
|
|
2029
2891
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2030
2892
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2035,6 +2897,8 @@ const listEventTypeNameEnum = {
|
|
|
2035
2897
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2036
2898
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2037
2899
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2900
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2901
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2038
2902
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2039
2903
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2040
2904
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2145,10 +3009,12 @@ const listEventTypeReplacedByEnum = {
|
|
|
2145
3009
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
2146
3010
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
2147
3011
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
3012
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
2148
3013
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
2149
3014
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
2150
3015
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
2151
3016
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
3017
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2152
3018
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2153
3019
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2154
3020
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -2282,6 +3148,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2282
3148
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
2283
3149
|
"domain-delegated": "domain-delegated",
|
|
2284
3150
|
"domain-delete": "domain-delete",
|
|
3151
|
+
"domain-ech-change": "domain-ech-change",
|
|
2285
3152
|
"domain-move-in": "domain-move-in",
|
|
2286
3153
|
"domain-move-out": "domain-move-out",
|
|
2287
3154
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -2335,6 +3202,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
2335
3202
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
2336
3203
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
2337
3204
|
"env-variable-rotated": "env-variable-rotated",
|
|
3205
|
+
"experiment-created": "experiment-created",
|
|
3206
|
+
"experiment-deleted": "experiment-deleted",
|
|
3207
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
3208
|
+
"experiment-updated": "experiment-updated",
|
|
2338
3209
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
2339
3210
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
2340
3211
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -2358,7 +3229,19 @@ const listEventTypeReplacedByEnum = {
|
|
|
2358
3229
|
"flags-transferred": "flags-transferred",
|
|
2359
3230
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2360
3231
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3232
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
3233
|
+
"global-config-created": "global-config-created",
|
|
3234
|
+
"global-config-deleted": "global-config-deleted",
|
|
3235
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
3236
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
3237
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
3238
|
+
"global-config-token-created": "global-config-token-created",
|
|
3239
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
3240
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
3241
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
3242
|
+
"global-config-updated": "global-config-updated",
|
|
2361
3243
|
"instant-rollback-created": "instant-rollback-created",
|
|
3244
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
2362
3245
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2363
3246
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2364
3247
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -2562,6 +3445,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2562
3445
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2563
3446
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2564
3447
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
3448
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2565
3449
|
"project-sso-protection": "project-sso-protection",
|
|
2566
3450
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
2567
3451
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2685,6 +3569,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2685
3569
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2686
3570
|
"tracing-configured": "tracing-configured",
|
|
2687
3571
|
"tracing-disabled": "tracing-disabled",
|
|
3572
|
+
"tracing-paused": "tracing-paused",
|
|
3573
|
+
"tracing-resumed": "tracing-resumed",
|
|
2688
3574
|
"unlink-login-connection": "unlink-login-connection",
|
|
2689
3575
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2690
3576
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2695,6 +3581,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2695
3581
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2696
3582
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2697
3583
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
3584
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
3585
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2698
3586
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2699
3587
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2700
3588
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2752,40 +3640,34 @@ const listEventTypeReplacedByEnum = {
|
|
|
2752
3640
|
"webhook-updated": "webhook-updated",
|
|
2753
3641
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2754
3642
|
};
|
|
2755
|
-
const
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
const flagExperimentAllocationUnitEnum = {
|
|
2780
|
-
cookieId: "cookieId",
|
|
2781
|
-
userId: "userId",
|
|
2782
|
-
visitorId: "visitorId"
|
|
3643
|
+
const listEventTypesResponseCategoriesNameEnum = {
|
|
3644
|
+
account: "account",
|
|
3645
|
+
ai: "ai",
|
|
3646
|
+
"ai-gateway": "ai-gateway",
|
|
3647
|
+
billing: "billing",
|
|
3648
|
+
connect: "connect",
|
|
3649
|
+
deployment: "deployment",
|
|
3650
|
+
domain: "domain",
|
|
3651
|
+
edge: "edge",
|
|
3652
|
+
"env-variable": "env-variable",
|
|
3653
|
+
"feature-flags": "feature-flags",
|
|
3654
|
+
firewall: "firewall",
|
|
3655
|
+
integration: "integration",
|
|
3656
|
+
microfrontends: "microfrontends",
|
|
3657
|
+
network: "network",
|
|
3658
|
+
observability: "observability",
|
|
3659
|
+
other: "other",
|
|
3660
|
+
project: "project",
|
|
3661
|
+
security: "security",
|
|
3662
|
+
storage: "storage",
|
|
3663
|
+
team: "team",
|
|
3664
|
+
v0: "v0",
|
|
3665
|
+
"vercel-app": "vercel-app",
|
|
3666
|
+
workflow: "workflow"
|
|
2783
3667
|
};
|
|
2784
|
-
const
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
paused: "paused",
|
|
2788
|
-
running: "running"
|
|
3668
|
+
const typeEnum = {
|
|
3669
|
+
list: "list",
|
|
3670
|
+
"list/inline": "list/inline"
|
|
2789
3671
|
};
|
|
2790
3672
|
const cmpEnum = {
|
|
2791
3673
|
after: "after",
|
|
@@ -2815,12 +3697,6 @@ const flagStateEnum = {
|
|
|
2815
3697
|
active: "active",
|
|
2816
3698
|
archived: "archived"
|
|
2817
3699
|
};
|
|
2818
|
-
const flagTypeNameEnum = {
|
|
2819
|
-
flag: "flag"
|
|
2820
|
-
};
|
|
2821
|
-
const marketplaceFlagTypeNameEnum = {
|
|
2822
|
-
marketplaceFlag: "marketplaceFlag"
|
|
2823
|
-
};
|
|
2824
3700
|
const marketplaceFlagStateEnum = {
|
|
2825
3701
|
active: "active",
|
|
2826
3702
|
archived: "archived"
|
|
@@ -2829,8 +3705,31 @@ const marketplaceFlagCategoryEnum = {
|
|
|
2829
3705
|
experiment: "experiment",
|
|
2830
3706
|
flag: "flag"
|
|
2831
3707
|
};
|
|
2832
|
-
const
|
|
2833
|
-
|
|
3708
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3709
|
+
list: "list",
|
|
3710
|
+
"list/inline": "list/inline"
|
|
3711
|
+
};
|
|
3712
|
+
const segmentDataRulesConditionsRhs = {
|
|
3713
|
+
false: false,
|
|
3714
|
+
true: true
|
|
3715
|
+
};
|
|
3716
|
+
const segmentDataRulesConditionsCmpEnum = {
|
|
3717
|
+
after: "after",
|
|
3718
|
+
before: "before",
|
|
3719
|
+
contains: "contains",
|
|
3720
|
+
containsAllOf: "containsAllOf",
|
|
3721
|
+
containsAnyOf: "containsAnyOf",
|
|
3722
|
+
containsNoneOf: "containsNoneOf",
|
|
3723
|
+
endsWith: "endsWith",
|
|
3724
|
+
eq: "eq",
|
|
3725
|
+
ex: "ex",
|
|
3726
|
+
gt: "gt",
|
|
3727
|
+
gte: "gte",
|
|
3728
|
+
lt: "lt",
|
|
3729
|
+
lte: "lte",
|
|
3730
|
+
oneOf: "oneOf",
|
|
3731
|
+
regex: "regex",
|
|
3732
|
+
startsWith: "startsWith"
|
|
2834
3733
|
};
|
|
2835
3734
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
2836
3735
|
client: "client",
|
|
@@ -2849,6 +3748,27 @@ const namedSandboxStatusEnum = {
|
|
|
2849
3748
|
stopped: "stopped",
|
|
2850
3749
|
stopping: "stopping"
|
|
2851
3750
|
};
|
|
3751
|
+
const namedSandboxFailoverRegionsEnum = {
|
|
3752
|
+
arn1: "arn1",
|
|
3753
|
+
bom1: "bom1",
|
|
3754
|
+
cdg1: "cdg1",
|
|
3755
|
+
cle1: "cle1",
|
|
3756
|
+
cpt1: "cpt1",
|
|
3757
|
+
dub1: "dub1",
|
|
3758
|
+
fra1: "fra1",
|
|
3759
|
+
gru1: "gru1",
|
|
3760
|
+
hkg1: "hkg1",
|
|
3761
|
+
hnd1: "hnd1",
|
|
3762
|
+
iad1: "iad1",
|
|
3763
|
+
icn1: "icn1",
|
|
3764
|
+
kix1: "kix1",
|
|
3765
|
+
lhr1: "lhr1",
|
|
3766
|
+
pdx1: "pdx1",
|
|
3767
|
+
sfo1: "sfo1",
|
|
3768
|
+
sin1: "sin1",
|
|
3769
|
+
syd1: "syd1",
|
|
3770
|
+
yul1: "yul1"
|
|
3771
|
+
};
|
|
2852
3772
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
2853
3773
|
"allow-all": "allow-all",
|
|
2854
3774
|
custom: "custom",
|
|
@@ -2976,6 +3896,10 @@ const teamResourceConfigBuildMachineDefaultEnum = {
|
|
|
2976
3896
|
standard: "standard",
|
|
2977
3897
|
turbo: "turbo"
|
|
2978
3898
|
};
|
|
3899
|
+
const teamDisableHardAutoBlocks = {
|
|
3900
|
+
false: false,
|
|
3901
|
+
true: true
|
|
3902
|
+
};
|
|
2979
3903
|
const teamDefaultPassportDeploymentTypeEnum = {
|
|
2980
3904
|
all: "all",
|
|
2981
3905
|
all_except_custom_domains: "all_except_custom_domains",
|
|
@@ -3018,7 +3942,23 @@ const teamNsnbConfigPreferenceEnum = {
|
|
|
3018
3942
|
block: "block",
|
|
3019
3943
|
"manual-approval": "manual-approval"
|
|
3020
3944
|
};
|
|
3021
|
-
const
|
|
3945
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
3946
|
+
bitbucket: "bitbucket",
|
|
3947
|
+
github: "github"
|
|
3948
|
+
};
|
|
3949
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
3950
|
+
preview: "preview",
|
|
3951
|
+
production: "production"
|
|
3952
|
+
};
|
|
3953
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
3954
|
+
cli: "cli",
|
|
3955
|
+
"deploy-hook": "deploy-hook",
|
|
3956
|
+
git: "git",
|
|
3957
|
+
integration: "integration",
|
|
3958
|
+
"rest-api": "rest-api",
|
|
3959
|
+
v0: "v0"
|
|
3960
|
+
};
|
|
3961
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
3022
3962
|
preview: "preview",
|
|
3023
3963
|
production: "production"
|
|
3024
3964
|
};
|
|
@@ -3155,6 +4095,32 @@ const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
|
3155
4095
|
saml: "saml",
|
|
3156
4096
|
teams: "teams"
|
|
3157
4097
|
};
|
|
4098
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4099
|
+
"email-otp": "email-otp",
|
|
4100
|
+
otp: "otp",
|
|
4101
|
+
"recovery-code": "recovery-code",
|
|
4102
|
+
totp: "totp",
|
|
4103
|
+
webauthn: "webauthn"
|
|
4104
|
+
};
|
|
4105
|
+
const authTokenScopesOriginEnum = {
|
|
4106
|
+
app: "app",
|
|
4107
|
+
apple: "apple",
|
|
4108
|
+
bitbucket: "bitbucket",
|
|
4109
|
+
chatgpt: "chatgpt",
|
|
4110
|
+
email: "email",
|
|
4111
|
+
emu: "emu",
|
|
4112
|
+
github: "github",
|
|
4113
|
+
"github-webhook": "github-webhook",
|
|
4114
|
+
gitlab: "gitlab",
|
|
4115
|
+
google: "google",
|
|
4116
|
+
invite: "invite",
|
|
4117
|
+
manual: "manual",
|
|
4118
|
+
otp: "otp",
|
|
4119
|
+
passkey: "passkey",
|
|
4120
|
+
saml: "saml",
|
|
4121
|
+
sms: "sms",
|
|
4122
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
4123
|
+
};
|
|
3158
4124
|
const authUserSoftBlockReasonEnum = {
|
|
3159
4125
|
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
3160
4126
|
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
@@ -3208,10 +4174,63 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
3208
4174
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
3209
4175
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
3210
4176
|
};
|
|
4177
|
+
const authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
4178
|
+
analyticsUsage: "analyticsUsage",
|
|
4179
|
+
artifacts: "artifacts",
|
|
4180
|
+
bandwidth: "bandwidth",
|
|
4181
|
+
blobDataTransfer: "blobDataTransfer",
|
|
4182
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
4183
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
4184
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
4185
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
4186
|
+
connectDataTransfer: "connectDataTransfer",
|
|
4187
|
+
dataCacheRead: "dataCacheRead",
|
|
4188
|
+
dataCacheWrite: "dataCacheWrite",
|
|
4189
|
+
edgeConfigRead: "edgeConfigRead",
|
|
4190
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
4191
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
4192
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
4193
|
+
edgeRequest: "edgeRequest",
|
|
4194
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
4195
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
4196
|
+
fastDataTransfer: "fastDataTransfer",
|
|
4197
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
4198
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
4199
|
+
fluidDuration: "fluidDuration",
|
|
4200
|
+
functionDuration: "functionDuration",
|
|
4201
|
+
functionInvocation: "functionInvocation",
|
|
4202
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
4203
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
4204
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
4205
|
+
logDrainsVolume: "logDrainsVolume",
|
|
4206
|
+
monitoringMetric: "monitoringMetric",
|
|
4207
|
+
observabilityEvent: "observabilityEvent",
|
|
4208
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
4209
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
4210
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
4211
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
4212
|
+
sourceImages: "sourceImages",
|
|
4213
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
4214
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
4215
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4216
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4217
|
+
};
|
|
3211
4218
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
3212
4219
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
3213
4220
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
3214
4221
|
};
|
|
4222
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4223
|
+
cards: "cards",
|
|
4224
|
+
list: "list"
|
|
4225
|
+
};
|
|
4226
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4227
|
+
closed: "closed",
|
|
4228
|
+
open: "open"
|
|
4229
|
+
};
|
|
4230
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4231
|
+
closed: "closed",
|
|
4232
|
+
open: "open"
|
|
4233
|
+
};
|
|
3215
4234
|
const authUserImportFlowGitProviderEnum = {
|
|
3216
4235
|
bitbucket: "bitbucket",
|
|
3217
4236
|
"cursor-origin": "cursor-origin",
|
|
@@ -3221,16 +4240,21 @@ const authUserImportFlowGitProviderEnum = {
|
|
|
3221
4240
|
gitlab: "gitlab",
|
|
3222
4241
|
vercel: "vercel"
|
|
3223
4242
|
};
|
|
3224
|
-
const
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
4243
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4244
|
+
admin_override: "admin_override",
|
|
4245
|
+
hard_blocked: "hard_blocked",
|
|
4246
|
+
limits_exceeded: "limits_exceeded"
|
|
3228
4247
|
};
|
|
3229
4248
|
const vcrImageListItemKindEnum = {
|
|
3230
4249
|
attestation: "attestation",
|
|
3231
4250
|
index: "index",
|
|
3232
4251
|
manifest: "manifest"
|
|
3233
4252
|
};
|
|
4253
|
+
const vcrImageListItemStatusEnum = {
|
|
4254
|
+
preparing: "preparing",
|
|
4255
|
+
ready: "ready",
|
|
4256
|
+
unoptimized: "unoptimized"
|
|
4257
|
+
};
|
|
3234
4258
|
const vcrTagKindEnum = {
|
|
3235
4259
|
attestation: "attestation",
|
|
3236
4260
|
index: "index",
|
|
@@ -3241,7 +4265,7 @@ const vcrTagStatusEnum = {
|
|
|
3241
4265
|
ready: "ready",
|
|
3242
4266
|
unoptimized: "unoptimized"
|
|
3243
4267
|
};
|
|
3244
|
-
const
|
|
4268
|
+
const vcrImageLayerOperationEnum = {
|
|
3245
4269
|
ADD: "ADD",
|
|
3246
4270
|
ARG: "ARG",
|
|
3247
4271
|
CMD: "CMD",
|
|
@@ -3261,16 +4285,33 @@ const operationEnum = {
|
|
|
3261
4285
|
VOLUME: "VOLUME",
|
|
3262
4286
|
WORKDIR: "WORKDIR"
|
|
3263
4287
|
};
|
|
3264
|
-
const
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
4288
|
+
const vcrImageLayerTypeEnum = {
|
|
4289
|
+
ADD: "ADD",
|
|
4290
|
+
ARG: "ARG",
|
|
4291
|
+
CMD: "CMD",
|
|
4292
|
+
COPY: "COPY",
|
|
4293
|
+
ENTRYPOINT: "ENTRYPOINT",
|
|
4294
|
+
EXPOSE: "EXPOSE",
|
|
4295
|
+
HEALTHCHECK: "HEALTHCHECK",
|
|
4296
|
+
LABEL: "LABEL",
|
|
4297
|
+
ONBUILD: "ONBUILD",
|
|
4298
|
+
SHELL: "SHELL",
|
|
4299
|
+
STOPSIGNAL: "STOPSIGNAL",
|
|
4300
|
+
UNKNOWN: "UNKNOWN",
|
|
4301
|
+
USER: "USER",
|
|
4302
|
+
VOLUME: "VOLUME",
|
|
4303
|
+
WORKDIR: "WORKDIR"
|
|
3268
4304
|
};
|
|
3269
4305
|
const vcrImageDetailKindEnum = {
|
|
3270
4306
|
attestation: "attestation",
|
|
3271
4307
|
index: "index",
|
|
3272
4308
|
manifest: "manifest"
|
|
3273
4309
|
};
|
|
4310
|
+
const vcrImageDetailStatusEnum = {
|
|
4311
|
+
preparing: "preparing",
|
|
4312
|
+
ready: "ready",
|
|
4313
|
+
unoptimized: "unoptimized"
|
|
4314
|
+
};
|
|
3274
4315
|
const fileTreeTypeEnum = {
|
|
3275
4316
|
directory: "directory",
|
|
3276
4317
|
file: "file",
|
|
@@ -3279,5 +4320,205 @@ const fileTreeTypeEnum = {
|
|
|
3279
4320
|
middleware: "middleware",
|
|
3280
4321
|
symlink: "symlink"
|
|
3281
4322
|
};
|
|
4323
|
+
const listAiGatewayRulesIncludeDisabled = {
|
|
4324
|
+
true: "true",
|
|
4325
|
+
false: "false"
|
|
4326
|
+
};
|
|
4327
|
+
const getRedirectsSortBy = {
|
|
4328
|
+
source: "source",
|
|
4329
|
+
destination: "destination",
|
|
4330
|
+
statusCode: "statusCode"
|
|
4331
|
+
};
|
|
4332
|
+
const getRedirectsSortOrder = {
|
|
4333
|
+
asc: "asc",
|
|
4334
|
+
desc: "desc"
|
|
4335
|
+
};
|
|
4336
|
+
const listProjectChecksBlocks = {
|
|
4337
|
+
"build-start": "build-start",
|
|
4338
|
+
"deployment-start": "deployment-start",
|
|
4339
|
+
"deployment-alias": "deployment-alias",
|
|
4340
|
+
"deployment-promotion": "deployment-promotion",
|
|
4341
|
+
none: "none"
|
|
4342
|
+
};
|
|
4343
|
+
const getDeploymentEventsDirection = {
|
|
4344
|
+
backward: "backward",
|
|
4345
|
+
forward: "forward"
|
|
4346
|
+
};
|
|
4347
|
+
const getDeploymentEventsFollow = {
|
|
4348
|
+
"0": 0,
|
|
4349
|
+
"1": 1
|
|
4350
|
+
};
|
|
4351
|
+
const getDeploymentEventsDelimiter = {
|
|
4352
|
+
"0": 0,
|
|
4353
|
+
"1": 1
|
|
4354
|
+
};
|
|
4355
|
+
const getDeploymentEventsBuilds = {
|
|
4356
|
+
"0": 0,
|
|
4357
|
+
"1": 1
|
|
4358
|
+
};
|
|
4359
|
+
const getDomainConfigStrict = {
|
|
4360
|
+
true: "true",
|
|
4361
|
+
false: "false"
|
|
4362
|
+
};
|
|
4363
|
+
const listFlagsV2State = {
|
|
4364
|
+
active: "active",
|
|
4365
|
+
archived: "archived"
|
|
4366
|
+
};
|
|
4367
|
+
const listFlagsState = {
|
|
4368
|
+
active: "active",
|
|
4369
|
+
archived: "archived"
|
|
4370
|
+
};
|
|
4371
|
+
const listTeamFlagsV2State = {
|
|
4372
|
+
active: "active",
|
|
4373
|
+
archived: "archived"
|
|
4374
|
+
};
|
|
4375
|
+
const listTeamFlagsV2Kind = {
|
|
4376
|
+
boolean: "boolean",
|
|
4377
|
+
string: "string",
|
|
4378
|
+
number: "number",
|
|
4379
|
+
json: "json"
|
|
4380
|
+
};
|
|
4381
|
+
const listTeamFlagsState = {
|
|
4382
|
+
active: "active",
|
|
4383
|
+
archived: "archived"
|
|
4384
|
+
};
|
|
4385
|
+
const listTeamFlagsKind = {
|
|
4386
|
+
boolean: "boolean",
|
|
4387
|
+
string: "string",
|
|
4388
|
+
number: "number",
|
|
4389
|
+
json: "json"
|
|
4390
|
+
};
|
|
4391
|
+
const gitNamespacesProvider = {
|
|
4392
|
+
github: "github",
|
|
4393
|
+
"github-limited": "github-limited",
|
|
4394
|
+
"github-custom-host": "github-custom-host",
|
|
4395
|
+
gitlab: "gitlab",
|
|
4396
|
+
bitbucket: "bitbucket"
|
|
4397
|
+
};
|
|
4398
|
+
const searchRepoProvider = {
|
|
4399
|
+
github: "github",
|
|
4400
|
+
"github-limited": "github-limited",
|
|
4401
|
+
"github-custom-host": "github-custom-host",
|
|
4402
|
+
gitlab: "gitlab",
|
|
4403
|
+
bitbucket: "bitbucket",
|
|
4404
|
+
"cursor-origin": "cursor-origin"
|
|
4405
|
+
};
|
|
4406
|
+
const getBillingPlansSource = {
|
|
4407
|
+
marketplace: "marketplace",
|
|
4408
|
+
"deploy-button": "deploy-button",
|
|
4409
|
+
external: "external",
|
|
4410
|
+
v0: "v0",
|
|
4411
|
+
"resource-claims": "resource-claims",
|
|
4412
|
+
cli: "cli",
|
|
4413
|
+
oauth: "oauth",
|
|
4414
|
+
backoffice: "backoffice",
|
|
4415
|
+
"import-recommended-integrations": "import-recommended-integrations"
|
|
4416
|
+
};
|
|
4417
|
+
const getConfigurationsView = {
|
|
4418
|
+
account: "account",
|
|
4419
|
+
project: "project"
|
|
4420
|
+
};
|
|
4421
|
+
const getConfigurationsInstallationType = {
|
|
4422
|
+
marketplace: "marketplace",
|
|
4423
|
+
external: "external",
|
|
4424
|
+
provisioning: "provisioning"
|
|
4425
|
+
};
|
|
4426
|
+
const deleteKmsIssuerPolicyKind = {
|
|
4427
|
+
"project-grant": "project-grant",
|
|
4428
|
+
"connex-grant": "connex-grant"
|
|
4429
|
+
};
|
|
4430
|
+
const getRoutesFilter = {
|
|
4431
|
+
rewrite: "rewrite",
|
|
4432
|
+
redirect: "redirect",
|
|
4433
|
+
set_status: "set_status",
|
|
4434
|
+
transform: "transform"
|
|
4435
|
+
};
|
|
4436
|
+
const getProjectsBuildQueueConfiguration = {
|
|
4437
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4438
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4439
|
+
};
|
|
4440
|
+
const getProjectDomainsProduction = {
|
|
4441
|
+
true: "true",
|
|
4442
|
+
false: "false"
|
|
4443
|
+
};
|
|
4444
|
+
const getProjectDomainsTarget = {
|
|
4445
|
+
production: "production",
|
|
4446
|
+
preview: "preview"
|
|
4447
|
+
};
|
|
4448
|
+
const getProjectDomainsRedirects = {
|
|
4449
|
+
true: "true",
|
|
4450
|
+
false: "false"
|
|
4451
|
+
};
|
|
4452
|
+
const getProjectDomainsVerified = {
|
|
4453
|
+
true: "true",
|
|
4454
|
+
false: "false"
|
|
4455
|
+
};
|
|
4456
|
+
const getProjectDomainsOrder = {
|
|
4457
|
+
ASC: "ASC",
|
|
4458
|
+
DESC: "DESC"
|
|
4459
|
+
};
|
|
4460
|
+
const filterProjectEnvsDecrypt = {
|
|
4461
|
+
true: "true",
|
|
4462
|
+
false: "false"
|
|
4463
|
+
};
|
|
4464
|
+
const getRollingReleaseState = {
|
|
4465
|
+
ACTIVE: "ACTIVE",
|
|
4466
|
+
COMPLETE: "COMPLETE",
|
|
4467
|
+
ABORTED: "ABORTED"
|
|
4468
|
+
};
|
|
4469
|
+
const listSandboxesSortBy = {
|
|
4470
|
+
createdAt: "createdAt",
|
|
4471
|
+
name: "name",
|
|
4472
|
+
statusUpdatedAt: "statusUpdatedAt",
|
|
4473
|
+
currentSnapshotId: "currentSnapshotId"
|
|
4474
|
+
};
|
|
4475
|
+
const listSandboxesSortOrder = {
|
|
4476
|
+
asc: "asc",
|
|
4477
|
+
desc: "desc"
|
|
4478
|
+
};
|
|
4479
|
+
const listSandboxesStatus = {
|
|
4480
|
+
running: "running",
|
|
4481
|
+
stopping: "stopping",
|
|
4482
|
+
stopped: "stopped"
|
|
4483
|
+
};
|
|
4484
|
+
const listDrivesSortBy = {
|
|
4485
|
+
createdAt: "createdAt",
|
|
4486
|
+
updatedAt: "updatedAt",
|
|
4487
|
+
name: "name"
|
|
4488
|
+
};
|
|
4489
|
+
const listDrivesSortOrder = {
|
|
4490
|
+
asc: "asc",
|
|
4491
|
+
desc: "desc"
|
|
4492
|
+
};
|
|
4493
|
+
const listSessionSnapshotsSortOrder = {
|
|
4494
|
+
asc: "asc",
|
|
4495
|
+
desc: "desc"
|
|
4496
|
+
};
|
|
4497
|
+
const listSessionsSortOrder = {
|
|
4498
|
+
asc: "asc",
|
|
4499
|
+
desc: "desc"
|
|
4500
|
+
};
|
|
4501
|
+
const getSessionCommandWait = {
|
|
4502
|
+
true: "true",
|
|
4503
|
+
false: "false"
|
|
4504
|
+
};
|
|
4505
|
+
const getTeamMembersRole = {
|
|
4506
|
+
OWNER: "OWNER",
|
|
4507
|
+
MEMBER: "MEMBER",
|
|
4508
|
+
DEVELOPER: "DEVELOPER",
|
|
4509
|
+
SECURITY: "SECURITY",
|
|
4510
|
+
BILLING: "BILLING",
|
|
4511
|
+
VIEWER: "VIEWER",
|
|
4512
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS",
|
|
4513
|
+
CONTRIBUTOR: "CONTRIBUTOR"
|
|
4514
|
+
};
|
|
4515
|
+
const listRepositoryTagsSortBy = {
|
|
4516
|
+
updatedAt: "updatedAt",
|
|
4517
|
+
tag: "tag"
|
|
4518
|
+
};
|
|
4519
|
+
const listRepositoryTagsSortOrder = {
|
|
4520
|
+
asc: "asc",
|
|
4521
|
+
desc: "desc"
|
|
4522
|
+
};
|
|
3282
4523
|
|
|
3283
|
-
export { DNSSECEnabledCodeEnum, DNSSECEnabledStatusEnum, aCLAction, accessEnum, actionEnum, actorTypeEnum, additionalContactInfoRequiredCodeEnum, additionalContactInfoRequiredStatusEnum, aiGatewayRuleTypeEnum, aiGatewayVirtualModelConfigCachingEnum, aiGatewayVirtualModelConfigHasEnum, aiGatewayVirtualModelConfigInferenceRegionScopeEnum, aiGatewayVirtualModelConfigSelectorEnum, aiGatewayVirtualModelConfigServiceTierEnum, aiGatewayVirtualModelConfigSortEnum, aiGatewayVirtualModelConfigSpeedEnum, allocationEnum, allowListedReadyStateReasonInternalEnum, approvalScopeEnum, april2026SecurityIncidentMigrationAppliedFromEnum, authMethodEnum, authUserImportFlowGitProviderEnum, authUserResourceConfigBuildQueueConfigurationEnum, authUserSoftBlockBlockedDueToOverageTypeEnum, authUserSoftBlockReasonEnum, badRequestCodeEnum, badRequestStatusEnum, basisEnum, billingPlanEnum, blockReasonEnum, blockTypeEnum, blockedDueToOverageTypeEnum, boughtTooRecentlyCodeEnum, boughtTooRecentlyStatusEnum, buildQueueConfigurationEnum, ceilingModeEnum, changeEnum, cmpEnum, commitVerificationEnum, configurationEnum, consentEnum, contextEnum, createDeploymentsEnum, cve55182MigrationAppliedFromEnum, decisionEnum, defaultEnum, defaultModeEnum, deploymentTypeEnum, directionalityEnum, domainAlreadyOwnedCodeEnum, domainAlreadyOwnedStatusEnum, domainAlreadyRenewingCodeEnum, domainAlreadyRenewingStatusEnum, domainCannotBeTransferedOutUntilCodeEnum, domainCannotBeTransferedOutUntilStatusEnum, domainNotAvailableCodeEnum, domainNotAvailableStatusEnum, domainNotFoundCodeEnum, domainNotFoundStatusEnum, domainNotRegisteredCodeEnum, domainNotRegisteredStatusEnum, domainNotRenewableCodeEnum, domainNotRenewableStatusEnum, domainTooShortCodeEnum, domainTooShortStatusEnum, duplicateDomainsCodeEnum, duplicateDomainsStatusEnum, enablePreviewFeedbackEnum, enabledEnum, enforcementScopeEnum, envEnum, environmentEnum, expectedPriceMismatchCodeEnum, expectedPriceMismatchStatusEnum, failureStageEnum, favoritesViewPreferenceEnum, fileTreeTypeEnum, flagExperimentAllocationUnitEnum, flagExperimentDeviceEnum, flagExperimentDurationUnitEnum, flagExperimentStatusEnum, flagKindEnum, flagStateEnum, flagTypeNameEnum, flagsSdkKeyWithSecretsTypeEnum, forbiddenCodeEnum, forbiddenStatusEnum, fromPlanEnum, gitCredentialSourceEnum, gitProviderEnum, grantTypeEnum, importFlowGitProviderEnum, initiatorEnum, internalServerErrorCodeEnum, internalServerErrorStatusEnum, invalidAdditionalContactInfoCodeEnum, invalidAdditionalContactInfoStatusEnum, invitedTeamMemberRoleEnum, invitedTeamMemberTeamPermissionsEnum, invitedTeamMemberTeamRolesEnum, issuerModeEnum, kindEnum, languageCodeRequiredCodeEnum, languageCodeRequiredStatusEnum, listEventTypeCategoriesEnum, listEventTypeNameEnum, listEventTypeReplacedByEnum, marketplaceFlagCategoryEnum, marketplaceFlagStateEnum, marketplaceFlagTypeNameEnum, methodEnum, metricTypeEnum, metricUnitEnum, modeEnum, mxOutcomeEnum, nameEnum, namedSandboxNetworkPolicyModeEnum, namedSandboxStatusEnum, networkStatusEnum, newPlanEnum, newResourceBlockingPolicyEnum, nextEnum, nextRoleEnum, notAuthorizedForScopeCodeEnum, notAuthorizedForScopeStatusEnum, notFoundCodeEnum, notFoundStatusEnum, oldBuildQueueConfigurationEnum, oldTrustedIpsEnum, operationEnum, orderTooExpensiveCodeEnum, orderTooExpensiveStatusEnum, originEnum, outcomeEnum, overageReasonEnum, planEnum, planSlugEnum, previousEnum, previousPlanEnum, previousRoleEnum, pricingPlanEnum, projectScopeEnum, providerEnum, queryTypeEnum, reasonCodeEnum, reasonEnum, recentsViewPreferenceEnum, refreshPeriodEnum, refreshTokenPrefixEnum, requestKindEnum, roleEnum, ruleNameEnum, ruleProvenanceEnum, sandboxNetworkPolicyModeEnum, scopeEnum, scopeTypeEnum, segmentTypeNameEnum, sessionStatusEnum, settlementMethodEnum, snapshotCreationMethodEnum, snapshotStatusEnum, sourceEnum, storeTypeEnum, subjectTypeEnum, tagEnum, targetEnum, teamBillingPlanEnum, teamDefaultPassportDeploymentTypeEnum, teamDefaultRolesTeamPermissionsEnum, teamDefaultRolesTeamRolesEnum, teamDisjunctiveProductionSecretPolicyEnum, teamDpAccessRequestsModeEnum, teamEnablePreviewFeedbackEnum, teamEnableProductionFeedbackEnum, teamLimitedLimitedByEnum, teamLimitedMembershipJoinedFromOriginEnum, teamLimitedMembershipRoleEnum, teamLimitedMembershipTeamPermissionsEnum, teamLimitedMembershipTeamRolesEnum, teamLimitedSamlConnectionSyncStateEnum, teamLimitedSamlDirectorySyncStateEnum, teamMembershipJoinedFromOriginEnum, teamMembershipRoleEnum, teamMembershipTeamPermissionsEnum, teamMembershipTeamRolesEnum, teamNsnbConfigPreferenceEnum, teamResourceConfigBuildMachineDefaultEnum, teamSamlConnectionSyncStateEnum, teamSamlDefaultRedirectUriEnum, teamSamlDirectorySyncStateEnum, teamSensitiveEnvironmentVariablePolicyEnum, tierEnum, tldNotSupportedCodeEnum, tldNotSupportedStatusEnum, toPlanEnum, tokenPrefixEnum, tooManyDomainsCodeEnum, tooManyDomainsStatusEnum, tooManyRequestsCodeEnum, tooManyRequestsStatusEnum, trustedIpsEnum, typeEnum, unauthorizedCodeEnum, unauthorizedStatusEnum, userEventCategoriesEnum, userEventTypeEnum, vcrImageDetailKindEnum, vcrImageDetailStatusEnum, vcrImageListItemKindEnum, vcrImageListItemStatusEnum, vcrTagKindEnum, vcrTagStatusEnum, versionEnum, viewPreferenceEnum, widgetEnum };
|
|
4524
|
+
export { aCLAction, actionEnum, aiGatewayRuleTypeEnum, aiGatewayVirtualModelConfigHasEnum, aiGatewayVirtualModelConfigInferenceRegionScopeEnum, aiGatewayVirtualModelConfigSelectorEnum, aiGatewayVirtualModelConfigServiceTierEnum, aiGatewayVirtualModelConfigSortEnum, authTokenScopesOriginEnum, authTokenScopesSudoOriginEnum, authUserActiveDashboardViewsFavoritesViewPreferenceEnum, authUserActiveDashboardViewsRecentsViewPreferenceEnum, authUserActiveDashboardViewsViewPreferenceEnum, authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum, authUserImportFlowGitProviderEnum, authUserResourceConfigBuildQueueConfigurationEnum, authUserSoftBlockBlockedDueToOverageTypeEnum, authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum, authUserSoftBlockReasonEnum, cmpEnum, connectConnectorCreateDataOwnerTypeEnum, connectConnectorCreateDataServerConfigJwksKeysUseEnum, connectConnectorCreateDataSubjectTypeEnum, connectConnectorCreateResultCreationModeEnum, connectConnectorCreateResultSupportsIconEnum, connectConnectorCreateResultTypeEnum, deleteKmsIssuerPolicyKind, fileTreeTypeEnum, filterProjectEnvsDecrypt, flagJSONValue, flagKindEnum, flagStateEnum, flagsSdkKeyWithSecretsTypeEnum, getBillingPlansSource, getConfigurationsInstallationType, getConfigurationsView, getDeploymentEventsBuilds, getDeploymentEventsDelimiter, getDeploymentEventsDirection, getDeploymentEventsFollow, getDomainConfigStrict, getProjectDomainsOrder, getProjectDomainsProduction, getProjectDomainsRedirects, getProjectDomainsTarget, getProjectDomainsVerified, getProjectsBuildQueueConfiguration, getRedirectsSortBy, getRedirectsSortOrder, getRollingReleaseState, getRoutesFilter, getSessionCommandWait, getTeamMembersRole, gitNamespacesProvider, globalConfigItemValue, invitedTeamMemberRoleEnum, invitedTeamMemberTeamPermissionsEnum, invitedTeamMemberTeamRolesEnum, listAiGatewayRulesIncludeDisabled, listDrivesSortBy, listDrivesSortOrder, listEventTypeCategoriesEnum, listEventTypeNameEnum, listEventTypeReplacedByEnum, listEventTypesResponseCategoriesNameEnum, listFlagsState, listFlagsV2State, listProjectChecksBlocks, listRepositoryTagsSortBy, listRepositoryTagsSortOrder, listSandboxesSortBy, listSandboxesSortOrder, listSandboxesStatus, listSessionSnapshotsSortOrder, listSessionsSortOrder, listTeamFlagsKind, listTeamFlagsState, listTeamFlagsV2Kind, listTeamFlagsV2State, marketplaceFlagCategoryEnum, marketplaceFlagStateEnum, modeEnum, namedSandboxFailoverRegionsEnum, namedSandboxNetworkPolicyModeEnum, namedSandboxStatusEnum, networkStatusEnum, originEnum, roleEnum, sandboxNetworkPolicyModeEnum, scopeEnum, searchRepoProvider, segmentDataRulesConditionsCmpEnum, segmentDataRulesConditionsRhs, segmentDataRulesConditionsRhsTypeEnum, sessionStatusEnum, snapshotCreationMethodEnum, snapshotStatusEnum, teamBillingPlanEnum, teamDefaultPassportDeploymentTypeEnum, teamDefaultRolesTeamPermissionsEnum, teamDefaultRolesTeamRolesEnum, teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum, teamDeploymentPolicyDeploymentSourcesSourcesEnum, teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum, teamDeploymentPolicyGitSourcesSourcesProviderEnum, teamDisableHardAutoBlocks, teamDisjunctiveProductionSecretPolicyEnum, teamDpAccessRequestsModeEnum, teamEnablePreviewFeedbackEnum, teamEnableProductionFeedbackEnum, teamLimitedLimitedByEnum, teamLimitedMembershipJoinedFromOriginEnum, teamLimitedMembershipRoleEnum, teamLimitedMembershipTeamPermissionsEnum, teamLimitedMembershipTeamRolesEnum, teamLimitedSamlConnectionSyncStateEnum, teamLimitedSamlDirectorySyncStateEnum, teamMembershipJoinedFromOriginEnum, teamMembershipRoleEnum, teamMembershipTeamPermissionsEnum, teamMembershipTeamRolesEnum, teamNsnbConfigPreferenceEnum, teamResourceConfigBuildMachineDefaultEnum, teamSamlConnectionSyncStateEnum, teamSamlDefaultRedirectUriEnum, teamSamlDirectorySyncStateEnum, teamSensitiveEnvironmentVariablePolicyEnum, typeEnum, userEventCategoriesEnum, userEventEntitiesTypeEnum, userEventPayloadAccessEnum, userEventPayloadActionEnum, userEventPayloadActorTypeEnum, userEventPayloadAfterPermissionsEnum, userEventPayloadAllowedMethodsEnum, userEventPayloadAppClientAuthenticationUsedMethodEnum, userEventPayloadApprovalScopeEnum, userEventPayloadAuthMethodEnum, userEventPayloadBeforePermissionsEnum, userEventPayloadBillingPlanEnum, userEventPayloadBudgetBudgetItemPricingPlanEnum, userEventPayloadBudgetPricingPlanEnum, userEventPayloadBudgetRefreshPeriodEnum, userEventPayloadBuildQueueConfigurationEnum, userEventPayloadChangeEnum, userEventPayloadConsentEnum, userEventPayloadContextEnum, userEventPayloadCreateDeploymentsEnum, userEventPayloadDataPlanSlugEnum, userEventPayloadDecisionBasisEnum, userEventPayloadDecisionEnum, userEventPayloadDecisionMxOutcomeEnum, userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum, userEventPayloadEchModeEnum, userEventPayloadEnabledEnum, userEventPayloadEnvironmentEnum, userEventPayloadFactorsOriginEnum, userEventPayloadFailureStageEnum, userEventPayloadFromAccountTypeEnum, userEventPayloadFromPlanEnum, userEventPayloadGitProviderEnum, userEventPayloadGrantTypeEnum, userEventPayloadInitiatorEnum, userEventPayloadJobCommitVerificationEnum, userEventPayloadJobNsnbSideEffectActionEnum, userEventPayloadJobProviderEnum, userEventPayloadKindEnum, userEventPayloadMethodEnum, userEventPayloadNewEnvVarTargetEnum, userEventPayloadNewEnvVarTypeEnum, userEventPayloadNewOwnerAbuseBlockHistoryActionEnum, userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum, userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum, userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum, userEventPayloadNewOwnerBillingPlanEnum, userEventPayloadNewOwnerCredentialsTypeEnum, userEventPayloadNewOwnerEnablePreviewFeedbackEnum, userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum, userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum, userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum, userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum, userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum, userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum, userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum, userEventPayloadNewOwnerImportFlowGitProviderEnum, userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum, userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum, userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum, userEventPayloadNewOwnerPreventAutoBlocking, userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum, userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum, userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum, userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum, userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum, userEventPayloadNewOwnerSoftBlockReasonEnum, userEventPayloadNewOwnerTeamsJoinedFromOriginEnum, userEventPayloadNewOwnerTeamsRoleEnum, userEventPayloadNewOwnerTeamsTeamPermissionsEnum, userEventPayloadNewOwnerTeamsTeamRolesEnum, userEventPayloadNewPlanEnum, userEventPayloadNextBranchMatcherTypeEnum, userEventPayloadNextDefaultEnum, userEventPayloadNextEnforcementScopeEnum, userEventPayloadNextEnum, userEventPayloadNextGitProviderEnum, userEventPayloadNextIssuerModeEnum, userEventPayloadNextNewResourceBlockingPolicyEnum, userEventPayloadNextPassportDeploymentTypeEnum, userEventPayloadNextPermissionsEnum, userEventPayloadNextRoleEnum, userEventPayloadNextScopeEnum, userEventPayloadNextScopesEnum, userEventPayloadOldBuildQueueConfigurationEnum, userEventPayloadOldEnvVarTargetEnum, userEventPayloadOldEnvVarTypeEnum, userEventPayloadOldPasswordProtection, userEventPayloadOldPasswordProtectionDeploymentTypeEnum, userEventPayloadOldSsoProtection, userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum, userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum, userEventPayloadOldSsoProtectionDeploymentTypeEnum, userEventPayloadOldTrustedIpsEnum, userEventPayloadOriginEnum, userEventPayloadOutcomeEnum, userEventPayloadPasswordProtection, userEventPayloadPasswordProtectionDeploymentTypeEnum, userEventPayloadPermissionsEnum, userEventPayloadPlanEnum, userEventPayloadPrevBudgetPricingPlanEnum, userEventPayloadPreviousBranchMatcherTypeEnum, userEventPayloadPreviousEchModeEnum, userEventPayloadPreviousEnforcementScopeEnum, userEventPayloadPreviousEnum, userEventPayloadPreviousGitProviderEnum, userEventPayloadPreviousIssuerModeEnum, userEventPayloadPreviousNewResourceBlockingPolicyEnum, userEventPayloadPreviousPassportDeploymentTypeEnum, userEventPayloadPreviousPlanEnum, userEventPayloadPreviousRoleEnum, userEventPayloadPreviousScopeEnum, userEventPayloadPreviousTeamPermissionsEnum, userEventPayloadPreviousTeamRolesEnum, userEventPayloadProjectMembershipPreviousRoleEnum, userEventPayloadProjectMembershipRoleEnum, userEventPayloadProjectRoleEnum, userEventPayloadProjectScopeEnum, userEventPayloadProjectsRoleEnum, userEventPayloadProviderEnum, userEventPayloadQueryTypeEnum, userEventPayloadReasonCodeEnum, userEventPayloadReasonEnum, userEventPayloadRemovedMembershipRoleEnum, userEventPayloadRetentionCeilingModeEnum, userEventPayloadRetentionDefaultModeEnum, userEventPayloadRoleEnum, userEventPayloadRuleNameEnum, userEventPayloadRuleProvenanceEnum, userEventPayloadSamplingEnvEnum, userEventPayloadScopeEnum, userEventPayloadScopeTypeEnum, userEventPayloadScopesEnum, userEventPayloadSettlementMethodEnum, userEventPayloadSourceEnum, userEventPayloadSsoProtection, userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum, userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum, userEventPayloadSsoProtectionDeploymentTypeEnum, userEventPayloadStoreTypeEnum, userEventPayloadSubjectTypeEnum, userEventPayloadTargetEnum, userEventPayloadTeamPermissionsEnum, userEventPayloadTeamRolesEnum, userEventPayloadTierEnum, userEventPayloadToAccountTypeEnum, userEventPayloadToPlanEnum, userEventPayloadTrustedIpsEnum, userEventPayloadTypeEnum, userEventPayloadUpdateDiffNewTargetEnum, userEventPayloadUpdateDiffOldTargetEnum, userEventPayloadWidgetEnum, userEventTypeEnum, vcrImageDetailKindEnum, vcrImageDetailStatusEnum, vcrImageLayerOperationEnum, vcrImageLayerTypeEnum, vcrImageListItemKindEnum, vcrImageListItemStatusEnum, vcrTagKindEnum, vcrTagStatusEnum };
|