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.cjs
CHANGED
|
@@ -34,17 +34,11 @@ const aiGatewayVirtualModelConfigHasEnum = {
|
|
|
34
34
|
"implicit-caching": "implicit-caching",
|
|
35
35
|
vision: "vision"
|
|
36
36
|
};
|
|
37
|
-
const aiGatewayVirtualModelConfigCachingEnum = {
|
|
38
|
-
auto: "auto"
|
|
39
|
-
};
|
|
40
37
|
const aiGatewayVirtualModelConfigServiceTierEnum = {
|
|
41
38
|
fast: "fast",
|
|
42
39
|
flex: "flex",
|
|
43
40
|
priority: "priority"
|
|
44
41
|
};
|
|
45
|
-
const aiGatewayVirtualModelConfigSpeedEnum = {
|
|
46
|
-
fast: "fast"
|
|
47
|
-
};
|
|
48
42
|
const aiGatewayRuleTypeEnum = {
|
|
49
43
|
deny: "deny",
|
|
50
44
|
rewrite: "rewrite"
|
|
@@ -55,161 +49,78 @@ const networkStatusEnum = {
|
|
|
55
49
|
error: "error",
|
|
56
50
|
ready: "ready"
|
|
57
51
|
};
|
|
58
|
-
const
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
const tooManyRequestsStatusEnum = {
|
|
62
|
-
"429": 429
|
|
63
|
-
};
|
|
64
|
-
const tooManyRequestsCodeEnum = {
|
|
65
|
-
too_many_requests: "too_many_requests"
|
|
66
|
-
};
|
|
67
|
-
const unauthorizedStatusEnum = {
|
|
68
|
-
"401": 401
|
|
69
|
-
};
|
|
70
|
-
const unauthorizedCodeEnum = {
|
|
71
|
-
unauthorized: "unauthorized"
|
|
72
|
-
};
|
|
73
|
-
const notAuthorizedForScopeStatusEnum = {
|
|
74
|
-
"403": 403
|
|
75
|
-
};
|
|
76
|
-
const notAuthorizedForScopeCodeEnum = {
|
|
77
|
-
not_authorized_for_scope: "not_authorized_for_scope"
|
|
78
|
-
};
|
|
79
|
-
const internalServerErrorStatusEnum = {
|
|
80
|
-
"500": 500
|
|
81
|
-
};
|
|
82
|
-
const internalServerErrorCodeEnum = {
|
|
83
|
-
internal_server_error: "internal_server_error"
|
|
84
|
-
};
|
|
85
|
-
const tldNotSupportedStatusEnum = {
|
|
86
|
-
"400": 400
|
|
87
|
-
};
|
|
88
|
-
const tldNotSupportedCodeEnum = {
|
|
89
|
-
tld_not_supported: "tld_not_supported"
|
|
90
|
-
};
|
|
91
|
-
const notFoundStatusEnum = {
|
|
92
|
-
"404": 404
|
|
93
|
-
};
|
|
94
|
-
const notFoundCodeEnum = {
|
|
95
|
-
not_found: "not_found"
|
|
96
|
-
};
|
|
97
|
-
const domainTooShortStatusEnum = {
|
|
98
|
-
"400": 400
|
|
99
|
-
};
|
|
100
|
-
const domainTooShortCodeEnum = {
|
|
101
|
-
domain_too_short: "domain_too_short"
|
|
102
|
-
};
|
|
103
|
-
const badRequestStatusEnum = {
|
|
104
|
-
"400": 400
|
|
105
|
-
};
|
|
106
|
-
const badRequestCodeEnum = {
|
|
107
|
-
bad_request: "bad_request"
|
|
108
|
-
};
|
|
109
|
-
const domainNotRegisteredStatusEnum = {
|
|
110
|
-
"400": 400
|
|
111
|
-
};
|
|
112
|
-
const domainNotRegisteredCodeEnum = {
|
|
113
|
-
domain_not_registered: "domain_not_registered"
|
|
114
|
-
};
|
|
115
|
-
const forbiddenStatusEnum = {
|
|
116
|
-
"403": 403
|
|
117
|
-
};
|
|
118
|
-
const forbiddenCodeEnum = {
|
|
119
|
-
forbidden: "forbidden"
|
|
120
|
-
};
|
|
121
|
-
const domainNotFoundStatusEnum = {
|
|
122
|
-
"404": 404
|
|
123
|
-
};
|
|
124
|
-
const domainNotFoundCodeEnum = {
|
|
125
|
-
domain_not_found: "domain_not_found"
|
|
126
|
-
};
|
|
127
|
-
const domainCannotBeTransferedOutUntilStatusEnum = {
|
|
128
|
-
"409": 409
|
|
129
|
-
};
|
|
130
|
-
const domainCannotBeTransferedOutUntilCodeEnum = {
|
|
131
|
-
domain_cannot_be_transfered_out_until: "domain_cannot_be_transfered_out_until"
|
|
132
|
-
};
|
|
133
|
-
const languageCodeRequiredStatusEnum = {
|
|
134
|
-
"400": 400
|
|
135
|
-
};
|
|
136
|
-
const languageCodeRequiredCodeEnum = {
|
|
137
|
-
language_code_required: "language_code_required"
|
|
138
|
-
};
|
|
139
|
-
const domainNotAvailableStatusEnum = {
|
|
140
|
-
"400": 400
|
|
141
|
-
};
|
|
142
|
-
const domainNotAvailableCodeEnum = {
|
|
143
|
-
domain_not_available: "domain_not_available"
|
|
144
|
-
};
|
|
145
|
-
const expectedPriceMismatchStatusEnum = {
|
|
146
|
-
"400": 400
|
|
147
|
-
};
|
|
148
|
-
const expectedPriceMismatchCodeEnum = {
|
|
149
|
-
expected_price_mismatch: "expected_price_mismatch"
|
|
150
|
-
};
|
|
151
|
-
const additionalContactInfoRequiredStatusEnum = {
|
|
152
|
-
"400": 400
|
|
153
|
-
};
|
|
154
|
-
const additionalContactInfoRequiredCodeEnum = {
|
|
155
|
-
additional_contact_info_required: "additional_contact_info_required"
|
|
156
|
-
};
|
|
157
|
-
const invalidAdditionalContactInfoStatusEnum = {
|
|
158
|
-
"400": 400
|
|
159
|
-
};
|
|
160
|
-
const invalidAdditionalContactInfoCodeEnum = {
|
|
161
|
-
invalid_additional_contact_info: "invalid_additional_contact_info"
|
|
162
|
-
};
|
|
163
|
-
const orderTooExpensiveStatusEnum = {
|
|
164
|
-
"400": 400
|
|
165
|
-
};
|
|
166
|
-
const orderTooExpensiveCodeEnum = {
|
|
167
|
-
order_too_expensive: "order_too_expensive"
|
|
168
|
-
};
|
|
169
|
-
const duplicateDomainsStatusEnum = {
|
|
170
|
-
"400": 400
|
|
171
|
-
};
|
|
172
|
-
const duplicateDomainsCodeEnum = {
|
|
173
|
-
duplicate_domains: "duplicate_domains"
|
|
174
|
-
};
|
|
175
|
-
const tooManyDomainsStatusEnum = {
|
|
176
|
-
"400": 400
|
|
177
|
-
};
|
|
178
|
-
const tooManyDomainsCodeEnum = {
|
|
179
|
-
too_many_domains: "too_many_domains"
|
|
180
|
-
};
|
|
181
|
-
const DNSSECEnabledStatusEnum = {
|
|
182
|
-
"400": 400
|
|
183
|
-
};
|
|
184
|
-
const DNSSECEnabledCodeEnum = {
|
|
185
|
-
dnssec_enabled: "dnssec_enabled"
|
|
186
|
-
};
|
|
187
|
-
const domainAlreadyOwnedStatusEnum = {
|
|
188
|
-
"400": 400
|
|
189
|
-
};
|
|
190
|
-
const domainAlreadyOwnedCodeEnum = {
|
|
191
|
-
domain_already_owned: "domain_already_owned"
|
|
192
|
-
};
|
|
193
|
-
const domainNotRenewableStatusEnum = {
|
|
194
|
-
"400": 400
|
|
195
|
-
};
|
|
196
|
-
const domainNotRenewableCodeEnum = {
|
|
197
|
-
domain_not_renewable: "domain_not_renewable"
|
|
52
|
+
const connectConnectorCreateResultCreationModeEnum = {
|
|
53
|
+
managed: "managed",
|
|
54
|
+
manual: "manual"
|
|
198
55
|
};
|
|
199
|
-
const
|
|
200
|
-
"
|
|
56
|
+
const connectConnectorCreateResultTypeEnum = {
|
|
57
|
+
"api-key": "api-key",
|
|
58
|
+
custom: "custom",
|
|
59
|
+
discord: "discord",
|
|
60
|
+
github: "github",
|
|
61
|
+
linear: "linear",
|
|
62
|
+
linq: "linq",
|
|
63
|
+
"microsoft-entra": "microsoft-entra",
|
|
64
|
+
"microsoft-teams": "microsoft-teams",
|
|
65
|
+
oauth: "oauth",
|
|
66
|
+
photon: "photon",
|
|
67
|
+
salesforce: "salesforce",
|
|
68
|
+
sendblue: "sendblue",
|
|
69
|
+
slack: "slack",
|
|
70
|
+
snowflake: "snowflake",
|
|
71
|
+
"snowflake-wif": "snowflake-wif"
|
|
72
|
+
};
|
|
73
|
+
const connectConnectorCreateResultSupportsIconEnum = {
|
|
74
|
+
false: false,
|
|
75
|
+
maybe: "maybe",
|
|
76
|
+
true: true
|
|
77
|
+
};
|
|
78
|
+
const connectConnectorCreateDataServerConfigJwksKeysUseEnum = {
|
|
79
|
+
sig: "sig",
|
|
80
|
+
enc: "enc"
|
|
81
|
+
};
|
|
82
|
+
const connectConnectorCreateDataSubjectTypeEnum = {
|
|
83
|
+
app: "app",
|
|
84
|
+
user: "user"
|
|
201
85
|
};
|
|
202
|
-
const
|
|
203
|
-
|
|
86
|
+
const connectConnectorCreateDataOwnerTypeEnum = {
|
|
87
|
+
user: "user",
|
|
88
|
+
organization: "organization",
|
|
89
|
+
User: "User",
|
|
90
|
+
Organization: "Organization"
|
|
204
91
|
};
|
|
205
|
-
const
|
|
206
|
-
|
|
92
|
+
const flagJSONValue = {
|
|
93
|
+
false: false,
|
|
94
|
+
true: true
|
|
207
95
|
};
|
|
208
|
-
const
|
|
209
|
-
|
|
96
|
+
const globalConfigItemValue = {
|
|
97
|
+
false: false,
|
|
98
|
+
true: true
|
|
210
99
|
};
|
|
211
|
-
const
|
|
212
|
-
|
|
100
|
+
const userEventEntitiesTypeEnum = {
|
|
101
|
+
app: "app",
|
|
102
|
+
author: "author",
|
|
103
|
+
bitbucket_login: "bitbucket_login",
|
|
104
|
+
bold: "bold",
|
|
105
|
+
deployment_host: "deployment_host",
|
|
106
|
+
deployment_inspector: "deployment_inspector",
|
|
107
|
+
dns_record: "dns_record",
|
|
108
|
+
"edge-config": "edge-config",
|
|
109
|
+
env_var_name: "env_var_name",
|
|
110
|
+
flag: "flag",
|
|
111
|
+
"flags-segment": "flags-segment",
|
|
112
|
+
"flags-settings": "flags-settings",
|
|
113
|
+
git_link: "git_link",
|
|
114
|
+
github_login: "github_login",
|
|
115
|
+
gitlab_login: "gitlab_login",
|
|
116
|
+
hook_name: "hook_name",
|
|
117
|
+
integration: "integration",
|
|
118
|
+
link: "link",
|
|
119
|
+
project_name: "project_name",
|
|
120
|
+
scaling_rules: "scaling_rules",
|
|
121
|
+
store: "store",
|
|
122
|
+
system: "system",
|
|
123
|
+
target: "target"
|
|
213
124
|
};
|
|
214
125
|
const userEventTypeEnum = {
|
|
215
126
|
"access-group-created": "access-group-created",
|
|
@@ -246,6 +157,7 @@ const userEventTypeEnum = {
|
|
|
246
157
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
247
158
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
248
159
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
160
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
249
161
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
250
162
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
251
163
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -378,6 +290,7 @@ const userEventTypeEnum = {
|
|
|
378
290
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
379
291
|
"domain-delegated": "domain-delegated",
|
|
380
292
|
"domain-delete": "domain-delete",
|
|
293
|
+
"domain-ech-change": "domain-ech-change",
|
|
381
294
|
"domain-move-in": "domain-move-in",
|
|
382
295
|
"domain-move-out": "domain-move-out",
|
|
383
296
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -432,6 +345,7 @@ const userEventTypeEnum = {
|
|
|
432
345
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
433
346
|
"env-variable-rotated": "env-variable-rotated",
|
|
434
347
|
"experiment-created": "experiment-created",
|
|
348
|
+
"experiment-deleted": "experiment-deleted",
|
|
435
349
|
"experiment-transitioned": "experiment-transitioned",
|
|
436
350
|
"experiment-updated": "experiment-updated",
|
|
437
351
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -457,7 +371,19 @@ const userEventTypeEnum = {
|
|
|
457
371
|
"flags-transferred": "flags-transferred",
|
|
458
372
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
459
373
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
374
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
375
|
+
"global-config-created": "global-config-created",
|
|
376
|
+
"global-config-deleted": "global-config-deleted",
|
|
377
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
378
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
379
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
380
|
+
"global-config-token-created": "global-config-token-created",
|
|
381
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
382
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
383
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
384
|
+
"global-config-updated": "global-config-updated",
|
|
460
385
|
"instant-rollback-created": "instant-rollback-created",
|
|
386
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
461
387
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
462
388
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
463
389
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -661,6 +587,7 @@ const userEventTypeEnum = {
|
|
|
661
587
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
662
588
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
663
589
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
590
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
664
591
|
"project-sso-protection": "project-sso-protection",
|
|
665
592
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
666
593
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -784,6 +711,8 @@ const userEventTypeEnum = {
|
|
|
784
711
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
785
712
|
"tracing-configured": "tracing-configured",
|
|
786
713
|
"tracing-disabled": "tracing-disabled",
|
|
714
|
+
"tracing-paused": "tracing-paused",
|
|
715
|
+
"tracing-resumed": "tracing-resumed",
|
|
787
716
|
"unlink-login-connection": "unlink-login-connection",
|
|
788
717
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
789
718
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -794,6 +723,8 @@ const userEventTypeEnum = {
|
|
|
794
723
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
795
724
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
796
725
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
726
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
727
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
797
728
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
798
729
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
799
730
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -876,7 +807,7 @@ const userEventCategoriesEnum = {
|
|
|
876
807
|
"vercel-app": "vercel-app",
|
|
877
808
|
workflow: "workflow"
|
|
878
809
|
};
|
|
879
|
-
const
|
|
810
|
+
const userEventPayloadActionEnum = {
|
|
880
811
|
"add-passkey": "add-passkey",
|
|
881
812
|
"add-totp": "add-totp",
|
|
882
813
|
"admin-remove": "admin-remove",
|
|
@@ -885,128 +816,463 @@ const actionEnum = {
|
|
|
885
816
|
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
886
817
|
"remove-passkey": "remove-passkey"
|
|
887
818
|
};
|
|
888
|
-
const
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
819
|
+
const userEventPayloadProviderEnum = {
|
|
820
|
+
apple: "apple",
|
|
821
|
+
bitbucket: "bitbucket",
|
|
822
|
+
chatgpt: "chatgpt",
|
|
823
|
+
github: "github",
|
|
824
|
+
"github-custom-host": "github-custom-host",
|
|
825
|
+
"github-limited": "github-limited",
|
|
826
|
+
gitlab: "gitlab",
|
|
827
|
+
google: "google",
|
|
828
|
+
saml: "saml"
|
|
893
829
|
};
|
|
894
|
-
const
|
|
830
|
+
const userEventPayloadFromPlanEnum = {
|
|
895
831
|
hobby: "hobby",
|
|
896
832
|
pro: "pro"
|
|
897
833
|
};
|
|
898
|
-
const
|
|
834
|
+
const userEventPayloadToPlanEnum = {
|
|
899
835
|
hobby: "hobby",
|
|
900
836
|
pro: "pro"
|
|
901
837
|
};
|
|
902
|
-
const
|
|
838
|
+
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
903
839
|
daily: "daily",
|
|
904
840
|
monthly: "monthly",
|
|
905
841
|
none: "none",
|
|
906
842
|
weekly: "weekly"
|
|
907
843
|
};
|
|
908
|
-
const
|
|
844
|
+
const userEventPayloadChangeEnum = {
|
|
909
845
|
disable: "disable",
|
|
910
846
|
enable: "enable",
|
|
911
847
|
remove: "remove",
|
|
912
848
|
set: "set"
|
|
913
849
|
};
|
|
914
|
-
const
|
|
850
|
+
const userEventPayloadScopeTypeEnum = {
|
|
915
851
|
project: "project",
|
|
916
|
-
team: "team"
|
|
852
|
+
team: "team",
|
|
853
|
+
user: "user"
|
|
917
854
|
};
|
|
918
|
-
const
|
|
855
|
+
const userEventPayloadRetentionDefaultModeEnum = {
|
|
919
856
|
days: "days",
|
|
920
857
|
"until-requested": "until-requested"
|
|
921
858
|
};
|
|
922
|
-
const
|
|
859
|
+
const userEventPayloadRetentionCeilingModeEnum = {
|
|
923
860
|
days: "days",
|
|
924
861
|
"until-requested": "until-requested"
|
|
925
862
|
};
|
|
926
|
-
const
|
|
863
|
+
const userEventPayloadNextRoleEnum = {
|
|
927
864
|
ADMIN: "ADMIN",
|
|
928
865
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
929
866
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
930
867
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
931
868
|
};
|
|
932
|
-
const
|
|
869
|
+
const userEventPayloadPreviousRoleEnum = {
|
|
933
870
|
ADMIN: "ADMIN",
|
|
934
871
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
935
872
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
936
873
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
937
874
|
};
|
|
938
|
-
const
|
|
875
|
+
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
939
876
|
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
940
877
|
IGNORE_STEP: "IGNORE_STEP",
|
|
941
878
|
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
942
879
|
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
943
880
|
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
944
881
|
};
|
|
945
|
-
const
|
|
882
|
+
const userEventPayloadScopesEnum = {
|
|
883
|
+
email: "email",
|
|
884
|
+
offline_access: "offline_access",
|
|
885
|
+
openid: "openid",
|
|
886
|
+
profile: "profile"
|
|
887
|
+
};
|
|
888
|
+
const userEventPayloadPermissionsEnum = {
|
|
889
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
890
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
891
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
892
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
893
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
894
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
895
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
896
|
+
"read-write:alerts": "read-write:alerts",
|
|
897
|
+
"read-write:billing": "read-write:billing",
|
|
898
|
+
"read-write:blob": "read-write:blob",
|
|
899
|
+
"read-write:connect": "read-write:connect",
|
|
900
|
+
"read-write:deployment": "read-write:deployment",
|
|
901
|
+
"read-write:domain": "read-write:domain",
|
|
902
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
903
|
+
"read-write:drains": "read-write:drains",
|
|
904
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
905
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
906
|
+
"read-write:firewall": "read-write:firewall",
|
|
907
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
908
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
909
|
+
"read-write:kms": "read-write:kms",
|
|
910
|
+
"read-write:project": "read-write:project",
|
|
911
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
912
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
913
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
914
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
915
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
916
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
917
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
918
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
919
|
+
"read-write:team-members": "read-write:team-members",
|
|
920
|
+
"read-write:vcr": "read-write:vcr",
|
|
921
|
+
"read:access-group": "read:access-group",
|
|
922
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
923
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
924
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
925
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
926
|
+
"read:alerts": "read:alerts",
|
|
927
|
+
"read:billing": "read:billing",
|
|
928
|
+
"read:deployment": "read:deployment",
|
|
929
|
+
"read:domain": "read:domain",
|
|
930
|
+
"read:event": "read:event",
|
|
931
|
+
"read:firewall": "read:firewall",
|
|
932
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
933
|
+
"read:integration-resource": "read:integration-resource",
|
|
934
|
+
"read:kms": "read:kms",
|
|
935
|
+
"read:monitoring": "read:monitoring",
|
|
936
|
+
"read:project": "read:project",
|
|
937
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
938
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
939
|
+
"read:project-flags": "read:project-flags",
|
|
940
|
+
"read:remote-cache": "read:remote-cache",
|
|
941
|
+
"read:sandbox": "read:sandbox",
|
|
942
|
+
"read:speed-insights": "read:speed-insights",
|
|
943
|
+
"read:team": "read:team",
|
|
944
|
+
"read:vcr": "read:vcr",
|
|
945
|
+
"read:web-analytics": "read:web-analytics",
|
|
946
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
947
|
+
};
|
|
948
|
+
const userEventPayloadNextScopesEnum = {
|
|
949
|
+
email: "email",
|
|
950
|
+
offline_access: "offline_access",
|
|
951
|
+
openid: "openid",
|
|
952
|
+
profile: "profile"
|
|
953
|
+
};
|
|
954
|
+
const userEventPayloadNextPermissionsEnum = {
|
|
955
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
956
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
957
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
958
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
959
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
960
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
961
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
962
|
+
"read-write:alerts": "read-write:alerts",
|
|
963
|
+
"read-write:billing": "read-write:billing",
|
|
964
|
+
"read-write:blob": "read-write:blob",
|
|
965
|
+
"read-write:connect": "read-write:connect",
|
|
966
|
+
"read-write:deployment": "read-write:deployment",
|
|
967
|
+
"read-write:domain": "read-write:domain",
|
|
968
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
969
|
+
"read-write:drains": "read-write:drains",
|
|
970
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
971
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
972
|
+
"read-write:firewall": "read-write:firewall",
|
|
973
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
974
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
975
|
+
"read-write:kms": "read-write:kms",
|
|
976
|
+
"read-write:project": "read-write:project",
|
|
977
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
978
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
979
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
980
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
981
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
982
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
983
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
984
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
985
|
+
"read-write:team-members": "read-write:team-members",
|
|
986
|
+
"read-write:vcr": "read-write:vcr",
|
|
987
|
+
"read:access-group": "read:access-group",
|
|
988
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
989
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
990
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
991
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
992
|
+
"read:alerts": "read:alerts",
|
|
993
|
+
"read:billing": "read:billing",
|
|
994
|
+
"read:deployment": "read:deployment",
|
|
995
|
+
"read:domain": "read:domain",
|
|
996
|
+
"read:event": "read:event",
|
|
997
|
+
"read:firewall": "read:firewall",
|
|
998
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
999
|
+
"read:integration-resource": "read:integration-resource",
|
|
1000
|
+
"read:kms": "read:kms",
|
|
1001
|
+
"read:monitoring": "read:monitoring",
|
|
1002
|
+
"read:project": "read:project",
|
|
1003
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1004
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1005
|
+
"read:project-flags": "read:project-flags",
|
|
1006
|
+
"read:remote-cache": "read:remote-cache",
|
|
1007
|
+
"read:sandbox": "read:sandbox",
|
|
1008
|
+
"read:speed-insights": "read:speed-insights",
|
|
1009
|
+
"read:team": "read:team",
|
|
1010
|
+
"read:user": "read:user",
|
|
1011
|
+
"read:vcr": "read:vcr",
|
|
1012
|
+
"read:web-analytics": "read:web-analytics",
|
|
1013
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1014
|
+
};
|
|
1015
|
+
const userEventPayloadBeforePermissionsEnum = {
|
|
1016
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1017
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1018
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1019
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1020
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1021
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1022
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1023
|
+
"read-write:alerts": "read-write:alerts",
|
|
1024
|
+
"read-write:billing": "read-write:billing",
|
|
1025
|
+
"read-write:blob": "read-write:blob",
|
|
1026
|
+
"read-write:connect": "read-write:connect",
|
|
1027
|
+
"read-write:deployment": "read-write:deployment",
|
|
1028
|
+
"read-write:domain": "read-write:domain",
|
|
1029
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1030
|
+
"read-write:drains": "read-write:drains",
|
|
1031
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1032
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1033
|
+
"read-write:firewall": "read-write:firewall",
|
|
1034
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1035
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1036
|
+
"read-write:kms": "read-write:kms",
|
|
1037
|
+
"read-write:project": "read-write:project",
|
|
1038
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1039
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1040
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1041
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1042
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1043
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1044
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1045
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1046
|
+
"read-write:team-members": "read-write:team-members",
|
|
1047
|
+
"read-write:vcr": "read-write:vcr",
|
|
1048
|
+
"read:access-group": "read:access-group",
|
|
1049
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1050
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1051
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1052
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1053
|
+
"read:alerts": "read:alerts",
|
|
1054
|
+
"read:billing": "read:billing",
|
|
1055
|
+
"read:deployment": "read:deployment",
|
|
1056
|
+
"read:domain": "read:domain",
|
|
1057
|
+
"read:event": "read:event",
|
|
1058
|
+
"read:firewall": "read:firewall",
|
|
1059
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1060
|
+
"read:integration-resource": "read:integration-resource",
|
|
1061
|
+
"read:kms": "read:kms",
|
|
1062
|
+
"read:monitoring": "read:monitoring",
|
|
1063
|
+
"read:project": "read:project",
|
|
1064
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1065
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1066
|
+
"read:project-flags": "read:project-flags",
|
|
1067
|
+
"read:remote-cache": "read:remote-cache",
|
|
1068
|
+
"read:sandbox": "read:sandbox",
|
|
1069
|
+
"read:speed-insights": "read:speed-insights",
|
|
1070
|
+
"read:team": "read:team",
|
|
1071
|
+
"read:vcr": "read:vcr",
|
|
1072
|
+
"read:web-analytics": "read:web-analytics",
|
|
1073
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1074
|
+
};
|
|
1075
|
+
const userEventPayloadAfterPermissionsEnum = {
|
|
1076
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1077
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1078
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1079
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1080
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1081
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1082
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1083
|
+
"read-write:alerts": "read-write:alerts",
|
|
1084
|
+
"read-write:billing": "read-write:billing",
|
|
1085
|
+
"read-write:blob": "read-write:blob",
|
|
1086
|
+
"read-write:connect": "read-write:connect",
|
|
1087
|
+
"read-write:deployment": "read-write:deployment",
|
|
1088
|
+
"read-write:domain": "read-write:domain",
|
|
1089
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1090
|
+
"read-write:drains": "read-write:drains",
|
|
1091
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1092
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1093
|
+
"read-write:firewall": "read-write:firewall",
|
|
1094
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1095
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1096
|
+
"read-write:kms": "read-write:kms",
|
|
1097
|
+
"read-write:project": "read-write:project",
|
|
1098
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1099
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1100
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1101
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1102
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1103
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1104
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1105
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1106
|
+
"read-write:team-members": "read-write:team-members",
|
|
1107
|
+
"read-write:vcr": "read-write:vcr",
|
|
1108
|
+
"read:access-group": "read:access-group",
|
|
1109
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1110
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1111
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1112
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1113
|
+
"read:alerts": "read:alerts",
|
|
1114
|
+
"read:billing": "read:billing",
|
|
1115
|
+
"read:deployment": "read:deployment",
|
|
1116
|
+
"read:domain": "read:domain",
|
|
1117
|
+
"read:event": "read:event",
|
|
1118
|
+
"read:firewall": "read:firewall",
|
|
1119
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1120
|
+
"read:integration-resource": "read:integration-resource",
|
|
1121
|
+
"read:kms": "read:kms",
|
|
1122
|
+
"read:monitoring": "read:monitoring",
|
|
1123
|
+
"read:project": "read:project",
|
|
1124
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1125
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1126
|
+
"read:project-flags": "read:project-flags",
|
|
1127
|
+
"read:remote-cache": "read:remote-cache",
|
|
1128
|
+
"read:sandbox": "read:sandbox",
|
|
1129
|
+
"read:speed-insights": "read:speed-insights",
|
|
1130
|
+
"read:team": "read:team",
|
|
1131
|
+
"read:vcr": "read:vcr",
|
|
1132
|
+
"read:web-analytics": "read:web-analytics",
|
|
1133
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1134
|
+
};
|
|
1135
|
+
const userEventPayloadSettlementMethodEnum = {
|
|
946
1136
|
"credited-paid": "credited-paid",
|
|
947
1137
|
"credited-payment-pending": "credited-payment-pending",
|
|
948
1138
|
"refunded-paid": "refunded-paid",
|
|
949
1139
|
"refunded-payment-pending": "refunded-payment-pending"
|
|
950
1140
|
};
|
|
951
|
-
const
|
|
1141
|
+
const userEventPayloadDataPlanSlugEnum = {
|
|
952
1142
|
v0_business: "v0_business",
|
|
953
1143
|
v0_teams: "v0_teams"
|
|
954
1144
|
};
|
|
955
|
-
const
|
|
956
|
-
"basic-floor": "basic-floor",
|
|
957
|
-
"build-timeout-failure": "build-timeout-failure",
|
|
958
|
-
"enospc-failure": "enospc-failure",
|
|
959
|
-
"enterprise-floor": "enterprise-floor",
|
|
960
|
-
"high-peak-disk": "high-peak-disk",
|
|
961
|
-
"high-peak-memory": "high-peak-memory",
|
|
962
|
-
"long-build-duration": "long-build-duration",
|
|
963
|
-
"oom-failure": "oom-failure",
|
|
964
|
-
"plan-change": "plan-change",
|
|
965
|
-
"short-build-duration": "short-build-duration",
|
|
966
|
-
"sustained-high-cpu": "sustained-high-cpu"
|
|
967
|
-
};
|
|
968
|
-
const subjectTypeEnum = {
|
|
1145
|
+
const userEventPayloadSubjectTypeEnum = {
|
|
969
1146
|
app: "app",
|
|
970
1147
|
user: "user"
|
|
971
1148
|
};
|
|
972
|
-
const
|
|
973
|
-
"external-token": "external-token"
|
|
974
|
-
};
|
|
975
|
-
const commitVerificationEnum = {
|
|
1149
|
+
const userEventPayloadJobCommitVerificationEnum = {
|
|
976
1150
|
unknown: "unknown",
|
|
977
1151
|
unverified: "unverified",
|
|
978
1152
|
verified: "verified"
|
|
979
1153
|
};
|
|
980
|
-
const
|
|
1154
|
+
const userEventPayloadJobNsnbSideEffectActionEnum = {
|
|
1155
|
+
"auto-approved-member": "auto-approved-member",
|
|
1156
|
+
"auto-approved-pending-invite": "auto-approved-pending-invite"
|
|
1157
|
+
};
|
|
1158
|
+
const userEventPayloadJobProviderEnum = {
|
|
1159
|
+
github: "github",
|
|
1160
|
+
"github-custom-host": "github-custom-host",
|
|
1161
|
+
"github-limited": "github-limited"
|
|
1162
|
+
};
|
|
1163
|
+
const userEventPayloadRuleNameEnum = {
|
|
981
1164
|
deploymentSources: "deploymentSources",
|
|
982
1165
|
gitSources: "gitSources"
|
|
983
1166
|
};
|
|
984
|
-
const
|
|
1167
|
+
const userEventPayloadRuleProvenanceEnum = {
|
|
985
1168
|
default: "default",
|
|
986
1169
|
project: "project",
|
|
987
1170
|
team: "team"
|
|
988
1171
|
};
|
|
989
|
-
const
|
|
1172
|
+
const userEventPayloadInitiatorEnum = {
|
|
990
1173
|
system: "system",
|
|
991
1174
|
user: "user"
|
|
992
1175
|
};
|
|
993
|
-
const
|
|
1176
|
+
const userEventPayloadEchModeEnum = {
|
|
1177
|
+
auto: "auto",
|
|
1178
|
+
disabled: "disabled",
|
|
1179
|
+
enabled: "enabled"
|
|
1180
|
+
};
|
|
1181
|
+
const userEventPayloadPreviousEchModeEnum = {
|
|
1182
|
+
auto: "auto",
|
|
1183
|
+
disabled: "disabled",
|
|
1184
|
+
enabled: "enabled"
|
|
1185
|
+
};
|
|
1186
|
+
const userEventPayloadFromAccountTypeEnum = {
|
|
1187
|
+
team: "team",
|
|
1188
|
+
user: "user"
|
|
1189
|
+
};
|
|
1190
|
+
const userEventPayloadToAccountTypeEnum = {
|
|
1191
|
+
team: "team",
|
|
1192
|
+
user: "user"
|
|
1193
|
+
};
|
|
1194
|
+
const userEventPayloadTypeEnum = {
|
|
1195
|
+
blob: "blob",
|
|
1196
|
+
"edge-config": "edge-config",
|
|
1197
|
+
integration: "integration",
|
|
1198
|
+
postgres: "postgres",
|
|
1199
|
+
redis: "redis"
|
|
1200
|
+
};
|
|
1201
|
+
const userEventPayloadTargetEnum = {
|
|
1202
|
+
development: "development",
|
|
1203
|
+
preview: "preview",
|
|
1204
|
+
production: "production"
|
|
1205
|
+
};
|
|
1206
|
+
const userEventPayloadOldEnvVarTypeEnum = {
|
|
1207
|
+
encrypted: "encrypted",
|
|
1208
|
+
plain: "plain",
|
|
1209
|
+
sensitive: "sensitive",
|
|
1210
|
+
system: "system"
|
|
1211
|
+
};
|
|
1212
|
+
const userEventPayloadOldEnvVarTargetEnum = {
|
|
1213
|
+
development: "development",
|
|
1214
|
+
preview: "preview",
|
|
1215
|
+
production: "production"
|
|
1216
|
+
};
|
|
1217
|
+
const userEventPayloadNewEnvVarTypeEnum = {
|
|
1218
|
+
encrypted: "encrypted",
|
|
1219
|
+
plain: "plain",
|
|
1220
|
+
sensitive: "sensitive",
|
|
1221
|
+
system: "system"
|
|
1222
|
+
};
|
|
1223
|
+
const userEventPayloadNewEnvVarTargetEnum = {
|
|
1224
|
+
development: "development",
|
|
1225
|
+
preview: "preview",
|
|
1226
|
+
production: "production"
|
|
1227
|
+
};
|
|
1228
|
+
const userEventPayloadUpdateDiffOldTargetEnum = {
|
|
1229
|
+
development: "development",
|
|
1230
|
+
preview: "preview",
|
|
1231
|
+
production: "production"
|
|
1232
|
+
};
|
|
1233
|
+
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1234
|
+
development: "development",
|
|
1235
|
+
preview: "preview",
|
|
1236
|
+
production: "production"
|
|
1237
|
+
};
|
|
1238
|
+
const actionEnum = {
|
|
1239
|
+
challenge: "challenge",
|
|
1240
|
+
deny: "deny",
|
|
1241
|
+
log: "log"
|
|
1242
|
+
};
|
|
1243
|
+
const userEventPayloadOutcomeEnum = {
|
|
994
1244
|
"account-matched": "account-matched",
|
|
995
1245
|
"linking-required": "linking-required"
|
|
996
1246
|
};
|
|
997
|
-
const
|
|
1247
|
+
const userEventPayloadFailureStageEnum = {
|
|
998
1248
|
authorization: "authorization",
|
|
999
1249
|
push: "push",
|
|
1000
1250
|
unexpected: "unexpected",
|
|
1001
1251
|
unknown: "unknown",
|
|
1002
1252
|
validation: "validation"
|
|
1003
1253
|
};
|
|
1004
|
-
const
|
|
1254
|
+
const userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = {
|
|
1255
|
+
blocked: "blocked",
|
|
1256
|
+
"hard-blocked": "hard-blocked",
|
|
1257
|
+
"soft-blocked": "soft-blocked",
|
|
1258
|
+
unblocked: "unblocked"
|
|
1259
|
+
};
|
|
1260
|
+
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
1005
1261
|
enterprise: "enterprise",
|
|
1006
1262
|
hobby: "hobby",
|
|
1007
1263
|
pro: "pro"
|
|
1008
1264
|
};
|
|
1009
|
-
const
|
|
1265
|
+
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
1266
|
+
apple: "apple",
|
|
1267
|
+
bitbucket: "bitbucket",
|
|
1268
|
+
chatgpt: "chatgpt",
|
|
1269
|
+
"github-oauth": "github-oauth",
|
|
1270
|
+
"github-oauth-limited": "github-oauth-limited",
|
|
1271
|
+
gitlab: "gitlab",
|
|
1272
|
+
google: "google",
|
|
1273
|
+
vercel: "vercel"
|
|
1274
|
+
};
|
|
1275
|
+
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
1010
1276
|
bitbucket: "bitbucket",
|
|
1011
1277
|
"cursor-origin": "cursor-origin",
|
|
1012
1278
|
github: "github",
|
|
@@ -1015,8 +1281,11 @@ const importFlowGitProviderEnum = {
|
|
|
1015
1281
|
gitlab: "gitlab",
|
|
1016
1282
|
vercel: "vercel"
|
|
1017
1283
|
};
|
|
1018
|
-
const
|
|
1019
|
-
|
|
1284
|
+
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
1285
|
+
false: false,
|
|
1286
|
+
true: true
|
|
1287
|
+
};
|
|
1288
|
+
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
1020
1289
|
"analytics-online": "analytics-online",
|
|
1021
1290
|
"analytics-page-views": "analytics-page-views",
|
|
1022
1291
|
"analytics-visitors": "analytics-visitors",
|
|
@@ -1026,42 +1295,46 @@ const widgetEnum = {
|
|
|
1026
1295
|
"observability-edge-requests": "observability-edge-requests",
|
|
1027
1296
|
"observability-error-rate": "observability-error-rate",
|
|
1028
1297
|
"observability-function-invocations": "observability-function-invocations",
|
|
1029
|
-
online: "online",
|
|
1030
|
-
res: "res",
|
|
1031
1298
|
"speed-insights-cls": "speed-insights-cls",
|
|
1032
1299
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1033
1300
|
"speed-insights-res": "speed-insights-res"
|
|
1034
1301
|
};
|
|
1035
|
-
const
|
|
1302
|
+
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1036
1303
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1037
1304
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1038
1305
|
};
|
|
1039
|
-
const
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
SECURITY: "SECURITY",
|
|
1046
|
-
VIEWER: "VIEWER",
|
|
1047
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1306
|
+
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1307
|
+
basic: "basic",
|
|
1308
|
+
elastic: "elastic",
|
|
1309
|
+
enhanced: "enhanced",
|
|
1310
|
+
standard: "standard",
|
|
1311
|
+
turbo: "turbo"
|
|
1048
1312
|
};
|
|
1049
|
-
const
|
|
1313
|
+
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
1050
1314
|
cards: "cards",
|
|
1051
1315
|
list: "list"
|
|
1052
1316
|
};
|
|
1053
|
-
const
|
|
1317
|
+
const userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
1054
1318
|
closed: "closed",
|
|
1055
1319
|
open: "open"
|
|
1056
1320
|
};
|
|
1057
|
-
const
|
|
1321
|
+
const userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
1058
1322
|
closed: "closed",
|
|
1059
1323
|
open: "open"
|
|
1060
1324
|
};
|
|
1061
|
-
const
|
|
1062
|
-
|
|
1325
|
+
const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
1326
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
1327
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
1328
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1329
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1330
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1331
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1332
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1333
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1334
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1335
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1063
1336
|
};
|
|
1064
|
-
const
|
|
1337
|
+
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1065
1338
|
analyticsUsage: "analyticsUsage",
|
|
1066
1339
|
artifacts: "artifacts",
|
|
1067
1340
|
bandwidth: "bandwidth",
|
|
@@ -1102,7 +1375,7 @@ const blockedDueToOverageTypeEnum = {
|
|
|
1102
1375
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1103
1376
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1104
1377
|
};
|
|
1105
|
-
const
|
|
1378
|
+
const userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
1106
1379
|
analyticsUsage: "analyticsUsage",
|
|
1107
1380
|
artifacts: "artifacts",
|
|
1108
1381
|
bandwidth: "bandwidth",
|
|
@@ -1143,7 +1416,7 @@ const allocationEnum = {
|
|
|
1143
1416
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1144
1417
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1145
1418
|
};
|
|
1146
|
-
const
|
|
1419
|
+
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1147
1420
|
BILLING: "BILLING",
|
|
1148
1421
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1149
1422
|
DEVELOPER: "DEVELOPER",
|
|
@@ -1153,26 +1426,59 @@ const roleEnum = {
|
|
|
1153
1426
|
VIEWER: "VIEWER",
|
|
1154
1427
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1155
1428
|
};
|
|
1156
|
-
const
|
|
1157
|
-
|
|
1158
|
-
|
|
1429
|
+
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1430
|
+
BILLING: "BILLING",
|
|
1431
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1432
|
+
DEVELOPER: "DEVELOPER",
|
|
1433
|
+
MEMBER: "MEMBER",
|
|
1434
|
+
OWNER: "OWNER",
|
|
1435
|
+
SECURITY: "SECURITY",
|
|
1436
|
+
VIEWER: "VIEWER",
|
|
1437
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1438
|
+
};
|
|
1439
|
+
const userEventPayloadNewOwnerTeamsTeamPermissionsEnum = {
|
|
1440
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
1441
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
1442
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
1443
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
1444
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
1445
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
1446
|
+
ConnectorManager: "ConnectorManager",
|
|
1447
|
+
CreateProject: "CreateProject",
|
|
1448
|
+
EnvVariableManager: "EnvVariableManager",
|
|
1449
|
+
EnvironmentManager: "EnvironmentManager",
|
|
1450
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
1451
|
+
IntegrationManager: "IntegrationManager",
|
|
1452
|
+
OrgAdmin: "OrgAdmin",
|
|
1453
|
+
OrgViewer: "OrgViewer",
|
|
1454
|
+
UsageViewer: "UsageViewer",
|
|
1455
|
+
V0Builder: "V0Builder",
|
|
1456
|
+
V0Chatter: "V0Chatter",
|
|
1457
|
+
V0Viewer: "V0Viewer",
|
|
1458
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
1459
|
+
};
|
|
1460
|
+
const userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = {
|
|
1461
|
+
"account-update": "account-update",
|
|
1159
1462
|
bitbucket: "bitbucket",
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
emu: "emu",
|
|
1463
|
+
dsync: "dsync",
|
|
1464
|
+
feedback: "feedback",
|
|
1163
1465
|
github: "github",
|
|
1164
|
-
"github-webhook": "github-webhook",
|
|
1165
1466
|
gitlab: "gitlab",
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1467
|
+
import: "import",
|
|
1468
|
+
link: "link",
|
|
1469
|
+
mail: "mail",
|
|
1470
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1471
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1472
|
+
"nsnb-invite": "nsnb-invite",
|
|
1473
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1474
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1475
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1476
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1477
|
+
"organization-teams": "organization-teams",
|
|
1171
1478
|
saml: "saml",
|
|
1172
|
-
|
|
1173
|
-
"token-exchange-oidc": "token-exchange-oidc"
|
|
1479
|
+
teams: "teams"
|
|
1174
1480
|
};
|
|
1175
|
-
const
|
|
1481
|
+
const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
1176
1482
|
default: "default",
|
|
1177
1483
|
"default-force": "default-force",
|
|
1178
1484
|
off: "off",
|
|
@@ -1180,16 +1486,45 @@ const enablePreviewFeedbackEnum = {
|
|
|
1180
1486
|
on: "on",
|
|
1181
1487
|
"on-force": "on-force"
|
|
1182
1488
|
};
|
|
1183
|
-
const
|
|
1489
|
+
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1490
|
+
admin_override: "admin_override",
|
|
1491
|
+
hard_blocked: "hard_blocked",
|
|
1492
|
+
limits_exceeded: "limits_exceeded"
|
|
1493
|
+
};
|
|
1494
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
1495
|
+
admin_override: "admin_override",
|
|
1496
|
+
hard_blocked: "hard_blocked",
|
|
1497
|
+
limits_exceeded: "limits_exceeded"
|
|
1498
|
+
};
|
|
1499
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
1500
|
+
hard: "hard",
|
|
1501
|
+
soft: "soft"
|
|
1502
|
+
};
|
|
1503
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
1184
1504
|
admin_override: "admin_override",
|
|
1185
1505
|
hard_blocked: "hard_blocked",
|
|
1186
1506
|
limits_exceeded: "limits_exceeded"
|
|
1187
1507
|
};
|
|
1188
|
-
const
|
|
1508
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
1189
1509
|
hard: "hard",
|
|
1190
1510
|
soft: "soft"
|
|
1191
1511
|
};
|
|
1192
|
-
const
|
|
1512
|
+
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
1513
|
+
admin_override: "admin_override",
|
|
1514
|
+
hard_blocked: "hard_blocked",
|
|
1515
|
+
limits_exceeded: "limits_exceeded"
|
|
1516
|
+
};
|
|
1517
|
+
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
1518
|
+
admin_override: "admin_override",
|
|
1519
|
+
hard_blocked: "hard_blocked",
|
|
1520
|
+
limits_exceeded: "limits_exceeded"
|
|
1521
|
+
};
|
|
1522
|
+
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1523
|
+
admin_override: "admin_override",
|
|
1524
|
+
hard_blocked: "hard_blocked",
|
|
1525
|
+
limits_exceeded: "limits_exceeded"
|
|
1526
|
+
};
|
|
1527
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = {
|
|
1193
1528
|
analyticsUsage: "analyticsUsage",
|
|
1194
1529
|
artifacts: "artifacts",
|
|
1195
1530
|
bandwidth: "bandwidth",
|
|
@@ -1230,61 +1565,295 @@ const overageReasonEnum = {
|
|
|
1230
1565
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1231
1566
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1232
1567
|
};
|
|
1233
|
-
const
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
const methodEnum = {
|
|
1237
|
-
client_secret_basic: "client_secret_basic",
|
|
1238
|
-
client_secret_jwt: "client_secret_jwt",
|
|
1239
|
-
client_secret_post: "client_secret_post",
|
|
1240
|
-
none: "none",
|
|
1241
|
-
oidc_token: "oidc_token",
|
|
1242
|
-
private_key_jwt: "private_key_jwt"
|
|
1568
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = {
|
|
1569
|
+
admin_override: "admin_override",
|
|
1570
|
+
hard_blocked: "hard_blocked"
|
|
1243
1571
|
};
|
|
1244
|
-
const
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1572
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = {
|
|
1573
|
+
analyticsUsage: "analyticsUsage",
|
|
1574
|
+
artifacts: "artifacts",
|
|
1575
|
+
bandwidth: "bandwidth",
|
|
1576
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1577
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1578
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1579
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1580
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1581
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1582
|
+
dataCacheRead: "dataCacheRead",
|
|
1583
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1584
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1585
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1586
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1587
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1588
|
+
edgeRequest: "edgeRequest",
|
|
1589
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1590
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1591
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1592
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1593
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1594
|
+
fluidDuration: "fluidDuration",
|
|
1595
|
+
functionDuration: "functionDuration",
|
|
1596
|
+
functionInvocation: "functionInvocation",
|
|
1597
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1598
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1599
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1600
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1601
|
+
monitoringMetric: "monitoringMetric",
|
|
1602
|
+
observabilityEvent: "observabilityEvent",
|
|
1603
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1604
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1605
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1606
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1607
|
+
sourceImages: "sourceImages",
|
|
1608
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1609
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1610
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1611
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1612
|
+
};
|
|
1613
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = {
|
|
1614
|
+
admin_override: "admin_override",
|
|
1615
|
+
hard_blocked: "hard_blocked"
|
|
1616
|
+
};
|
|
1617
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = {
|
|
1618
|
+
analyticsUsage: "analyticsUsage",
|
|
1619
|
+
artifacts: "artifacts",
|
|
1620
|
+
bandwidth: "bandwidth",
|
|
1621
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1622
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1623
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1624
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1625
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1626
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1627
|
+
dataCacheRead: "dataCacheRead",
|
|
1628
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1629
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1630
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1631
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1632
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1633
|
+
edgeRequest: "edgeRequest",
|
|
1634
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1635
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1636
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1637
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1638
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1639
|
+
fluidDuration: "fluidDuration",
|
|
1640
|
+
functionDuration: "functionDuration",
|
|
1641
|
+
functionInvocation: "functionInvocation",
|
|
1642
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1643
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1644
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1645
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1646
|
+
monitoringMetric: "monitoringMetric",
|
|
1647
|
+
observabilityEvent: "observabilityEvent",
|
|
1648
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1649
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1650
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1651
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1652
|
+
sourceImages: "sourceImages",
|
|
1653
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1654
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1655
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1656
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1657
|
+
};
|
|
1658
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = {
|
|
1659
|
+
admin_override: "admin_override",
|
|
1660
|
+
hard_blocked: "hard_blocked"
|
|
1661
|
+
};
|
|
1662
|
+
const userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = {
|
|
1663
|
+
admin_override: "admin_override",
|
|
1664
|
+
hard_blocked: "hard_blocked",
|
|
1665
|
+
limits_exceeded: "limits_exceeded"
|
|
1666
|
+
};
|
|
1667
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = {
|
|
1668
|
+
admin_override: "admin_override",
|
|
1669
|
+
hard_blocked: "hard_blocked",
|
|
1670
|
+
limits_exceeded: "limits_exceeded"
|
|
1671
|
+
};
|
|
1672
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = {
|
|
1673
|
+
admin_override: "admin_override",
|
|
1674
|
+
hard_blocked: "hard_blocked",
|
|
1675
|
+
limits_exceeded: "limits_exceeded"
|
|
1676
|
+
};
|
|
1677
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = {
|
|
1678
|
+
admin_override: "admin_override",
|
|
1679
|
+
hard_blocked: "hard_blocked",
|
|
1680
|
+
limits_exceeded: "limits_exceeded"
|
|
1681
|
+
};
|
|
1682
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = {
|
|
1683
|
+
admin_override: "admin_override",
|
|
1684
|
+
hard_blocked: "hard_blocked",
|
|
1685
|
+
limits_exceeded: "limits_exceeded"
|
|
1686
|
+
};
|
|
1687
|
+
const userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = {
|
|
1688
|
+
admin_override: "admin_override",
|
|
1689
|
+
hard_blocked: "hard_blocked",
|
|
1690
|
+
limits_exceeded: "limits_exceeded"
|
|
1691
|
+
};
|
|
1692
|
+
const userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = {
|
|
1693
|
+
admin_override: "admin_override",
|
|
1694
|
+
hard_blocked: "hard_blocked",
|
|
1695
|
+
limits_exceeded: "limits_exceeded"
|
|
1696
|
+
};
|
|
1697
|
+
const userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = {
|
|
1698
|
+
admin_override: "admin_override",
|
|
1699
|
+
hard_blocked: "hard_blocked",
|
|
1700
|
+
limits_exceeded: "limits_exceeded"
|
|
1701
|
+
};
|
|
1702
|
+
const userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
1703
|
+
admin_override: "admin_override",
|
|
1704
|
+
hard_blocked: "hard_blocked",
|
|
1705
|
+
limits_exceeded: "limits_exceeded"
|
|
1706
|
+
};
|
|
1707
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = {
|
|
1708
|
+
disabled: "disabled",
|
|
1709
|
+
enabled: "enabled"
|
|
1710
|
+
};
|
|
1711
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = {
|
|
1712
|
+
admin_removal: "admin_removal",
|
|
1713
|
+
passkey: "passkey",
|
|
1714
|
+
self_serve_recovery: "self_serve_recovery",
|
|
1715
|
+
totp: "totp",
|
|
1716
|
+
unknown: "unknown",
|
|
1717
|
+
user_disabled: "user_disabled"
|
|
1718
|
+
};
|
|
1719
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = {
|
|
1720
|
+
admin: "admin",
|
|
1248
1721
|
user: "user"
|
|
1249
1722
|
};
|
|
1250
|
-
const
|
|
1251
|
-
|
|
1723
|
+
const userEventPayloadQueryTypeEnum = {
|
|
1724
|
+
"data-edit": "data-edit",
|
|
1725
|
+
"data-view": "data-view",
|
|
1726
|
+
schema: "schema",
|
|
1727
|
+
user: "user"
|
|
1728
|
+
};
|
|
1729
|
+
const userEventPayloadFactorsOriginEnum = {
|
|
1730
|
+
apple: "apple",
|
|
1731
|
+
bitbucket: "bitbucket",
|
|
1732
|
+
chatgpt: "chatgpt",
|
|
1733
|
+
email: "email",
|
|
1734
|
+
github: "github",
|
|
1735
|
+
gitlab: "gitlab",
|
|
1736
|
+
google: "google",
|
|
1737
|
+
otp: "otp",
|
|
1738
|
+
saml: "saml"
|
|
1739
|
+
};
|
|
1740
|
+
const userEventPayloadNextDefaultEnum = {
|
|
1741
|
+
BILLING: "BILLING",
|
|
1742
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1743
|
+
DEVELOPER: "DEVELOPER",
|
|
1744
|
+
MEMBER: "MEMBER",
|
|
1745
|
+
OWNER: "OWNER",
|
|
1746
|
+
SECURITY: "SECURITY",
|
|
1747
|
+
VIEWER: "VIEWER",
|
|
1748
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1252
1749
|
};
|
|
1253
|
-
const
|
|
1750
|
+
const userEventPayloadBillingPlanEnum = {
|
|
1254
1751
|
enterprise: "enterprise",
|
|
1255
1752
|
platform: "platform"
|
|
1256
1753
|
};
|
|
1257
|
-
const
|
|
1754
|
+
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1258
1755
|
all: "all",
|
|
1259
1756
|
preview: "preview"
|
|
1260
1757
|
};
|
|
1261
|
-
const
|
|
1758
|
+
const userEventPayloadPreviousNewResourceBlockingPolicyEnum = {
|
|
1262
1759
|
allow: "allow",
|
|
1263
1760
|
block: "block"
|
|
1264
1761
|
};
|
|
1265
|
-
const
|
|
1762
|
+
const userEventPayloadNextEnforcementScopeEnum = {
|
|
1266
1763
|
all: "all",
|
|
1267
1764
|
preview: "preview"
|
|
1268
1765
|
};
|
|
1269
|
-
const
|
|
1766
|
+
const userEventPayloadNextNewResourceBlockingPolicyEnum = {
|
|
1767
|
+
allow: "allow",
|
|
1768
|
+
block: "block"
|
|
1769
|
+
};
|
|
1770
|
+
const userEventPayloadApprovalScopeEnum = {
|
|
1771
|
+
all: "all",
|
|
1772
|
+
preview: "preview"
|
|
1773
|
+
};
|
|
1774
|
+
const userEventPayloadKindEnum = {
|
|
1270
1775
|
connectSrc: "connectSrc",
|
|
1271
1776
|
script: "script"
|
|
1272
1777
|
};
|
|
1273
|
-
const
|
|
1778
|
+
const userEventPayloadPreviousPassportDeploymentTypeEnum = {
|
|
1274
1779
|
all: "all",
|
|
1275
1780
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1276
1781
|
preview: "preview",
|
|
1277
1782
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1278
1783
|
};
|
|
1279
|
-
const
|
|
1784
|
+
const userEventPayloadNextPassportDeploymentTypeEnum = {
|
|
1785
|
+
all: "all",
|
|
1786
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1787
|
+
preview: "preview",
|
|
1788
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1789
|
+
};
|
|
1790
|
+
const roleEnum = {
|
|
1791
|
+
BILLING: "BILLING",
|
|
1792
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1793
|
+
DEVELOPER: "DEVELOPER",
|
|
1794
|
+
MEMBER: "MEMBER",
|
|
1795
|
+
OWNER: "OWNER",
|
|
1796
|
+
SECURITY: "SECURITY",
|
|
1797
|
+
VIEWER: "VIEWER",
|
|
1798
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1799
|
+
};
|
|
1800
|
+
const originEnum = {
|
|
1801
|
+
"account-update": "account-update",
|
|
1802
|
+
bitbucket: "bitbucket",
|
|
1803
|
+
dsync: "dsync",
|
|
1804
|
+
feedback: "feedback",
|
|
1805
|
+
github: "github",
|
|
1806
|
+
gitlab: "gitlab",
|
|
1807
|
+
import: "import",
|
|
1808
|
+
link: "link",
|
|
1809
|
+
mail: "mail",
|
|
1810
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1811
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1812
|
+
"nsnb-invite": "nsnb-invite",
|
|
1813
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1814
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1815
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1816
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1817
|
+
"organization-teams": "organization-teams",
|
|
1818
|
+
saml: "saml",
|
|
1819
|
+
teams: "teams"
|
|
1820
|
+
};
|
|
1821
|
+
const userEventPayloadWidgetEnum = {
|
|
1822
|
+
alert: "alert",
|
|
1823
|
+
"analytics-online": "analytics-online",
|
|
1824
|
+
"analytics-page-views": "analytics-page-views",
|
|
1825
|
+
"analytics-visitors": "analytics-visitors",
|
|
1826
|
+
"firewall-allowed": "firewall-allowed",
|
|
1827
|
+
"firewall-denied": "firewall-denied",
|
|
1828
|
+
"observability-alert": "observability-alert",
|
|
1829
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
1830
|
+
"observability-error-rate": "observability-error-rate",
|
|
1831
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
1832
|
+
online: "online",
|
|
1833
|
+
res: "res",
|
|
1834
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
1835
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
1836
|
+
"speed-insights-res": "speed-insights-res"
|
|
1837
|
+
};
|
|
1838
|
+
const userEventPayloadBuildQueueConfigurationEnum = {
|
|
1280
1839
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1281
1840
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1282
1841
|
};
|
|
1283
|
-
const
|
|
1842
|
+
const userEventPayloadOldBuildQueueConfigurationEnum = {
|
|
1284
1843
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1285
1844
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1286
1845
|
};
|
|
1287
|
-
const
|
|
1846
|
+
const userEventPayloadPreviousBranchMatcherTypeEnum = {
|
|
1847
|
+
endsWith: "endsWith",
|
|
1848
|
+
equals: "equals",
|
|
1849
|
+
startsWith: "startsWith"
|
|
1850
|
+
};
|
|
1851
|
+
const userEventPayloadNextBranchMatcherTypeEnum = {
|
|
1852
|
+
endsWith: "endsWith",
|
|
1853
|
+
equals: "equals",
|
|
1854
|
+
startsWith: "startsWith"
|
|
1855
|
+
};
|
|
1856
|
+
const userEventPayloadPreviousGitProviderEnum = {
|
|
1288
1857
|
bitbucket: "bitbucket",
|
|
1289
1858
|
"cursor-origin": "cursor-origin",
|
|
1290
1859
|
github: "github",
|
|
@@ -1293,96 +1862,265 @@ const gitProviderEnum = {
|
|
|
1293
1862
|
gitlab: "gitlab",
|
|
1294
1863
|
vercel: "vercel"
|
|
1295
1864
|
};
|
|
1296
|
-
const
|
|
1865
|
+
const userEventPayloadNextGitProviderEnum = {
|
|
1866
|
+
bitbucket: "bitbucket",
|
|
1867
|
+
"cursor-origin": "cursor-origin",
|
|
1868
|
+
github: "github",
|
|
1869
|
+
"github-custom-host": "github-custom-host",
|
|
1870
|
+
"github-limited": "github-limited",
|
|
1871
|
+
gitlab: "gitlab",
|
|
1872
|
+
vercel: "vercel"
|
|
1873
|
+
};
|
|
1874
|
+
const userEventPayloadGitProviderEnum = {
|
|
1875
|
+
bitbucket: "bitbucket",
|
|
1876
|
+
"cursor-origin": "cursor-origin",
|
|
1877
|
+
github: "github",
|
|
1878
|
+
"github-custom-host": "github-custom-host",
|
|
1879
|
+
"github-limited": "github-limited",
|
|
1880
|
+
gitlab: "gitlab",
|
|
1881
|
+
vercel: "vercel"
|
|
1882
|
+
};
|
|
1883
|
+
const userEventPayloadCreateDeploymentsEnum = {
|
|
1297
1884
|
disabled: "disabled",
|
|
1298
1885
|
enabled: "enabled"
|
|
1299
1886
|
};
|
|
1300
|
-
const
|
|
1887
|
+
const userEventPayloadProjectsRoleEnum = {
|
|
1888
|
+
ADMIN: "ADMIN",
|
|
1889
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1890
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1891
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1892
|
+
};
|
|
1893
|
+
const userEventPayloadProjectMembershipRoleEnum = {
|
|
1894
|
+
ADMIN: "ADMIN",
|
|
1895
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1896
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1897
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1898
|
+
};
|
|
1899
|
+
const userEventPayloadProjectRoleEnum = {
|
|
1900
|
+
ADMIN: "ADMIN",
|
|
1901
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1902
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1903
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1904
|
+
};
|
|
1905
|
+
const userEventPayloadRemovedMembershipRoleEnum = {
|
|
1906
|
+
ADMIN: "ADMIN",
|
|
1907
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1908
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1909
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1910
|
+
};
|
|
1911
|
+
const userEventPayloadProjectMembershipPreviousRoleEnum = {
|
|
1912
|
+
ADMIN: "ADMIN",
|
|
1913
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1914
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1915
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1916
|
+
};
|
|
1917
|
+
const userEventPayloadPasswordProtectionDeploymentTypeEnum = {
|
|
1918
|
+
all: "all",
|
|
1919
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1920
|
+
preview: "preview",
|
|
1921
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1922
|
+
};
|
|
1923
|
+
const userEventPayloadPasswordProtection = {
|
|
1924
|
+
all: "all",
|
|
1925
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1926
|
+
preview: "preview",
|
|
1927
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1928
|
+
};
|
|
1929
|
+
const userEventPayloadOldPasswordProtectionDeploymentTypeEnum = {
|
|
1930
|
+
all: "all",
|
|
1931
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1932
|
+
preview: "preview",
|
|
1933
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1934
|
+
};
|
|
1935
|
+
const userEventPayloadOldPasswordProtection = {
|
|
1936
|
+
all: "all",
|
|
1937
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1938
|
+
preview: "preview",
|
|
1939
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1940
|
+
};
|
|
1941
|
+
const userEventPayloadReasonCodeEnum = {
|
|
1301
1942
|
BACKOFFICE: "BACKOFFICE",
|
|
1302
1943
|
PUBLIC_API: "PUBLIC_API"
|
|
1303
1944
|
};
|
|
1304
|
-
const
|
|
1945
|
+
const userEventPayloadConsentEnum = {
|
|
1305
1946
|
granted: "granted",
|
|
1306
1947
|
refused: "refused"
|
|
1307
1948
|
};
|
|
1308
|
-
const
|
|
1949
|
+
const userEventPayloadPreviousIssuerModeEnum = {
|
|
1950
|
+
global: "global",
|
|
1951
|
+
team: "team"
|
|
1952
|
+
};
|
|
1953
|
+
const userEventPayloadNextIssuerModeEnum = {
|
|
1309
1954
|
global: "global",
|
|
1310
1955
|
team: "team"
|
|
1311
1956
|
};
|
|
1312
|
-
const
|
|
1957
|
+
const userEventPayloadSsoProtectionDeploymentTypeEnum = {
|
|
1958
|
+
all: "all",
|
|
1959
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1960
|
+
preview: "preview",
|
|
1961
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1962
|
+
};
|
|
1963
|
+
const userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1964
|
+
all: "all",
|
|
1965
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1966
|
+
preview: "preview",
|
|
1967
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1968
|
+
};
|
|
1969
|
+
const userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1970
|
+
all: "all",
|
|
1971
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1972
|
+
preview: "preview",
|
|
1973
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1974
|
+
};
|
|
1975
|
+
const userEventPayloadSsoProtection = {
|
|
1976
|
+
all: "all",
|
|
1977
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1978
|
+
preview: "preview",
|
|
1979
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1980
|
+
};
|
|
1981
|
+
const userEventPayloadOldSsoProtectionDeploymentTypeEnum = {
|
|
1313
1982
|
all: "all",
|
|
1314
1983
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1315
1984
|
preview: "preview",
|
|
1316
1985
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1317
1986
|
};
|
|
1318
|
-
const
|
|
1987
|
+
const userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1319
1988
|
all: "all",
|
|
1320
1989
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1321
1990
|
preview: "preview",
|
|
1322
1991
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1323
1992
|
};
|
|
1324
|
-
const
|
|
1993
|
+
const userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1994
|
+
all: "all",
|
|
1995
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1996
|
+
preview: "preview",
|
|
1997
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1998
|
+
};
|
|
1999
|
+
const userEventPayloadOldSsoProtection = {
|
|
2000
|
+
all: "all",
|
|
2001
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
2002
|
+
preview: "preview",
|
|
2003
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2004
|
+
};
|
|
2005
|
+
const userEventPayloadTrustedIpsEnum = {
|
|
1325
2006
|
all: "all",
|
|
1326
2007
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1327
2008
|
preview: "preview",
|
|
1328
2009
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1329
2010
|
production: "production"
|
|
1330
2011
|
};
|
|
1331
|
-
const
|
|
2012
|
+
const userEventPayloadOldTrustedIpsEnum = {
|
|
1332
2013
|
all: "all",
|
|
1333
2014
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1334
2015
|
preview: "preview",
|
|
1335
2016
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1336
2017
|
production: "production"
|
|
1337
2018
|
};
|
|
1338
|
-
const
|
|
2019
|
+
const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
2020
|
+
flex: "flex",
|
|
2021
|
+
legacy: "legacy",
|
|
2022
|
+
platform: "platform",
|
|
2023
|
+
plus: "plus",
|
|
2024
|
+
unbundled: "unbundled"
|
|
2025
|
+
};
|
|
2026
|
+
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2027
|
+
flex: "flex",
|
|
1339
2028
|
legacy: "legacy",
|
|
1340
2029
|
platform: "platform",
|
|
1341
2030
|
plus: "plus",
|
|
1342
2031
|
unbundled: "unbundled"
|
|
1343
2032
|
};
|
|
1344
|
-
const
|
|
2033
|
+
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2034
|
+
flex: "flex",
|
|
2035
|
+
legacy: "legacy",
|
|
2036
|
+
platform: "platform",
|
|
2037
|
+
plus: "plus",
|
|
2038
|
+
unbundled: "unbundled"
|
|
2039
|
+
};
|
|
2040
|
+
const userEventPayloadStoreTypeEnum = {
|
|
2041
|
+
blob: "blob",
|
|
2042
|
+
"edge-config": "edge-config",
|
|
2043
|
+
integration: "integration",
|
|
1345
2044
|
postgres: "postgres",
|
|
1346
2045
|
redis: "redis"
|
|
1347
2046
|
};
|
|
1348
|
-
const
|
|
2047
|
+
const userEventPayloadAccessEnum = {
|
|
1349
2048
|
private: "private",
|
|
1350
2049
|
public: "public"
|
|
1351
2050
|
};
|
|
1352
|
-
const
|
|
2051
|
+
const userEventPayloadActorTypeEnum = {
|
|
2052
|
+
admin: "admin",
|
|
2053
|
+
user: "user"
|
|
2054
|
+
};
|
|
2055
|
+
const userEventPayloadPreviousScopeEnum = {
|
|
2056
|
+
all: "all",
|
|
2057
|
+
private: "private",
|
|
2058
|
+
public: "public",
|
|
2059
|
+
selected_repos: "selected_repos"
|
|
2060
|
+
};
|
|
2061
|
+
const userEventPayloadNextScopeEnum = {
|
|
2062
|
+
all: "all",
|
|
2063
|
+
private: "private",
|
|
2064
|
+
public: "public",
|
|
2065
|
+
selected_repos: "selected_repos"
|
|
2066
|
+
};
|
|
2067
|
+
const userEventPayloadPreviousEnum = {
|
|
1353
2068
|
basic: "basic",
|
|
1354
2069
|
elastic: "elastic",
|
|
1355
2070
|
enhanced: "enhanced",
|
|
1356
2071
|
standard: "standard",
|
|
1357
2072
|
turbo: "turbo"
|
|
1358
2073
|
};
|
|
1359
|
-
const
|
|
2074
|
+
const userEventPayloadNextEnum = {
|
|
1360
2075
|
basic: "basic",
|
|
1361
2076
|
elastic: "elastic",
|
|
1362
2077
|
enhanced: "enhanced",
|
|
1363
2078
|
standard: "standard",
|
|
1364
2079
|
turbo: "turbo"
|
|
1365
2080
|
};
|
|
1366
|
-
const
|
|
2081
|
+
const userEventPayloadReasonEnum = {
|
|
2082
|
+
"basic-floor": "basic-floor",
|
|
2083
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
2084
|
+
"enospc-failure": "enospc-failure",
|
|
2085
|
+
"enterprise-floor": "enterprise-floor",
|
|
2086
|
+
"high-peak-disk": "high-peak-disk",
|
|
2087
|
+
"high-peak-memory": "high-peak-memory",
|
|
2088
|
+
"long-build-duration": "long-build-duration",
|
|
2089
|
+
"oom-failure": "oom-failure",
|
|
2090
|
+
"plan-change": "plan-change",
|
|
2091
|
+
"short-build-duration": "short-build-duration",
|
|
2092
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
2093
|
+
};
|
|
2094
|
+
const userEventPayloadEnvironmentEnum = {
|
|
1367
2095
|
preview: "preview",
|
|
1368
2096
|
production: "production"
|
|
1369
2097
|
};
|
|
1370
|
-
const
|
|
2098
|
+
const userEventPayloadEnabledEnum = {
|
|
1371
2099
|
default: "default",
|
|
1372
2100
|
off: "off",
|
|
1373
2101
|
on: "on"
|
|
1374
2102
|
};
|
|
1375
|
-
const
|
|
2103
|
+
const userEventPayloadRoleEnum = {
|
|
2104
|
+
BILLING: "BILLING",
|
|
2105
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2106
|
+
DEVELOPER: "DEVELOPER",
|
|
2107
|
+
MEMBER: "MEMBER",
|
|
2108
|
+
OWNER: "OWNER",
|
|
2109
|
+
SECURITY: "SECURITY",
|
|
2110
|
+
VIEWER: "VIEWER",
|
|
2111
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2112
|
+
};
|
|
2113
|
+
const userEventPayloadPreviousPlanEnum = {
|
|
1376
2114
|
enterprise: "enterprise",
|
|
1377
2115
|
hobby: "hobby",
|
|
1378
2116
|
pro: "pro"
|
|
1379
2117
|
};
|
|
1380
|
-
const
|
|
2118
|
+
const userEventPayloadNewPlanEnum = {
|
|
1381
2119
|
enterprise: "enterprise",
|
|
1382
2120
|
hobby: "hobby",
|
|
1383
2121
|
pro: "pro"
|
|
1384
2122
|
};
|
|
1385
|
-
const
|
|
2123
|
+
const userEventPayloadSourceEnum = {
|
|
1386
2124
|
"account-update": "account-update",
|
|
1387
2125
|
bitbucket: "bitbucket",
|
|
1388
2126
|
dsync: "dsync",
|
|
@@ -1403,39 +2141,149 @@ const sourceEnum = {
|
|
|
1403
2141
|
saml: "saml",
|
|
1404
2142
|
teams: "teams"
|
|
1405
2143
|
};
|
|
1406
|
-
const
|
|
2144
|
+
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2145
|
+
BILLING: "BILLING",
|
|
2146
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2147
|
+
DEVELOPER: "DEVELOPER",
|
|
2148
|
+
MEMBER: "MEMBER",
|
|
2149
|
+
OWNER: "OWNER",
|
|
2150
|
+
SECURITY: "SECURITY",
|
|
2151
|
+
VIEWER: "VIEWER",
|
|
2152
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2153
|
+
};
|
|
2154
|
+
const userEventPayloadTeamRolesEnum = {
|
|
2155
|
+
BILLING: "BILLING",
|
|
2156
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2157
|
+
DEVELOPER: "DEVELOPER",
|
|
2158
|
+
MEMBER: "MEMBER",
|
|
2159
|
+
OWNER: "OWNER",
|
|
2160
|
+
SECURITY: "SECURITY",
|
|
2161
|
+
VIEWER: "VIEWER",
|
|
2162
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2163
|
+
};
|
|
2164
|
+
const userEventPayloadPreviousTeamPermissionsEnum = {
|
|
2165
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2166
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2167
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2168
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2169
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
2170
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2171
|
+
ConnectorManager: "ConnectorManager",
|
|
2172
|
+
CreateProject: "CreateProject",
|
|
2173
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2174
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2175
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2176
|
+
IntegrationManager: "IntegrationManager",
|
|
2177
|
+
OrgAdmin: "OrgAdmin",
|
|
2178
|
+
OrgViewer: "OrgViewer",
|
|
2179
|
+
UsageViewer: "UsageViewer",
|
|
2180
|
+
V0Builder: "V0Builder",
|
|
2181
|
+
V0Chatter: "V0Chatter",
|
|
2182
|
+
V0Viewer: "V0Viewer",
|
|
2183
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2184
|
+
};
|
|
2185
|
+
const userEventPayloadTeamPermissionsEnum = {
|
|
2186
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2187
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2188
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2189
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2190
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
2191
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2192
|
+
ConnectorManager: "ConnectorManager",
|
|
2193
|
+
CreateProject: "CreateProject",
|
|
2194
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2195
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2196
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2197
|
+
IntegrationManager: "IntegrationManager",
|
|
2198
|
+
OrgAdmin: "OrgAdmin",
|
|
2199
|
+
OrgViewer: "OrgViewer",
|
|
2200
|
+
UsageViewer: "UsageViewer",
|
|
2201
|
+
V0Builder: "V0Builder",
|
|
2202
|
+
V0Chatter: "V0Chatter",
|
|
2203
|
+
V0Viewer: "V0Viewer",
|
|
2204
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2205
|
+
};
|
|
2206
|
+
const userEventPayloadPlanEnum = {
|
|
2207
|
+
enterprise: "enterprise",
|
|
2208
|
+
hobby: "hobby",
|
|
2209
|
+
pro: "pro"
|
|
2210
|
+
};
|
|
2211
|
+
const userEventPayloadDecisionEnum = {
|
|
1407
2212
|
keep_on: "keep_on",
|
|
1408
2213
|
turn_off: "turn_off"
|
|
1409
2214
|
};
|
|
1410
|
-
const
|
|
2215
|
+
const userEventPayloadScopeEnum = {
|
|
2216
|
+
project: "project",
|
|
2217
|
+
team: "team",
|
|
2218
|
+
user: "user"
|
|
2219
|
+
};
|
|
2220
|
+
const userEventPayloadSamplingEnvEnum = {
|
|
1411
2221
|
preview: "preview",
|
|
1412
2222
|
production: "production"
|
|
1413
2223
|
};
|
|
1414
|
-
const
|
|
2224
|
+
const userEventPayloadMethodEnum = {
|
|
2225
|
+
passkey: "passkey",
|
|
2226
|
+
self_serve_recovery: "self_serve_recovery",
|
|
2227
|
+
totp: "totp",
|
|
2228
|
+
user_disabled: "user_disabled"
|
|
2229
|
+
};
|
|
2230
|
+
const userEventPayloadAllowedMethodsEnum = {
|
|
2231
|
+
"recovery-code": "recovery-code",
|
|
2232
|
+
totp: "totp",
|
|
2233
|
+
webauthn: "webauthn"
|
|
2234
|
+
};
|
|
2235
|
+
const userEventPayloadContextEnum = {
|
|
1415
2236
|
login: "login",
|
|
1416
2237
|
sudo: "sudo"
|
|
1417
2238
|
};
|
|
1418
|
-
const
|
|
2239
|
+
const userEventPayloadDecisionBasisEnum = {
|
|
1419
2240
|
gmail: "gmail",
|
|
1420
2241
|
none: "none",
|
|
1421
2242
|
"workspace-mx": "workspace-mx"
|
|
1422
2243
|
};
|
|
1423
|
-
const
|
|
2244
|
+
const userEventPayloadDecisionMxOutcomeEnum = {
|
|
1424
2245
|
google: "google",
|
|
1425
2246
|
"lookup-error": "lookup-error",
|
|
1426
2247
|
"non-google": "non-google",
|
|
1427
2248
|
"not-checked": "not-checked"
|
|
1428
2249
|
};
|
|
1429
|
-
const
|
|
2250
|
+
const userEventPayloadTierEnum = {
|
|
1430
2251
|
plus: "plus",
|
|
1431
2252
|
pro: "pro"
|
|
1432
2253
|
};
|
|
1433
|
-
const
|
|
1434
|
-
authorization_code: "authorization_code",
|
|
1435
|
-
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
1436
|
-
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2254
|
+
const userEventPayloadGrantTypeEnum = {
|
|
2255
|
+
authorization_code: "authorization_code",
|
|
2256
|
+
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
2257
|
+
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2258
|
+
};
|
|
2259
|
+
const userEventPayloadAuthMethodEnum = {
|
|
2260
|
+
app: "app",
|
|
2261
|
+
apple: "apple",
|
|
2262
|
+
bitbucket: "bitbucket",
|
|
2263
|
+
chatgpt: "chatgpt",
|
|
2264
|
+
email: "email",
|
|
2265
|
+
emu: "emu",
|
|
2266
|
+
github: "github",
|
|
2267
|
+
"github-webhook": "github-webhook",
|
|
2268
|
+
gitlab: "gitlab",
|
|
2269
|
+
google: "google",
|
|
2270
|
+
invite: "invite",
|
|
2271
|
+
manual: "manual",
|
|
2272
|
+
otp: "otp",
|
|
2273
|
+
passkey: "passkey",
|
|
2274
|
+
saml: "saml",
|
|
2275
|
+
sms: "sms",
|
|
2276
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
2277
|
+
};
|
|
2278
|
+
const userEventPayloadAppClientAuthenticationUsedMethodEnum = {
|
|
2279
|
+
client_secret_basic: "client_secret_basic",
|
|
2280
|
+
client_secret_jwt: "client_secret_jwt",
|
|
2281
|
+
client_secret_post: "client_secret_post",
|
|
2282
|
+
none: "none",
|
|
2283
|
+
oidc_token: "oidc_token",
|
|
2284
|
+
private_key_jwt: "private_key_jwt"
|
|
1437
2285
|
};
|
|
1438
|
-
const
|
|
2286
|
+
const userEventPayloadOriginEnum = {
|
|
1439
2287
|
app: "app",
|
|
1440
2288
|
apple: "apple",
|
|
1441
2289
|
bitbucket: "bitbucket",
|
|
@@ -1454,13 +2302,7 @@ const authMethodEnum = {
|
|
|
1454
2302
|
sms: "sms",
|
|
1455
2303
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
1456
2304
|
};
|
|
1457
|
-
const
|
|
1458
|
-
vcp_: "vcp_"
|
|
1459
|
-
};
|
|
1460
|
-
const refreshTokenPrefixEnum = {
|
|
1461
|
-
vcr_: "vcr_"
|
|
1462
|
-
};
|
|
1463
|
-
const projectScopeEnum = {
|
|
2305
|
+
const userEventPayloadProjectScopeEnum = {
|
|
1464
2306
|
account: "account",
|
|
1465
2307
|
"project-only": "project-only"
|
|
1466
2308
|
};
|
|
@@ -1499,6 +2341,7 @@ const listEventTypeNameEnum = {
|
|
|
1499
2341
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
1500
2342
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
1501
2343
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2344
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
1502
2345
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
1503
2346
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
1504
2347
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -1631,6 +2474,7 @@ const listEventTypeNameEnum = {
|
|
|
1631
2474
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
1632
2475
|
"domain-delegated": "domain-delegated",
|
|
1633
2476
|
"domain-delete": "domain-delete",
|
|
2477
|
+
"domain-ech-change": "domain-ech-change",
|
|
1634
2478
|
"domain-move-in": "domain-move-in",
|
|
1635
2479
|
"domain-move-out": "domain-move-out",
|
|
1636
2480
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -1685,6 +2529,7 @@ const listEventTypeNameEnum = {
|
|
|
1685
2529
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
1686
2530
|
"env-variable-rotated": "env-variable-rotated",
|
|
1687
2531
|
"experiment-created": "experiment-created",
|
|
2532
|
+
"experiment-deleted": "experiment-deleted",
|
|
1688
2533
|
"experiment-transitioned": "experiment-transitioned",
|
|
1689
2534
|
"experiment-updated": "experiment-updated",
|
|
1690
2535
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -1710,7 +2555,19 @@ const listEventTypeNameEnum = {
|
|
|
1710
2555
|
"flags-transferred": "flags-transferred",
|
|
1711
2556
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1712
2557
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2558
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
2559
|
+
"global-config-created": "global-config-created",
|
|
2560
|
+
"global-config-deleted": "global-config-deleted",
|
|
2561
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
2562
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
2563
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
2564
|
+
"global-config-token-created": "global-config-token-created",
|
|
2565
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
2566
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
2567
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
2568
|
+
"global-config-updated": "global-config-updated",
|
|
1713
2569
|
"instant-rollback-created": "instant-rollback-created",
|
|
2570
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
1714
2571
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1715
2572
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1716
2573
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -1914,6 +2771,7 @@ const listEventTypeNameEnum = {
|
|
|
1914
2771
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
1915
2772
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
1916
2773
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2774
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
1917
2775
|
"project-sso-protection": "project-sso-protection",
|
|
1918
2776
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
1919
2777
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2037,6 +2895,8 @@ const listEventTypeNameEnum = {
|
|
|
2037
2895
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2038
2896
|
"tracing-configured": "tracing-configured",
|
|
2039
2897
|
"tracing-disabled": "tracing-disabled",
|
|
2898
|
+
"tracing-paused": "tracing-paused",
|
|
2899
|
+
"tracing-resumed": "tracing-resumed",
|
|
2040
2900
|
"unlink-login-connection": "unlink-login-connection",
|
|
2041
2901
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2042
2902
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2047,6 +2907,8 @@ const listEventTypeNameEnum = {
|
|
|
2047
2907
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2048
2908
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2049
2909
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2910
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2911
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2050
2912
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2051
2913
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2052
2914
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2164,6 +3026,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2164
3026
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2165
3027
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2166
3028
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
3029
|
+
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
2167
3030
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2168
3031
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
2169
3032
|
"ai-gateway-private-model-created": "ai-gateway-private-model-created",
|
|
@@ -2296,6 +3159,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2296
3159
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
2297
3160
|
"domain-delegated": "domain-delegated",
|
|
2298
3161
|
"domain-delete": "domain-delete",
|
|
3162
|
+
"domain-ech-change": "domain-ech-change",
|
|
2299
3163
|
"domain-move-in": "domain-move-in",
|
|
2300
3164
|
"domain-move-out": "domain-move-out",
|
|
2301
3165
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -2350,6 +3214,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2350
3214
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
2351
3215
|
"env-variable-rotated": "env-variable-rotated",
|
|
2352
3216
|
"experiment-created": "experiment-created",
|
|
3217
|
+
"experiment-deleted": "experiment-deleted",
|
|
2353
3218
|
"experiment-transitioned": "experiment-transitioned",
|
|
2354
3219
|
"experiment-updated": "experiment-updated",
|
|
2355
3220
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
@@ -2375,7 +3240,19 @@ const listEventTypeReplacedByEnum = {
|
|
|
2375
3240
|
"flags-transferred": "flags-transferred",
|
|
2376
3241
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2377
3242
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3243
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
3244
|
+
"global-config-created": "global-config-created",
|
|
3245
|
+
"global-config-deleted": "global-config-deleted",
|
|
3246
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
3247
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
3248
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
3249
|
+
"global-config-token-created": "global-config-token-created",
|
|
3250
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
3251
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
3252
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
3253
|
+
"global-config-updated": "global-config-updated",
|
|
2378
3254
|
"instant-rollback-created": "instant-rollback-created",
|
|
3255
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
2379
3256
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2380
3257
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2381
3258
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -2579,6 +3456,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2579
3456
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2580
3457
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2581
3458
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
3459
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2582
3460
|
"project-sso-protection": "project-sso-protection",
|
|
2583
3461
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
2584
3462
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2702,6 +3580,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2702
3580
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2703
3581
|
"tracing-configured": "tracing-configured",
|
|
2704
3582
|
"tracing-disabled": "tracing-disabled",
|
|
3583
|
+
"tracing-paused": "tracing-paused",
|
|
3584
|
+
"tracing-resumed": "tracing-resumed",
|
|
2705
3585
|
"unlink-login-connection": "unlink-login-connection",
|
|
2706
3586
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2707
3587
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2712,6 +3592,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2712
3592
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2713
3593
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2714
3594
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
3595
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
3596
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2715
3597
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2716
3598
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2717
3599
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2769,8 +3651,34 @@ const listEventTypeReplacedByEnum = {
|
|
|
2769
3651
|
"webhook-updated": "webhook-updated",
|
|
2770
3652
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2771
3653
|
};
|
|
2772
|
-
const
|
|
2773
|
-
|
|
3654
|
+
const listEventTypesResponseCategoriesNameEnum = {
|
|
3655
|
+
account: "account",
|
|
3656
|
+
ai: "ai",
|
|
3657
|
+
"ai-gateway": "ai-gateway",
|
|
3658
|
+
billing: "billing",
|
|
3659
|
+
connect: "connect",
|
|
3660
|
+
deployment: "deployment",
|
|
3661
|
+
domain: "domain",
|
|
3662
|
+
edge: "edge",
|
|
3663
|
+
"env-variable": "env-variable",
|
|
3664
|
+
"feature-flags": "feature-flags",
|
|
3665
|
+
firewall: "firewall",
|
|
3666
|
+
integration: "integration",
|
|
3667
|
+
microfrontends: "microfrontends",
|
|
3668
|
+
network: "network",
|
|
3669
|
+
observability: "observability",
|
|
3670
|
+
other: "other",
|
|
3671
|
+
project: "project",
|
|
3672
|
+
security: "security",
|
|
3673
|
+
storage: "storage",
|
|
3674
|
+
team: "team",
|
|
3675
|
+
v0: "v0",
|
|
3676
|
+
"vercel-app": "vercel-app",
|
|
3677
|
+
workflow: "workflow"
|
|
3678
|
+
};
|
|
3679
|
+
const typeEnum = {
|
|
3680
|
+
list: "list",
|
|
3681
|
+
"list/inline": "list/inline"
|
|
2774
3682
|
};
|
|
2775
3683
|
const cmpEnum = {
|
|
2776
3684
|
after: "after",
|
|
@@ -2800,12 +3708,6 @@ const flagStateEnum = {
|
|
|
2800
3708
|
active: "active",
|
|
2801
3709
|
archived: "archived"
|
|
2802
3710
|
};
|
|
2803
|
-
const flagTypeNameEnum = {
|
|
2804
|
-
flag: "flag"
|
|
2805
|
-
};
|
|
2806
|
-
const marketplaceFlagTypeNameEnum = {
|
|
2807
|
-
marketplaceFlag: "marketplaceFlag"
|
|
2808
|
-
};
|
|
2809
3711
|
const marketplaceFlagStateEnum = {
|
|
2810
3712
|
active: "active",
|
|
2811
3713
|
archived: "archived"
|
|
@@ -2814,8 +3716,31 @@ const marketplaceFlagCategoryEnum = {
|
|
|
2814
3716
|
experiment: "experiment",
|
|
2815
3717
|
flag: "flag"
|
|
2816
3718
|
};
|
|
2817
|
-
const
|
|
2818
|
-
|
|
3719
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3720
|
+
list: "list",
|
|
3721
|
+
"list/inline": "list/inline"
|
|
3722
|
+
};
|
|
3723
|
+
const segmentDataRulesConditionsRhs = {
|
|
3724
|
+
false: false,
|
|
3725
|
+
true: true
|
|
3726
|
+
};
|
|
3727
|
+
const segmentDataRulesConditionsCmpEnum = {
|
|
3728
|
+
after: "after",
|
|
3729
|
+
before: "before",
|
|
3730
|
+
contains: "contains",
|
|
3731
|
+
containsAllOf: "containsAllOf",
|
|
3732
|
+
containsAnyOf: "containsAnyOf",
|
|
3733
|
+
containsNoneOf: "containsNoneOf",
|
|
3734
|
+
endsWith: "endsWith",
|
|
3735
|
+
eq: "eq",
|
|
3736
|
+
ex: "ex",
|
|
3737
|
+
gt: "gt",
|
|
3738
|
+
gte: "gte",
|
|
3739
|
+
lt: "lt",
|
|
3740
|
+
lte: "lte",
|
|
3741
|
+
oneOf: "oneOf",
|
|
3742
|
+
regex: "regex",
|
|
3743
|
+
startsWith: "startsWith"
|
|
2819
3744
|
};
|
|
2820
3745
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
2821
3746
|
client: "client",
|
|
@@ -2834,6 +3759,27 @@ const namedSandboxStatusEnum = {
|
|
|
2834
3759
|
stopped: "stopped",
|
|
2835
3760
|
stopping: "stopping"
|
|
2836
3761
|
};
|
|
3762
|
+
const namedSandboxFailoverRegionsEnum = {
|
|
3763
|
+
arn1: "arn1",
|
|
3764
|
+
bom1: "bom1",
|
|
3765
|
+
cdg1: "cdg1",
|
|
3766
|
+
cle1: "cle1",
|
|
3767
|
+
cpt1: "cpt1",
|
|
3768
|
+
dub1: "dub1",
|
|
3769
|
+
fra1: "fra1",
|
|
3770
|
+
gru1: "gru1",
|
|
3771
|
+
hkg1: "hkg1",
|
|
3772
|
+
hnd1: "hnd1",
|
|
3773
|
+
iad1: "iad1",
|
|
3774
|
+
icn1: "icn1",
|
|
3775
|
+
kix1: "kix1",
|
|
3776
|
+
lhr1: "lhr1",
|
|
3777
|
+
pdx1: "pdx1",
|
|
3778
|
+
sfo1: "sfo1",
|
|
3779
|
+
sin1: "sin1",
|
|
3780
|
+
syd1: "syd1",
|
|
3781
|
+
yul1: "yul1"
|
|
3782
|
+
};
|
|
2837
3783
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
2838
3784
|
"allow-all": "allow-all",
|
|
2839
3785
|
custom: "custom",
|
|
@@ -2893,6 +3839,8 @@ const invitedTeamMemberTeamPermissionsEnum = {
|
|
|
2893
3839
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2894
3840
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2895
3841
|
AiGatewaySettings: "AiGatewaySettings",
|
|
3842
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
3843
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2896
3844
|
ConnectorManager: "ConnectorManager",
|
|
2897
3845
|
CreateProject: "CreateProject",
|
|
2898
3846
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -2940,6 +3888,8 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
2940
3888
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2941
3889
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2942
3890
|
AiGatewaySettings: "AiGatewaySettings",
|
|
3891
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
3892
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
2943
3893
|
ConnectorManager: "ConnectorManager",
|
|
2944
3894
|
CreateProject: "CreateProject",
|
|
2945
3895
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -2961,6 +3911,10 @@ const teamResourceConfigBuildMachineDefaultEnum = {
|
|
|
2961
3911
|
standard: "standard",
|
|
2962
3912
|
turbo: "turbo"
|
|
2963
3913
|
};
|
|
3914
|
+
const teamDisableHardAutoBlocks = {
|
|
3915
|
+
false: false,
|
|
3916
|
+
true: true
|
|
3917
|
+
};
|
|
2964
3918
|
const teamDefaultPassportDeploymentTypeEnum = {
|
|
2965
3919
|
all: "all",
|
|
2966
3920
|
all_except_custom_domains: "all_except_custom_domains",
|
|
@@ -3003,7 +3957,23 @@ const teamNsnbConfigPreferenceEnum = {
|
|
|
3003
3957
|
block: "block",
|
|
3004
3958
|
"manual-approval": "manual-approval"
|
|
3005
3959
|
};
|
|
3006
|
-
const
|
|
3960
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
3961
|
+
bitbucket: "bitbucket",
|
|
3962
|
+
github: "github"
|
|
3963
|
+
};
|
|
3964
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
3965
|
+
preview: "preview",
|
|
3966
|
+
production: "production"
|
|
3967
|
+
};
|
|
3968
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
3969
|
+
cli: "cli",
|
|
3970
|
+
"deploy-hook": "deploy-hook",
|
|
3971
|
+
git: "git",
|
|
3972
|
+
integration: "integration",
|
|
3973
|
+
"rest-api": "rest-api",
|
|
3974
|
+
v0: "v0"
|
|
3975
|
+
};
|
|
3976
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
3007
3977
|
preview: "preview",
|
|
3008
3978
|
production: "production"
|
|
3009
3979
|
};
|
|
@@ -3032,6 +4002,8 @@ const teamMembershipTeamPermissionsEnum = {
|
|
|
3032
4002
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
3033
4003
|
AiGatewayCredits: "AiGatewayCredits",
|
|
3034
4004
|
AiGatewaySettings: "AiGatewaySettings",
|
|
4005
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
4006
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
3035
4007
|
ConnectorManager: "ConnectorManager",
|
|
3036
4008
|
CreateProject: "CreateProject",
|
|
3037
4009
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -3105,6 +4077,8 @@ const teamLimitedMembershipTeamPermissionsEnum = {
|
|
|
3105
4077
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
3106
4078
|
AiGatewayCredits: "AiGatewayCredits",
|
|
3107
4079
|
AiGatewaySettings: "AiGatewaySettings",
|
|
4080
|
+
AiGatewayTranscriptsManager: "AiGatewayTranscriptsManager",
|
|
4081
|
+
AiGatewayTranscriptsViewer: "AiGatewayTranscriptsViewer",
|
|
3108
4082
|
ConnectorManager: "ConnectorManager",
|
|
3109
4083
|
CreateProject: "CreateProject",
|
|
3110
4084
|
EnvVariableManager: "EnvVariableManager",
|
|
@@ -3140,6 +4114,32 @@ const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
|
3140
4114
|
saml: "saml",
|
|
3141
4115
|
teams: "teams"
|
|
3142
4116
|
};
|
|
4117
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4118
|
+
"email-otp": "email-otp",
|
|
4119
|
+
otp: "otp",
|
|
4120
|
+
"recovery-code": "recovery-code",
|
|
4121
|
+
totp: "totp",
|
|
4122
|
+
webauthn: "webauthn"
|
|
4123
|
+
};
|
|
4124
|
+
const authTokenScopesOriginEnum = {
|
|
4125
|
+
app: "app",
|
|
4126
|
+
apple: "apple",
|
|
4127
|
+
bitbucket: "bitbucket",
|
|
4128
|
+
chatgpt: "chatgpt",
|
|
4129
|
+
email: "email",
|
|
4130
|
+
emu: "emu",
|
|
4131
|
+
github: "github",
|
|
4132
|
+
"github-webhook": "github-webhook",
|
|
4133
|
+
gitlab: "gitlab",
|
|
4134
|
+
google: "google",
|
|
4135
|
+
invite: "invite",
|
|
4136
|
+
manual: "manual",
|
|
4137
|
+
otp: "otp",
|
|
4138
|
+
passkey: "passkey",
|
|
4139
|
+
saml: "saml",
|
|
4140
|
+
sms: "sms",
|
|
4141
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
4142
|
+
};
|
|
3143
4143
|
const authUserSoftBlockReasonEnum = {
|
|
3144
4144
|
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
3145
4145
|
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
@@ -3193,10 +4193,63 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
3193
4193
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
3194
4194
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
3195
4195
|
};
|
|
4196
|
+
const authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
4197
|
+
analyticsUsage: "analyticsUsage",
|
|
4198
|
+
artifacts: "artifacts",
|
|
4199
|
+
bandwidth: "bandwidth",
|
|
4200
|
+
blobDataTransfer: "blobDataTransfer",
|
|
4201
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
4202
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
4203
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
4204
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
4205
|
+
connectDataTransfer: "connectDataTransfer",
|
|
4206
|
+
dataCacheRead: "dataCacheRead",
|
|
4207
|
+
dataCacheWrite: "dataCacheWrite",
|
|
4208
|
+
edgeConfigRead: "edgeConfigRead",
|
|
4209
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
4210
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
4211
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
4212
|
+
edgeRequest: "edgeRequest",
|
|
4213
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
4214
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
4215
|
+
fastDataTransfer: "fastDataTransfer",
|
|
4216
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
4217
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
4218
|
+
fluidDuration: "fluidDuration",
|
|
4219
|
+
functionDuration: "functionDuration",
|
|
4220
|
+
functionInvocation: "functionInvocation",
|
|
4221
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
4222
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
4223
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
4224
|
+
logDrainsVolume: "logDrainsVolume",
|
|
4225
|
+
monitoringMetric: "monitoringMetric",
|
|
4226
|
+
observabilityEvent: "observabilityEvent",
|
|
4227
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
4228
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
4229
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
4230
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
4231
|
+
sourceImages: "sourceImages",
|
|
4232
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
4233
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
4234
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4235
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4236
|
+
};
|
|
3196
4237
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
3197
4238
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
3198
4239
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
3199
4240
|
};
|
|
4241
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4242
|
+
cards: "cards",
|
|
4243
|
+
list: "list"
|
|
4244
|
+
};
|
|
4245
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4246
|
+
closed: "closed",
|
|
4247
|
+
open: "open"
|
|
4248
|
+
};
|
|
4249
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4250
|
+
closed: "closed",
|
|
4251
|
+
open: "open"
|
|
4252
|
+
};
|
|
3200
4253
|
const authUserImportFlowGitProviderEnum = {
|
|
3201
4254
|
bitbucket: "bitbucket",
|
|
3202
4255
|
"cursor-origin": "cursor-origin",
|
|
@@ -3206,16 +4259,21 @@ const authUserImportFlowGitProviderEnum = {
|
|
|
3206
4259
|
gitlab: "gitlab",
|
|
3207
4260
|
vercel: "vercel"
|
|
3208
4261
|
};
|
|
3209
|
-
const
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
4262
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4263
|
+
admin_override: "admin_override",
|
|
4264
|
+
hard_blocked: "hard_blocked",
|
|
4265
|
+
limits_exceeded: "limits_exceeded"
|
|
3213
4266
|
};
|
|
3214
4267
|
const vcrImageListItemKindEnum = {
|
|
3215
4268
|
attestation: "attestation",
|
|
3216
4269
|
index: "index",
|
|
3217
4270
|
manifest: "manifest"
|
|
3218
4271
|
};
|
|
4272
|
+
const vcrImageListItemStatusEnum = {
|
|
4273
|
+
preparing: "preparing",
|
|
4274
|
+
ready: "ready",
|
|
4275
|
+
unoptimized: "unoptimized"
|
|
4276
|
+
};
|
|
3219
4277
|
const vcrTagKindEnum = {
|
|
3220
4278
|
attestation: "attestation",
|
|
3221
4279
|
index: "index",
|
|
@@ -3226,7 +4284,7 @@ const vcrTagStatusEnum = {
|
|
|
3226
4284
|
ready: "ready",
|
|
3227
4285
|
unoptimized: "unoptimized"
|
|
3228
4286
|
};
|
|
3229
|
-
const
|
|
4287
|
+
const vcrImageLayerOperationEnum = {
|
|
3230
4288
|
ADD: "ADD",
|
|
3231
4289
|
ARG: "ARG",
|
|
3232
4290
|
CMD: "CMD",
|
|
@@ -3246,16 +4304,33 @@ const operationEnum = {
|
|
|
3246
4304
|
VOLUME: "VOLUME",
|
|
3247
4305
|
WORKDIR: "WORKDIR"
|
|
3248
4306
|
};
|
|
3249
|
-
const
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
4307
|
+
const vcrImageLayerTypeEnum = {
|
|
4308
|
+
ADD: "ADD",
|
|
4309
|
+
ARG: "ARG",
|
|
4310
|
+
CMD: "CMD",
|
|
4311
|
+
COPY: "COPY",
|
|
4312
|
+
ENTRYPOINT: "ENTRYPOINT",
|
|
4313
|
+
EXPOSE: "EXPOSE",
|
|
4314
|
+
HEALTHCHECK: "HEALTHCHECK",
|
|
4315
|
+
LABEL: "LABEL",
|
|
4316
|
+
ONBUILD: "ONBUILD",
|
|
4317
|
+
SHELL: "SHELL",
|
|
4318
|
+
STOPSIGNAL: "STOPSIGNAL",
|
|
4319
|
+
UNKNOWN: "UNKNOWN",
|
|
4320
|
+
USER: "USER",
|
|
4321
|
+
VOLUME: "VOLUME",
|
|
4322
|
+
WORKDIR: "WORKDIR"
|
|
3253
4323
|
};
|
|
3254
4324
|
const vcrImageDetailKindEnum = {
|
|
3255
4325
|
attestation: "attestation",
|
|
3256
4326
|
index: "index",
|
|
3257
4327
|
manifest: "manifest"
|
|
3258
4328
|
};
|
|
4329
|
+
const vcrImageDetailStatusEnum = {
|
|
4330
|
+
preparing: "preparing",
|
|
4331
|
+
ready: "ready",
|
|
4332
|
+
unoptimized: "unoptimized"
|
|
4333
|
+
};
|
|
3259
4334
|
const fileTreeTypeEnum = {
|
|
3260
4335
|
directory: "directory",
|
|
3261
4336
|
file: "file",
|
|
@@ -3264,171 +4339,313 @@ const fileTreeTypeEnum = {
|
|
|
3264
4339
|
middleware: "middleware",
|
|
3265
4340
|
symlink: "symlink"
|
|
3266
4341
|
};
|
|
4342
|
+
const listAiGatewayRulesIncludeDisabled = {
|
|
4343
|
+
true: "true",
|
|
4344
|
+
false: "false"
|
|
4345
|
+
};
|
|
4346
|
+
const getRedirectsSortBy = {
|
|
4347
|
+
source: "source",
|
|
4348
|
+
destination: "destination",
|
|
4349
|
+
statusCode: "statusCode"
|
|
4350
|
+
};
|
|
4351
|
+
const getRedirectsSortOrder = {
|
|
4352
|
+
asc: "asc",
|
|
4353
|
+
desc: "desc"
|
|
4354
|
+
};
|
|
4355
|
+
const listProjectChecksBlocks = {
|
|
4356
|
+
"build-start": "build-start",
|
|
4357
|
+
"deployment-start": "deployment-start",
|
|
4358
|
+
"deployment-alias": "deployment-alias",
|
|
4359
|
+
"deployment-promotion": "deployment-promotion",
|
|
4360
|
+
none: "none"
|
|
4361
|
+
};
|
|
4362
|
+
const getDeploymentEventsDirection = {
|
|
4363
|
+
backward: "backward",
|
|
4364
|
+
forward: "forward"
|
|
4365
|
+
};
|
|
4366
|
+
const getDeploymentEventsFollow = {
|
|
4367
|
+
"0": 0,
|
|
4368
|
+
"1": 1
|
|
4369
|
+
};
|
|
4370
|
+
const getDeploymentEventsDelimiter = {
|
|
4371
|
+
"0": 0,
|
|
4372
|
+
"1": 1
|
|
4373
|
+
};
|
|
4374
|
+
const getDeploymentEventsBuilds = {
|
|
4375
|
+
"0": 0,
|
|
4376
|
+
"1": 1
|
|
4377
|
+
};
|
|
4378
|
+
const getDomainConfigStrict = {
|
|
4379
|
+
true: "true",
|
|
4380
|
+
false: "false"
|
|
4381
|
+
};
|
|
4382
|
+
const listFlagsV2State = {
|
|
4383
|
+
active: "active",
|
|
4384
|
+
archived: "archived"
|
|
4385
|
+
};
|
|
4386
|
+
const listFlagsState = {
|
|
4387
|
+
active: "active",
|
|
4388
|
+
archived: "archived"
|
|
4389
|
+
};
|
|
4390
|
+
const listTeamFlagsV2State = {
|
|
4391
|
+
active: "active",
|
|
4392
|
+
archived: "archived"
|
|
4393
|
+
};
|
|
4394
|
+
const listTeamFlagsV2Kind = {
|
|
4395
|
+
boolean: "boolean",
|
|
4396
|
+
string: "string",
|
|
4397
|
+
number: "number",
|
|
4398
|
+
json: "json"
|
|
4399
|
+
};
|
|
4400
|
+
const listTeamFlagsState = {
|
|
4401
|
+
active: "active",
|
|
4402
|
+
archived: "archived"
|
|
4403
|
+
};
|
|
4404
|
+
const listTeamFlagsKind = {
|
|
4405
|
+
boolean: "boolean",
|
|
4406
|
+
string: "string",
|
|
4407
|
+
number: "number",
|
|
4408
|
+
json: "json"
|
|
4409
|
+
};
|
|
4410
|
+
const gitNamespacesProvider = {
|
|
4411
|
+
github: "github",
|
|
4412
|
+
"github-limited": "github-limited",
|
|
4413
|
+
"github-custom-host": "github-custom-host",
|
|
4414
|
+
gitlab: "gitlab",
|
|
4415
|
+
bitbucket: "bitbucket"
|
|
4416
|
+
};
|
|
4417
|
+
const searchRepoProvider = {
|
|
4418
|
+
github: "github",
|
|
4419
|
+
"github-limited": "github-limited",
|
|
4420
|
+
"github-custom-host": "github-custom-host",
|
|
4421
|
+
gitlab: "gitlab",
|
|
4422
|
+
bitbucket: "bitbucket",
|
|
4423
|
+
"cursor-origin": "cursor-origin"
|
|
4424
|
+
};
|
|
4425
|
+
const getBillingPlansSource = {
|
|
4426
|
+
marketplace: "marketplace",
|
|
4427
|
+
"deploy-button": "deploy-button",
|
|
4428
|
+
external: "external",
|
|
4429
|
+
v0: "v0",
|
|
4430
|
+
"resource-claims": "resource-claims",
|
|
4431
|
+
cli: "cli",
|
|
4432
|
+
oauth: "oauth",
|
|
4433
|
+
backoffice: "backoffice",
|
|
4434
|
+
"import-recommended-integrations": "import-recommended-integrations"
|
|
4435
|
+
};
|
|
4436
|
+
const getConfigurationsView = {
|
|
4437
|
+
account: "account",
|
|
4438
|
+
project: "project"
|
|
4439
|
+
};
|
|
4440
|
+
const getConfigurationsInstallationType = {
|
|
4441
|
+
marketplace: "marketplace",
|
|
4442
|
+
external: "external",
|
|
4443
|
+
provisioning: "provisioning"
|
|
4444
|
+
};
|
|
4445
|
+
const deleteKmsIssuerPolicyKind = {
|
|
4446
|
+
"project-grant": "project-grant",
|
|
4447
|
+
"connex-grant": "connex-grant"
|
|
4448
|
+
};
|
|
4449
|
+
const getRoutesFilter = {
|
|
4450
|
+
rewrite: "rewrite",
|
|
4451
|
+
redirect: "redirect",
|
|
4452
|
+
set_status: "set_status",
|
|
4453
|
+
transform: "transform"
|
|
4454
|
+
};
|
|
4455
|
+
const getProjectsBuildQueueConfiguration = {
|
|
4456
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4457
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4458
|
+
};
|
|
4459
|
+
const getProjectDomainsProduction = {
|
|
4460
|
+
true: "true",
|
|
4461
|
+
false: "false"
|
|
4462
|
+
};
|
|
4463
|
+
const getProjectDomainsTarget = {
|
|
4464
|
+
production: "production",
|
|
4465
|
+
preview: "preview"
|
|
4466
|
+
};
|
|
4467
|
+
const getProjectDomainsRedirects = {
|
|
4468
|
+
true: "true",
|
|
4469
|
+
false: "false"
|
|
4470
|
+
};
|
|
4471
|
+
const getProjectDomainsVerified = {
|
|
4472
|
+
true: "true",
|
|
4473
|
+
false: "false"
|
|
4474
|
+
};
|
|
4475
|
+
const getProjectDomainsOrder = {
|
|
4476
|
+
ASC: "ASC",
|
|
4477
|
+
DESC: "DESC"
|
|
4478
|
+
};
|
|
4479
|
+
const filterProjectEnvsDecrypt = {
|
|
4480
|
+
true: "true",
|
|
4481
|
+
false: "false"
|
|
4482
|
+
};
|
|
4483
|
+
const getRollingReleaseState = {
|
|
4484
|
+
ACTIVE: "ACTIVE",
|
|
4485
|
+
COMPLETE: "COMPLETE",
|
|
4486
|
+
ABORTED: "ABORTED"
|
|
4487
|
+
};
|
|
4488
|
+
const listSandboxesSortBy = {
|
|
4489
|
+
createdAt: "createdAt",
|
|
4490
|
+
name: "name",
|
|
4491
|
+
statusUpdatedAt: "statusUpdatedAt",
|
|
4492
|
+
currentSnapshotId: "currentSnapshotId"
|
|
4493
|
+
};
|
|
4494
|
+
const listSandboxesSortOrder = {
|
|
4495
|
+
asc: "asc",
|
|
4496
|
+
desc: "desc"
|
|
4497
|
+
};
|
|
4498
|
+
const listSandboxesStatus = {
|
|
4499
|
+
running: "running",
|
|
4500
|
+
stopping: "stopping",
|
|
4501
|
+
stopped: "stopped"
|
|
4502
|
+
};
|
|
4503
|
+
const listDrivesSortBy = {
|
|
4504
|
+
createdAt: "createdAt",
|
|
4505
|
+
updatedAt: "updatedAt",
|
|
4506
|
+
name: "name"
|
|
4507
|
+
};
|
|
4508
|
+
const listDrivesSortOrder = {
|
|
4509
|
+
asc: "asc",
|
|
4510
|
+
desc: "desc"
|
|
4511
|
+
};
|
|
4512
|
+
const listSessionSnapshotsSortOrder = {
|
|
4513
|
+
asc: "asc",
|
|
4514
|
+
desc: "desc"
|
|
4515
|
+
};
|
|
4516
|
+
const listSessionsSortOrder = {
|
|
4517
|
+
asc: "asc",
|
|
4518
|
+
desc: "desc"
|
|
4519
|
+
};
|
|
4520
|
+
const getSessionCommandWait = {
|
|
4521
|
+
true: "true",
|
|
4522
|
+
false: "false"
|
|
4523
|
+
};
|
|
4524
|
+
const getTeamMembersRole = {
|
|
4525
|
+
OWNER: "OWNER",
|
|
4526
|
+
MEMBER: "MEMBER",
|
|
4527
|
+
DEVELOPER: "DEVELOPER",
|
|
4528
|
+
SECURITY: "SECURITY",
|
|
4529
|
+
BILLING: "BILLING",
|
|
4530
|
+
VIEWER: "VIEWER",
|
|
4531
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS",
|
|
4532
|
+
CONTRIBUTOR: "CONTRIBUTOR"
|
|
4533
|
+
};
|
|
4534
|
+
const listRepositoryTagsSortBy = {
|
|
4535
|
+
updatedAt: "updatedAt",
|
|
4536
|
+
tag: "tag"
|
|
4537
|
+
};
|
|
4538
|
+
const listRepositoryTagsSortOrder = {
|
|
4539
|
+
asc: "asc",
|
|
4540
|
+
desc: "desc"
|
|
4541
|
+
};
|
|
3267
4542
|
|
|
3268
|
-
exports.DNSSECEnabledCodeEnum = DNSSECEnabledCodeEnum;
|
|
3269
|
-
exports.DNSSECEnabledStatusEnum = DNSSECEnabledStatusEnum;
|
|
3270
4543
|
exports.aCLAction = aCLAction;
|
|
3271
|
-
exports.accessEnum = accessEnum;
|
|
3272
4544
|
exports.actionEnum = actionEnum;
|
|
3273
|
-
exports.actorTypeEnum = actorTypeEnum;
|
|
3274
|
-
exports.additionalContactInfoRequiredCodeEnum = additionalContactInfoRequiredCodeEnum;
|
|
3275
|
-
exports.additionalContactInfoRequiredStatusEnum = additionalContactInfoRequiredStatusEnum;
|
|
3276
4545
|
exports.aiGatewayRuleTypeEnum = aiGatewayRuleTypeEnum;
|
|
3277
|
-
exports.aiGatewayVirtualModelConfigCachingEnum = aiGatewayVirtualModelConfigCachingEnum;
|
|
3278
4546
|
exports.aiGatewayVirtualModelConfigHasEnum = aiGatewayVirtualModelConfigHasEnum;
|
|
3279
4547
|
exports.aiGatewayVirtualModelConfigInferenceRegionScopeEnum = aiGatewayVirtualModelConfigInferenceRegionScopeEnum;
|
|
3280
4548
|
exports.aiGatewayVirtualModelConfigSelectorEnum = aiGatewayVirtualModelConfigSelectorEnum;
|
|
3281
4549
|
exports.aiGatewayVirtualModelConfigServiceTierEnum = aiGatewayVirtualModelConfigServiceTierEnum;
|
|
3282
4550
|
exports.aiGatewayVirtualModelConfigSortEnum = aiGatewayVirtualModelConfigSortEnum;
|
|
3283
|
-
exports.
|
|
3284
|
-
exports.
|
|
3285
|
-
exports.
|
|
3286
|
-
exports.
|
|
3287
|
-
exports.
|
|
3288
|
-
exports.
|
|
4551
|
+
exports.authTokenScopesOriginEnum = authTokenScopesOriginEnum;
|
|
4552
|
+
exports.authTokenScopesSudoOriginEnum = authTokenScopesSudoOriginEnum;
|
|
4553
|
+
exports.authUserActiveDashboardViewsFavoritesViewPreferenceEnum = authUserActiveDashboardViewsFavoritesViewPreferenceEnum;
|
|
4554
|
+
exports.authUserActiveDashboardViewsRecentsViewPreferenceEnum = authUserActiveDashboardViewsRecentsViewPreferenceEnum;
|
|
4555
|
+
exports.authUserActiveDashboardViewsViewPreferenceEnum = authUserActiveDashboardViewsViewPreferenceEnum;
|
|
4556
|
+
exports.authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum;
|
|
3289
4557
|
exports.authUserImportFlowGitProviderEnum = authUserImportFlowGitProviderEnum;
|
|
3290
4558
|
exports.authUserResourceConfigBuildQueueConfigurationEnum = authUserResourceConfigBuildQueueConfigurationEnum;
|
|
3291
4559
|
exports.authUserSoftBlockBlockedDueToOverageTypeEnum = authUserSoftBlockBlockedDueToOverageTypeEnum;
|
|
4560
|
+
exports.authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
3292
4561
|
exports.authUserSoftBlockReasonEnum = authUserSoftBlockReasonEnum;
|
|
3293
|
-
exports.badRequestCodeEnum = badRequestCodeEnum;
|
|
3294
|
-
exports.badRequestStatusEnum = badRequestStatusEnum;
|
|
3295
|
-
exports.basisEnum = basisEnum;
|
|
3296
|
-
exports.billingPlanEnum = billingPlanEnum;
|
|
3297
|
-
exports.blockReasonEnum = blockReasonEnum;
|
|
3298
|
-
exports.blockTypeEnum = blockTypeEnum;
|
|
3299
|
-
exports.blockedDueToOverageTypeEnum = blockedDueToOverageTypeEnum;
|
|
3300
|
-
exports.boughtTooRecentlyCodeEnum = boughtTooRecentlyCodeEnum;
|
|
3301
|
-
exports.boughtTooRecentlyStatusEnum = boughtTooRecentlyStatusEnum;
|
|
3302
|
-
exports.buildQueueConfigurationEnum = buildQueueConfigurationEnum;
|
|
3303
|
-
exports.ceilingModeEnum = ceilingModeEnum;
|
|
3304
|
-
exports.changeEnum = changeEnum;
|
|
3305
4562
|
exports.cmpEnum = cmpEnum;
|
|
3306
|
-
exports.
|
|
3307
|
-
exports.
|
|
3308
|
-
exports.
|
|
3309
|
-
exports.
|
|
3310
|
-
exports.
|
|
3311
|
-
exports.
|
|
3312
|
-
exports.
|
|
3313
|
-
exports.defaultEnum = defaultEnum;
|
|
3314
|
-
exports.defaultModeEnum = defaultModeEnum;
|
|
3315
|
-
exports.deploymentTypeEnum = deploymentTypeEnum;
|
|
3316
|
-
exports.domainAlreadyOwnedCodeEnum = domainAlreadyOwnedCodeEnum;
|
|
3317
|
-
exports.domainAlreadyOwnedStatusEnum = domainAlreadyOwnedStatusEnum;
|
|
3318
|
-
exports.domainAlreadyRenewingCodeEnum = domainAlreadyRenewingCodeEnum;
|
|
3319
|
-
exports.domainAlreadyRenewingStatusEnum = domainAlreadyRenewingStatusEnum;
|
|
3320
|
-
exports.domainCannotBeTransferedOutUntilCodeEnum = domainCannotBeTransferedOutUntilCodeEnum;
|
|
3321
|
-
exports.domainCannotBeTransferedOutUntilStatusEnum = domainCannotBeTransferedOutUntilStatusEnum;
|
|
3322
|
-
exports.domainNotAvailableCodeEnum = domainNotAvailableCodeEnum;
|
|
3323
|
-
exports.domainNotAvailableStatusEnum = domainNotAvailableStatusEnum;
|
|
3324
|
-
exports.domainNotFoundCodeEnum = domainNotFoundCodeEnum;
|
|
3325
|
-
exports.domainNotFoundStatusEnum = domainNotFoundStatusEnum;
|
|
3326
|
-
exports.domainNotRegisteredCodeEnum = domainNotRegisteredCodeEnum;
|
|
3327
|
-
exports.domainNotRegisteredStatusEnum = domainNotRegisteredStatusEnum;
|
|
3328
|
-
exports.domainNotRenewableCodeEnum = domainNotRenewableCodeEnum;
|
|
3329
|
-
exports.domainNotRenewableStatusEnum = domainNotRenewableStatusEnum;
|
|
3330
|
-
exports.domainTooShortCodeEnum = domainTooShortCodeEnum;
|
|
3331
|
-
exports.domainTooShortStatusEnum = domainTooShortStatusEnum;
|
|
3332
|
-
exports.duplicateDomainsCodeEnum = duplicateDomainsCodeEnum;
|
|
3333
|
-
exports.duplicateDomainsStatusEnum = duplicateDomainsStatusEnum;
|
|
3334
|
-
exports.enablePreviewFeedbackEnum = enablePreviewFeedbackEnum;
|
|
3335
|
-
exports.enabledEnum = enabledEnum;
|
|
3336
|
-
exports.enforcementScopeEnum = enforcementScopeEnum;
|
|
3337
|
-
exports.envEnum = envEnum;
|
|
3338
|
-
exports.environmentEnum = environmentEnum;
|
|
3339
|
-
exports.expectedPriceMismatchCodeEnum = expectedPriceMismatchCodeEnum;
|
|
3340
|
-
exports.expectedPriceMismatchStatusEnum = expectedPriceMismatchStatusEnum;
|
|
3341
|
-
exports.failureStageEnum = failureStageEnum;
|
|
3342
|
-
exports.favoritesViewPreferenceEnum = favoritesViewPreferenceEnum;
|
|
4563
|
+
exports.connectConnectorCreateDataOwnerTypeEnum = connectConnectorCreateDataOwnerTypeEnum;
|
|
4564
|
+
exports.connectConnectorCreateDataServerConfigJwksKeysUseEnum = connectConnectorCreateDataServerConfigJwksKeysUseEnum;
|
|
4565
|
+
exports.connectConnectorCreateDataSubjectTypeEnum = connectConnectorCreateDataSubjectTypeEnum;
|
|
4566
|
+
exports.connectConnectorCreateResultCreationModeEnum = connectConnectorCreateResultCreationModeEnum;
|
|
4567
|
+
exports.connectConnectorCreateResultSupportsIconEnum = connectConnectorCreateResultSupportsIconEnum;
|
|
4568
|
+
exports.connectConnectorCreateResultTypeEnum = connectConnectorCreateResultTypeEnum;
|
|
4569
|
+
exports.deleteKmsIssuerPolicyKind = deleteKmsIssuerPolicyKind;
|
|
3343
4570
|
exports.fileTreeTypeEnum = fileTreeTypeEnum;
|
|
3344
|
-
exports.
|
|
4571
|
+
exports.filterProjectEnvsDecrypt = filterProjectEnvsDecrypt;
|
|
4572
|
+
exports.flagJSONValue = flagJSONValue;
|
|
3345
4573
|
exports.flagKindEnum = flagKindEnum;
|
|
3346
4574
|
exports.flagStateEnum = flagStateEnum;
|
|
3347
|
-
exports.flagTypeNameEnum = flagTypeNameEnum;
|
|
3348
4575
|
exports.flagsSdkKeyWithSecretsTypeEnum = flagsSdkKeyWithSecretsTypeEnum;
|
|
3349
|
-
exports.
|
|
3350
|
-
exports.
|
|
3351
|
-
exports.
|
|
3352
|
-
exports.
|
|
3353
|
-
exports.
|
|
3354
|
-
exports.
|
|
3355
|
-
exports.
|
|
3356
|
-
exports.
|
|
3357
|
-
exports.
|
|
3358
|
-
exports.
|
|
3359
|
-
exports.
|
|
3360
|
-
exports.
|
|
4576
|
+
exports.getBillingPlansSource = getBillingPlansSource;
|
|
4577
|
+
exports.getConfigurationsInstallationType = getConfigurationsInstallationType;
|
|
4578
|
+
exports.getConfigurationsView = getConfigurationsView;
|
|
4579
|
+
exports.getDeploymentEventsBuilds = getDeploymentEventsBuilds;
|
|
4580
|
+
exports.getDeploymentEventsDelimiter = getDeploymentEventsDelimiter;
|
|
4581
|
+
exports.getDeploymentEventsDirection = getDeploymentEventsDirection;
|
|
4582
|
+
exports.getDeploymentEventsFollow = getDeploymentEventsFollow;
|
|
4583
|
+
exports.getDomainConfigStrict = getDomainConfigStrict;
|
|
4584
|
+
exports.getProjectDomainsOrder = getProjectDomainsOrder;
|
|
4585
|
+
exports.getProjectDomainsProduction = getProjectDomainsProduction;
|
|
4586
|
+
exports.getProjectDomainsRedirects = getProjectDomainsRedirects;
|
|
4587
|
+
exports.getProjectDomainsTarget = getProjectDomainsTarget;
|
|
4588
|
+
exports.getProjectDomainsVerified = getProjectDomainsVerified;
|
|
4589
|
+
exports.getProjectsBuildQueueConfiguration = getProjectsBuildQueueConfiguration;
|
|
4590
|
+
exports.getRedirectsSortBy = getRedirectsSortBy;
|
|
4591
|
+
exports.getRedirectsSortOrder = getRedirectsSortOrder;
|
|
4592
|
+
exports.getRollingReleaseState = getRollingReleaseState;
|
|
4593
|
+
exports.getRoutesFilter = getRoutesFilter;
|
|
4594
|
+
exports.getSessionCommandWait = getSessionCommandWait;
|
|
4595
|
+
exports.getTeamMembersRole = getTeamMembersRole;
|
|
4596
|
+
exports.gitNamespacesProvider = gitNamespacesProvider;
|
|
4597
|
+
exports.globalConfigItemValue = globalConfigItemValue;
|
|
3361
4598
|
exports.invitedTeamMemberRoleEnum = invitedTeamMemberRoleEnum;
|
|
3362
4599
|
exports.invitedTeamMemberTeamPermissionsEnum = invitedTeamMemberTeamPermissionsEnum;
|
|
3363
4600
|
exports.invitedTeamMemberTeamRolesEnum = invitedTeamMemberTeamRolesEnum;
|
|
3364
|
-
exports.
|
|
3365
|
-
exports.
|
|
3366
|
-
exports.
|
|
3367
|
-
exports.languageCodeRequiredStatusEnum = languageCodeRequiredStatusEnum;
|
|
4601
|
+
exports.listAiGatewayRulesIncludeDisabled = listAiGatewayRulesIncludeDisabled;
|
|
4602
|
+
exports.listDrivesSortBy = listDrivesSortBy;
|
|
4603
|
+
exports.listDrivesSortOrder = listDrivesSortOrder;
|
|
3368
4604
|
exports.listEventTypeCategoriesEnum = listEventTypeCategoriesEnum;
|
|
3369
4605
|
exports.listEventTypeNameEnum = listEventTypeNameEnum;
|
|
3370
4606
|
exports.listEventTypeReplacedByEnum = listEventTypeReplacedByEnum;
|
|
4607
|
+
exports.listEventTypesResponseCategoriesNameEnum = listEventTypesResponseCategoriesNameEnum;
|
|
4608
|
+
exports.listFlagsState = listFlagsState;
|
|
4609
|
+
exports.listFlagsV2State = listFlagsV2State;
|
|
4610
|
+
exports.listProjectChecksBlocks = listProjectChecksBlocks;
|
|
4611
|
+
exports.listRepositoryTagsSortBy = listRepositoryTagsSortBy;
|
|
4612
|
+
exports.listRepositoryTagsSortOrder = listRepositoryTagsSortOrder;
|
|
4613
|
+
exports.listSandboxesSortBy = listSandboxesSortBy;
|
|
4614
|
+
exports.listSandboxesSortOrder = listSandboxesSortOrder;
|
|
4615
|
+
exports.listSandboxesStatus = listSandboxesStatus;
|
|
4616
|
+
exports.listSessionSnapshotsSortOrder = listSessionSnapshotsSortOrder;
|
|
4617
|
+
exports.listSessionsSortOrder = listSessionsSortOrder;
|
|
4618
|
+
exports.listTeamFlagsKind = listTeamFlagsKind;
|
|
4619
|
+
exports.listTeamFlagsState = listTeamFlagsState;
|
|
4620
|
+
exports.listTeamFlagsV2Kind = listTeamFlagsV2Kind;
|
|
4621
|
+
exports.listTeamFlagsV2State = listTeamFlagsV2State;
|
|
3371
4622
|
exports.marketplaceFlagCategoryEnum = marketplaceFlagCategoryEnum;
|
|
3372
4623
|
exports.marketplaceFlagStateEnum = marketplaceFlagStateEnum;
|
|
3373
|
-
exports.marketplaceFlagTypeNameEnum = marketplaceFlagTypeNameEnum;
|
|
3374
|
-
exports.methodEnum = methodEnum;
|
|
3375
4624
|
exports.modeEnum = modeEnum;
|
|
3376
|
-
exports.
|
|
3377
|
-
exports.nameEnum = nameEnum;
|
|
4625
|
+
exports.namedSandboxFailoverRegionsEnum = namedSandboxFailoverRegionsEnum;
|
|
3378
4626
|
exports.namedSandboxNetworkPolicyModeEnum = namedSandboxNetworkPolicyModeEnum;
|
|
3379
4627
|
exports.namedSandboxStatusEnum = namedSandboxStatusEnum;
|
|
3380
4628
|
exports.networkStatusEnum = networkStatusEnum;
|
|
3381
|
-
exports.newPlanEnum = newPlanEnum;
|
|
3382
|
-
exports.newResourceBlockingPolicyEnum = newResourceBlockingPolicyEnum;
|
|
3383
|
-
exports.nextEnum = nextEnum;
|
|
3384
|
-
exports.nextRoleEnum = nextRoleEnum;
|
|
3385
|
-
exports.notAuthorizedForScopeCodeEnum = notAuthorizedForScopeCodeEnum;
|
|
3386
|
-
exports.notAuthorizedForScopeStatusEnum = notAuthorizedForScopeStatusEnum;
|
|
3387
|
-
exports.notFoundCodeEnum = notFoundCodeEnum;
|
|
3388
|
-
exports.notFoundStatusEnum = notFoundStatusEnum;
|
|
3389
|
-
exports.oldBuildQueueConfigurationEnum = oldBuildQueueConfigurationEnum;
|
|
3390
|
-
exports.oldTrustedIpsEnum = oldTrustedIpsEnum;
|
|
3391
|
-
exports.operationEnum = operationEnum;
|
|
3392
|
-
exports.orderTooExpensiveCodeEnum = orderTooExpensiveCodeEnum;
|
|
3393
|
-
exports.orderTooExpensiveStatusEnum = orderTooExpensiveStatusEnum;
|
|
3394
4629
|
exports.originEnum = originEnum;
|
|
3395
|
-
exports.outcomeEnum = outcomeEnum;
|
|
3396
|
-
exports.overageReasonEnum = overageReasonEnum;
|
|
3397
|
-
exports.planEnum = planEnum;
|
|
3398
|
-
exports.planSlugEnum = planSlugEnum;
|
|
3399
|
-
exports.previousEnum = previousEnum;
|
|
3400
|
-
exports.previousPlanEnum = previousPlanEnum;
|
|
3401
|
-
exports.previousRoleEnum = previousRoleEnum;
|
|
3402
|
-
exports.pricingPlanEnum = pricingPlanEnum;
|
|
3403
|
-
exports.projectScopeEnum = projectScopeEnum;
|
|
3404
|
-
exports.providerEnum = providerEnum;
|
|
3405
|
-
exports.queryTypeEnum = queryTypeEnum;
|
|
3406
|
-
exports.reasonCodeEnum = reasonCodeEnum;
|
|
3407
|
-
exports.reasonEnum = reasonEnum;
|
|
3408
|
-
exports.recentsViewPreferenceEnum = recentsViewPreferenceEnum;
|
|
3409
|
-
exports.refreshPeriodEnum = refreshPeriodEnum;
|
|
3410
|
-
exports.refreshTokenPrefixEnum = refreshTokenPrefixEnum;
|
|
3411
|
-
exports.requestKindEnum = requestKindEnum;
|
|
3412
4630
|
exports.roleEnum = roleEnum;
|
|
3413
|
-
exports.ruleNameEnum = ruleNameEnum;
|
|
3414
|
-
exports.ruleProvenanceEnum = ruleProvenanceEnum;
|
|
3415
4631
|
exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
|
|
3416
4632
|
exports.scopeEnum = scopeEnum;
|
|
3417
|
-
exports.
|
|
3418
|
-
exports.
|
|
4633
|
+
exports.searchRepoProvider = searchRepoProvider;
|
|
4634
|
+
exports.segmentDataRulesConditionsCmpEnum = segmentDataRulesConditionsCmpEnum;
|
|
4635
|
+
exports.segmentDataRulesConditionsRhs = segmentDataRulesConditionsRhs;
|
|
4636
|
+
exports.segmentDataRulesConditionsRhsTypeEnum = segmentDataRulesConditionsRhsTypeEnum;
|
|
3419
4637
|
exports.sessionStatusEnum = sessionStatusEnum;
|
|
3420
|
-
exports.settlementMethodEnum = settlementMethodEnum;
|
|
3421
4638
|
exports.snapshotCreationMethodEnum = snapshotCreationMethodEnum;
|
|
3422
4639
|
exports.snapshotStatusEnum = snapshotStatusEnum;
|
|
3423
|
-
exports.sourceEnum = sourceEnum;
|
|
3424
|
-
exports.storeTypeEnum = storeTypeEnum;
|
|
3425
|
-
exports.subjectTypeEnum = subjectTypeEnum;
|
|
3426
|
-
exports.tagEnum = tagEnum;
|
|
3427
|
-
exports.targetEnum = targetEnum;
|
|
3428
4640
|
exports.teamBillingPlanEnum = teamBillingPlanEnum;
|
|
3429
4641
|
exports.teamDefaultPassportDeploymentTypeEnum = teamDefaultPassportDeploymentTypeEnum;
|
|
3430
4642
|
exports.teamDefaultRolesTeamPermissionsEnum = teamDefaultRolesTeamPermissionsEnum;
|
|
3431
4643
|
exports.teamDefaultRolesTeamRolesEnum = teamDefaultRolesTeamRolesEnum;
|
|
4644
|
+
exports.teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum;
|
|
4645
|
+
exports.teamDeploymentPolicyDeploymentSourcesSourcesEnum = teamDeploymentPolicyDeploymentSourcesSourcesEnum;
|
|
4646
|
+
exports.teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum;
|
|
4647
|
+
exports.teamDeploymentPolicyGitSourcesSourcesProviderEnum = teamDeploymentPolicyGitSourcesSourcesProviderEnum;
|
|
4648
|
+
exports.teamDisableHardAutoBlocks = teamDisableHardAutoBlocks;
|
|
3432
4649
|
exports.teamDisjunctiveProductionSecretPolicyEnum = teamDisjunctiveProductionSecretPolicyEnum;
|
|
3433
4650
|
exports.teamDpAccessRequestsModeEnum = teamDpAccessRequestsModeEnum;
|
|
3434
4651
|
exports.teamEnablePreviewFeedbackEnum = teamEnablePreviewFeedbackEnum;
|
|
@@ -3450,27 +4667,181 @@ exports.teamSamlConnectionSyncStateEnum = teamSamlConnectionSyncStateEnum;
|
|
|
3450
4667
|
exports.teamSamlDefaultRedirectUriEnum = teamSamlDefaultRedirectUriEnum;
|
|
3451
4668
|
exports.teamSamlDirectorySyncStateEnum = teamSamlDirectorySyncStateEnum;
|
|
3452
4669
|
exports.teamSensitiveEnvironmentVariablePolicyEnum = teamSensitiveEnvironmentVariablePolicyEnum;
|
|
3453
|
-
exports.tierEnum = tierEnum;
|
|
3454
|
-
exports.tldNotSupportedCodeEnum = tldNotSupportedCodeEnum;
|
|
3455
|
-
exports.tldNotSupportedStatusEnum = tldNotSupportedStatusEnum;
|
|
3456
|
-
exports.toPlanEnum = toPlanEnum;
|
|
3457
|
-
exports.tokenPrefixEnum = tokenPrefixEnum;
|
|
3458
|
-
exports.tooManyDomainsCodeEnum = tooManyDomainsCodeEnum;
|
|
3459
|
-
exports.tooManyDomainsStatusEnum = tooManyDomainsStatusEnum;
|
|
3460
|
-
exports.tooManyRequestsCodeEnum = tooManyRequestsCodeEnum;
|
|
3461
|
-
exports.tooManyRequestsStatusEnum = tooManyRequestsStatusEnum;
|
|
3462
|
-
exports.trustedIpsEnum = trustedIpsEnum;
|
|
3463
4670
|
exports.typeEnum = typeEnum;
|
|
3464
|
-
exports.unauthorizedCodeEnum = unauthorizedCodeEnum;
|
|
3465
|
-
exports.unauthorizedStatusEnum = unauthorizedStatusEnum;
|
|
3466
4671
|
exports.userEventCategoriesEnum = userEventCategoriesEnum;
|
|
4672
|
+
exports.userEventEntitiesTypeEnum = userEventEntitiesTypeEnum;
|
|
4673
|
+
exports.userEventPayloadAccessEnum = userEventPayloadAccessEnum;
|
|
4674
|
+
exports.userEventPayloadActionEnum = userEventPayloadActionEnum;
|
|
4675
|
+
exports.userEventPayloadActorTypeEnum = userEventPayloadActorTypeEnum;
|
|
4676
|
+
exports.userEventPayloadAfterPermissionsEnum = userEventPayloadAfterPermissionsEnum;
|
|
4677
|
+
exports.userEventPayloadAllowedMethodsEnum = userEventPayloadAllowedMethodsEnum;
|
|
4678
|
+
exports.userEventPayloadAppClientAuthenticationUsedMethodEnum = userEventPayloadAppClientAuthenticationUsedMethodEnum;
|
|
4679
|
+
exports.userEventPayloadApprovalScopeEnum = userEventPayloadApprovalScopeEnum;
|
|
4680
|
+
exports.userEventPayloadAuthMethodEnum = userEventPayloadAuthMethodEnum;
|
|
4681
|
+
exports.userEventPayloadBeforePermissionsEnum = userEventPayloadBeforePermissionsEnum;
|
|
4682
|
+
exports.userEventPayloadBillingPlanEnum = userEventPayloadBillingPlanEnum;
|
|
4683
|
+
exports.userEventPayloadBudgetBudgetItemPricingPlanEnum = userEventPayloadBudgetBudgetItemPricingPlanEnum;
|
|
4684
|
+
exports.userEventPayloadBudgetPricingPlanEnum = userEventPayloadBudgetPricingPlanEnum;
|
|
4685
|
+
exports.userEventPayloadBudgetRefreshPeriodEnum = userEventPayloadBudgetRefreshPeriodEnum;
|
|
4686
|
+
exports.userEventPayloadBuildQueueConfigurationEnum = userEventPayloadBuildQueueConfigurationEnum;
|
|
4687
|
+
exports.userEventPayloadChangeEnum = userEventPayloadChangeEnum;
|
|
4688
|
+
exports.userEventPayloadConsentEnum = userEventPayloadConsentEnum;
|
|
4689
|
+
exports.userEventPayloadContextEnum = userEventPayloadContextEnum;
|
|
4690
|
+
exports.userEventPayloadCreateDeploymentsEnum = userEventPayloadCreateDeploymentsEnum;
|
|
4691
|
+
exports.userEventPayloadDataPlanSlugEnum = userEventPayloadDataPlanSlugEnum;
|
|
4692
|
+
exports.userEventPayloadDecisionBasisEnum = userEventPayloadDecisionBasisEnum;
|
|
4693
|
+
exports.userEventPayloadDecisionEnum = userEventPayloadDecisionEnum;
|
|
4694
|
+
exports.userEventPayloadDecisionMxOutcomeEnum = userEventPayloadDecisionMxOutcomeEnum;
|
|
4695
|
+
exports.userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum;
|
|
4696
|
+
exports.userEventPayloadEchModeEnum = userEventPayloadEchModeEnum;
|
|
4697
|
+
exports.userEventPayloadEnabledEnum = userEventPayloadEnabledEnum;
|
|
4698
|
+
exports.userEventPayloadEnvironmentEnum = userEventPayloadEnvironmentEnum;
|
|
4699
|
+
exports.userEventPayloadFactorsOriginEnum = userEventPayloadFactorsOriginEnum;
|
|
4700
|
+
exports.userEventPayloadFailureStageEnum = userEventPayloadFailureStageEnum;
|
|
4701
|
+
exports.userEventPayloadFromAccountTypeEnum = userEventPayloadFromAccountTypeEnum;
|
|
4702
|
+
exports.userEventPayloadFromPlanEnum = userEventPayloadFromPlanEnum;
|
|
4703
|
+
exports.userEventPayloadGitProviderEnum = userEventPayloadGitProviderEnum;
|
|
4704
|
+
exports.userEventPayloadGrantTypeEnum = userEventPayloadGrantTypeEnum;
|
|
4705
|
+
exports.userEventPayloadInitiatorEnum = userEventPayloadInitiatorEnum;
|
|
4706
|
+
exports.userEventPayloadJobCommitVerificationEnum = userEventPayloadJobCommitVerificationEnum;
|
|
4707
|
+
exports.userEventPayloadJobNsnbSideEffectActionEnum = userEventPayloadJobNsnbSideEffectActionEnum;
|
|
4708
|
+
exports.userEventPayloadJobProviderEnum = userEventPayloadJobProviderEnum;
|
|
4709
|
+
exports.userEventPayloadKindEnum = userEventPayloadKindEnum;
|
|
4710
|
+
exports.userEventPayloadMethodEnum = userEventPayloadMethodEnum;
|
|
4711
|
+
exports.userEventPayloadNewEnvVarTargetEnum = userEventPayloadNewEnvVarTargetEnum;
|
|
4712
|
+
exports.userEventPayloadNewEnvVarTypeEnum = userEventPayloadNewEnvVarTypeEnum;
|
|
4713
|
+
exports.userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = userEventPayloadNewOwnerAbuseBlockHistoryActionEnum;
|
|
4714
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum;
|
|
4715
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum;
|
|
4716
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum;
|
|
4717
|
+
exports.userEventPayloadNewOwnerBillingPlanEnum = userEventPayloadNewOwnerBillingPlanEnum;
|
|
4718
|
+
exports.userEventPayloadNewOwnerCredentialsTypeEnum = userEventPayloadNewOwnerCredentialsTypeEnum;
|
|
4719
|
+
exports.userEventPayloadNewOwnerEnablePreviewFeedbackEnum = userEventPayloadNewOwnerEnablePreviewFeedbackEnum;
|
|
4720
|
+
exports.userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum;
|
|
4721
|
+
exports.userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum;
|
|
4722
|
+
exports.userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum;
|
|
4723
|
+
exports.userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum;
|
|
4724
|
+
exports.userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum;
|
|
4725
|
+
exports.userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum;
|
|
4726
|
+
exports.userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum;
|
|
4727
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum;
|
|
4728
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum;
|
|
4729
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum;
|
|
4730
|
+
exports.userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum;
|
|
4731
|
+
exports.userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum;
|
|
4732
|
+
exports.userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum;
|
|
4733
|
+
exports.userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum;
|
|
4734
|
+
exports.userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum;
|
|
4735
|
+
exports.userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum;
|
|
4736
|
+
exports.userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum;
|
|
4737
|
+
exports.userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum;
|
|
4738
|
+
exports.userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum;
|
|
4739
|
+
exports.userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum;
|
|
4740
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum;
|
|
4741
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum;
|
|
4742
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum;
|
|
4743
|
+
exports.userEventPayloadNewOwnerImportFlowGitProviderEnum = userEventPayloadNewOwnerImportFlowGitProviderEnum;
|
|
4744
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum;
|
|
4745
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum;
|
|
4746
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum;
|
|
4747
|
+
exports.userEventPayloadNewOwnerPreventAutoBlocking = userEventPayloadNewOwnerPreventAutoBlocking;
|
|
4748
|
+
exports.userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum;
|
|
4749
|
+
exports.userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum;
|
|
4750
|
+
exports.userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum;
|
|
4751
|
+
exports.userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum;
|
|
4752
|
+
exports.userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4753
|
+
exports.userEventPayloadNewOwnerSoftBlockReasonEnum = userEventPayloadNewOwnerSoftBlockReasonEnum;
|
|
4754
|
+
exports.userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = userEventPayloadNewOwnerTeamsJoinedFromOriginEnum;
|
|
4755
|
+
exports.userEventPayloadNewOwnerTeamsRoleEnum = userEventPayloadNewOwnerTeamsRoleEnum;
|
|
4756
|
+
exports.userEventPayloadNewOwnerTeamsTeamPermissionsEnum = userEventPayloadNewOwnerTeamsTeamPermissionsEnum;
|
|
4757
|
+
exports.userEventPayloadNewOwnerTeamsTeamRolesEnum = userEventPayloadNewOwnerTeamsTeamRolesEnum;
|
|
4758
|
+
exports.userEventPayloadNewPlanEnum = userEventPayloadNewPlanEnum;
|
|
4759
|
+
exports.userEventPayloadNextBranchMatcherTypeEnum = userEventPayloadNextBranchMatcherTypeEnum;
|
|
4760
|
+
exports.userEventPayloadNextDefaultEnum = userEventPayloadNextDefaultEnum;
|
|
4761
|
+
exports.userEventPayloadNextEnforcementScopeEnum = userEventPayloadNextEnforcementScopeEnum;
|
|
4762
|
+
exports.userEventPayloadNextEnum = userEventPayloadNextEnum;
|
|
4763
|
+
exports.userEventPayloadNextGitProviderEnum = userEventPayloadNextGitProviderEnum;
|
|
4764
|
+
exports.userEventPayloadNextIssuerModeEnum = userEventPayloadNextIssuerModeEnum;
|
|
4765
|
+
exports.userEventPayloadNextNewResourceBlockingPolicyEnum = userEventPayloadNextNewResourceBlockingPolicyEnum;
|
|
4766
|
+
exports.userEventPayloadNextPassportDeploymentTypeEnum = userEventPayloadNextPassportDeploymentTypeEnum;
|
|
4767
|
+
exports.userEventPayloadNextPermissionsEnum = userEventPayloadNextPermissionsEnum;
|
|
4768
|
+
exports.userEventPayloadNextRoleEnum = userEventPayloadNextRoleEnum;
|
|
4769
|
+
exports.userEventPayloadNextScopeEnum = userEventPayloadNextScopeEnum;
|
|
4770
|
+
exports.userEventPayloadNextScopesEnum = userEventPayloadNextScopesEnum;
|
|
4771
|
+
exports.userEventPayloadOldBuildQueueConfigurationEnum = userEventPayloadOldBuildQueueConfigurationEnum;
|
|
4772
|
+
exports.userEventPayloadOldEnvVarTargetEnum = userEventPayloadOldEnvVarTargetEnum;
|
|
4773
|
+
exports.userEventPayloadOldEnvVarTypeEnum = userEventPayloadOldEnvVarTypeEnum;
|
|
4774
|
+
exports.userEventPayloadOldPasswordProtection = userEventPayloadOldPasswordProtection;
|
|
4775
|
+
exports.userEventPayloadOldPasswordProtectionDeploymentTypeEnum = userEventPayloadOldPasswordProtectionDeploymentTypeEnum;
|
|
4776
|
+
exports.userEventPayloadOldSsoProtection = userEventPayloadOldSsoProtection;
|
|
4777
|
+
exports.userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum;
|
|
4778
|
+
exports.userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum;
|
|
4779
|
+
exports.userEventPayloadOldSsoProtectionDeploymentTypeEnum = userEventPayloadOldSsoProtectionDeploymentTypeEnum;
|
|
4780
|
+
exports.userEventPayloadOldTrustedIpsEnum = userEventPayloadOldTrustedIpsEnum;
|
|
4781
|
+
exports.userEventPayloadOriginEnum = userEventPayloadOriginEnum;
|
|
4782
|
+
exports.userEventPayloadOutcomeEnum = userEventPayloadOutcomeEnum;
|
|
4783
|
+
exports.userEventPayloadPasswordProtection = userEventPayloadPasswordProtection;
|
|
4784
|
+
exports.userEventPayloadPasswordProtectionDeploymentTypeEnum = userEventPayloadPasswordProtectionDeploymentTypeEnum;
|
|
4785
|
+
exports.userEventPayloadPermissionsEnum = userEventPayloadPermissionsEnum;
|
|
4786
|
+
exports.userEventPayloadPlanEnum = userEventPayloadPlanEnum;
|
|
4787
|
+
exports.userEventPayloadPrevBudgetPricingPlanEnum = userEventPayloadPrevBudgetPricingPlanEnum;
|
|
4788
|
+
exports.userEventPayloadPreviousBranchMatcherTypeEnum = userEventPayloadPreviousBranchMatcherTypeEnum;
|
|
4789
|
+
exports.userEventPayloadPreviousEchModeEnum = userEventPayloadPreviousEchModeEnum;
|
|
4790
|
+
exports.userEventPayloadPreviousEnforcementScopeEnum = userEventPayloadPreviousEnforcementScopeEnum;
|
|
4791
|
+
exports.userEventPayloadPreviousEnum = userEventPayloadPreviousEnum;
|
|
4792
|
+
exports.userEventPayloadPreviousGitProviderEnum = userEventPayloadPreviousGitProviderEnum;
|
|
4793
|
+
exports.userEventPayloadPreviousIssuerModeEnum = userEventPayloadPreviousIssuerModeEnum;
|
|
4794
|
+
exports.userEventPayloadPreviousNewResourceBlockingPolicyEnum = userEventPayloadPreviousNewResourceBlockingPolicyEnum;
|
|
4795
|
+
exports.userEventPayloadPreviousPassportDeploymentTypeEnum = userEventPayloadPreviousPassportDeploymentTypeEnum;
|
|
4796
|
+
exports.userEventPayloadPreviousPlanEnum = userEventPayloadPreviousPlanEnum;
|
|
4797
|
+
exports.userEventPayloadPreviousRoleEnum = userEventPayloadPreviousRoleEnum;
|
|
4798
|
+
exports.userEventPayloadPreviousScopeEnum = userEventPayloadPreviousScopeEnum;
|
|
4799
|
+
exports.userEventPayloadPreviousTeamPermissionsEnum = userEventPayloadPreviousTeamPermissionsEnum;
|
|
4800
|
+
exports.userEventPayloadPreviousTeamRolesEnum = userEventPayloadPreviousTeamRolesEnum;
|
|
4801
|
+
exports.userEventPayloadProjectMembershipPreviousRoleEnum = userEventPayloadProjectMembershipPreviousRoleEnum;
|
|
4802
|
+
exports.userEventPayloadProjectMembershipRoleEnum = userEventPayloadProjectMembershipRoleEnum;
|
|
4803
|
+
exports.userEventPayloadProjectRoleEnum = userEventPayloadProjectRoleEnum;
|
|
4804
|
+
exports.userEventPayloadProjectScopeEnum = userEventPayloadProjectScopeEnum;
|
|
4805
|
+
exports.userEventPayloadProjectsRoleEnum = userEventPayloadProjectsRoleEnum;
|
|
4806
|
+
exports.userEventPayloadProviderEnum = userEventPayloadProviderEnum;
|
|
4807
|
+
exports.userEventPayloadQueryTypeEnum = userEventPayloadQueryTypeEnum;
|
|
4808
|
+
exports.userEventPayloadReasonCodeEnum = userEventPayloadReasonCodeEnum;
|
|
4809
|
+
exports.userEventPayloadReasonEnum = userEventPayloadReasonEnum;
|
|
4810
|
+
exports.userEventPayloadRemovedMembershipRoleEnum = userEventPayloadRemovedMembershipRoleEnum;
|
|
4811
|
+
exports.userEventPayloadRetentionCeilingModeEnum = userEventPayloadRetentionCeilingModeEnum;
|
|
4812
|
+
exports.userEventPayloadRetentionDefaultModeEnum = userEventPayloadRetentionDefaultModeEnum;
|
|
4813
|
+
exports.userEventPayloadRoleEnum = userEventPayloadRoleEnum;
|
|
4814
|
+
exports.userEventPayloadRuleNameEnum = userEventPayloadRuleNameEnum;
|
|
4815
|
+
exports.userEventPayloadRuleProvenanceEnum = userEventPayloadRuleProvenanceEnum;
|
|
4816
|
+
exports.userEventPayloadSamplingEnvEnum = userEventPayloadSamplingEnvEnum;
|
|
4817
|
+
exports.userEventPayloadScopeEnum = userEventPayloadScopeEnum;
|
|
4818
|
+
exports.userEventPayloadScopeTypeEnum = userEventPayloadScopeTypeEnum;
|
|
4819
|
+
exports.userEventPayloadScopesEnum = userEventPayloadScopesEnum;
|
|
4820
|
+
exports.userEventPayloadSettlementMethodEnum = userEventPayloadSettlementMethodEnum;
|
|
4821
|
+
exports.userEventPayloadSourceEnum = userEventPayloadSourceEnum;
|
|
4822
|
+
exports.userEventPayloadSsoProtection = userEventPayloadSsoProtection;
|
|
4823
|
+
exports.userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum;
|
|
4824
|
+
exports.userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum;
|
|
4825
|
+
exports.userEventPayloadSsoProtectionDeploymentTypeEnum = userEventPayloadSsoProtectionDeploymentTypeEnum;
|
|
4826
|
+
exports.userEventPayloadStoreTypeEnum = userEventPayloadStoreTypeEnum;
|
|
4827
|
+
exports.userEventPayloadSubjectTypeEnum = userEventPayloadSubjectTypeEnum;
|
|
4828
|
+
exports.userEventPayloadTargetEnum = userEventPayloadTargetEnum;
|
|
4829
|
+
exports.userEventPayloadTeamPermissionsEnum = userEventPayloadTeamPermissionsEnum;
|
|
4830
|
+
exports.userEventPayloadTeamRolesEnum = userEventPayloadTeamRolesEnum;
|
|
4831
|
+
exports.userEventPayloadTierEnum = userEventPayloadTierEnum;
|
|
4832
|
+
exports.userEventPayloadToAccountTypeEnum = userEventPayloadToAccountTypeEnum;
|
|
4833
|
+
exports.userEventPayloadToPlanEnum = userEventPayloadToPlanEnum;
|
|
4834
|
+
exports.userEventPayloadTrustedIpsEnum = userEventPayloadTrustedIpsEnum;
|
|
4835
|
+
exports.userEventPayloadTypeEnum = userEventPayloadTypeEnum;
|
|
4836
|
+
exports.userEventPayloadUpdateDiffNewTargetEnum = userEventPayloadUpdateDiffNewTargetEnum;
|
|
4837
|
+
exports.userEventPayloadUpdateDiffOldTargetEnum = userEventPayloadUpdateDiffOldTargetEnum;
|
|
4838
|
+
exports.userEventPayloadWidgetEnum = userEventPayloadWidgetEnum;
|
|
3467
4839
|
exports.userEventTypeEnum = userEventTypeEnum;
|
|
3468
4840
|
exports.vcrImageDetailKindEnum = vcrImageDetailKindEnum;
|
|
3469
4841
|
exports.vcrImageDetailStatusEnum = vcrImageDetailStatusEnum;
|
|
4842
|
+
exports.vcrImageLayerOperationEnum = vcrImageLayerOperationEnum;
|
|
4843
|
+
exports.vcrImageLayerTypeEnum = vcrImageLayerTypeEnum;
|
|
3470
4844
|
exports.vcrImageListItemKindEnum = vcrImageListItemKindEnum;
|
|
3471
4845
|
exports.vcrImageListItemStatusEnum = vcrImageListItemStatusEnum;
|
|
3472
4846
|
exports.vcrTagKindEnum = vcrTagKindEnum;
|
|
3473
4847
|
exports.vcrTagStatusEnum = vcrTagStatusEnum;
|
|
3474
|
-
exports.versionEnum = versionEnum;
|
|
3475
|
-
exports.viewPreferenceEnum = viewPreferenceEnum;
|
|
3476
|
-
exports.widgetEnum = widgetEnum;
|