vercel-api-js 1.13.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{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 -159
- package/dist/index.d.ts +16597 -37079
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-nxmmau12.cjs → schemas-ev1tjsfi.cjs} +8086 -2031
- package/dist/{schemas-kwntyl9n.js → schemas-jkpfjygi.js} +7535 -2014
- package/dist/schemas.cjs +553 -19
- package/dist/schemas.d.mts +1742 -684
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1831 -460
- package/dist/types.d.mts +14799 -36592
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1597 -322
- 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",
|
|
@@ -244,6 +155,7 @@ const userEventTypeEnum = {
|
|
|
244
155
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
245
156
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
246
157
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
158
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
247
159
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
248
160
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
249
161
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -376,6 +288,7 @@ const userEventTypeEnum = {
|
|
|
376
288
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
377
289
|
"domain-delegated": "domain-delegated",
|
|
378
290
|
"domain-delete": "domain-delete",
|
|
291
|
+
"domain-ech-change": "domain-ech-change",
|
|
379
292
|
"domain-move-in": "domain-move-in",
|
|
380
293
|
"domain-move-out": "domain-move-out",
|
|
381
294
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -430,6 +343,7 @@ const userEventTypeEnum = {
|
|
|
430
343
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
431
344
|
"env-variable-rotated": "env-variable-rotated",
|
|
432
345
|
"experiment-created": "experiment-created",
|
|
346
|
+
"experiment-deleted": "experiment-deleted",
|
|
433
347
|
"experiment-transitioned": "experiment-transitioned",
|
|
434
348
|
"experiment-updated": "experiment-updated",
|
|
435
349
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -455,7 +369,19 @@ const userEventTypeEnum = {
|
|
|
455
369
|
"flags-transferred": "flags-transferred",
|
|
456
370
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
457
371
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
372
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
373
|
+
"global-config-created": "global-config-created",
|
|
374
|
+
"global-config-deleted": "global-config-deleted",
|
|
375
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
376
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
377
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
378
|
+
"global-config-token-created": "global-config-token-created",
|
|
379
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
380
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
381
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
382
|
+
"global-config-updated": "global-config-updated",
|
|
458
383
|
"instant-rollback-created": "instant-rollback-created",
|
|
384
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
459
385
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
460
386
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
461
387
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -659,6 +585,7 @@ const userEventTypeEnum = {
|
|
|
659
585
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
660
586
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
661
587
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
588
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
662
589
|
"project-sso-protection": "project-sso-protection",
|
|
663
590
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
664
591
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -782,6 +709,8 @@ const userEventTypeEnum = {
|
|
|
782
709
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
783
710
|
"tracing-configured": "tracing-configured",
|
|
784
711
|
"tracing-disabled": "tracing-disabled",
|
|
712
|
+
"tracing-paused": "tracing-paused",
|
|
713
|
+
"tracing-resumed": "tracing-resumed",
|
|
785
714
|
"unlink-login-connection": "unlink-login-connection",
|
|
786
715
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
787
716
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -792,6 +721,8 @@ const userEventTypeEnum = {
|
|
|
792
721
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
793
722
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
794
723
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
724
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
725
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
795
726
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
796
727
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
797
728
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -874,7 +805,7 @@ const userEventCategoriesEnum = {
|
|
|
874
805
|
"vercel-app": "vercel-app",
|
|
875
806
|
workflow: "workflow"
|
|
876
807
|
};
|
|
877
|
-
const
|
|
808
|
+
const userEventPayloadActionEnum = {
|
|
878
809
|
"add-passkey": "add-passkey",
|
|
879
810
|
"add-totp": "add-totp",
|
|
880
811
|
"admin-remove": "admin-remove",
|
|
@@ -883,128 +814,463 @@ const actionEnum = {
|
|
|
883
814
|
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
884
815
|
"remove-passkey": "remove-passkey"
|
|
885
816
|
};
|
|
886
|
-
const
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
817
|
+
const userEventPayloadProviderEnum = {
|
|
818
|
+
apple: "apple",
|
|
819
|
+
bitbucket: "bitbucket",
|
|
820
|
+
chatgpt: "chatgpt",
|
|
821
|
+
github: "github",
|
|
822
|
+
"github-custom-host": "github-custom-host",
|
|
823
|
+
"github-limited": "github-limited",
|
|
824
|
+
gitlab: "gitlab",
|
|
825
|
+
google: "google",
|
|
826
|
+
saml: "saml"
|
|
891
827
|
};
|
|
892
|
-
const
|
|
828
|
+
const userEventPayloadFromPlanEnum = {
|
|
893
829
|
hobby: "hobby",
|
|
894
830
|
pro: "pro"
|
|
895
831
|
};
|
|
896
|
-
const
|
|
832
|
+
const userEventPayloadToPlanEnum = {
|
|
897
833
|
hobby: "hobby",
|
|
898
834
|
pro: "pro"
|
|
899
835
|
};
|
|
900
|
-
const
|
|
836
|
+
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
901
837
|
daily: "daily",
|
|
902
838
|
monthly: "monthly",
|
|
903
839
|
none: "none",
|
|
904
840
|
weekly: "weekly"
|
|
905
841
|
};
|
|
906
|
-
const
|
|
842
|
+
const userEventPayloadChangeEnum = {
|
|
907
843
|
disable: "disable",
|
|
908
844
|
enable: "enable",
|
|
909
845
|
remove: "remove",
|
|
910
846
|
set: "set"
|
|
911
847
|
};
|
|
912
|
-
const
|
|
848
|
+
const userEventPayloadScopeTypeEnum = {
|
|
913
849
|
project: "project",
|
|
914
|
-
team: "team"
|
|
850
|
+
team: "team",
|
|
851
|
+
user: "user"
|
|
915
852
|
};
|
|
916
|
-
const
|
|
853
|
+
const userEventPayloadRetentionDefaultModeEnum = {
|
|
917
854
|
days: "days",
|
|
918
855
|
"until-requested": "until-requested"
|
|
919
856
|
};
|
|
920
|
-
const
|
|
857
|
+
const userEventPayloadRetentionCeilingModeEnum = {
|
|
921
858
|
days: "days",
|
|
922
859
|
"until-requested": "until-requested"
|
|
923
860
|
};
|
|
924
|
-
const
|
|
861
|
+
const userEventPayloadNextRoleEnum = {
|
|
925
862
|
ADMIN: "ADMIN",
|
|
926
863
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
927
864
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
928
865
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
929
866
|
};
|
|
930
|
-
const
|
|
867
|
+
const userEventPayloadPreviousRoleEnum = {
|
|
931
868
|
ADMIN: "ADMIN",
|
|
932
869
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
933
870
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
934
871
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
935
872
|
};
|
|
936
|
-
const
|
|
873
|
+
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
937
874
|
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
938
875
|
IGNORE_STEP: "IGNORE_STEP",
|
|
939
876
|
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
940
877
|
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
941
878
|
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
942
879
|
};
|
|
943
|
-
const
|
|
880
|
+
const userEventPayloadScopesEnum = {
|
|
881
|
+
email: "email",
|
|
882
|
+
offline_access: "offline_access",
|
|
883
|
+
openid: "openid",
|
|
884
|
+
profile: "profile"
|
|
885
|
+
};
|
|
886
|
+
const userEventPayloadPermissionsEnum = {
|
|
887
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
888
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
889
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
890
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
891
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
892
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
893
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
894
|
+
"read-write:alerts": "read-write:alerts",
|
|
895
|
+
"read-write:billing": "read-write:billing",
|
|
896
|
+
"read-write:blob": "read-write:blob",
|
|
897
|
+
"read-write:connect": "read-write:connect",
|
|
898
|
+
"read-write:deployment": "read-write:deployment",
|
|
899
|
+
"read-write:domain": "read-write:domain",
|
|
900
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
901
|
+
"read-write:drains": "read-write:drains",
|
|
902
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
903
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
904
|
+
"read-write:firewall": "read-write:firewall",
|
|
905
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
906
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
907
|
+
"read-write:kms": "read-write:kms",
|
|
908
|
+
"read-write:project": "read-write:project",
|
|
909
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
910
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
911
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
912
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
913
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
914
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
915
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
916
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
917
|
+
"read-write:team-members": "read-write:team-members",
|
|
918
|
+
"read-write:vcr": "read-write:vcr",
|
|
919
|
+
"read:access-group": "read:access-group",
|
|
920
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
921
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
922
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
923
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
924
|
+
"read:alerts": "read:alerts",
|
|
925
|
+
"read:billing": "read:billing",
|
|
926
|
+
"read:deployment": "read:deployment",
|
|
927
|
+
"read:domain": "read:domain",
|
|
928
|
+
"read:event": "read:event",
|
|
929
|
+
"read:firewall": "read:firewall",
|
|
930
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
931
|
+
"read:integration-resource": "read:integration-resource",
|
|
932
|
+
"read:kms": "read:kms",
|
|
933
|
+
"read:monitoring": "read:monitoring",
|
|
934
|
+
"read:project": "read:project",
|
|
935
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
936
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
937
|
+
"read:project-flags": "read:project-flags",
|
|
938
|
+
"read:remote-cache": "read:remote-cache",
|
|
939
|
+
"read:sandbox": "read:sandbox",
|
|
940
|
+
"read:speed-insights": "read:speed-insights",
|
|
941
|
+
"read:team": "read:team",
|
|
942
|
+
"read:vcr": "read:vcr",
|
|
943
|
+
"read:web-analytics": "read:web-analytics",
|
|
944
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
945
|
+
};
|
|
946
|
+
const userEventPayloadNextScopesEnum = {
|
|
947
|
+
email: "email",
|
|
948
|
+
offline_access: "offline_access",
|
|
949
|
+
openid: "openid",
|
|
950
|
+
profile: "profile"
|
|
951
|
+
};
|
|
952
|
+
const userEventPayloadNextPermissionsEnum = {
|
|
953
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
954
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
955
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
956
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
957
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
958
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
959
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
960
|
+
"read-write:alerts": "read-write:alerts",
|
|
961
|
+
"read-write:billing": "read-write:billing",
|
|
962
|
+
"read-write:blob": "read-write:blob",
|
|
963
|
+
"read-write:connect": "read-write:connect",
|
|
964
|
+
"read-write:deployment": "read-write:deployment",
|
|
965
|
+
"read-write:domain": "read-write:domain",
|
|
966
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
967
|
+
"read-write:drains": "read-write:drains",
|
|
968
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
969
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
970
|
+
"read-write:firewall": "read-write:firewall",
|
|
971
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
972
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
973
|
+
"read-write:kms": "read-write:kms",
|
|
974
|
+
"read-write:project": "read-write:project",
|
|
975
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
976
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
977
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
978
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
979
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
980
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
981
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
982
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
983
|
+
"read-write:team-members": "read-write:team-members",
|
|
984
|
+
"read-write:vcr": "read-write:vcr",
|
|
985
|
+
"read:access-group": "read:access-group",
|
|
986
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
987
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
988
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
989
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
990
|
+
"read:alerts": "read:alerts",
|
|
991
|
+
"read:billing": "read:billing",
|
|
992
|
+
"read:deployment": "read:deployment",
|
|
993
|
+
"read:domain": "read:domain",
|
|
994
|
+
"read:event": "read:event",
|
|
995
|
+
"read:firewall": "read:firewall",
|
|
996
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
997
|
+
"read:integration-resource": "read:integration-resource",
|
|
998
|
+
"read:kms": "read:kms",
|
|
999
|
+
"read:monitoring": "read:monitoring",
|
|
1000
|
+
"read:project": "read:project",
|
|
1001
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1002
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1003
|
+
"read:project-flags": "read:project-flags",
|
|
1004
|
+
"read:remote-cache": "read:remote-cache",
|
|
1005
|
+
"read:sandbox": "read:sandbox",
|
|
1006
|
+
"read:speed-insights": "read:speed-insights",
|
|
1007
|
+
"read:team": "read:team",
|
|
1008
|
+
"read:user": "read:user",
|
|
1009
|
+
"read:vcr": "read:vcr",
|
|
1010
|
+
"read:web-analytics": "read:web-analytics",
|
|
1011
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1012
|
+
};
|
|
1013
|
+
const userEventPayloadBeforePermissionsEnum = {
|
|
1014
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1015
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1016
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1017
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1018
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1019
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1020
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1021
|
+
"read-write:alerts": "read-write:alerts",
|
|
1022
|
+
"read-write:billing": "read-write:billing",
|
|
1023
|
+
"read-write:blob": "read-write:blob",
|
|
1024
|
+
"read-write:connect": "read-write:connect",
|
|
1025
|
+
"read-write:deployment": "read-write:deployment",
|
|
1026
|
+
"read-write:domain": "read-write:domain",
|
|
1027
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1028
|
+
"read-write:drains": "read-write:drains",
|
|
1029
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1030
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1031
|
+
"read-write:firewall": "read-write:firewall",
|
|
1032
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1033
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1034
|
+
"read-write:kms": "read-write:kms",
|
|
1035
|
+
"read-write:project": "read-write:project",
|
|
1036
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1037
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1038
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1039
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1040
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1041
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1042
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1043
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1044
|
+
"read-write:team-members": "read-write:team-members",
|
|
1045
|
+
"read-write:vcr": "read-write:vcr",
|
|
1046
|
+
"read:access-group": "read:access-group",
|
|
1047
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1048
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1049
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1050
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1051
|
+
"read:alerts": "read:alerts",
|
|
1052
|
+
"read:billing": "read:billing",
|
|
1053
|
+
"read:deployment": "read:deployment",
|
|
1054
|
+
"read:domain": "read:domain",
|
|
1055
|
+
"read:event": "read:event",
|
|
1056
|
+
"read:firewall": "read:firewall",
|
|
1057
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1058
|
+
"read:integration-resource": "read:integration-resource",
|
|
1059
|
+
"read:kms": "read:kms",
|
|
1060
|
+
"read:monitoring": "read:monitoring",
|
|
1061
|
+
"read:project": "read:project",
|
|
1062
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1063
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1064
|
+
"read:project-flags": "read:project-flags",
|
|
1065
|
+
"read:remote-cache": "read:remote-cache",
|
|
1066
|
+
"read:sandbox": "read:sandbox",
|
|
1067
|
+
"read:speed-insights": "read:speed-insights",
|
|
1068
|
+
"read:team": "read:team",
|
|
1069
|
+
"read:vcr": "read:vcr",
|
|
1070
|
+
"read:web-analytics": "read:web-analytics",
|
|
1071
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1072
|
+
};
|
|
1073
|
+
const userEventPayloadAfterPermissionsEnum = {
|
|
1074
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1075
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1076
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1077
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1078
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1079
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1080
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1081
|
+
"read-write:alerts": "read-write:alerts",
|
|
1082
|
+
"read-write:billing": "read-write:billing",
|
|
1083
|
+
"read-write:blob": "read-write:blob",
|
|
1084
|
+
"read-write:connect": "read-write:connect",
|
|
1085
|
+
"read-write:deployment": "read-write:deployment",
|
|
1086
|
+
"read-write:domain": "read-write:domain",
|
|
1087
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1088
|
+
"read-write:drains": "read-write:drains",
|
|
1089
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1090
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1091
|
+
"read-write:firewall": "read-write:firewall",
|
|
1092
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1093
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1094
|
+
"read-write:kms": "read-write:kms",
|
|
1095
|
+
"read-write:project": "read-write:project",
|
|
1096
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1097
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1098
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1099
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1100
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1101
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1102
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1103
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1104
|
+
"read-write:team-members": "read-write:team-members",
|
|
1105
|
+
"read-write:vcr": "read-write:vcr",
|
|
1106
|
+
"read:access-group": "read:access-group",
|
|
1107
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1108
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1109
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1110
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1111
|
+
"read:alerts": "read:alerts",
|
|
1112
|
+
"read:billing": "read:billing",
|
|
1113
|
+
"read:deployment": "read:deployment",
|
|
1114
|
+
"read:domain": "read:domain",
|
|
1115
|
+
"read:event": "read:event",
|
|
1116
|
+
"read:firewall": "read:firewall",
|
|
1117
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1118
|
+
"read:integration-resource": "read:integration-resource",
|
|
1119
|
+
"read:kms": "read:kms",
|
|
1120
|
+
"read:monitoring": "read:monitoring",
|
|
1121
|
+
"read:project": "read:project",
|
|
1122
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1123
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1124
|
+
"read:project-flags": "read:project-flags",
|
|
1125
|
+
"read:remote-cache": "read:remote-cache",
|
|
1126
|
+
"read:sandbox": "read:sandbox",
|
|
1127
|
+
"read:speed-insights": "read:speed-insights",
|
|
1128
|
+
"read:team": "read:team",
|
|
1129
|
+
"read:vcr": "read:vcr",
|
|
1130
|
+
"read:web-analytics": "read:web-analytics",
|
|
1131
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1132
|
+
};
|
|
1133
|
+
const userEventPayloadSettlementMethodEnum = {
|
|
944
1134
|
"credited-paid": "credited-paid",
|
|
945
1135
|
"credited-payment-pending": "credited-payment-pending",
|
|
946
1136
|
"refunded-paid": "refunded-paid",
|
|
947
1137
|
"refunded-payment-pending": "refunded-payment-pending"
|
|
948
1138
|
};
|
|
949
|
-
const
|
|
1139
|
+
const userEventPayloadDataPlanSlugEnum = {
|
|
950
1140
|
v0_business: "v0_business",
|
|
951
1141
|
v0_teams: "v0_teams"
|
|
952
1142
|
};
|
|
953
|
-
const
|
|
954
|
-
"basic-floor": "basic-floor",
|
|
955
|
-
"build-timeout-failure": "build-timeout-failure",
|
|
956
|
-
"enospc-failure": "enospc-failure",
|
|
957
|
-
"enterprise-floor": "enterprise-floor",
|
|
958
|
-
"high-peak-disk": "high-peak-disk",
|
|
959
|
-
"high-peak-memory": "high-peak-memory",
|
|
960
|
-
"long-build-duration": "long-build-duration",
|
|
961
|
-
"oom-failure": "oom-failure",
|
|
962
|
-
"plan-change": "plan-change",
|
|
963
|
-
"short-build-duration": "short-build-duration",
|
|
964
|
-
"sustained-high-cpu": "sustained-high-cpu"
|
|
965
|
-
};
|
|
966
|
-
const subjectTypeEnum = {
|
|
1143
|
+
const userEventPayloadSubjectTypeEnum = {
|
|
967
1144
|
app: "app",
|
|
968
1145
|
user: "user"
|
|
969
1146
|
};
|
|
970
|
-
const
|
|
971
|
-
"external-token": "external-token"
|
|
972
|
-
};
|
|
973
|
-
const commitVerificationEnum = {
|
|
1147
|
+
const userEventPayloadJobCommitVerificationEnum = {
|
|
974
1148
|
unknown: "unknown",
|
|
975
1149
|
unverified: "unverified",
|
|
976
1150
|
verified: "verified"
|
|
977
1151
|
};
|
|
978
|
-
const
|
|
1152
|
+
const userEventPayloadJobNsnbSideEffectActionEnum = {
|
|
1153
|
+
"auto-approved-member": "auto-approved-member",
|
|
1154
|
+
"auto-approved-pending-invite": "auto-approved-pending-invite"
|
|
1155
|
+
};
|
|
1156
|
+
const userEventPayloadJobProviderEnum = {
|
|
1157
|
+
github: "github",
|
|
1158
|
+
"github-custom-host": "github-custom-host",
|
|
1159
|
+
"github-limited": "github-limited"
|
|
1160
|
+
};
|
|
1161
|
+
const userEventPayloadRuleNameEnum = {
|
|
979
1162
|
deploymentSources: "deploymentSources",
|
|
980
1163
|
gitSources: "gitSources"
|
|
981
1164
|
};
|
|
982
|
-
const
|
|
1165
|
+
const userEventPayloadRuleProvenanceEnum = {
|
|
983
1166
|
default: "default",
|
|
984
1167
|
project: "project",
|
|
985
1168
|
team: "team"
|
|
986
1169
|
};
|
|
987
|
-
const
|
|
1170
|
+
const userEventPayloadInitiatorEnum = {
|
|
988
1171
|
system: "system",
|
|
989
1172
|
user: "user"
|
|
990
1173
|
};
|
|
991
|
-
const
|
|
1174
|
+
const userEventPayloadEchModeEnum = {
|
|
1175
|
+
auto: "auto",
|
|
1176
|
+
disabled: "disabled",
|
|
1177
|
+
enabled: "enabled"
|
|
1178
|
+
};
|
|
1179
|
+
const userEventPayloadPreviousEchModeEnum = {
|
|
1180
|
+
auto: "auto",
|
|
1181
|
+
disabled: "disabled",
|
|
1182
|
+
enabled: "enabled"
|
|
1183
|
+
};
|
|
1184
|
+
const userEventPayloadFromAccountTypeEnum = {
|
|
1185
|
+
team: "team",
|
|
1186
|
+
user: "user"
|
|
1187
|
+
};
|
|
1188
|
+
const userEventPayloadToAccountTypeEnum = {
|
|
1189
|
+
team: "team",
|
|
1190
|
+
user: "user"
|
|
1191
|
+
};
|
|
1192
|
+
const userEventPayloadTypeEnum = {
|
|
1193
|
+
blob: "blob",
|
|
1194
|
+
"edge-config": "edge-config",
|
|
1195
|
+
integration: "integration",
|
|
1196
|
+
postgres: "postgres",
|
|
1197
|
+
redis: "redis"
|
|
1198
|
+
};
|
|
1199
|
+
const userEventPayloadTargetEnum = {
|
|
1200
|
+
development: "development",
|
|
1201
|
+
preview: "preview",
|
|
1202
|
+
production: "production"
|
|
1203
|
+
};
|
|
1204
|
+
const userEventPayloadOldEnvVarTypeEnum = {
|
|
1205
|
+
encrypted: "encrypted",
|
|
1206
|
+
plain: "plain",
|
|
1207
|
+
sensitive: "sensitive",
|
|
1208
|
+
system: "system"
|
|
1209
|
+
};
|
|
1210
|
+
const userEventPayloadOldEnvVarTargetEnum = {
|
|
1211
|
+
development: "development",
|
|
1212
|
+
preview: "preview",
|
|
1213
|
+
production: "production"
|
|
1214
|
+
};
|
|
1215
|
+
const userEventPayloadNewEnvVarTypeEnum = {
|
|
1216
|
+
encrypted: "encrypted",
|
|
1217
|
+
plain: "plain",
|
|
1218
|
+
sensitive: "sensitive",
|
|
1219
|
+
system: "system"
|
|
1220
|
+
};
|
|
1221
|
+
const userEventPayloadNewEnvVarTargetEnum = {
|
|
1222
|
+
development: "development",
|
|
1223
|
+
preview: "preview",
|
|
1224
|
+
production: "production"
|
|
1225
|
+
};
|
|
1226
|
+
const userEventPayloadUpdateDiffOldTargetEnum = {
|
|
1227
|
+
development: "development",
|
|
1228
|
+
preview: "preview",
|
|
1229
|
+
production: "production"
|
|
1230
|
+
};
|
|
1231
|
+
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1232
|
+
development: "development",
|
|
1233
|
+
preview: "preview",
|
|
1234
|
+
production: "production"
|
|
1235
|
+
};
|
|
1236
|
+
const actionEnum = {
|
|
1237
|
+
challenge: "challenge",
|
|
1238
|
+
deny: "deny",
|
|
1239
|
+
log: "log"
|
|
1240
|
+
};
|
|
1241
|
+
const userEventPayloadOutcomeEnum = {
|
|
992
1242
|
"account-matched": "account-matched",
|
|
993
1243
|
"linking-required": "linking-required"
|
|
994
1244
|
};
|
|
995
|
-
const
|
|
1245
|
+
const userEventPayloadFailureStageEnum = {
|
|
996
1246
|
authorization: "authorization",
|
|
997
1247
|
push: "push",
|
|
998
1248
|
unexpected: "unexpected",
|
|
999
1249
|
unknown: "unknown",
|
|
1000
1250
|
validation: "validation"
|
|
1001
1251
|
};
|
|
1002
|
-
const
|
|
1252
|
+
const userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = {
|
|
1253
|
+
blocked: "blocked",
|
|
1254
|
+
"hard-blocked": "hard-blocked",
|
|
1255
|
+
"soft-blocked": "soft-blocked",
|
|
1256
|
+
unblocked: "unblocked"
|
|
1257
|
+
};
|
|
1258
|
+
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
1003
1259
|
enterprise: "enterprise",
|
|
1004
1260
|
hobby: "hobby",
|
|
1005
1261
|
pro: "pro"
|
|
1006
1262
|
};
|
|
1007
|
-
const
|
|
1263
|
+
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
1264
|
+
apple: "apple",
|
|
1265
|
+
bitbucket: "bitbucket",
|
|
1266
|
+
chatgpt: "chatgpt",
|
|
1267
|
+
"github-oauth": "github-oauth",
|
|
1268
|
+
"github-oauth-limited": "github-oauth-limited",
|
|
1269
|
+
gitlab: "gitlab",
|
|
1270
|
+
google: "google",
|
|
1271
|
+
vercel: "vercel"
|
|
1272
|
+
};
|
|
1273
|
+
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
1008
1274
|
bitbucket: "bitbucket",
|
|
1009
1275
|
"cursor-origin": "cursor-origin",
|
|
1010
1276
|
github: "github",
|
|
@@ -1013,8 +1279,11 @@ const importFlowGitProviderEnum = {
|
|
|
1013
1279
|
gitlab: "gitlab",
|
|
1014
1280
|
vercel: "vercel"
|
|
1015
1281
|
};
|
|
1016
|
-
const
|
|
1017
|
-
|
|
1282
|
+
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
1283
|
+
false: false,
|
|
1284
|
+
true: true
|
|
1285
|
+
};
|
|
1286
|
+
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
1018
1287
|
"analytics-online": "analytics-online",
|
|
1019
1288
|
"analytics-page-views": "analytics-page-views",
|
|
1020
1289
|
"analytics-visitors": "analytics-visitors",
|
|
@@ -1024,42 +1293,46 @@ const widgetEnum = {
|
|
|
1024
1293
|
"observability-edge-requests": "observability-edge-requests",
|
|
1025
1294
|
"observability-error-rate": "observability-error-rate",
|
|
1026
1295
|
"observability-function-invocations": "observability-function-invocations",
|
|
1027
|
-
online: "online",
|
|
1028
|
-
res: "res",
|
|
1029
1296
|
"speed-insights-cls": "speed-insights-cls",
|
|
1030
1297
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1031
1298
|
"speed-insights-res": "speed-insights-res"
|
|
1032
1299
|
};
|
|
1033
|
-
const
|
|
1300
|
+
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1034
1301
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1035
1302
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1036
1303
|
};
|
|
1037
|
-
const
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
SECURITY: "SECURITY",
|
|
1044
|
-
VIEWER: "VIEWER",
|
|
1045
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1304
|
+
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1305
|
+
basic: "basic",
|
|
1306
|
+
elastic: "elastic",
|
|
1307
|
+
enhanced: "enhanced",
|
|
1308
|
+
standard: "standard",
|
|
1309
|
+
turbo: "turbo"
|
|
1046
1310
|
};
|
|
1047
|
-
const
|
|
1311
|
+
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
1048
1312
|
cards: "cards",
|
|
1049
1313
|
list: "list"
|
|
1050
1314
|
};
|
|
1051
|
-
const
|
|
1315
|
+
const userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
1052
1316
|
closed: "closed",
|
|
1053
1317
|
open: "open"
|
|
1054
1318
|
};
|
|
1055
|
-
const
|
|
1319
|
+
const userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
1056
1320
|
closed: "closed",
|
|
1057
1321
|
open: "open"
|
|
1058
1322
|
};
|
|
1059
|
-
const
|
|
1060
|
-
|
|
1323
|
+
const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
1324
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
1325
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
1326
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1327
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1328
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1329
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1330
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1331
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1332
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1333
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1061
1334
|
};
|
|
1062
|
-
const
|
|
1335
|
+
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1063
1336
|
analyticsUsage: "analyticsUsage",
|
|
1064
1337
|
artifacts: "artifacts",
|
|
1065
1338
|
bandwidth: "bandwidth",
|
|
@@ -1100,7 +1373,7 @@ const blockedDueToOverageTypeEnum = {
|
|
|
1100
1373
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1101
1374
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1102
1375
|
};
|
|
1103
|
-
const
|
|
1376
|
+
const userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
1104
1377
|
analyticsUsage: "analyticsUsage",
|
|
1105
1378
|
artifacts: "artifacts",
|
|
1106
1379
|
bandwidth: "bandwidth",
|
|
@@ -1141,7 +1414,7 @@ const allocationEnum = {
|
|
|
1141
1414
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1142
1415
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1143
1416
|
};
|
|
1144
|
-
const
|
|
1417
|
+
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1145
1418
|
BILLING: "BILLING",
|
|
1146
1419
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1147
1420
|
DEVELOPER: "DEVELOPER",
|
|
@@ -1151,26 +1424,59 @@ const roleEnum = {
|
|
|
1151
1424
|
VIEWER: "VIEWER",
|
|
1152
1425
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1153
1426
|
};
|
|
1154
|
-
const
|
|
1155
|
-
|
|
1156
|
-
|
|
1427
|
+
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1428
|
+
BILLING: "BILLING",
|
|
1429
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1430
|
+
DEVELOPER: "DEVELOPER",
|
|
1431
|
+
MEMBER: "MEMBER",
|
|
1432
|
+
OWNER: "OWNER",
|
|
1433
|
+
SECURITY: "SECURITY",
|
|
1434
|
+
VIEWER: "VIEWER",
|
|
1435
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1436
|
+
};
|
|
1437
|
+
const userEventPayloadNewOwnerTeamsTeamPermissionsEnum = {
|
|
1438
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
1439
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
1440
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
1441
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
1442
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
1443
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
1444
|
+
ConnectorManager: "ConnectorManager",
|
|
1445
|
+
CreateProject: "CreateProject",
|
|
1446
|
+
EnvVariableManager: "EnvVariableManager",
|
|
1447
|
+
EnvironmentManager: "EnvironmentManager",
|
|
1448
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
1449
|
+
IntegrationManager: "IntegrationManager",
|
|
1450
|
+
OrgAdmin: "OrgAdmin",
|
|
1451
|
+
OrgViewer: "OrgViewer",
|
|
1452
|
+
UsageViewer: "UsageViewer",
|
|
1453
|
+
V0Builder: "V0Builder",
|
|
1454
|
+
V0Chatter: "V0Chatter",
|
|
1455
|
+
V0Viewer: "V0Viewer",
|
|
1456
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
1457
|
+
};
|
|
1458
|
+
const userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = {
|
|
1459
|
+
"account-update": "account-update",
|
|
1157
1460
|
bitbucket: "bitbucket",
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
emu: "emu",
|
|
1461
|
+
dsync: "dsync",
|
|
1462
|
+
feedback: "feedback",
|
|
1161
1463
|
github: "github",
|
|
1162
|
-
"github-webhook": "github-webhook",
|
|
1163
1464
|
gitlab: "gitlab",
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1465
|
+
import: "import",
|
|
1466
|
+
link: "link",
|
|
1467
|
+
mail: "mail",
|
|
1468
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1469
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1470
|
+
"nsnb-invite": "nsnb-invite",
|
|
1471
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1472
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1473
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1474
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1475
|
+
"organization-teams": "organization-teams",
|
|
1169
1476
|
saml: "saml",
|
|
1170
|
-
|
|
1171
|
-
"token-exchange-oidc": "token-exchange-oidc"
|
|
1477
|
+
teams: "teams"
|
|
1172
1478
|
};
|
|
1173
|
-
const
|
|
1479
|
+
const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
1174
1480
|
default: "default",
|
|
1175
1481
|
"default-force": "default-force",
|
|
1176
1482
|
off: "off",
|
|
@@ -1178,16 +1484,45 @@ const enablePreviewFeedbackEnum = {
|
|
|
1178
1484
|
on: "on",
|
|
1179
1485
|
"on-force": "on-force"
|
|
1180
1486
|
};
|
|
1181
|
-
const
|
|
1487
|
+
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1488
|
+
admin_override: "admin_override",
|
|
1489
|
+
hard_blocked: "hard_blocked",
|
|
1490
|
+
limits_exceeded: "limits_exceeded"
|
|
1491
|
+
};
|
|
1492
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
1493
|
+
admin_override: "admin_override",
|
|
1494
|
+
hard_blocked: "hard_blocked",
|
|
1495
|
+
limits_exceeded: "limits_exceeded"
|
|
1496
|
+
};
|
|
1497
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
1498
|
+
hard: "hard",
|
|
1499
|
+
soft: "soft"
|
|
1500
|
+
};
|
|
1501
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
1182
1502
|
admin_override: "admin_override",
|
|
1183
1503
|
hard_blocked: "hard_blocked",
|
|
1184
1504
|
limits_exceeded: "limits_exceeded"
|
|
1185
1505
|
};
|
|
1186
|
-
const
|
|
1506
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
1187
1507
|
hard: "hard",
|
|
1188
1508
|
soft: "soft"
|
|
1189
1509
|
};
|
|
1190
|
-
const
|
|
1510
|
+
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
1511
|
+
admin_override: "admin_override",
|
|
1512
|
+
hard_blocked: "hard_blocked",
|
|
1513
|
+
limits_exceeded: "limits_exceeded"
|
|
1514
|
+
};
|
|
1515
|
+
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
1516
|
+
admin_override: "admin_override",
|
|
1517
|
+
hard_blocked: "hard_blocked",
|
|
1518
|
+
limits_exceeded: "limits_exceeded"
|
|
1519
|
+
};
|
|
1520
|
+
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1521
|
+
admin_override: "admin_override",
|
|
1522
|
+
hard_blocked: "hard_blocked",
|
|
1523
|
+
limits_exceeded: "limits_exceeded"
|
|
1524
|
+
};
|
|
1525
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = {
|
|
1191
1526
|
analyticsUsage: "analyticsUsage",
|
|
1192
1527
|
artifacts: "artifacts",
|
|
1193
1528
|
bandwidth: "bandwidth",
|
|
@@ -1228,61 +1563,295 @@ const overageReasonEnum = {
|
|
|
1228
1563
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1229
1564
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1230
1565
|
};
|
|
1231
|
-
const
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
const methodEnum = {
|
|
1235
|
-
client_secret_basic: "client_secret_basic",
|
|
1236
|
-
client_secret_jwt: "client_secret_jwt",
|
|
1237
|
-
client_secret_post: "client_secret_post",
|
|
1238
|
-
none: "none",
|
|
1239
|
-
oidc_token: "oidc_token",
|
|
1240
|
-
private_key_jwt: "private_key_jwt"
|
|
1566
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = {
|
|
1567
|
+
admin_override: "admin_override",
|
|
1568
|
+
hard_blocked: "hard_blocked"
|
|
1241
1569
|
};
|
|
1242
|
-
const
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1570
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = {
|
|
1571
|
+
analyticsUsage: "analyticsUsage",
|
|
1572
|
+
artifacts: "artifacts",
|
|
1573
|
+
bandwidth: "bandwidth",
|
|
1574
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1575
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1576
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1577
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1578
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1579
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1580
|
+
dataCacheRead: "dataCacheRead",
|
|
1581
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1582
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1583
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1584
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1585
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1586
|
+
edgeRequest: "edgeRequest",
|
|
1587
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1588
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1589
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1590
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1591
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1592
|
+
fluidDuration: "fluidDuration",
|
|
1593
|
+
functionDuration: "functionDuration",
|
|
1594
|
+
functionInvocation: "functionInvocation",
|
|
1595
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1596
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1597
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1598
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1599
|
+
monitoringMetric: "monitoringMetric",
|
|
1600
|
+
observabilityEvent: "observabilityEvent",
|
|
1601
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1602
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1603
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1604
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1605
|
+
sourceImages: "sourceImages",
|
|
1606
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1607
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1608
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1609
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1610
|
+
};
|
|
1611
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = {
|
|
1612
|
+
admin_override: "admin_override",
|
|
1613
|
+
hard_blocked: "hard_blocked"
|
|
1614
|
+
};
|
|
1615
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = {
|
|
1616
|
+
analyticsUsage: "analyticsUsage",
|
|
1617
|
+
artifacts: "artifacts",
|
|
1618
|
+
bandwidth: "bandwidth",
|
|
1619
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1620
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1621
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1622
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1623
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1624
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1625
|
+
dataCacheRead: "dataCacheRead",
|
|
1626
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1627
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1628
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1629
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1630
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1631
|
+
edgeRequest: "edgeRequest",
|
|
1632
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1633
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1634
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1635
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1636
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1637
|
+
fluidDuration: "fluidDuration",
|
|
1638
|
+
functionDuration: "functionDuration",
|
|
1639
|
+
functionInvocation: "functionInvocation",
|
|
1640
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1641
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1642
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1643
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1644
|
+
monitoringMetric: "monitoringMetric",
|
|
1645
|
+
observabilityEvent: "observabilityEvent",
|
|
1646
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1647
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1648
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1649
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1650
|
+
sourceImages: "sourceImages",
|
|
1651
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1652
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1653
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1654
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1655
|
+
};
|
|
1656
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = {
|
|
1657
|
+
admin_override: "admin_override",
|
|
1658
|
+
hard_blocked: "hard_blocked"
|
|
1659
|
+
};
|
|
1660
|
+
const userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = {
|
|
1661
|
+
admin_override: "admin_override",
|
|
1662
|
+
hard_blocked: "hard_blocked",
|
|
1663
|
+
limits_exceeded: "limits_exceeded"
|
|
1664
|
+
};
|
|
1665
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = {
|
|
1666
|
+
admin_override: "admin_override",
|
|
1667
|
+
hard_blocked: "hard_blocked",
|
|
1668
|
+
limits_exceeded: "limits_exceeded"
|
|
1669
|
+
};
|
|
1670
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = {
|
|
1671
|
+
admin_override: "admin_override",
|
|
1672
|
+
hard_blocked: "hard_blocked",
|
|
1673
|
+
limits_exceeded: "limits_exceeded"
|
|
1674
|
+
};
|
|
1675
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = {
|
|
1676
|
+
admin_override: "admin_override",
|
|
1677
|
+
hard_blocked: "hard_blocked",
|
|
1678
|
+
limits_exceeded: "limits_exceeded"
|
|
1679
|
+
};
|
|
1680
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = {
|
|
1681
|
+
admin_override: "admin_override",
|
|
1682
|
+
hard_blocked: "hard_blocked",
|
|
1683
|
+
limits_exceeded: "limits_exceeded"
|
|
1684
|
+
};
|
|
1685
|
+
const userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = {
|
|
1686
|
+
admin_override: "admin_override",
|
|
1687
|
+
hard_blocked: "hard_blocked",
|
|
1688
|
+
limits_exceeded: "limits_exceeded"
|
|
1689
|
+
};
|
|
1690
|
+
const userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = {
|
|
1691
|
+
admin_override: "admin_override",
|
|
1692
|
+
hard_blocked: "hard_blocked",
|
|
1693
|
+
limits_exceeded: "limits_exceeded"
|
|
1694
|
+
};
|
|
1695
|
+
const userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = {
|
|
1696
|
+
admin_override: "admin_override",
|
|
1697
|
+
hard_blocked: "hard_blocked",
|
|
1698
|
+
limits_exceeded: "limits_exceeded"
|
|
1699
|
+
};
|
|
1700
|
+
const userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
1701
|
+
admin_override: "admin_override",
|
|
1702
|
+
hard_blocked: "hard_blocked",
|
|
1703
|
+
limits_exceeded: "limits_exceeded"
|
|
1704
|
+
};
|
|
1705
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = {
|
|
1706
|
+
disabled: "disabled",
|
|
1707
|
+
enabled: "enabled"
|
|
1708
|
+
};
|
|
1709
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = {
|
|
1710
|
+
admin_removal: "admin_removal",
|
|
1711
|
+
passkey: "passkey",
|
|
1712
|
+
self_serve_recovery: "self_serve_recovery",
|
|
1713
|
+
totp: "totp",
|
|
1714
|
+
unknown: "unknown",
|
|
1715
|
+
user_disabled: "user_disabled"
|
|
1716
|
+
};
|
|
1717
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = {
|
|
1718
|
+
admin: "admin",
|
|
1246
1719
|
user: "user"
|
|
1247
1720
|
};
|
|
1248
|
-
const
|
|
1249
|
-
|
|
1721
|
+
const userEventPayloadQueryTypeEnum = {
|
|
1722
|
+
"data-edit": "data-edit",
|
|
1723
|
+
"data-view": "data-view",
|
|
1724
|
+
schema: "schema",
|
|
1725
|
+
user: "user"
|
|
1726
|
+
};
|
|
1727
|
+
const userEventPayloadFactorsOriginEnum = {
|
|
1728
|
+
apple: "apple",
|
|
1729
|
+
bitbucket: "bitbucket",
|
|
1730
|
+
chatgpt: "chatgpt",
|
|
1731
|
+
email: "email",
|
|
1732
|
+
github: "github",
|
|
1733
|
+
gitlab: "gitlab",
|
|
1734
|
+
google: "google",
|
|
1735
|
+
otp: "otp",
|
|
1736
|
+
saml: "saml"
|
|
1737
|
+
};
|
|
1738
|
+
const userEventPayloadNextDefaultEnum = {
|
|
1739
|
+
BILLING: "BILLING",
|
|
1740
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1741
|
+
DEVELOPER: "DEVELOPER",
|
|
1742
|
+
MEMBER: "MEMBER",
|
|
1743
|
+
OWNER: "OWNER",
|
|
1744
|
+
SECURITY: "SECURITY",
|
|
1745
|
+
VIEWER: "VIEWER",
|
|
1746
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1250
1747
|
};
|
|
1251
|
-
const
|
|
1748
|
+
const userEventPayloadBillingPlanEnum = {
|
|
1252
1749
|
enterprise: "enterprise",
|
|
1253
1750
|
platform: "platform"
|
|
1254
1751
|
};
|
|
1255
|
-
const
|
|
1752
|
+
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1256
1753
|
all: "all",
|
|
1257
1754
|
preview: "preview"
|
|
1258
1755
|
};
|
|
1259
|
-
const
|
|
1756
|
+
const userEventPayloadPreviousNewResourceBlockingPolicyEnum = {
|
|
1260
1757
|
allow: "allow",
|
|
1261
1758
|
block: "block"
|
|
1262
1759
|
};
|
|
1263
|
-
const
|
|
1760
|
+
const userEventPayloadNextEnforcementScopeEnum = {
|
|
1264
1761
|
all: "all",
|
|
1265
1762
|
preview: "preview"
|
|
1266
1763
|
};
|
|
1267
|
-
const
|
|
1764
|
+
const userEventPayloadNextNewResourceBlockingPolicyEnum = {
|
|
1765
|
+
allow: "allow",
|
|
1766
|
+
block: "block"
|
|
1767
|
+
};
|
|
1768
|
+
const userEventPayloadApprovalScopeEnum = {
|
|
1769
|
+
all: "all",
|
|
1770
|
+
preview: "preview"
|
|
1771
|
+
};
|
|
1772
|
+
const userEventPayloadKindEnum = {
|
|
1268
1773
|
connectSrc: "connectSrc",
|
|
1269
1774
|
script: "script"
|
|
1270
1775
|
};
|
|
1271
|
-
const
|
|
1776
|
+
const userEventPayloadPreviousPassportDeploymentTypeEnum = {
|
|
1272
1777
|
all: "all",
|
|
1273
1778
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1274
1779
|
preview: "preview",
|
|
1275
1780
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1276
1781
|
};
|
|
1277
|
-
const
|
|
1782
|
+
const userEventPayloadNextPassportDeploymentTypeEnum = {
|
|
1783
|
+
all: "all",
|
|
1784
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1785
|
+
preview: "preview",
|
|
1786
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1787
|
+
};
|
|
1788
|
+
const roleEnum = {
|
|
1789
|
+
BILLING: "BILLING",
|
|
1790
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1791
|
+
DEVELOPER: "DEVELOPER",
|
|
1792
|
+
MEMBER: "MEMBER",
|
|
1793
|
+
OWNER: "OWNER",
|
|
1794
|
+
SECURITY: "SECURITY",
|
|
1795
|
+
VIEWER: "VIEWER",
|
|
1796
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1797
|
+
};
|
|
1798
|
+
const originEnum = {
|
|
1799
|
+
"account-update": "account-update",
|
|
1800
|
+
bitbucket: "bitbucket",
|
|
1801
|
+
dsync: "dsync",
|
|
1802
|
+
feedback: "feedback",
|
|
1803
|
+
github: "github",
|
|
1804
|
+
gitlab: "gitlab",
|
|
1805
|
+
import: "import",
|
|
1806
|
+
link: "link",
|
|
1807
|
+
mail: "mail",
|
|
1808
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1809
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1810
|
+
"nsnb-invite": "nsnb-invite",
|
|
1811
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1812
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1813
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1814
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1815
|
+
"organization-teams": "organization-teams",
|
|
1816
|
+
saml: "saml",
|
|
1817
|
+
teams: "teams"
|
|
1818
|
+
};
|
|
1819
|
+
const userEventPayloadWidgetEnum = {
|
|
1820
|
+
alert: "alert",
|
|
1821
|
+
"analytics-online": "analytics-online",
|
|
1822
|
+
"analytics-page-views": "analytics-page-views",
|
|
1823
|
+
"analytics-visitors": "analytics-visitors",
|
|
1824
|
+
"firewall-allowed": "firewall-allowed",
|
|
1825
|
+
"firewall-denied": "firewall-denied",
|
|
1826
|
+
"observability-alert": "observability-alert",
|
|
1827
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
1828
|
+
"observability-error-rate": "observability-error-rate",
|
|
1829
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
1830
|
+
online: "online",
|
|
1831
|
+
res: "res",
|
|
1832
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
1833
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
1834
|
+
"speed-insights-res": "speed-insights-res"
|
|
1835
|
+
};
|
|
1836
|
+
const userEventPayloadBuildQueueConfigurationEnum = {
|
|
1278
1837
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1279
1838
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1280
1839
|
};
|
|
1281
|
-
const
|
|
1840
|
+
const userEventPayloadOldBuildQueueConfigurationEnum = {
|
|
1282
1841
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1283
1842
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1284
1843
|
};
|
|
1285
|
-
const
|
|
1844
|
+
const userEventPayloadPreviousBranchMatcherTypeEnum = {
|
|
1845
|
+
endsWith: "endsWith",
|
|
1846
|
+
equals: "equals",
|
|
1847
|
+
startsWith: "startsWith"
|
|
1848
|
+
};
|
|
1849
|
+
const userEventPayloadNextBranchMatcherTypeEnum = {
|
|
1850
|
+
endsWith: "endsWith",
|
|
1851
|
+
equals: "equals",
|
|
1852
|
+
startsWith: "startsWith"
|
|
1853
|
+
};
|
|
1854
|
+
const userEventPayloadPreviousGitProviderEnum = {
|
|
1286
1855
|
bitbucket: "bitbucket",
|
|
1287
1856
|
"cursor-origin": "cursor-origin",
|
|
1288
1857
|
github: "github",
|
|
@@ -1291,96 +1860,265 @@ const gitProviderEnum = {
|
|
|
1291
1860
|
gitlab: "gitlab",
|
|
1292
1861
|
vercel: "vercel"
|
|
1293
1862
|
};
|
|
1294
|
-
const
|
|
1863
|
+
const userEventPayloadNextGitProviderEnum = {
|
|
1864
|
+
bitbucket: "bitbucket",
|
|
1865
|
+
"cursor-origin": "cursor-origin",
|
|
1866
|
+
github: "github",
|
|
1867
|
+
"github-custom-host": "github-custom-host",
|
|
1868
|
+
"github-limited": "github-limited",
|
|
1869
|
+
gitlab: "gitlab",
|
|
1870
|
+
vercel: "vercel"
|
|
1871
|
+
};
|
|
1872
|
+
const userEventPayloadGitProviderEnum = {
|
|
1873
|
+
bitbucket: "bitbucket",
|
|
1874
|
+
"cursor-origin": "cursor-origin",
|
|
1875
|
+
github: "github",
|
|
1876
|
+
"github-custom-host": "github-custom-host",
|
|
1877
|
+
"github-limited": "github-limited",
|
|
1878
|
+
gitlab: "gitlab",
|
|
1879
|
+
vercel: "vercel"
|
|
1880
|
+
};
|
|
1881
|
+
const userEventPayloadCreateDeploymentsEnum = {
|
|
1295
1882
|
disabled: "disabled",
|
|
1296
1883
|
enabled: "enabled"
|
|
1297
1884
|
};
|
|
1298
|
-
const
|
|
1885
|
+
const userEventPayloadProjectsRoleEnum = {
|
|
1886
|
+
ADMIN: "ADMIN",
|
|
1887
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1888
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1889
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1890
|
+
};
|
|
1891
|
+
const userEventPayloadProjectMembershipRoleEnum = {
|
|
1892
|
+
ADMIN: "ADMIN",
|
|
1893
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1894
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1895
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1896
|
+
};
|
|
1897
|
+
const userEventPayloadProjectRoleEnum = {
|
|
1898
|
+
ADMIN: "ADMIN",
|
|
1899
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1900
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1901
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1902
|
+
};
|
|
1903
|
+
const userEventPayloadRemovedMembershipRoleEnum = {
|
|
1904
|
+
ADMIN: "ADMIN",
|
|
1905
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1906
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1907
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1908
|
+
};
|
|
1909
|
+
const userEventPayloadProjectMembershipPreviousRoleEnum = {
|
|
1910
|
+
ADMIN: "ADMIN",
|
|
1911
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1912
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1913
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1914
|
+
};
|
|
1915
|
+
const userEventPayloadPasswordProtectionDeploymentTypeEnum = {
|
|
1916
|
+
all: "all",
|
|
1917
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1918
|
+
preview: "preview",
|
|
1919
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1920
|
+
};
|
|
1921
|
+
const userEventPayloadPasswordProtection = {
|
|
1922
|
+
all: "all",
|
|
1923
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1924
|
+
preview: "preview",
|
|
1925
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1926
|
+
};
|
|
1927
|
+
const userEventPayloadOldPasswordProtectionDeploymentTypeEnum = {
|
|
1928
|
+
all: "all",
|
|
1929
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1930
|
+
preview: "preview",
|
|
1931
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1932
|
+
};
|
|
1933
|
+
const userEventPayloadOldPasswordProtection = {
|
|
1934
|
+
all: "all",
|
|
1935
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1936
|
+
preview: "preview",
|
|
1937
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1938
|
+
};
|
|
1939
|
+
const userEventPayloadReasonCodeEnum = {
|
|
1299
1940
|
BACKOFFICE: "BACKOFFICE",
|
|
1300
1941
|
PUBLIC_API: "PUBLIC_API"
|
|
1301
1942
|
};
|
|
1302
|
-
const
|
|
1943
|
+
const userEventPayloadConsentEnum = {
|
|
1303
1944
|
granted: "granted",
|
|
1304
1945
|
refused: "refused"
|
|
1305
1946
|
};
|
|
1306
|
-
const
|
|
1947
|
+
const userEventPayloadPreviousIssuerModeEnum = {
|
|
1948
|
+
global: "global",
|
|
1949
|
+
team: "team"
|
|
1950
|
+
};
|
|
1951
|
+
const userEventPayloadNextIssuerModeEnum = {
|
|
1307
1952
|
global: "global",
|
|
1308
1953
|
team: "team"
|
|
1309
1954
|
};
|
|
1310
|
-
const
|
|
1955
|
+
const userEventPayloadSsoProtectionDeploymentTypeEnum = {
|
|
1956
|
+
all: "all",
|
|
1957
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1958
|
+
preview: "preview",
|
|
1959
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1960
|
+
};
|
|
1961
|
+
const userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1962
|
+
all: "all",
|
|
1963
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1964
|
+
preview: "preview",
|
|
1965
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1966
|
+
};
|
|
1967
|
+
const userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1968
|
+
all: "all",
|
|
1969
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1970
|
+
preview: "preview",
|
|
1971
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1972
|
+
};
|
|
1973
|
+
const userEventPayloadSsoProtection = {
|
|
1974
|
+
all: "all",
|
|
1975
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1976
|
+
preview: "preview",
|
|
1977
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1978
|
+
};
|
|
1979
|
+
const userEventPayloadOldSsoProtectionDeploymentTypeEnum = {
|
|
1311
1980
|
all: "all",
|
|
1312
1981
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1313
1982
|
preview: "preview",
|
|
1314
1983
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1315
1984
|
};
|
|
1316
|
-
const
|
|
1985
|
+
const userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1317
1986
|
all: "all",
|
|
1318
1987
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1319
1988
|
preview: "preview",
|
|
1320
1989
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1321
1990
|
};
|
|
1322
|
-
const
|
|
1991
|
+
const userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1992
|
+
all: "all",
|
|
1993
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1994
|
+
preview: "preview",
|
|
1995
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1996
|
+
};
|
|
1997
|
+
const userEventPayloadOldSsoProtection = {
|
|
1998
|
+
all: "all",
|
|
1999
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
2000
|
+
preview: "preview",
|
|
2001
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2002
|
+
};
|
|
2003
|
+
const userEventPayloadTrustedIpsEnum = {
|
|
1323
2004
|
all: "all",
|
|
1324
2005
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1325
2006
|
preview: "preview",
|
|
1326
2007
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1327
2008
|
production: "production"
|
|
1328
2009
|
};
|
|
1329
|
-
const
|
|
2010
|
+
const userEventPayloadOldTrustedIpsEnum = {
|
|
1330
2011
|
all: "all",
|
|
1331
2012
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1332
2013
|
preview: "preview",
|
|
1333
2014
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1334
2015
|
production: "production"
|
|
1335
2016
|
};
|
|
1336
|
-
const
|
|
2017
|
+
const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
2018
|
+
flex: "flex",
|
|
2019
|
+
legacy: "legacy",
|
|
2020
|
+
platform: "platform",
|
|
2021
|
+
plus: "plus",
|
|
2022
|
+
unbundled: "unbundled"
|
|
2023
|
+
};
|
|
2024
|
+
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2025
|
+
flex: "flex",
|
|
1337
2026
|
legacy: "legacy",
|
|
1338
2027
|
platform: "platform",
|
|
1339
2028
|
plus: "plus",
|
|
1340
2029
|
unbundled: "unbundled"
|
|
1341
2030
|
};
|
|
1342
|
-
const
|
|
2031
|
+
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2032
|
+
flex: "flex",
|
|
2033
|
+
legacy: "legacy",
|
|
2034
|
+
platform: "platform",
|
|
2035
|
+
plus: "plus",
|
|
2036
|
+
unbundled: "unbundled"
|
|
2037
|
+
};
|
|
2038
|
+
const userEventPayloadStoreTypeEnum = {
|
|
2039
|
+
blob: "blob",
|
|
2040
|
+
"edge-config": "edge-config",
|
|
2041
|
+
integration: "integration",
|
|
1343
2042
|
postgres: "postgres",
|
|
1344
2043
|
redis: "redis"
|
|
1345
2044
|
};
|
|
1346
|
-
const
|
|
2045
|
+
const userEventPayloadAccessEnum = {
|
|
1347
2046
|
private: "private",
|
|
1348
2047
|
public: "public"
|
|
1349
2048
|
};
|
|
1350
|
-
const
|
|
2049
|
+
const userEventPayloadActorTypeEnum = {
|
|
2050
|
+
admin: "admin",
|
|
2051
|
+
user: "user"
|
|
2052
|
+
};
|
|
2053
|
+
const userEventPayloadPreviousScopeEnum = {
|
|
2054
|
+
all: "all",
|
|
2055
|
+
private: "private",
|
|
2056
|
+
public: "public",
|
|
2057
|
+
selected_repos: "selected_repos"
|
|
2058
|
+
};
|
|
2059
|
+
const userEventPayloadNextScopeEnum = {
|
|
2060
|
+
all: "all",
|
|
2061
|
+
private: "private",
|
|
2062
|
+
public: "public",
|
|
2063
|
+
selected_repos: "selected_repos"
|
|
2064
|
+
};
|
|
2065
|
+
const userEventPayloadPreviousEnum = {
|
|
1351
2066
|
basic: "basic",
|
|
1352
2067
|
elastic: "elastic",
|
|
1353
2068
|
enhanced: "enhanced",
|
|
1354
2069
|
standard: "standard",
|
|
1355
2070
|
turbo: "turbo"
|
|
1356
2071
|
};
|
|
1357
|
-
const
|
|
2072
|
+
const userEventPayloadNextEnum = {
|
|
1358
2073
|
basic: "basic",
|
|
1359
2074
|
elastic: "elastic",
|
|
1360
2075
|
enhanced: "enhanced",
|
|
1361
2076
|
standard: "standard",
|
|
1362
2077
|
turbo: "turbo"
|
|
1363
2078
|
};
|
|
1364
|
-
const
|
|
2079
|
+
const userEventPayloadReasonEnum = {
|
|
2080
|
+
"basic-floor": "basic-floor",
|
|
2081
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
2082
|
+
"enospc-failure": "enospc-failure",
|
|
2083
|
+
"enterprise-floor": "enterprise-floor",
|
|
2084
|
+
"high-peak-disk": "high-peak-disk",
|
|
2085
|
+
"high-peak-memory": "high-peak-memory",
|
|
2086
|
+
"long-build-duration": "long-build-duration",
|
|
2087
|
+
"oom-failure": "oom-failure",
|
|
2088
|
+
"plan-change": "plan-change",
|
|
2089
|
+
"short-build-duration": "short-build-duration",
|
|
2090
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
2091
|
+
};
|
|
2092
|
+
const userEventPayloadEnvironmentEnum = {
|
|
1365
2093
|
preview: "preview",
|
|
1366
2094
|
production: "production"
|
|
1367
2095
|
};
|
|
1368
|
-
const
|
|
2096
|
+
const userEventPayloadEnabledEnum = {
|
|
1369
2097
|
default: "default",
|
|
1370
2098
|
off: "off",
|
|
1371
2099
|
on: "on"
|
|
1372
2100
|
};
|
|
1373
|
-
const
|
|
2101
|
+
const userEventPayloadRoleEnum = {
|
|
2102
|
+
BILLING: "BILLING",
|
|
2103
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2104
|
+
DEVELOPER: "DEVELOPER",
|
|
2105
|
+
MEMBER: "MEMBER",
|
|
2106
|
+
OWNER: "OWNER",
|
|
2107
|
+
SECURITY: "SECURITY",
|
|
2108
|
+
VIEWER: "VIEWER",
|
|
2109
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2110
|
+
};
|
|
2111
|
+
const userEventPayloadPreviousPlanEnum = {
|
|
1374
2112
|
enterprise: "enterprise",
|
|
1375
2113
|
hobby: "hobby",
|
|
1376
2114
|
pro: "pro"
|
|
1377
2115
|
};
|
|
1378
|
-
const
|
|
2116
|
+
const userEventPayloadNewPlanEnum = {
|
|
1379
2117
|
enterprise: "enterprise",
|
|
1380
2118
|
hobby: "hobby",
|
|
1381
2119
|
pro: "pro"
|
|
1382
2120
|
};
|
|
1383
|
-
const
|
|
2121
|
+
const userEventPayloadSourceEnum = {
|
|
1384
2122
|
"account-update": "account-update",
|
|
1385
2123
|
bitbucket: "bitbucket",
|
|
1386
2124
|
dsync: "dsync",
|
|
@@ -1401,39 +2139,149 @@ const sourceEnum = {
|
|
|
1401
2139
|
saml: "saml",
|
|
1402
2140
|
teams: "teams"
|
|
1403
2141
|
};
|
|
1404
|
-
const
|
|
2142
|
+
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2143
|
+
BILLING: "BILLING",
|
|
2144
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2145
|
+
DEVELOPER: "DEVELOPER",
|
|
2146
|
+
MEMBER: "MEMBER",
|
|
2147
|
+
OWNER: "OWNER",
|
|
2148
|
+
SECURITY: "SECURITY",
|
|
2149
|
+
VIEWER: "VIEWER",
|
|
2150
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2151
|
+
};
|
|
2152
|
+
const userEventPayloadTeamRolesEnum = {
|
|
2153
|
+
BILLING: "BILLING",
|
|
2154
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2155
|
+
DEVELOPER: "DEVELOPER",
|
|
2156
|
+
MEMBER: "MEMBER",
|
|
2157
|
+
OWNER: "OWNER",
|
|
2158
|
+
SECURITY: "SECURITY",
|
|
2159
|
+
VIEWER: "VIEWER",
|
|
2160
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2161
|
+
};
|
|
2162
|
+
const userEventPayloadPreviousTeamPermissionsEnum = {
|
|
2163
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2164
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2165
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2166
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2167
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
2168
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2169
|
+
ConnectorManager: "ConnectorManager",
|
|
2170
|
+
CreateProject: "CreateProject",
|
|
2171
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2172
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2173
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2174
|
+
IntegrationManager: "IntegrationManager",
|
|
2175
|
+
OrgAdmin: "OrgAdmin",
|
|
2176
|
+
OrgViewer: "OrgViewer",
|
|
2177
|
+
UsageViewer: "UsageViewer",
|
|
2178
|
+
V0Builder: "V0Builder",
|
|
2179
|
+
V0Chatter: "V0Chatter",
|
|
2180
|
+
V0Viewer: "V0Viewer",
|
|
2181
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2182
|
+
};
|
|
2183
|
+
const userEventPayloadTeamPermissionsEnum = {
|
|
2184
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2185
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2186
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2187
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2188
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
2189
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2190
|
+
ConnectorManager: "ConnectorManager",
|
|
2191
|
+
CreateProject: "CreateProject",
|
|
2192
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2193
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2194
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2195
|
+
IntegrationManager: "IntegrationManager",
|
|
2196
|
+
OrgAdmin: "OrgAdmin",
|
|
2197
|
+
OrgViewer: "OrgViewer",
|
|
2198
|
+
UsageViewer: "UsageViewer",
|
|
2199
|
+
V0Builder: "V0Builder",
|
|
2200
|
+
V0Chatter: "V0Chatter",
|
|
2201
|
+
V0Viewer: "V0Viewer",
|
|
2202
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2203
|
+
};
|
|
2204
|
+
const userEventPayloadPlanEnum = {
|
|
2205
|
+
enterprise: "enterprise",
|
|
2206
|
+
hobby: "hobby",
|
|
2207
|
+
pro: "pro"
|
|
2208
|
+
};
|
|
2209
|
+
const userEventPayloadDecisionEnum = {
|
|
1405
2210
|
keep_on: "keep_on",
|
|
1406
2211
|
turn_off: "turn_off"
|
|
1407
2212
|
};
|
|
1408
|
-
const
|
|
2213
|
+
const userEventPayloadScopeEnum = {
|
|
2214
|
+
project: "project",
|
|
2215
|
+
team: "team",
|
|
2216
|
+
user: "user"
|
|
2217
|
+
};
|
|
2218
|
+
const userEventPayloadSamplingEnvEnum = {
|
|
1409
2219
|
preview: "preview",
|
|
1410
2220
|
production: "production"
|
|
1411
2221
|
};
|
|
1412
|
-
const
|
|
2222
|
+
const userEventPayloadMethodEnum = {
|
|
2223
|
+
passkey: "passkey",
|
|
2224
|
+
self_serve_recovery: "self_serve_recovery",
|
|
2225
|
+
totp: "totp",
|
|
2226
|
+
user_disabled: "user_disabled"
|
|
2227
|
+
};
|
|
2228
|
+
const userEventPayloadAllowedMethodsEnum = {
|
|
2229
|
+
"recovery-code": "recovery-code",
|
|
2230
|
+
totp: "totp",
|
|
2231
|
+
webauthn: "webauthn"
|
|
2232
|
+
};
|
|
2233
|
+
const userEventPayloadContextEnum = {
|
|
1413
2234
|
login: "login",
|
|
1414
2235
|
sudo: "sudo"
|
|
1415
2236
|
};
|
|
1416
|
-
const
|
|
2237
|
+
const userEventPayloadDecisionBasisEnum = {
|
|
1417
2238
|
gmail: "gmail",
|
|
1418
2239
|
none: "none",
|
|
1419
2240
|
"workspace-mx": "workspace-mx"
|
|
1420
2241
|
};
|
|
1421
|
-
const
|
|
2242
|
+
const userEventPayloadDecisionMxOutcomeEnum = {
|
|
1422
2243
|
google: "google",
|
|
1423
2244
|
"lookup-error": "lookup-error",
|
|
1424
2245
|
"non-google": "non-google",
|
|
1425
2246
|
"not-checked": "not-checked"
|
|
1426
2247
|
};
|
|
1427
|
-
const
|
|
2248
|
+
const userEventPayloadTierEnum = {
|
|
1428
2249
|
plus: "plus",
|
|
1429
2250
|
pro: "pro"
|
|
1430
2251
|
};
|
|
1431
|
-
const
|
|
1432
|
-
authorization_code: "authorization_code",
|
|
1433
|
-
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
1434
|
-
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2252
|
+
const userEventPayloadGrantTypeEnum = {
|
|
2253
|
+
authorization_code: "authorization_code",
|
|
2254
|
+
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
2255
|
+
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2256
|
+
};
|
|
2257
|
+
const userEventPayloadAuthMethodEnum = {
|
|
2258
|
+
app: "app",
|
|
2259
|
+
apple: "apple",
|
|
2260
|
+
bitbucket: "bitbucket",
|
|
2261
|
+
chatgpt: "chatgpt",
|
|
2262
|
+
email: "email",
|
|
2263
|
+
emu: "emu",
|
|
2264
|
+
github: "github",
|
|
2265
|
+
"github-webhook": "github-webhook",
|
|
2266
|
+
gitlab: "gitlab",
|
|
2267
|
+
google: "google",
|
|
2268
|
+
invite: "invite",
|
|
2269
|
+
manual: "manual",
|
|
2270
|
+
otp: "otp",
|
|
2271
|
+
passkey: "passkey",
|
|
2272
|
+
saml: "saml",
|
|
2273
|
+
sms: "sms",
|
|
2274
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
2275
|
+
};
|
|
2276
|
+
const userEventPayloadAppClientAuthenticationUsedMethodEnum = {
|
|
2277
|
+
client_secret_basic: "client_secret_basic",
|
|
2278
|
+
client_secret_jwt: "client_secret_jwt",
|
|
2279
|
+
client_secret_post: "client_secret_post",
|
|
2280
|
+
none: "none",
|
|
2281
|
+
oidc_token: "oidc_token",
|
|
2282
|
+
private_key_jwt: "private_key_jwt"
|
|
1435
2283
|
};
|
|
1436
|
-
const
|
|
2284
|
+
const userEventPayloadOriginEnum = {
|
|
1437
2285
|
app: "app",
|
|
1438
2286
|
apple: "apple",
|
|
1439
2287
|
bitbucket: "bitbucket",
|
|
@@ -1452,13 +2300,7 @@ const authMethodEnum = {
|
|
|
1452
2300
|
sms: "sms",
|
|
1453
2301
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
1454
2302
|
};
|
|
1455
|
-
const
|
|
1456
|
-
vcp_: "vcp_"
|
|
1457
|
-
};
|
|
1458
|
-
const refreshTokenPrefixEnum = {
|
|
1459
|
-
vcr_: "vcr_"
|
|
1460
|
-
};
|
|
1461
|
-
const projectScopeEnum = {
|
|
2303
|
+
const userEventPayloadProjectScopeEnum = {
|
|
1462
2304
|
account: "account",
|
|
1463
2305
|
"project-only": "project-only"
|
|
1464
2306
|
};
|
|
@@ -1497,6 +2339,7 @@ const listEventTypeNameEnum = {
|
|
|
1497
2339
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
1498
2340
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
1499
2341
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2342
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
1500
2343
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
1501
2344
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
1502
2345
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -1629,6 +2472,7 @@ const listEventTypeNameEnum = {
|
|
|
1629
2472
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
1630
2473
|
"domain-delegated": "domain-delegated",
|
|
1631
2474
|
"domain-delete": "domain-delete",
|
|
2475
|
+
"domain-ech-change": "domain-ech-change",
|
|
1632
2476
|
"domain-move-in": "domain-move-in",
|
|
1633
2477
|
"domain-move-out": "domain-move-out",
|
|
1634
2478
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -1683,6 +2527,7 @@ const listEventTypeNameEnum = {
|
|
|
1683
2527
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
1684
2528
|
"env-variable-rotated": "env-variable-rotated",
|
|
1685
2529
|
"experiment-created": "experiment-created",
|
|
2530
|
+
"experiment-deleted": "experiment-deleted",
|
|
1686
2531
|
"experiment-transitioned": "experiment-transitioned",
|
|
1687
2532
|
"experiment-updated": "experiment-updated",
|
|
1688
2533
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -1708,7 +2553,19 @@ const listEventTypeNameEnum = {
|
|
|
1708
2553
|
"flags-transferred": "flags-transferred",
|
|
1709
2554
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1710
2555
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2556
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
2557
|
+
"global-config-created": "global-config-created",
|
|
2558
|
+
"global-config-deleted": "global-config-deleted",
|
|
2559
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
2560
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
2561
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
2562
|
+
"global-config-token-created": "global-config-token-created",
|
|
2563
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
2564
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
2565
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
2566
|
+
"global-config-updated": "global-config-updated",
|
|
1711
2567
|
"instant-rollback-created": "instant-rollback-created",
|
|
2568
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
1712
2569
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1713
2570
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1714
2571
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -1912,6 +2769,7 @@ const listEventTypeNameEnum = {
|
|
|
1912
2769
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
1913
2770
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
1914
2771
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2772
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
1915
2773
|
"project-sso-protection": "project-sso-protection",
|
|
1916
2774
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
1917
2775
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2035,6 +2893,8 @@ const listEventTypeNameEnum = {
|
|
|
2035
2893
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2036
2894
|
"tracing-configured": "tracing-configured",
|
|
2037
2895
|
"tracing-disabled": "tracing-disabled",
|
|
2896
|
+
"tracing-paused": "tracing-paused",
|
|
2897
|
+
"tracing-resumed": "tracing-resumed",
|
|
2038
2898
|
"unlink-login-connection": "unlink-login-connection",
|
|
2039
2899
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2040
2900
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2045,6 +2905,8 @@ const listEventTypeNameEnum = {
|
|
|
2045
2905
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2046
2906
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2047
2907
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2908
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2909
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2048
2910
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2049
2911
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2050
2912
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2162,6 +3024,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2162
3024
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2163
3025
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2164
3026
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
3027
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
2165
3028
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2166
3029
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
2167
3030
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -2294,6 +3157,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2294
3157
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
2295
3158
|
"domain-delegated": "domain-delegated",
|
|
2296
3159
|
"domain-delete": "domain-delete",
|
|
3160
|
+
"domain-ech-change": "domain-ech-change",
|
|
2297
3161
|
"domain-move-in": "domain-move-in",
|
|
2298
3162
|
"domain-move-out": "domain-move-out",
|
|
2299
3163
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -2348,6 +3212,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2348
3212
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
2349
3213
|
"env-variable-rotated": "env-variable-rotated",
|
|
2350
3214
|
"experiment-created": "experiment-created",
|
|
3215
|
+
"experiment-deleted": "experiment-deleted",
|
|
2351
3216
|
"experiment-transitioned": "experiment-transitioned",
|
|
2352
3217
|
"experiment-updated": "experiment-updated",
|
|
2353
3218
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -2373,7 +3238,19 @@ const listEventTypeReplacedByEnum = {
|
|
|
2373
3238
|
"flags-transferred": "flags-transferred",
|
|
2374
3239
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2375
3240
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3241
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
3242
|
+
"global-config-created": "global-config-created",
|
|
3243
|
+
"global-config-deleted": "global-config-deleted",
|
|
3244
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
3245
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
3246
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
3247
|
+
"global-config-token-created": "global-config-token-created",
|
|
3248
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
3249
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
3250
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
3251
|
+
"global-config-updated": "global-config-updated",
|
|
2376
3252
|
"instant-rollback-created": "instant-rollback-created",
|
|
3253
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
2377
3254
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2378
3255
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2379
3256
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -2577,6 +3454,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2577
3454
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2578
3455
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2579
3456
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
3457
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2580
3458
|
"project-sso-protection": "project-sso-protection",
|
|
2581
3459
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
2582
3460
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2700,6 +3578,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2700
3578
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2701
3579
|
"tracing-configured": "tracing-configured",
|
|
2702
3580
|
"tracing-disabled": "tracing-disabled",
|
|
3581
|
+
"tracing-paused": "tracing-paused",
|
|
3582
|
+
"tracing-resumed": "tracing-resumed",
|
|
2703
3583
|
"unlink-login-connection": "unlink-login-connection",
|
|
2704
3584
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2705
3585
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2710,6 +3590,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2710
3590
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2711
3591
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2712
3592
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
3593
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
3594
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2713
3595
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2714
3596
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2715
3597
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2767,8 +3649,34 @@ const listEventTypeReplacedByEnum = {
|
|
|
2767
3649
|
"webhook-updated": "webhook-updated",
|
|
2768
3650
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2769
3651
|
};
|
|
2770
|
-
const
|
|
2771
|
-
|
|
3652
|
+
const listEventTypesResponseCategoriesNameEnum = {
|
|
3653
|
+
account: "account",
|
|
3654
|
+
ai: "ai",
|
|
3655
|
+
"ai-gateway": "ai-gateway",
|
|
3656
|
+
billing: "billing",
|
|
3657
|
+
connect: "connect",
|
|
3658
|
+
deployment: "deployment",
|
|
3659
|
+
domain: "domain",
|
|
3660
|
+
edge: "edge",
|
|
3661
|
+
"env-variable": "env-variable",
|
|
3662
|
+
"feature-flags": "feature-flags",
|
|
3663
|
+
firewall: "firewall",
|
|
3664
|
+
integration: "integration",
|
|
3665
|
+
microfrontends: "microfrontends",
|
|
3666
|
+
network: "network",
|
|
3667
|
+
observability: "observability",
|
|
3668
|
+
other: "other",
|
|
3669
|
+
project: "project",
|
|
3670
|
+
security: "security",
|
|
3671
|
+
storage: "storage",
|
|
3672
|
+
team: "team",
|
|
3673
|
+
v0: "v0",
|
|
3674
|
+
"vercel-app": "vercel-app",
|
|
3675
|
+
workflow: "workflow"
|
|
3676
|
+
};
|
|
3677
|
+
const typeEnum = {
|
|
3678
|
+
list: "list",
|
|
3679
|
+
"list/inline": "list/inline"
|
|
2772
3680
|
};
|
|
2773
3681
|
const cmpEnum = {
|
|
2774
3682
|
after: "after",
|
|
@@ -2798,12 +3706,6 @@ const flagStateEnum = {
|
|
|
2798
3706
|
active: "active",
|
|
2799
3707
|
archived: "archived"
|
|
2800
3708
|
};
|
|
2801
|
-
const flagTypeNameEnum = {
|
|
2802
|
-
flag: "flag"
|
|
2803
|
-
};
|
|
2804
|
-
const marketplaceFlagTypeNameEnum = {
|
|
2805
|
-
marketplaceFlag: "marketplaceFlag"
|
|
2806
|
-
};
|
|
2807
3709
|
const marketplaceFlagStateEnum = {
|
|
2808
3710
|
active: "active",
|
|
2809
3711
|
archived: "archived"
|
|
@@ -2812,8 +3714,31 @@ const marketplaceFlagCategoryEnum = {
|
|
|
2812
3714
|
experiment: "experiment",
|
|
2813
3715
|
flag: "flag"
|
|
2814
3716
|
};
|
|
2815
|
-
const
|
|
2816
|
-
|
|
3717
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3718
|
+
list: "list",
|
|
3719
|
+
"list/inline": "list/inline"
|
|
3720
|
+
};
|
|
3721
|
+
const segmentDataRulesConditionsRhs = {
|
|
3722
|
+
false: false,
|
|
3723
|
+
true: true
|
|
3724
|
+
};
|
|
3725
|
+
const segmentDataRulesConditionsCmpEnum = {
|
|
3726
|
+
after: "after",
|
|
3727
|
+
before: "before",
|
|
3728
|
+
contains: "contains",
|
|
3729
|
+
containsAllOf: "containsAllOf",
|
|
3730
|
+
containsAnyOf: "containsAnyOf",
|
|
3731
|
+
containsNoneOf: "containsNoneOf",
|
|
3732
|
+
endsWith: "endsWith",
|
|
3733
|
+
eq: "eq",
|
|
3734
|
+
ex: "ex",
|
|
3735
|
+
gt: "gt",
|
|
3736
|
+
gte: "gte",
|
|
3737
|
+
lt: "lt",
|
|
3738
|
+
lte: "lte",
|
|
3739
|
+
oneOf: "oneOf",
|
|
3740
|
+
regex: "regex",
|
|
3741
|
+
startsWith: "startsWith"
|
|
2817
3742
|
};
|
|
2818
3743
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
2819
3744
|
client: "client",
|
|
@@ -2832,6 +3757,27 @@ const namedSandboxStatusEnum = {
|
|
|
2832
3757
|
stopped: "stopped",
|
|
2833
3758
|
stopping: "stopping"
|
|
2834
3759
|
};
|
|
3760
|
+
const namedSandboxFailoverRegionsEnum = {
|
|
3761
|
+
arn1: "arn1",
|
|
3762
|
+
bom1: "bom1",
|
|
3763
|
+
cdg1: "cdg1",
|
|
3764
|
+
cle1: "cle1",
|
|
3765
|
+
cpt1: "cpt1",
|
|
3766
|
+
dub1: "dub1",
|
|
3767
|
+
fra1: "fra1",
|
|
3768
|
+
gru1: "gru1",
|
|
3769
|
+
hkg1: "hkg1",
|
|
3770
|
+
hnd1: "hnd1",
|
|
3771
|
+
iad1: "iad1",
|
|
3772
|
+
icn1: "icn1",
|
|
3773
|
+
kix1: "kix1",
|
|
3774
|
+
lhr1: "lhr1",
|
|
3775
|
+
pdx1: "pdx1",
|
|
3776
|
+
sfo1: "sfo1",
|
|
3777
|
+
sin1: "sin1",
|
|
3778
|
+
syd1: "syd1",
|
|
3779
|
+
yul1: "yul1"
|
|
3780
|
+
};
|
|
2835
3781
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
2836
3782
|
"allow-all": "allow-all",
|
|
2837
3783
|
custom: "custom",
|
|
@@ -2891,6 +3837,8 @@ const invitedTeamMemberTeamPermissionsEnum = {
|
|
|
2891
3837
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2892
3838
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2893
3839
|
AiGatewaySettings: "AiGatewaySettings",
|
|
3840
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
3841
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2894
3842
|
ConnectorManager: "ConnectorManager",
|
|
2895
3843
|
CreateProject: "CreateProject",
|
|
2896
3844
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -2938,6 +3886,8 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
2938
3886
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2939
3887
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2940
3888
|
AiGatewaySettings: "AiGatewaySettings",
|
|
3889
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
3890
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2941
3891
|
ConnectorManager: "ConnectorManager",
|
|
2942
3892
|
CreateProject: "CreateProject",
|
|
2943
3893
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -2959,6 +3909,10 @@ const teamResourceConfigBuildMachineDefaultEnum = {
|
|
|
2959
3909
|
standard: "standard",
|
|
2960
3910
|
turbo: "turbo"
|
|
2961
3911
|
};
|
|
3912
|
+
const teamDisableHardAutoBlocks = {
|
|
3913
|
+
false: false,
|
|
3914
|
+
true: true
|
|
3915
|
+
};
|
|
2962
3916
|
const teamDefaultPassportDeploymentTypeEnum = {
|
|
2963
3917
|
all: "all",
|
|
2964
3918
|
all_except_custom_domains: "all_except_custom_domains",
|
|
@@ -3001,7 +3955,23 @@ const teamNsnbConfigPreferenceEnum = {
|
|
|
3001
3955
|
block: "block",
|
|
3002
3956
|
"manual-approval": "manual-approval"
|
|
3003
3957
|
};
|
|
3004
|
-
const
|
|
3958
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
3959
|
+
bitbucket: "bitbucket",
|
|
3960
|
+
github: "github"
|
|
3961
|
+
};
|
|
3962
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
3963
|
+
preview: "preview",
|
|
3964
|
+
production: "production"
|
|
3965
|
+
};
|
|
3966
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
3967
|
+
cli: "cli",
|
|
3968
|
+
"deploy-hook": "deploy-hook",
|
|
3969
|
+
git: "git",
|
|
3970
|
+
integration: "integration",
|
|
3971
|
+
"rest-api": "rest-api",
|
|
3972
|
+
v0: "v0"
|
|
3973
|
+
};
|
|
3974
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
3005
3975
|
preview: "preview",
|
|
3006
3976
|
production: "production"
|
|
3007
3977
|
};
|
|
@@ -3030,6 +4000,8 @@ const teamMembershipTeamPermissionsEnum = {
|
|
|
3030
4000
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
3031
4001
|
AiGatewayCredits: "AiGatewayCredits",
|
|
3032
4002
|
AiGatewaySettings: "AiGatewaySettings",
|
|
4003
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
4004
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
3033
4005
|
ConnectorManager: "ConnectorManager",
|
|
3034
4006
|
CreateProject: "CreateProject",
|
|
3035
4007
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -3103,6 +4075,8 @@ const teamLimitedMembershipTeamPermissionsEnum = {
|
|
|
3103
4075
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
3104
4076
|
AiGatewayCredits: "AiGatewayCredits",
|
|
3105
4077
|
AiGatewaySettings: "AiGatewaySettings",
|
|
4078
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
4079
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
3106
4080
|
ConnectorManager: "ConnectorManager",
|
|
3107
4081
|
CreateProject: "CreateProject",
|
|
3108
4082
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -3138,6 +4112,32 @@ const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
|
3138
4112
|
saml: "saml",
|
|
3139
4113
|
teams: "teams"
|
|
3140
4114
|
};
|
|
4115
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4116
|
+
"email-otp": "email-otp",
|
|
4117
|
+
otp: "otp",
|
|
4118
|
+
"recovery-code": "recovery-code",
|
|
4119
|
+
totp: "totp",
|
|
4120
|
+
webauthn: "webauthn"
|
|
4121
|
+
};
|
|
4122
|
+
const authTokenScopesOriginEnum = {
|
|
4123
|
+
app: "app",
|
|
4124
|
+
apple: "apple",
|
|
4125
|
+
bitbucket: "bitbucket",
|
|
4126
|
+
chatgpt: "chatgpt",
|
|
4127
|
+
email: "email",
|
|
4128
|
+
emu: "emu",
|
|
4129
|
+
github: "github",
|
|
4130
|
+
"github-webhook": "github-webhook",
|
|
4131
|
+
gitlab: "gitlab",
|
|
4132
|
+
google: "google",
|
|
4133
|
+
invite: "invite",
|
|
4134
|
+
manual: "manual",
|
|
4135
|
+
otp: "otp",
|
|
4136
|
+
passkey: "passkey",
|
|
4137
|
+
saml: "saml",
|
|
4138
|
+
sms: "sms",
|
|
4139
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
4140
|
+
};
|
|
3141
4141
|
const authUserSoftBlockReasonEnum = {
|
|
3142
4142
|
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
3143
4143
|
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
@@ -3191,10 +4191,63 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
3191
4191
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
3192
4192
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
3193
4193
|
};
|
|
4194
|
+
const authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
4195
|
+
analyticsUsage: "analyticsUsage",
|
|
4196
|
+
artifacts: "artifacts",
|
|
4197
|
+
bandwidth: "bandwidth",
|
|
4198
|
+
blobDataTransfer: "blobDataTransfer",
|
|
4199
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
4200
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
4201
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
4202
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
4203
|
+
connectDataTransfer: "connectDataTransfer",
|
|
4204
|
+
dataCacheRead: "dataCacheRead",
|
|
4205
|
+
dataCacheWrite: "dataCacheWrite",
|
|
4206
|
+
edgeConfigRead: "edgeConfigRead",
|
|
4207
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
4208
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
4209
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
4210
|
+
edgeRequest: "edgeRequest",
|
|
4211
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
4212
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
4213
|
+
fastDataTransfer: "fastDataTransfer",
|
|
4214
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
4215
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
4216
|
+
fluidDuration: "fluidDuration",
|
|
4217
|
+
functionDuration: "functionDuration",
|
|
4218
|
+
functionInvocation: "functionInvocation",
|
|
4219
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
4220
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
4221
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
4222
|
+
logDrainsVolume: "logDrainsVolume",
|
|
4223
|
+
monitoringMetric: "monitoringMetric",
|
|
4224
|
+
observabilityEvent: "observabilityEvent",
|
|
4225
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
4226
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
4227
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
4228
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
4229
|
+
sourceImages: "sourceImages",
|
|
4230
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
4231
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
4232
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4233
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4234
|
+
};
|
|
3194
4235
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
3195
4236
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
3196
4237
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
3197
4238
|
};
|
|
4239
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4240
|
+
cards: "cards",
|
|
4241
|
+
list: "list"
|
|
4242
|
+
};
|
|
4243
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4244
|
+
closed: "closed",
|
|
4245
|
+
open: "open"
|
|
4246
|
+
};
|
|
4247
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4248
|
+
closed: "closed",
|
|
4249
|
+
open: "open"
|
|
4250
|
+
};
|
|
3198
4251
|
const authUserImportFlowGitProviderEnum = {
|
|
3199
4252
|
bitbucket: "bitbucket",
|
|
3200
4253
|
"cursor-origin": "cursor-origin",
|
|
@@ -3204,16 +4257,21 @@ const authUserImportFlowGitProviderEnum = {
|
|
|
3204
4257
|
gitlab: "gitlab",
|
|
3205
4258
|
vercel: "vercel"
|
|
3206
4259
|
};
|
|
3207
|
-
const
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
4260
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4261
|
+
admin_override: "admin_override",
|
|
4262
|
+
hard_blocked: "hard_blocked",
|
|
4263
|
+
limits_exceeded: "limits_exceeded"
|
|
3211
4264
|
};
|
|
3212
4265
|
const vcrImageListItemKindEnum = {
|
|
3213
4266
|
attestation: "attestation",
|
|
3214
4267
|
index: "index",
|
|
3215
4268
|
manifest: "manifest"
|
|
3216
4269
|
};
|
|
4270
|
+
const vcrImageListItemStatusEnum = {
|
|
4271
|
+
preparing: "preparing",
|
|
4272
|
+
ready: "ready",
|
|
4273
|
+
unoptimized: "unoptimized"
|
|
4274
|
+
};
|
|
3217
4275
|
const vcrTagKindEnum = {
|
|
3218
4276
|
attestation: "attestation",
|
|
3219
4277
|
index: "index",
|
|
@@ -3224,7 +4282,7 @@ const vcrTagStatusEnum = {
|
|
|
3224
4282
|
ready: "ready",
|
|
3225
4283
|
unoptimized: "unoptimized"
|
|
3226
4284
|
};
|
|
3227
|
-
const
|
|
4285
|
+
const vcrImageLayerOperationEnum = {
|
|
3228
4286
|
ADD: "ADD",
|
|
3229
4287
|
ARG: "ARG",
|
|
3230
4288
|
CMD: "CMD",
|
|
@@ -3244,16 +4302,33 @@ const operationEnum = {
|
|
|
3244
4302
|
VOLUME: "VOLUME",
|
|
3245
4303
|
WORKDIR: "WORKDIR"
|
|
3246
4304
|
};
|
|
3247
|
-
const
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
4305
|
+
const vcrImageLayerTypeEnum = {
|
|
4306
|
+
ADD: "ADD",
|
|
4307
|
+
ARG: "ARG",
|
|
4308
|
+
CMD: "CMD",
|
|
4309
|
+
COPY: "COPY",
|
|
4310
|
+
ENTRYPOINT: "ENTRYPOINT",
|
|
4311
|
+
EXPOSE: "EXPOSE",
|
|
4312
|
+
HEALTHCHECK: "HEALTHCHECK",
|
|
4313
|
+
LABEL: "LABEL",
|
|
4314
|
+
ONBUILD: "ONBUILD",
|
|
4315
|
+
SHELL: "SHELL",
|
|
4316
|
+
STOPSIGNAL: "STOPSIGNAL",
|
|
4317
|
+
UNKNOWN: "UNKNOWN",
|
|
4318
|
+
USER: "USER",
|
|
4319
|
+
VOLUME: "VOLUME",
|
|
4320
|
+
WORKDIR: "WORKDIR"
|
|
3251
4321
|
};
|
|
3252
4322
|
const vcrImageDetailKindEnum = {
|
|
3253
4323
|
attestation: "attestation",
|
|
3254
4324
|
index: "index",
|
|
3255
4325
|
manifest: "manifest"
|
|
3256
4326
|
};
|
|
4327
|
+
const vcrImageDetailStatusEnum = {
|
|
4328
|
+
preparing: "preparing",
|
|
4329
|
+
ready: "ready",
|
|
4330
|
+
unoptimized: "unoptimized"
|
|
4331
|
+
};
|
|
3257
4332
|
const fileTreeTypeEnum = {
|
|
3258
4333
|
directory: "directory",
|
|
3259
4334
|
file: "file",
|
|
@@ -3262,5 +4337,205 @@ const fileTreeTypeEnum = {
|
|
|
3262
4337
|
middleware: "middleware",
|
|
3263
4338
|
symlink: "symlink"
|
|
3264
4339
|
};
|
|
4340
|
+
const listAiGatewayRulesIncludeDisabled = {
|
|
4341
|
+
true: "true",
|
|
4342
|
+
false: "false"
|
|
4343
|
+
};
|
|
4344
|
+
const getRedirectsSortBy = {
|
|
4345
|
+
source: "source",
|
|
4346
|
+
destination: "destination",
|
|
4347
|
+
statusCode: "statusCode"
|
|
4348
|
+
};
|
|
4349
|
+
const getRedirectsSortOrder = {
|
|
4350
|
+
asc: "asc",
|
|
4351
|
+
desc: "desc"
|
|
4352
|
+
};
|
|
4353
|
+
const listProjectChecksBlocks = {
|
|
4354
|
+
"build-start": "build-start",
|
|
4355
|
+
"deployment-start": "deployment-start",
|
|
4356
|
+
"deployment-alias": "deployment-alias",
|
|
4357
|
+
"deployment-promotion": "deployment-promotion",
|
|
4358
|
+
none: "none"
|
|
4359
|
+
};
|
|
4360
|
+
const getDeploymentEventsDirection = {
|
|
4361
|
+
backward: "backward",
|
|
4362
|
+
forward: "forward"
|
|
4363
|
+
};
|
|
4364
|
+
const getDeploymentEventsFollow = {
|
|
4365
|
+
"0": 0,
|
|
4366
|
+
"1": 1
|
|
4367
|
+
};
|
|
4368
|
+
const getDeploymentEventsDelimiter = {
|
|
4369
|
+
"0": 0,
|
|
4370
|
+
"1": 1
|
|
4371
|
+
};
|
|
4372
|
+
const getDeploymentEventsBuilds = {
|
|
4373
|
+
"0": 0,
|
|
4374
|
+
"1": 1
|
|
4375
|
+
};
|
|
4376
|
+
const getDomainConfigStrict = {
|
|
4377
|
+
true: "true",
|
|
4378
|
+
false: "false"
|
|
4379
|
+
};
|
|
4380
|
+
const listFlagsV2State = {
|
|
4381
|
+
active: "active",
|
|
4382
|
+
archived: "archived"
|
|
4383
|
+
};
|
|
4384
|
+
const listFlagsState = {
|
|
4385
|
+
active: "active",
|
|
4386
|
+
archived: "archived"
|
|
4387
|
+
};
|
|
4388
|
+
const listTeamFlagsV2State = {
|
|
4389
|
+
active: "active",
|
|
4390
|
+
archived: "archived"
|
|
4391
|
+
};
|
|
4392
|
+
const listTeamFlagsV2Kind = {
|
|
4393
|
+
boolean: "boolean",
|
|
4394
|
+
string: "string",
|
|
4395
|
+
number: "number",
|
|
4396
|
+
json: "json"
|
|
4397
|
+
};
|
|
4398
|
+
const listTeamFlagsState = {
|
|
4399
|
+
active: "active",
|
|
4400
|
+
archived: "archived"
|
|
4401
|
+
};
|
|
4402
|
+
const listTeamFlagsKind = {
|
|
4403
|
+
boolean: "boolean",
|
|
4404
|
+
string: "string",
|
|
4405
|
+
number: "number",
|
|
4406
|
+
json: "json"
|
|
4407
|
+
};
|
|
4408
|
+
const gitNamespacesProvider = {
|
|
4409
|
+
github: "github",
|
|
4410
|
+
"github-limited": "github-limited",
|
|
4411
|
+
"github-custom-host": "github-custom-host",
|
|
4412
|
+
gitlab: "gitlab",
|
|
4413
|
+
bitbucket: "bitbucket"
|
|
4414
|
+
};
|
|
4415
|
+
const searchRepoProvider = {
|
|
4416
|
+
github: "github",
|
|
4417
|
+
"github-limited": "github-limited",
|
|
4418
|
+
"github-custom-host": "github-custom-host",
|
|
4419
|
+
gitlab: "gitlab",
|
|
4420
|
+
bitbucket: "bitbucket",
|
|
4421
|
+
"cursor-origin": "cursor-origin"
|
|
4422
|
+
};
|
|
4423
|
+
const getBillingPlansSource = {
|
|
4424
|
+
marketplace: "marketplace",
|
|
4425
|
+
"deploy-button": "deploy-button",
|
|
4426
|
+
external: "external",
|
|
4427
|
+
v0: "v0",
|
|
4428
|
+
"resource-claims": "resource-claims",
|
|
4429
|
+
cli: "cli",
|
|
4430
|
+
oauth: "oauth",
|
|
4431
|
+
backoffice: "backoffice",
|
|
4432
|
+
"import-recommended-integrations": "import-recommended-integrations"
|
|
4433
|
+
};
|
|
4434
|
+
const getConfigurationsView = {
|
|
4435
|
+
account: "account",
|
|
4436
|
+
project: "project"
|
|
4437
|
+
};
|
|
4438
|
+
const getConfigurationsInstallationType = {
|
|
4439
|
+
marketplace: "marketplace",
|
|
4440
|
+
external: "external",
|
|
4441
|
+
provisioning: "provisioning"
|
|
4442
|
+
};
|
|
4443
|
+
const deleteKmsIssuerPolicyKind = {
|
|
4444
|
+
"project-grant": "project-grant",
|
|
4445
|
+
"connex-grant": "connex-grant"
|
|
4446
|
+
};
|
|
4447
|
+
const getRoutesFilter = {
|
|
4448
|
+
rewrite: "rewrite",
|
|
4449
|
+
redirect: "redirect",
|
|
4450
|
+
set_status: "set_status",
|
|
4451
|
+
transform: "transform"
|
|
4452
|
+
};
|
|
4453
|
+
const getProjectsBuildQueueConfiguration = {
|
|
4454
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4455
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4456
|
+
};
|
|
4457
|
+
const getProjectDomainsProduction = {
|
|
4458
|
+
true: "true",
|
|
4459
|
+
false: "false"
|
|
4460
|
+
};
|
|
4461
|
+
const getProjectDomainsTarget = {
|
|
4462
|
+
production: "production",
|
|
4463
|
+
preview: "preview"
|
|
4464
|
+
};
|
|
4465
|
+
const getProjectDomainsRedirects = {
|
|
4466
|
+
true: "true",
|
|
4467
|
+
false: "false"
|
|
4468
|
+
};
|
|
4469
|
+
const getProjectDomainsVerified = {
|
|
4470
|
+
true: "true",
|
|
4471
|
+
false: "false"
|
|
4472
|
+
};
|
|
4473
|
+
const getProjectDomainsOrder = {
|
|
4474
|
+
ASC: "ASC",
|
|
4475
|
+
DESC: "DESC"
|
|
4476
|
+
};
|
|
4477
|
+
const filterProjectEnvsDecrypt = {
|
|
4478
|
+
true: "true",
|
|
4479
|
+
false: "false"
|
|
4480
|
+
};
|
|
4481
|
+
const getRollingReleaseState = {
|
|
4482
|
+
ACTIVE: "ACTIVE",
|
|
4483
|
+
COMPLETE: "COMPLETE",
|
|
4484
|
+
ABORTED: "ABORTED"
|
|
4485
|
+
};
|
|
4486
|
+
const listSandboxesSortBy = {
|
|
4487
|
+
createdAt: "createdAt",
|
|
4488
|
+
name: "name",
|
|
4489
|
+
statusUpdatedAt: "statusUpdatedAt",
|
|
4490
|
+
currentSnapshotId: "currentSnapshotId"
|
|
4491
|
+
};
|
|
4492
|
+
const listSandboxesSortOrder = {
|
|
4493
|
+
asc: "asc",
|
|
4494
|
+
desc: "desc"
|
|
4495
|
+
};
|
|
4496
|
+
const listSandboxesStatus = {
|
|
4497
|
+
running: "running",
|
|
4498
|
+
stopping: "stopping",
|
|
4499
|
+
stopped: "stopped"
|
|
4500
|
+
};
|
|
4501
|
+
const listDrivesSortBy = {
|
|
4502
|
+
createdAt: "createdAt",
|
|
4503
|
+
updatedAt: "updatedAt",
|
|
4504
|
+
name: "name"
|
|
4505
|
+
};
|
|
4506
|
+
const listDrivesSortOrder = {
|
|
4507
|
+
asc: "asc",
|
|
4508
|
+
desc: "desc"
|
|
4509
|
+
};
|
|
4510
|
+
const listSessionSnapshotsSortOrder = {
|
|
4511
|
+
asc: "asc",
|
|
4512
|
+
desc: "desc"
|
|
4513
|
+
};
|
|
4514
|
+
const listSessionsSortOrder = {
|
|
4515
|
+
asc: "asc",
|
|
4516
|
+
desc: "desc"
|
|
4517
|
+
};
|
|
4518
|
+
const getSessionCommandWait = {
|
|
4519
|
+
true: "true",
|
|
4520
|
+
false: "false"
|
|
4521
|
+
};
|
|
4522
|
+
const getTeamMembersRole = {
|
|
4523
|
+
OWNER: "OWNER",
|
|
4524
|
+
MEMBER: "MEMBER",
|
|
4525
|
+
DEVELOPER: "DEVELOPER",
|
|
4526
|
+
SECURITY: "SECURITY",
|
|
4527
|
+
BILLING: "BILLING",
|
|
4528
|
+
VIEWER: "VIEWER",
|
|
4529
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS",
|
|
4530
|
+
CONTRIBUTOR: "CONTRIBUTOR"
|
|
4531
|
+
};
|
|
4532
|
+
const listRepositoryTagsSortBy = {
|
|
4533
|
+
updatedAt: "updatedAt",
|
|
4534
|
+
tag: "tag"
|
|
4535
|
+
};
|
|
4536
|
+
const listRepositoryTagsSortOrder = {
|
|
4537
|
+
asc: "asc",
|
|
4538
|
+
desc: "desc"
|
|
4539
|
+
};
|
|
3265
4540
|
|
|
3266
|
-
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, 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, flagExperimentBaseTypeEnum, 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, 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 };
|
|
4541
|
+
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 };
|