vercel-api-js 1.12.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{components-j923ydcw.cjs → components-l5748yis.cjs} +364 -52
- package/dist/{components-eqgrkxe2.js → components-nvgbng8u.js} +351 -51
- package/dist/components.cjs +15 -3
- package/dist/components.d.mts +278 -37
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +31 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +789 -165
- package/dist/index.d.ts +16791 -37326
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-o2rt4pyr.js → schemas-bz496bmo.js} +7621 -2116
- package/dist/{schemas-i3c9gf4z.cjs → schemas-rypj5lzu.cjs} +8172 -2133
- package/dist/schemas.cjs +553 -19
- package/dist/schemas.d.mts +1578 -540
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1827 -496
- package/dist/types.d.mts +14847 -36673
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1593 -352
- package/package.json +7 -8
package/dist/types.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",
|
|
@@ -239,10 +150,12 @@ const userEventTypeEnum = {
|
|
|
239
150
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
240
151
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
241
152
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
153
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
242
154
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
243
155
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
244
156
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
245
157
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
158
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
246
159
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
247
160
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
248
161
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -376,6 +289,7 @@ const userEventTypeEnum = {
|
|
|
376
289
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
377
290
|
"domain-delegated": "domain-delegated",
|
|
378
291
|
"domain-delete": "domain-delete",
|
|
292
|
+
"domain-ech-change": "domain-ech-change",
|
|
379
293
|
"domain-move-in": "domain-move-in",
|
|
380
294
|
"domain-move-out": "domain-move-out",
|
|
381
295
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -429,6 +343,10 @@ const userEventTypeEnum = {
|
|
|
429
343
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
430
344
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
431
345
|
"env-variable-rotated": "env-variable-rotated",
|
|
346
|
+
"experiment-created": "experiment-created",
|
|
347
|
+
"experiment-deleted": "experiment-deleted",
|
|
348
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
349
|
+
"experiment-updated": "experiment-updated",
|
|
432
350
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
433
351
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
434
352
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -452,7 +370,19 @@ const userEventTypeEnum = {
|
|
|
452
370
|
"flags-transferred": "flags-transferred",
|
|
453
371
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
454
372
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
373
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
374
|
+
"global-config-created": "global-config-created",
|
|
375
|
+
"global-config-deleted": "global-config-deleted",
|
|
376
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
377
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
378
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
379
|
+
"global-config-token-created": "global-config-token-created",
|
|
380
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
381
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
382
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
383
|
+
"global-config-updated": "global-config-updated",
|
|
455
384
|
"instant-rollback-created": "instant-rollback-created",
|
|
385
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
456
386
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
457
387
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
458
388
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -656,6 +586,7 @@ const userEventTypeEnum = {
|
|
|
656
586
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
657
587
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
658
588
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
589
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
659
590
|
"project-sso-protection": "project-sso-protection",
|
|
660
591
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
661
592
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -779,6 +710,8 @@ const userEventTypeEnum = {
|
|
|
779
710
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
780
711
|
"tracing-configured": "tracing-configured",
|
|
781
712
|
"tracing-disabled": "tracing-disabled",
|
|
713
|
+
"tracing-paused": "tracing-paused",
|
|
714
|
+
"tracing-resumed": "tracing-resumed",
|
|
782
715
|
"unlink-login-connection": "unlink-login-connection",
|
|
783
716
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
784
717
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -789,6 +722,8 @@ const userEventTypeEnum = {
|
|
|
789
722
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
790
723
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
791
724
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
725
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
726
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
792
727
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
793
728
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
794
729
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -871,7 +806,7 @@ const userEventCategoriesEnum = {
|
|
|
871
806
|
"vercel-app": "vercel-app",
|
|
872
807
|
workflow: "workflow"
|
|
873
808
|
};
|
|
874
|
-
const
|
|
809
|
+
const userEventPayloadActionEnum = {
|
|
875
810
|
"add-passkey": "add-passkey",
|
|
876
811
|
"add-totp": "add-totp",
|
|
877
812
|
"admin-remove": "admin-remove",
|
|
@@ -880,128 +815,463 @@ const actionEnum = {
|
|
|
880
815
|
"regenerate-recovery-codes": "regenerate-recovery-codes",
|
|
881
816
|
"remove-passkey": "remove-passkey"
|
|
882
817
|
};
|
|
883
|
-
const
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
818
|
+
const userEventPayloadProviderEnum = {
|
|
819
|
+
apple: "apple",
|
|
820
|
+
bitbucket: "bitbucket",
|
|
821
|
+
chatgpt: "chatgpt",
|
|
822
|
+
github: "github",
|
|
823
|
+
"github-custom-host": "github-custom-host",
|
|
824
|
+
"github-limited": "github-limited",
|
|
825
|
+
gitlab: "gitlab",
|
|
826
|
+
google: "google",
|
|
827
|
+
saml: "saml"
|
|
888
828
|
};
|
|
889
|
-
const
|
|
829
|
+
const userEventPayloadFromPlanEnum = {
|
|
890
830
|
hobby: "hobby",
|
|
891
831
|
pro: "pro"
|
|
892
832
|
};
|
|
893
|
-
const
|
|
833
|
+
const userEventPayloadToPlanEnum = {
|
|
894
834
|
hobby: "hobby",
|
|
895
835
|
pro: "pro"
|
|
896
836
|
};
|
|
897
|
-
const
|
|
837
|
+
const userEventPayloadBudgetRefreshPeriodEnum = {
|
|
898
838
|
daily: "daily",
|
|
899
839
|
monthly: "monthly",
|
|
900
840
|
none: "none",
|
|
901
841
|
weekly: "weekly"
|
|
902
842
|
};
|
|
903
|
-
const
|
|
843
|
+
const userEventPayloadChangeEnum = {
|
|
904
844
|
disable: "disable",
|
|
905
845
|
enable: "enable",
|
|
906
846
|
remove: "remove",
|
|
907
847
|
set: "set"
|
|
908
848
|
};
|
|
909
|
-
const
|
|
849
|
+
const userEventPayloadScopeTypeEnum = {
|
|
910
850
|
project: "project",
|
|
911
|
-
team: "team"
|
|
851
|
+
team: "team",
|
|
852
|
+
user: "user"
|
|
912
853
|
};
|
|
913
|
-
const
|
|
854
|
+
const userEventPayloadRetentionDefaultModeEnum = {
|
|
914
855
|
days: "days",
|
|
915
856
|
"until-requested": "until-requested"
|
|
916
857
|
};
|
|
917
|
-
const
|
|
858
|
+
const userEventPayloadRetentionCeilingModeEnum = {
|
|
918
859
|
days: "days",
|
|
919
860
|
"until-requested": "until-requested"
|
|
920
861
|
};
|
|
921
|
-
const
|
|
862
|
+
const userEventPayloadNextRoleEnum = {
|
|
922
863
|
ADMIN: "ADMIN",
|
|
923
864
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
924
865
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
925
866
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
926
867
|
};
|
|
927
|
-
const
|
|
868
|
+
const userEventPayloadPreviousRoleEnum = {
|
|
928
869
|
ADMIN: "ADMIN",
|
|
929
870
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
930
871
|
PROJECT_GUEST: "PROJECT_GUEST",
|
|
931
872
|
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
932
873
|
};
|
|
933
|
-
const
|
|
874
|
+
const userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = {
|
|
934
875
|
EARLY_IGNORE_STEP: "EARLY_IGNORE_STEP",
|
|
935
876
|
IGNORE_STEP: "IGNORE_STEP",
|
|
936
877
|
NAMESPACE_PRUNED: "NAMESPACE_PRUNED",
|
|
937
878
|
UNAFFECTED_PROJECT: "UNAFFECTED_PROJECT",
|
|
938
879
|
UNVERIFIED_COMMIT: "UNVERIFIED_COMMIT"
|
|
939
880
|
};
|
|
940
|
-
const
|
|
881
|
+
const userEventPayloadScopesEnum = {
|
|
882
|
+
email: "email",
|
|
883
|
+
offline_access: "offline_access",
|
|
884
|
+
openid: "openid",
|
|
885
|
+
profile: "profile"
|
|
886
|
+
};
|
|
887
|
+
const userEventPayloadPermissionsEnum = {
|
|
888
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
889
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
890
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
891
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
892
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
893
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
894
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
895
|
+
"read-write:alerts": "read-write:alerts",
|
|
896
|
+
"read-write:billing": "read-write:billing",
|
|
897
|
+
"read-write:blob": "read-write:blob",
|
|
898
|
+
"read-write:connect": "read-write:connect",
|
|
899
|
+
"read-write:deployment": "read-write:deployment",
|
|
900
|
+
"read-write:domain": "read-write:domain",
|
|
901
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
902
|
+
"read-write:drains": "read-write:drains",
|
|
903
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
904
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
905
|
+
"read-write:firewall": "read-write:firewall",
|
|
906
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
907
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
908
|
+
"read-write:kms": "read-write:kms",
|
|
909
|
+
"read-write:project": "read-write:project",
|
|
910
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
911
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
912
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
913
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
914
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
915
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
916
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
917
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
918
|
+
"read-write:team-members": "read-write:team-members",
|
|
919
|
+
"read-write:vcr": "read-write:vcr",
|
|
920
|
+
"read:access-group": "read:access-group",
|
|
921
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
922
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
923
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
924
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
925
|
+
"read:alerts": "read:alerts",
|
|
926
|
+
"read:billing": "read:billing",
|
|
927
|
+
"read:deployment": "read:deployment",
|
|
928
|
+
"read:domain": "read:domain",
|
|
929
|
+
"read:event": "read:event",
|
|
930
|
+
"read:firewall": "read:firewall",
|
|
931
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
932
|
+
"read:integration-resource": "read:integration-resource",
|
|
933
|
+
"read:kms": "read:kms",
|
|
934
|
+
"read:monitoring": "read:monitoring",
|
|
935
|
+
"read:project": "read:project",
|
|
936
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
937
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
938
|
+
"read:project-flags": "read:project-flags",
|
|
939
|
+
"read:remote-cache": "read:remote-cache",
|
|
940
|
+
"read:sandbox": "read:sandbox",
|
|
941
|
+
"read:speed-insights": "read:speed-insights",
|
|
942
|
+
"read:team": "read:team",
|
|
943
|
+
"read:vcr": "read:vcr",
|
|
944
|
+
"read:web-analytics": "read:web-analytics",
|
|
945
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
946
|
+
};
|
|
947
|
+
const userEventPayloadNextScopesEnum = {
|
|
948
|
+
email: "email",
|
|
949
|
+
offline_access: "offline_access",
|
|
950
|
+
openid: "openid",
|
|
951
|
+
profile: "profile"
|
|
952
|
+
};
|
|
953
|
+
const userEventPayloadNextPermissionsEnum = {
|
|
954
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
955
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
956
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
957
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
958
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
959
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
960
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
961
|
+
"read-write:alerts": "read-write:alerts",
|
|
962
|
+
"read-write:billing": "read-write:billing",
|
|
963
|
+
"read-write:blob": "read-write:blob",
|
|
964
|
+
"read-write:connect": "read-write:connect",
|
|
965
|
+
"read-write:deployment": "read-write:deployment",
|
|
966
|
+
"read-write:domain": "read-write:domain",
|
|
967
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
968
|
+
"read-write:drains": "read-write:drains",
|
|
969
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
970
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
971
|
+
"read-write:firewall": "read-write:firewall",
|
|
972
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
973
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
974
|
+
"read-write:kms": "read-write:kms",
|
|
975
|
+
"read-write:project": "read-write:project",
|
|
976
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
977
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
978
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
979
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
980
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
981
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
982
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
983
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
984
|
+
"read-write:team-members": "read-write:team-members",
|
|
985
|
+
"read-write:vcr": "read-write:vcr",
|
|
986
|
+
"read:access-group": "read:access-group",
|
|
987
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
988
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
989
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
990
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
991
|
+
"read:alerts": "read:alerts",
|
|
992
|
+
"read:billing": "read:billing",
|
|
993
|
+
"read:deployment": "read:deployment",
|
|
994
|
+
"read:domain": "read:domain",
|
|
995
|
+
"read:event": "read:event",
|
|
996
|
+
"read:firewall": "read:firewall",
|
|
997
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
998
|
+
"read:integration-resource": "read:integration-resource",
|
|
999
|
+
"read:kms": "read:kms",
|
|
1000
|
+
"read:monitoring": "read:monitoring",
|
|
1001
|
+
"read:project": "read:project",
|
|
1002
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1003
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1004
|
+
"read:project-flags": "read:project-flags",
|
|
1005
|
+
"read:remote-cache": "read:remote-cache",
|
|
1006
|
+
"read:sandbox": "read:sandbox",
|
|
1007
|
+
"read:speed-insights": "read:speed-insights",
|
|
1008
|
+
"read:team": "read:team",
|
|
1009
|
+
"read:user": "read:user",
|
|
1010
|
+
"read:vcr": "read:vcr",
|
|
1011
|
+
"read:web-analytics": "read:web-analytics",
|
|
1012
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1013
|
+
};
|
|
1014
|
+
const userEventPayloadBeforePermissionsEnum = {
|
|
1015
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1016
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1017
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1018
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1019
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1020
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1021
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1022
|
+
"read-write:alerts": "read-write:alerts",
|
|
1023
|
+
"read-write:billing": "read-write:billing",
|
|
1024
|
+
"read-write:blob": "read-write:blob",
|
|
1025
|
+
"read-write:connect": "read-write:connect",
|
|
1026
|
+
"read-write:deployment": "read-write:deployment",
|
|
1027
|
+
"read-write:domain": "read-write:domain",
|
|
1028
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1029
|
+
"read-write:drains": "read-write:drains",
|
|
1030
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1031
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1032
|
+
"read-write:firewall": "read-write:firewall",
|
|
1033
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1034
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1035
|
+
"read-write:kms": "read-write:kms",
|
|
1036
|
+
"read-write:project": "read-write:project",
|
|
1037
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1038
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1039
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1040
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1041
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1042
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1043
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1044
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1045
|
+
"read-write:team-members": "read-write:team-members",
|
|
1046
|
+
"read-write:vcr": "read-write:vcr",
|
|
1047
|
+
"read:access-group": "read:access-group",
|
|
1048
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1049
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1050
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1051
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1052
|
+
"read:alerts": "read:alerts",
|
|
1053
|
+
"read:billing": "read:billing",
|
|
1054
|
+
"read:deployment": "read:deployment",
|
|
1055
|
+
"read:domain": "read:domain",
|
|
1056
|
+
"read:event": "read:event",
|
|
1057
|
+
"read:firewall": "read:firewall",
|
|
1058
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1059
|
+
"read:integration-resource": "read:integration-resource",
|
|
1060
|
+
"read:kms": "read:kms",
|
|
1061
|
+
"read:monitoring": "read:monitoring",
|
|
1062
|
+
"read:project": "read:project",
|
|
1063
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1064
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1065
|
+
"read:project-flags": "read:project-flags",
|
|
1066
|
+
"read:remote-cache": "read:remote-cache",
|
|
1067
|
+
"read:sandbox": "read:sandbox",
|
|
1068
|
+
"read:speed-insights": "read:speed-insights",
|
|
1069
|
+
"read:team": "read:team",
|
|
1070
|
+
"read:vcr": "read:vcr",
|
|
1071
|
+
"read:web-analytics": "read:web-analytics",
|
|
1072
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1073
|
+
};
|
|
1074
|
+
const userEventPayloadAfterPermissionsEnum = {
|
|
1075
|
+
"manage:speed-insights": "manage:speed-insights",
|
|
1076
|
+
"manage:web-analytics": "manage:web-analytics",
|
|
1077
|
+
"read-write:ai-gateway-api-key": "read-write:ai-gateway-api-key",
|
|
1078
|
+
"read-write:ai-gateway-guardrails": "read-write:ai-gateway-guardrails",
|
|
1079
|
+
"read-write:ai-gateway-private-models": "read-write:ai-gateway-private-models",
|
|
1080
|
+
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1081
|
+
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1082
|
+
"read-write:alerts": "read-write:alerts",
|
|
1083
|
+
"read-write:billing": "read-write:billing",
|
|
1084
|
+
"read-write:blob": "read-write:blob",
|
|
1085
|
+
"read-write:connect": "read-write:connect",
|
|
1086
|
+
"read-write:deployment": "read-write:deployment",
|
|
1087
|
+
"read-write:domain": "read-write:domain",
|
|
1088
|
+
"read-write:domain-registrar": "read-write:domain-registrar",
|
|
1089
|
+
"read-write:drains": "read-write:drains",
|
|
1090
|
+
"read-write:edge-cache": "read-write:edge-cache",
|
|
1091
|
+
"read-write:edge-config": "read-write:edge-config",
|
|
1092
|
+
"read-write:firewall": "read-write:firewall",
|
|
1093
|
+
"read-write:integration-configuration": "read-write:integration-configuration",
|
|
1094
|
+
"read-write:integration-resource": "read-write:integration-resource",
|
|
1095
|
+
"read-write:kms": "read-write:kms",
|
|
1096
|
+
"read-write:project": "read-write:project",
|
|
1097
|
+
"read-write:project-env-vars": "read-write:project-env-vars",
|
|
1098
|
+
"read-write:project-env-vars-non-production": "read-write:project-env-vars-non-production",
|
|
1099
|
+
"read-write:project-env-vars-production": "read-write:project-env-vars-production",
|
|
1100
|
+
"read-write:project-flags-non-production": "read-write:project-flags-non-production",
|
|
1101
|
+
"read-write:project-flags-production": "read-write:project-flags-production",
|
|
1102
|
+
"read-write:project-protection-bypass": "read-write:project-protection-bypass",
|
|
1103
|
+
"read-write:remote-cache": "read-write:remote-cache",
|
|
1104
|
+
"read-write:sandbox": "read-write:sandbox",
|
|
1105
|
+
"read-write:team-members": "read-write:team-members",
|
|
1106
|
+
"read-write:vcr": "read-write:vcr",
|
|
1107
|
+
"read:access-group": "read:access-group",
|
|
1108
|
+
"read:ai-gateway-guardrails": "read:ai-gateway-guardrails",
|
|
1109
|
+
"read:ai-gateway-private-models": "read:ai-gateway-private-models",
|
|
1110
|
+
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1111
|
+
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1112
|
+
"read:alerts": "read:alerts",
|
|
1113
|
+
"read:billing": "read:billing",
|
|
1114
|
+
"read:deployment": "read:deployment",
|
|
1115
|
+
"read:domain": "read:domain",
|
|
1116
|
+
"read:event": "read:event",
|
|
1117
|
+
"read:firewall": "read:firewall",
|
|
1118
|
+
"read:integration-configuration": "read:integration-configuration",
|
|
1119
|
+
"read:integration-resource": "read:integration-resource",
|
|
1120
|
+
"read:kms": "read:kms",
|
|
1121
|
+
"read:monitoring": "read:monitoring",
|
|
1122
|
+
"read:project": "read:project",
|
|
1123
|
+
"read:project-env-vars-non-production": "read:project-env-vars-non-production",
|
|
1124
|
+
"read:project-env-vars-production": "read:project-env-vars-production",
|
|
1125
|
+
"read:project-flags": "read:project-flags",
|
|
1126
|
+
"read:remote-cache": "read:remote-cache",
|
|
1127
|
+
"read:sandbox": "read:sandbox",
|
|
1128
|
+
"read:speed-insights": "read:speed-insights",
|
|
1129
|
+
"read:team": "read:team",
|
|
1130
|
+
"read:vcr": "read:vcr",
|
|
1131
|
+
"read:web-analytics": "read:web-analytics",
|
|
1132
|
+
"use:ai-gateway": "use:ai-gateway"
|
|
1133
|
+
};
|
|
1134
|
+
const userEventPayloadSettlementMethodEnum = {
|
|
941
1135
|
"credited-paid": "credited-paid",
|
|
942
1136
|
"credited-payment-pending": "credited-payment-pending",
|
|
943
1137
|
"refunded-paid": "refunded-paid",
|
|
944
1138
|
"refunded-payment-pending": "refunded-payment-pending"
|
|
945
1139
|
};
|
|
946
|
-
const
|
|
1140
|
+
const userEventPayloadDataPlanSlugEnum = {
|
|
947
1141
|
v0_business: "v0_business",
|
|
948
1142
|
v0_teams: "v0_teams"
|
|
949
1143
|
};
|
|
950
|
-
const
|
|
951
|
-
"basic-floor": "basic-floor",
|
|
952
|
-
"build-timeout-failure": "build-timeout-failure",
|
|
953
|
-
"enospc-failure": "enospc-failure",
|
|
954
|
-
"enterprise-floor": "enterprise-floor",
|
|
955
|
-
"high-peak-disk": "high-peak-disk",
|
|
956
|
-
"high-peak-memory": "high-peak-memory",
|
|
957
|
-
"long-build-duration": "long-build-duration",
|
|
958
|
-
"oom-failure": "oom-failure",
|
|
959
|
-
"plan-change": "plan-change",
|
|
960
|
-
"short-build-duration": "short-build-duration",
|
|
961
|
-
"sustained-high-cpu": "sustained-high-cpu"
|
|
962
|
-
};
|
|
963
|
-
const subjectTypeEnum = {
|
|
1144
|
+
const userEventPayloadSubjectTypeEnum = {
|
|
964
1145
|
app: "app",
|
|
965
1146
|
user: "user"
|
|
966
1147
|
};
|
|
967
|
-
const
|
|
968
|
-
"external-token": "external-token"
|
|
969
|
-
};
|
|
970
|
-
const commitVerificationEnum = {
|
|
1148
|
+
const userEventPayloadJobCommitVerificationEnum = {
|
|
971
1149
|
unknown: "unknown",
|
|
972
1150
|
unverified: "unverified",
|
|
973
1151
|
verified: "verified"
|
|
974
1152
|
};
|
|
975
|
-
const
|
|
1153
|
+
const userEventPayloadJobNsnbSideEffectActionEnum = {
|
|
1154
|
+
"auto-approved-member": "auto-approved-member",
|
|
1155
|
+
"auto-approved-pending-invite": "auto-approved-pending-invite"
|
|
1156
|
+
};
|
|
1157
|
+
const userEventPayloadJobProviderEnum = {
|
|
1158
|
+
github: "github",
|
|
1159
|
+
"github-custom-host": "github-custom-host",
|
|
1160
|
+
"github-limited": "github-limited"
|
|
1161
|
+
};
|
|
1162
|
+
const userEventPayloadRuleNameEnum = {
|
|
976
1163
|
deploymentSources: "deploymentSources",
|
|
977
1164
|
gitSources: "gitSources"
|
|
978
1165
|
};
|
|
979
|
-
const
|
|
1166
|
+
const userEventPayloadRuleProvenanceEnum = {
|
|
980
1167
|
default: "default",
|
|
981
1168
|
project: "project",
|
|
982
1169
|
team: "team"
|
|
983
1170
|
};
|
|
984
|
-
const
|
|
1171
|
+
const userEventPayloadInitiatorEnum = {
|
|
985
1172
|
system: "system",
|
|
986
1173
|
user: "user"
|
|
987
1174
|
};
|
|
988
|
-
const
|
|
1175
|
+
const userEventPayloadEchModeEnum = {
|
|
1176
|
+
auto: "auto",
|
|
1177
|
+
disabled: "disabled",
|
|
1178
|
+
enabled: "enabled"
|
|
1179
|
+
};
|
|
1180
|
+
const userEventPayloadPreviousEchModeEnum = {
|
|
1181
|
+
auto: "auto",
|
|
1182
|
+
disabled: "disabled",
|
|
1183
|
+
enabled: "enabled"
|
|
1184
|
+
};
|
|
1185
|
+
const userEventPayloadFromAccountTypeEnum = {
|
|
1186
|
+
team: "team",
|
|
1187
|
+
user: "user"
|
|
1188
|
+
};
|
|
1189
|
+
const userEventPayloadToAccountTypeEnum = {
|
|
1190
|
+
team: "team",
|
|
1191
|
+
user: "user"
|
|
1192
|
+
};
|
|
1193
|
+
const userEventPayloadTypeEnum = {
|
|
1194
|
+
blob: "blob",
|
|
1195
|
+
"edge-config": "edge-config",
|
|
1196
|
+
integration: "integration",
|
|
1197
|
+
postgres: "postgres",
|
|
1198
|
+
redis: "redis"
|
|
1199
|
+
};
|
|
1200
|
+
const userEventPayloadTargetEnum = {
|
|
1201
|
+
development: "development",
|
|
1202
|
+
preview: "preview",
|
|
1203
|
+
production: "production"
|
|
1204
|
+
};
|
|
1205
|
+
const userEventPayloadOldEnvVarTypeEnum = {
|
|
1206
|
+
encrypted: "encrypted",
|
|
1207
|
+
plain: "plain",
|
|
1208
|
+
sensitive: "sensitive",
|
|
1209
|
+
system: "system"
|
|
1210
|
+
};
|
|
1211
|
+
const userEventPayloadOldEnvVarTargetEnum = {
|
|
1212
|
+
development: "development",
|
|
1213
|
+
preview: "preview",
|
|
1214
|
+
production: "production"
|
|
1215
|
+
};
|
|
1216
|
+
const userEventPayloadNewEnvVarTypeEnum = {
|
|
1217
|
+
encrypted: "encrypted",
|
|
1218
|
+
plain: "plain",
|
|
1219
|
+
sensitive: "sensitive",
|
|
1220
|
+
system: "system"
|
|
1221
|
+
};
|
|
1222
|
+
const userEventPayloadNewEnvVarTargetEnum = {
|
|
1223
|
+
development: "development",
|
|
1224
|
+
preview: "preview",
|
|
1225
|
+
production: "production"
|
|
1226
|
+
};
|
|
1227
|
+
const userEventPayloadUpdateDiffOldTargetEnum = {
|
|
1228
|
+
development: "development",
|
|
1229
|
+
preview: "preview",
|
|
1230
|
+
production: "production"
|
|
1231
|
+
};
|
|
1232
|
+
const userEventPayloadUpdateDiffNewTargetEnum = {
|
|
1233
|
+
development: "development",
|
|
1234
|
+
preview: "preview",
|
|
1235
|
+
production: "production"
|
|
1236
|
+
};
|
|
1237
|
+
const actionEnum = {
|
|
1238
|
+
challenge: "challenge",
|
|
1239
|
+
deny: "deny",
|
|
1240
|
+
log: "log"
|
|
1241
|
+
};
|
|
1242
|
+
const userEventPayloadOutcomeEnum = {
|
|
989
1243
|
"account-matched": "account-matched",
|
|
990
1244
|
"linking-required": "linking-required"
|
|
991
1245
|
};
|
|
992
|
-
const
|
|
1246
|
+
const userEventPayloadFailureStageEnum = {
|
|
993
1247
|
authorization: "authorization",
|
|
994
1248
|
push: "push",
|
|
995
1249
|
unexpected: "unexpected",
|
|
996
1250
|
unknown: "unknown",
|
|
997
1251
|
validation: "validation"
|
|
998
1252
|
};
|
|
999
|
-
const
|
|
1253
|
+
const userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = {
|
|
1254
|
+
blocked: "blocked",
|
|
1255
|
+
"hard-blocked": "hard-blocked",
|
|
1256
|
+
"soft-blocked": "soft-blocked",
|
|
1257
|
+
unblocked: "unblocked"
|
|
1258
|
+
};
|
|
1259
|
+
const userEventPayloadNewOwnerBillingPlanEnum = {
|
|
1000
1260
|
enterprise: "enterprise",
|
|
1001
1261
|
hobby: "hobby",
|
|
1002
1262
|
pro: "pro"
|
|
1003
1263
|
};
|
|
1004
|
-
const
|
|
1264
|
+
const userEventPayloadNewOwnerCredentialsTypeEnum = {
|
|
1265
|
+
apple: "apple",
|
|
1266
|
+
bitbucket: "bitbucket",
|
|
1267
|
+
chatgpt: "chatgpt",
|
|
1268
|
+
"github-oauth": "github-oauth",
|
|
1269
|
+
"github-oauth-limited": "github-oauth-limited",
|
|
1270
|
+
gitlab: "gitlab",
|
|
1271
|
+
google: "google",
|
|
1272
|
+
vercel: "vercel"
|
|
1273
|
+
};
|
|
1274
|
+
const userEventPayloadNewOwnerImportFlowGitProviderEnum = {
|
|
1005
1275
|
bitbucket: "bitbucket",
|
|
1006
1276
|
"cursor-origin": "cursor-origin",
|
|
1007
1277
|
github: "github",
|
|
@@ -1010,8 +1280,11 @@ const importFlowGitProviderEnum = {
|
|
|
1010
1280
|
gitlab: "gitlab",
|
|
1011
1281
|
vercel: "vercel"
|
|
1012
1282
|
};
|
|
1013
|
-
const
|
|
1014
|
-
|
|
1283
|
+
const userEventPayloadNewOwnerPreventAutoBlocking = {
|
|
1284
|
+
false: false,
|
|
1285
|
+
true: true
|
|
1286
|
+
};
|
|
1287
|
+
const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
1015
1288
|
"analytics-online": "analytics-online",
|
|
1016
1289
|
"analytics-page-views": "analytics-page-views",
|
|
1017
1290
|
"analytics-visitors": "analytics-visitors",
|
|
@@ -1021,42 +1294,46 @@ const widgetEnum = {
|
|
|
1021
1294
|
"observability-edge-requests": "observability-edge-requests",
|
|
1022
1295
|
"observability-error-rate": "observability-error-rate",
|
|
1023
1296
|
"observability-function-invocations": "observability-function-invocations",
|
|
1024
|
-
online: "online",
|
|
1025
|
-
res: "res",
|
|
1026
1297
|
"speed-insights-cls": "speed-insights-cls",
|
|
1027
1298
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1028
1299
|
"speed-insights-res": "speed-insights-res"
|
|
1029
1300
|
};
|
|
1030
|
-
const
|
|
1301
|
+
const userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = {
|
|
1031
1302
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1032
1303
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1033
1304
|
};
|
|
1034
|
-
const
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
SECURITY: "SECURITY",
|
|
1041
|
-
VIEWER: "VIEWER",
|
|
1042
|
-
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1305
|
+
const userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = {
|
|
1306
|
+
basic: "basic",
|
|
1307
|
+
elastic: "elastic",
|
|
1308
|
+
enhanced: "enhanced",
|
|
1309
|
+
standard: "standard",
|
|
1310
|
+
turbo: "turbo"
|
|
1043
1311
|
};
|
|
1044
|
-
const
|
|
1312
|
+
const userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = {
|
|
1045
1313
|
cards: "cards",
|
|
1046
1314
|
list: "list"
|
|
1047
1315
|
};
|
|
1048
|
-
const
|
|
1316
|
+
const userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
1049
1317
|
closed: "closed",
|
|
1050
1318
|
open: "open"
|
|
1051
1319
|
};
|
|
1052
|
-
const
|
|
1320
|
+
const userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
1053
1321
|
closed: "closed",
|
|
1054
1322
|
open: "open"
|
|
1055
1323
|
};
|
|
1056
|
-
const
|
|
1057
|
-
|
|
1324
|
+
const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
1325
|
+
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
1326
|
+
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
1327
|
+
ENTERPRISE_TRIAL_ENDED: "ENTERPRISE_TRIAL_ENDED",
|
|
1328
|
+
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1329
|
+
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1330
|
+
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1331
|
+
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1332
|
+
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1333
|
+
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1334
|
+
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
1058
1335
|
};
|
|
1059
|
-
const
|
|
1336
|
+
const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
1060
1337
|
analyticsUsage: "analyticsUsage",
|
|
1061
1338
|
artifacts: "artifacts",
|
|
1062
1339
|
bandwidth: "bandwidth",
|
|
@@ -1097,7 +1374,7 @@ const blockedDueToOverageTypeEnum = {
|
|
|
1097
1374
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1098
1375
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1099
1376
|
};
|
|
1100
|
-
const
|
|
1377
|
+
const userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
1101
1378
|
analyticsUsage: "analyticsUsage",
|
|
1102
1379
|
artifacts: "artifacts",
|
|
1103
1380
|
bandwidth: "bandwidth",
|
|
@@ -1138,7 +1415,7 @@ const allocationEnum = {
|
|
|
1138
1415
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1139
1416
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1140
1417
|
};
|
|
1141
|
-
const
|
|
1418
|
+
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1142
1419
|
BILLING: "BILLING",
|
|
1143
1420
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1144
1421
|
DEVELOPER: "DEVELOPER",
|
|
@@ -1148,26 +1425,57 @@ const roleEnum = {
|
|
|
1148
1425
|
VIEWER: "VIEWER",
|
|
1149
1426
|
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1150
1427
|
};
|
|
1151
|
-
const
|
|
1152
|
-
|
|
1153
|
-
|
|
1428
|
+
const userEventPayloadNewOwnerTeamsTeamRolesEnum = {
|
|
1429
|
+
BILLING: "BILLING",
|
|
1430
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1431
|
+
DEVELOPER: "DEVELOPER",
|
|
1432
|
+
MEMBER: "MEMBER",
|
|
1433
|
+
OWNER: "OWNER",
|
|
1434
|
+
SECURITY: "SECURITY",
|
|
1435
|
+
VIEWER: "VIEWER",
|
|
1436
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1437
|
+
};
|
|
1438
|
+
const userEventPayloadNewOwnerTeamsTeamPermissionsEnum = {
|
|
1439
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
1440
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
1441
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
1442
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
1443
|
+
ConnectorManager: "ConnectorManager",
|
|
1444
|
+
CreateProject: "CreateProject",
|
|
1445
|
+
EnvVariableManager: "EnvVariableManager",
|
|
1446
|
+
EnvironmentManager: "EnvironmentManager",
|
|
1447
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
1448
|
+
IntegrationManager: "IntegrationManager",
|
|
1449
|
+
OrgAdmin: "OrgAdmin",
|
|
1450
|
+
OrgViewer: "OrgViewer",
|
|
1451
|
+
UsageViewer: "UsageViewer",
|
|
1452
|
+
V0Builder: "V0Builder",
|
|
1453
|
+
V0Chatter: "V0Chatter",
|
|
1454
|
+
V0Viewer: "V0Viewer",
|
|
1455
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
1456
|
+
};
|
|
1457
|
+
const userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = {
|
|
1458
|
+
"account-update": "account-update",
|
|
1154
1459
|
bitbucket: "bitbucket",
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
emu: "emu",
|
|
1460
|
+
dsync: "dsync",
|
|
1461
|
+
feedback: "feedback",
|
|
1158
1462
|
github: "github",
|
|
1159
|
-
"github-webhook": "github-webhook",
|
|
1160
1463
|
gitlab: "gitlab",
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1464
|
+
import: "import",
|
|
1465
|
+
link: "link",
|
|
1466
|
+
mail: "mail",
|
|
1467
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1468
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1469
|
+
"nsnb-invite": "nsnb-invite",
|
|
1470
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1471
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1472
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1473
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1474
|
+
"organization-teams": "organization-teams",
|
|
1166
1475
|
saml: "saml",
|
|
1167
|
-
|
|
1168
|
-
"token-exchange-oidc": "token-exchange-oidc"
|
|
1476
|
+
teams: "teams"
|
|
1169
1477
|
};
|
|
1170
|
-
const
|
|
1478
|
+
const userEventPayloadNewOwnerEnablePreviewFeedbackEnum = {
|
|
1171
1479
|
default: "default",
|
|
1172
1480
|
"default-force": "default-force",
|
|
1173
1481
|
off: "off",
|
|
@@ -1175,16 +1483,45 @@ const enablePreviewFeedbackEnum = {
|
|
|
1175
1483
|
on: "on",
|
|
1176
1484
|
"on-force": "on-force"
|
|
1177
1485
|
};
|
|
1178
|
-
const
|
|
1486
|
+
const userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = {
|
|
1487
|
+
admin_override: "admin_override",
|
|
1488
|
+
hard_blocked: "hard_blocked",
|
|
1489
|
+
limits_exceeded: "limits_exceeded"
|
|
1490
|
+
};
|
|
1491
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = {
|
|
1492
|
+
admin_override: "admin_override",
|
|
1493
|
+
hard_blocked: "hard_blocked",
|
|
1494
|
+
limits_exceeded: "limits_exceeded"
|
|
1495
|
+
};
|
|
1496
|
+
const userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = {
|
|
1497
|
+
hard: "hard",
|
|
1498
|
+
soft: "soft"
|
|
1499
|
+
};
|
|
1500
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = {
|
|
1179
1501
|
admin_override: "admin_override",
|
|
1180
1502
|
hard_blocked: "hard_blocked",
|
|
1181
1503
|
limits_exceeded: "limits_exceeded"
|
|
1182
1504
|
};
|
|
1183
|
-
const
|
|
1505
|
+
const userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = {
|
|
1184
1506
|
hard: "hard",
|
|
1185
1507
|
soft: "soft"
|
|
1186
1508
|
};
|
|
1187
|
-
const
|
|
1509
|
+
const userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = {
|
|
1510
|
+
admin_override: "admin_override",
|
|
1511
|
+
hard_blocked: "hard_blocked",
|
|
1512
|
+
limits_exceeded: "limits_exceeded"
|
|
1513
|
+
};
|
|
1514
|
+
const userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = {
|
|
1515
|
+
admin_override: "admin_override",
|
|
1516
|
+
hard_blocked: "hard_blocked",
|
|
1517
|
+
limits_exceeded: "limits_exceeded"
|
|
1518
|
+
};
|
|
1519
|
+
const userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = {
|
|
1520
|
+
admin_override: "admin_override",
|
|
1521
|
+
hard_blocked: "hard_blocked",
|
|
1522
|
+
limits_exceeded: "limits_exceeded"
|
|
1523
|
+
};
|
|
1524
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = {
|
|
1188
1525
|
analyticsUsage: "analyticsUsage",
|
|
1189
1526
|
artifacts: "artifacts",
|
|
1190
1527
|
bandwidth: "bandwidth",
|
|
@@ -1225,61 +1562,295 @@ const overageReasonEnum = {
|
|
|
1225
1562
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1226
1563
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1227
1564
|
};
|
|
1228
|
-
const
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
const methodEnum = {
|
|
1232
|
-
client_secret_basic: "client_secret_basic",
|
|
1233
|
-
client_secret_jwt: "client_secret_jwt",
|
|
1234
|
-
client_secret_post: "client_secret_post",
|
|
1235
|
-
none: "none",
|
|
1236
|
-
oidc_token: "oidc_token",
|
|
1237
|
-
private_key_jwt: "private_key_jwt"
|
|
1565
|
+
const userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = {
|
|
1566
|
+
admin_override: "admin_override",
|
|
1567
|
+
hard_blocked: "hard_blocked"
|
|
1238
1568
|
};
|
|
1239
|
-
const
|
|
1240
|
-
|
|
1241
|
-
|
|
1569
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = {
|
|
1570
|
+
analyticsUsage: "analyticsUsage",
|
|
1571
|
+
artifacts: "artifacts",
|
|
1572
|
+
bandwidth: "bandwidth",
|
|
1573
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1574
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1575
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1576
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1577
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1578
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1579
|
+
dataCacheRead: "dataCacheRead",
|
|
1580
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1581
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1582
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1583
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1584
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1585
|
+
edgeRequest: "edgeRequest",
|
|
1586
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1587
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1588
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1589
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1590
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1591
|
+
fluidDuration: "fluidDuration",
|
|
1592
|
+
functionDuration: "functionDuration",
|
|
1593
|
+
functionInvocation: "functionInvocation",
|
|
1594
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1595
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1596
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1597
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1598
|
+
monitoringMetric: "monitoringMetric",
|
|
1599
|
+
observabilityEvent: "observabilityEvent",
|
|
1600
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1601
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1602
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1603
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1604
|
+
sourceImages: "sourceImages",
|
|
1605
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1606
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1607
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1608
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1609
|
+
};
|
|
1610
|
+
const userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = {
|
|
1611
|
+
admin_override: "admin_override",
|
|
1612
|
+
hard_blocked: "hard_blocked"
|
|
1613
|
+
};
|
|
1614
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = {
|
|
1615
|
+
analyticsUsage: "analyticsUsage",
|
|
1616
|
+
artifacts: "artifacts",
|
|
1617
|
+
bandwidth: "bandwidth",
|
|
1618
|
+
blobDataTransfer: "blobDataTransfer",
|
|
1619
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1620
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1621
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1622
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1623
|
+
connectDataTransfer: "connectDataTransfer",
|
|
1624
|
+
dataCacheRead: "dataCacheRead",
|
|
1625
|
+
dataCacheWrite: "dataCacheWrite",
|
|
1626
|
+
edgeConfigRead: "edgeConfigRead",
|
|
1627
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
1628
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1629
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1630
|
+
edgeRequest: "edgeRequest",
|
|
1631
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1632
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1633
|
+
fastDataTransfer: "fastDataTransfer",
|
|
1634
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
1635
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
1636
|
+
fluidDuration: "fluidDuration",
|
|
1637
|
+
functionDuration: "functionDuration",
|
|
1638
|
+
functionInvocation: "functionInvocation",
|
|
1639
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1640
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1641
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1642
|
+
logDrainsVolume: "logDrainsVolume",
|
|
1643
|
+
monitoringMetric: "monitoringMetric",
|
|
1644
|
+
observabilityEvent: "observabilityEvent",
|
|
1645
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1646
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
1647
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1648
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1649
|
+
sourceImages: "sourceImages",
|
|
1650
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1651
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
1652
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1653
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1654
|
+
};
|
|
1655
|
+
const userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = {
|
|
1656
|
+
admin_override: "admin_override",
|
|
1657
|
+
hard_blocked: "hard_blocked"
|
|
1658
|
+
};
|
|
1659
|
+
const userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = {
|
|
1660
|
+
admin_override: "admin_override",
|
|
1661
|
+
hard_blocked: "hard_blocked",
|
|
1662
|
+
limits_exceeded: "limits_exceeded"
|
|
1663
|
+
};
|
|
1664
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = {
|
|
1665
|
+
admin_override: "admin_override",
|
|
1666
|
+
hard_blocked: "hard_blocked",
|
|
1667
|
+
limits_exceeded: "limits_exceeded"
|
|
1668
|
+
};
|
|
1669
|
+
const userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = {
|
|
1670
|
+
admin_override: "admin_override",
|
|
1671
|
+
hard_blocked: "hard_blocked",
|
|
1672
|
+
limits_exceeded: "limits_exceeded"
|
|
1673
|
+
};
|
|
1674
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = {
|
|
1675
|
+
admin_override: "admin_override",
|
|
1676
|
+
hard_blocked: "hard_blocked",
|
|
1677
|
+
limits_exceeded: "limits_exceeded"
|
|
1678
|
+
};
|
|
1679
|
+
const userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = {
|
|
1680
|
+
admin_override: "admin_override",
|
|
1681
|
+
hard_blocked: "hard_blocked",
|
|
1682
|
+
limits_exceeded: "limits_exceeded"
|
|
1683
|
+
};
|
|
1684
|
+
const userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = {
|
|
1685
|
+
admin_override: "admin_override",
|
|
1686
|
+
hard_blocked: "hard_blocked",
|
|
1687
|
+
limits_exceeded: "limits_exceeded"
|
|
1688
|
+
};
|
|
1689
|
+
const userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = {
|
|
1690
|
+
admin_override: "admin_override",
|
|
1691
|
+
hard_blocked: "hard_blocked",
|
|
1692
|
+
limits_exceeded: "limits_exceeded"
|
|
1693
|
+
};
|
|
1694
|
+
const userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = {
|
|
1695
|
+
admin_override: "admin_override",
|
|
1696
|
+
hard_blocked: "hard_blocked",
|
|
1697
|
+
limits_exceeded: "limits_exceeded"
|
|
1698
|
+
};
|
|
1699
|
+
const userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
1700
|
+
admin_override: "admin_override",
|
|
1701
|
+
hard_blocked: "hard_blocked",
|
|
1702
|
+
limits_exceeded: "limits_exceeded"
|
|
1703
|
+
};
|
|
1704
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = {
|
|
1705
|
+
disabled: "disabled",
|
|
1706
|
+
enabled: "enabled"
|
|
1707
|
+
};
|
|
1708
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = {
|
|
1709
|
+
admin_removal: "admin_removal",
|
|
1710
|
+
passkey: "passkey",
|
|
1711
|
+
self_serve_recovery: "self_serve_recovery",
|
|
1712
|
+
totp: "totp",
|
|
1713
|
+
unknown: "unknown",
|
|
1714
|
+
user_disabled: "user_disabled"
|
|
1715
|
+
};
|
|
1716
|
+
const userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = {
|
|
1717
|
+
admin: "admin",
|
|
1718
|
+
user: "user"
|
|
1719
|
+
};
|
|
1720
|
+
const userEventPayloadQueryTypeEnum = {
|
|
1721
|
+
"data-edit": "data-edit",
|
|
1722
|
+
"data-view": "data-view",
|
|
1242
1723
|
schema: "schema",
|
|
1243
1724
|
user: "user"
|
|
1244
1725
|
};
|
|
1245
|
-
const
|
|
1246
|
-
|
|
1726
|
+
const userEventPayloadFactorsOriginEnum = {
|
|
1727
|
+
apple: "apple",
|
|
1728
|
+
bitbucket: "bitbucket",
|
|
1729
|
+
chatgpt: "chatgpt",
|
|
1730
|
+
email: "email",
|
|
1731
|
+
github: "github",
|
|
1732
|
+
gitlab: "gitlab",
|
|
1733
|
+
google: "google",
|
|
1734
|
+
otp: "otp",
|
|
1735
|
+
saml: "saml"
|
|
1736
|
+
};
|
|
1737
|
+
const userEventPayloadNextDefaultEnum = {
|
|
1738
|
+
BILLING: "BILLING",
|
|
1739
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1740
|
+
DEVELOPER: "DEVELOPER",
|
|
1741
|
+
MEMBER: "MEMBER",
|
|
1742
|
+
OWNER: "OWNER",
|
|
1743
|
+
SECURITY: "SECURITY",
|
|
1744
|
+
VIEWER: "VIEWER",
|
|
1745
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1247
1746
|
};
|
|
1248
|
-
const
|
|
1747
|
+
const userEventPayloadBillingPlanEnum = {
|
|
1249
1748
|
enterprise: "enterprise",
|
|
1250
1749
|
platform: "platform"
|
|
1251
1750
|
};
|
|
1252
|
-
const
|
|
1751
|
+
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1253
1752
|
all: "all",
|
|
1254
1753
|
preview: "preview"
|
|
1255
1754
|
};
|
|
1256
|
-
const
|
|
1755
|
+
const userEventPayloadPreviousNewResourceBlockingPolicyEnum = {
|
|
1257
1756
|
allow: "allow",
|
|
1258
1757
|
block: "block"
|
|
1259
1758
|
};
|
|
1260
|
-
const
|
|
1759
|
+
const userEventPayloadNextEnforcementScopeEnum = {
|
|
1261
1760
|
all: "all",
|
|
1262
1761
|
preview: "preview"
|
|
1263
1762
|
};
|
|
1264
|
-
const
|
|
1763
|
+
const userEventPayloadNextNewResourceBlockingPolicyEnum = {
|
|
1764
|
+
allow: "allow",
|
|
1765
|
+
block: "block"
|
|
1766
|
+
};
|
|
1767
|
+
const userEventPayloadApprovalScopeEnum = {
|
|
1768
|
+
all: "all",
|
|
1769
|
+
preview: "preview"
|
|
1770
|
+
};
|
|
1771
|
+
const userEventPayloadKindEnum = {
|
|
1265
1772
|
connectSrc: "connectSrc",
|
|
1266
1773
|
script: "script"
|
|
1267
1774
|
};
|
|
1268
|
-
const
|
|
1775
|
+
const userEventPayloadPreviousPassportDeploymentTypeEnum = {
|
|
1776
|
+
all: "all",
|
|
1777
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1778
|
+
preview: "preview",
|
|
1779
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1780
|
+
};
|
|
1781
|
+
const userEventPayloadNextPassportDeploymentTypeEnum = {
|
|
1269
1782
|
all: "all",
|
|
1270
1783
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1271
1784
|
preview: "preview",
|
|
1272
1785
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1273
1786
|
};
|
|
1274
|
-
const
|
|
1787
|
+
const roleEnum = {
|
|
1788
|
+
BILLING: "BILLING",
|
|
1789
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
1790
|
+
DEVELOPER: "DEVELOPER",
|
|
1791
|
+
MEMBER: "MEMBER",
|
|
1792
|
+
OWNER: "OWNER",
|
|
1793
|
+
SECURITY: "SECURITY",
|
|
1794
|
+
VIEWER: "VIEWER",
|
|
1795
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
1796
|
+
};
|
|
1797
|
+
const originEnum = {
|
|
1798
|
+
"account-update": "account-update",
|
|
1799
|
+
bitbucket: "bitbucket",
|
|
1800
|
+
dsync: "dsync",
|
|
1801
|
+
feedback: "feedback",
|
|
1802
|
+
github: "github",
|
|
1803
|
+
gitlab: "gitlab",
|
|
1804
|
+
import: "import",
|
|
1805
|
+
link: "link",
|
|
1806
|
+
mail: "mail",
|
|
1807
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1808
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1809
|
+
"nsnb-invite": "nsnb-invite",
|
|
1810
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1811
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1812
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1813
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1814
|
+
"organization-teams": "organization-teams",
|
|
1815
|
+
saml: "saml",
|
|
1816
|
+
teams: "teams"
|
|
1817
|
+
};
|
|
1818
|
+
const userEventPayloadWidgetEnum = {
|
|
1819
|
+
alert: "alert",
|
|
1820
|
+
"analytics-online": "analytics-online",
|
|
1821
|
+
"analytics-page-views": "analytics-page-views",
|
|
1822
|
+
"analytics-visitors": "analytics-visitors",
|
|
1823
|
+
"firewall-allowed": "firewall-allowed",
|
|
1824
|
+
"firewall-denied": "firewall-denied",
|
|
1825
|
+
"observability-alert": "observability-alert",
|
|
1826
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
1827
|
+
"observability-error-rate": "observability-error-rate",
|
|
1828
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
1829
|
+
online: "online",
|
|
1830
|
+
res: "res",
|
|
1831
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
1832
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
1833
|
+
"speed-insights-res": "speed-insights-res"
|
|
1834
|
+
};
|
|
1835
|
+
const userEventPayloadBuildQueueConfigurationEnum = {
|
|
1275
1836
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1276
1837
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1277
1838
|
};
|
|
1278
|
-
const
|
|
1839
|
+
const userEventPayloadOldBuildQueueConfigurationEnum = {
|
|
1279
1840
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
1280
1841
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
1281
1842
|
};
|
|
1282
|
-
const
|
|
1843
|
+
const userEventPayloadPreviousBranchMatcherTypeEnum = {
|
|
1844
|
+
endsWith: "endsWith",
|
|
1845
|
+
equals: "equals",
|
|
1846
|
+
startsWith: "startsWith"
|
|
1847
|
+
};
|
|
1848
|
+
const userEventPayloadNextBranchMatcherTypeEnum = {
|
|
1849
|
+
endsWith: "endsWith",
|
|
1850
|
+
equals: "equals",
|
|
1851
|
+
startsWith: "startsWith"
|
|
1852
|
+
};
|
|
1853
|
+
const userEventPayloadPreviousGitProviderEnum = {
|
|
1283
1854
|
bitbucket: "bitbucket",
|
|
1284
1855
|
"cursor-origin": "cursor-origin",
|
|
1285
1856
|
github: "github",
|
|
@@ -1288,96 +1859,265 @@ const gitProviderEnum = {
|
|
|
1288
1859
|
gitlab: "gitlab",
|
|
1289
1860
|
vercel: "vercel"
|
|
1290
1861
|
};
|
|
1291
|
-
const
|
|
1862
|
+
const userEventPayloadNextGitProviderEnum = {
|
|
1863
|
+
bitbucket: "bitbucket",
|
|
1864
|
+
"cursor-origin": "cursor-origin",
|
|
1865
|
+
github: "github",
|
|
1866
|
+
"github-custom-host": "github-custom-host",
|
|
1867
|
+
"github-limited": "github-limited",
|
|
1868
|
+
gitlab: "gitlab",
|
|
1869
|
+
vercel: "vercel"
|
|
1870
|
+
};
|
|
1871
|
+
const userEventPayloadGitProviderEnum = {
|
|
1872
|
+
bitbucket: "bitbucket",
|
|
1873
|
+
"cursor-origin": "cursor-origin",
|
|
1874
|
+
github: "github",
|
|
1875
|
+
"github-custom-host": "github-custom-host",
|
|
1876
|
+
"github-limited": "github-limited",
|
|
1877
|
+
gitlab: "gitlab",
|
|
1878
|
+
vercel: "vercel"
|
|
1879
|
+
};
|
|
1880
|
+
const userEventPayloadCreateDeploymentsEnum = {
|
|
1292
1881
|
disabled: "disabled",
|
|
1293
1882
|
enabled: "enabled"
|
|
1294
1883
|
};
|
|
1295
|
-
const
|
|
1884
|
+
const userEventPayloadProjectsRoleEnum = {
|
|
1885
|
+
ADMIN: "ADMIN",
|
|
1886
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1887
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1888
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1889
|
+
};
|
|
1890
|
+
const userEventPayloadProjectMembershipRoleEnum = {
|
|
1891
|
+
ADMIN: "ADMIN",
|
|
1892
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1893
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1894
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1895
|
+
};
|
|
1896
|
+
const userEventPayloadProjectRoleEnum = {
|
|
1897
|
+
ADMIN: "ADMIN",
|
|
1898
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1899
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1900
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1901
|
+
};
|
|
1902
|
+
const userEventPayloadRemovedMembershipRoleEnum = {
|
|
1903
|
+
ADMIN: "ADMIN",
|
|
1904
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1905
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1906
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1907
|
+
};
|
|
1908
|
+
const userEventPayloadProjectMembershipPreviousRoleEnum = {
|
|
1909
|
+
ADMIN: "ADMIN",
|
|
1910
|
+
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
1911
|
+
PROJECT_GUEST: "PROJECT_GUEST",
|
|
1912
|
+
PROJECT_VIEWER: "PROJECT_VIEWER"
|
|
1913
|
+
};
|
|
1914
|
+
const userEventPayloadPasswordProtectionDeploymentTypeEnum = {
|
|
1915
|
+
all: "all",
|
|
1916
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1917
|
+
preview: "preview",
|
|
1918
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1919
|
+
};
|
|
1920
|
+
const userEventPayloadPasswordProtection = {
|
|
1921
|
+
all: "all",
|
|
1922
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1923
|
+
preview: "preview",
|
|
1924
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1925
|
+
};
|
|
1926
|
+
const userEventPayloadOldPasswordProtectionDeploymentTypeEnum = {
|
|
1927
|
+
all: "all",
|
|
1928
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1929
|
+
preview: "preview",
|
|
1930
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1931
|
+
};
|
|
1932
|
+
const userEventPayloadOldPasswordProtection = {
|
|
1933
|
+
all: "all",
|
|
1934
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1935
|
+
preview: "preview",
|
|
1936
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1937
|
+
};
|
|
1938
|
+
const userEventPayloadReasonCodeEnum = {
|
|
1296
1939
|
BACKOFFICE: "BACKOFFICE",
|
|
1297
1940
|
PUBLIC_API: "PUBLIC_API"
|
|
1298
1941
|
};
|
|
1299
|
-
const
|
|
1942
|
+
const userEventPayloadConsentEnum = {
|
|
1300
1943
|
granted: "granted",
|
|
1301
1944
|
refused: "refused"
|
|
1302
1945
|
};
|
|
1303
|
-
const
|
|
1946
|
+
const userEventPayloadPreviousIssuerModeEnum = {
|
|
1304
1947
|
global: "global",
|
|
1305
1948
|
team: "team"
|
|
1306
1949
|
};
|
|
1307
|
-
const
|
|
1950
|
+
const userEventPayloadNextIssuerModeEnum = {
|
|
1951
|
+
global: "global",
|
|
1952
|
+
team: "team"
|
|
1953
|
+
};
|
|
1954
|
+
const userEventPayloadSsoProtectionDeploymentTypeEnum = {
|
|
1955
|
+
all: "all",
|
|
1956
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1957
|
+
preview: "preview",
|
|
1958
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1959
|
+
};
|
|
1960
|
+
const userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1961
|
+
all: "all",
|
|
1962
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1963
|
+
preview: "preview",
|
|
1964
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1965
|
+
};
|
|
1966
|
+
const userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1967
|
+
all: "all",
|
|
1968
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1969
|
+
preview: "preview",
|
|
1970
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1971
|
+
};
|
|
1972
|
+
const userEventPayloadSsoProtection = {
|
|
1973
|
+
all: "all",
|
|
1974
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1975
|
+
preview: "preview",
|
|
1976
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1977
|
+
};
|
|
1978
|
+
const userEventPayloadOldSsoProtectionDeploymentTypeEnum = {
|
|
1979
|
+
all: "all",
|
|
1980
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1981
|
+
preview: "preview",
|
|
1982
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1983
|
+
};
|
|
1984
|
+
const userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = {
|
|
1308
1985
|
all: "all",
|
|
1309
1986
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1310
1987
|
preview: "preview",
|
|
1311
1988
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1312
1989
|
};
|
|
1313
|
-
const
|
|
1990
|
+
const userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = {
|
|
1314
1991
|
all: "all",
|
|
1315
1992
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1316
1993
|
preview: "preview",
|
|
1317
1994
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
1318
1995
|
};
|
|
1319
|
-
const
|
|
1996
|
+
const userEventPayloadOldSsoProtection = {
|
|
1997
|
+
all: "all",
|
|
1998
|
+
all_except_custom_domains: "all_except_custom_domains",
|
|
1999
|
+
preview: "preview",
|
|
2000
|
+
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews"
|
|
2001
|
+
};
|
|
2002
|
+
const userEventPayloadTrustedIpsEnum = {
|
|
1320
2003
|
all: "all",
|
|
1321
2004
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1322
2005
|
preview: "preview",
|
|
1323
2006
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1324
2007
|
production: "production"
|
|
1325
2008
|
};
|
|
1326
|
-
const
|
|
2009
|
+
const userEventPayloadOldTrustedIpsEnum = {
|
|
1327
2010
|
all: "all",
|
|
1328
2011
|
all_except_custom_domains: "all_except_custom_domains",
|
|
1329
2012
|
preview: "preview",
|
|
1330
2013
|
prod_deployment_urls_and_all_previews: "prod_deployment_urls_and_all_previews",
|
|
1331
2014
|
production: "production"
|
|
1332
2015
|
};
|
|
1333
|
-
const
|
|
2016
|
+
const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
2017
|
+
flex: "flex",
|
|
2018
|
+
legacy: "legacy",
|
|
2019
|
+
platform: "platform",
|
|
2020
|
+
plus: "plus",
|
|
2021
|
+
unbundled: "unbundled"
|
|
2022
|
+
};
|
|
2023
|
+
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2024
|
+
flex: "flex",
|
|
1334
2025
|
legacy: "legacy",
|
|
1335
2026
|
platform: "platform",
|
|
1336
2027
|
plus: "plus",
|
|
1337
2028
|
unbundled: "unbundled"
|
|
1338
2029
|
};
|
|
1339
|
-
const
|
|
2030
|
+
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2031
|
+
flex: "flex",
|
|
2032
|
+
legacy: "legacy",
|
|
2033
|
+
platform: "platform",
|
|
2034
|
+
plus: "plus",
|
|
2035
|
+
unbundled: "unbundled"
|
|
2036
|
+
};
|
|
2037
|
+
const userEventPayloadStoreTypeEnum = {
|
|
2038
|
+
blob: "blob",
|
|
2039
|
+
"edge-config": "edge-config",
|
|
2040
|
+
integration: "integration",
|
|
1340
2041
|
postgres: "postgres",
|
|
1341
2042
|
redis: "redis"
|
|
1342
2043
|
};
|
|
1343
|
-
const
|
|
2044
|
+
const userEventPayloadAccessEnum = {
|
|
1344
2045
|
private: "private",
|
|
1345
2046
|
public: "public"
|
|
1346
2047
|
};
|
|
1347
|
-
const
|
|
2048
|
+
const userEventPayloadActorTypeEnum = {
|
|
2049
|
+
admin: "admin",
|
|
2050
|
+
user: "user"
|
|
2051
|
+
};
|
|
2052
|
+
const userEventPayloadPreviousScopeEnum = {
|
|
2053
|
+
all: "all",
|
|
2054
|
+
private: "private",
|
|
2055
|
+
public: "public",
|
|
2056
|
+
selected_repos: "selected_repos"
|
|
2057
|
+
};
|
|
2058
|
+
const userEventPayloadNextScopeEnum = {
|
|
2059
|
+
all: "all",
|
|
2060
|
+
private: "private",
|
|
2061
|
+
public: "public",
|
|
2062
|
+
selected_repos: "selected_repos"
|
|
2063
|
+
};
|
|
2064
|
+
const userEventPayloadPreviousEnum = {
|
|
1348
2065
|
basic: "basic",
|
|
1349
2066
|
elastic: "elastic",
|
|
1350
2067
|
enhanced: "enhanced",
|
|
1351
2068
|
standard: "standard",
|
|
1352
2069
|
turbo: "turbo"
|
|
1353
2070
|
};
|
|
1354
|
-
const
|
|
2071
|
+
const userEventPayloadNextEnum = {
|
|
1355
2072
|
basic: "basic",
|
|
1356
2073
|
elastic: "elastic",
|
|
1357
2074
|
enhanced: "enhanced",
|
|
1358
2075
|
standard: "standard",
|
|
1359
2076
|
turbo: "turbo"
|
|
1360
2077
|
};
|
|
1361
|
-
const
|
|
2078
|
+
const userEventPayloadReasonEnum = {
|
|
2079
|
+
"basic-floor": "basic-floor",
|
|
2080
|
+
"build-timeout-failure": "build-timeout-failure",
|
|
2081
|
+
"enospc-failure": "enospc-failure",
|
|
2082
|
+
"enterprise-floor": "enterprise-floor",
|
|
2083
|
+
"high-peak-disk": "high-peak-disk",
|
|
2084
|
+
"high-peak-memory": "high-peak-memory",
|
|
2085
|
+
"long-build-duration": "long-build-duration",
|
|
2086
|
+
"oom-failure": "oom-failure",
|
|
2087
|
+
"plan-change": "plan-change",
|
|
2088
|
+
"short-build-duration": "short-build-duration",
|
|
2089
|
+
"sustained-high-cpu": "sustained-high-cpu"
|
|
2090
|
+
};
|
|
2091
|
+
const userEventPayloadEnvironmentEnum = {
|
|
1362
2092
|
preview: "preview",
|
|
1363
2093
|
production: "production"
|
|
1364
2094
|
};
|
|
1365
|
-
const
|
|
2095
|
+
const userEventPayloadEnabledEnum = {
|
|
1366
2096
|
default: "default",
|
|
1367
2097
|
off: "off",
|
|
1368
2098
|
on: "on"
|
|
1369
2099
|
};
|
|
1370
|
-
const
|
|
2100
|
+
const userEventPayloadRoleEnum = {
|
|
2101
|
+
BILLING: "BILLING",
|
|
2102
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2103
|
+
DEVELOPER: "DEVELOPER",
|
|
2104
|
+
MEMBER: "MEMBER",
|
|
2105
|
+
OWNER: "OWNER",
|
|
2106
|
+
SECURITY: "SECURITY",
|
|
2107
|
+
VIEWER: "VIEWER",
|
|
2108
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2109
|
+
};
|
|
2110
|
+
const userEventPayloadPreviousPlanEnum = {
|
|
1371
2111
|
enterprise: "enterprise",
|
|
1372
2112
|
hobby: "hobby",
|
|
1373
2113
|
pro: "pro"
|
|
1374
2114
|
};
|
|
1375
|
-
const
|
|
2115
|
+
const userEventPayloadNewPlanEnum = {
|
|
1376
2116
|
enterprise: "enterprise",
|
|
1377
2117
|
hobby: "hobby",
|
|
1378
2118
|
pro: "pro"
|
|
1379
2119
|
};
|
|
1380
|
-
const
|
|
2120
|
+
const userEventPayloadSourceEnum = {
|
|
1381
2121
|
"account-update": "account-update",
|
|
1382
2122
|
bitbucket: "bitbucket",
|
|
1383
2123
|
dsync: "dsync",
|
|
@@ -1398,39 +2138,145 @@ const sourceEnum = {
|
|
|
1398
2138
|
saml: "saml",
|
|
1399
2139
|
teams: "teams"
|
|
1400
2140
|
};
|
|
1401
|
-
const
|
|
2141
|
+
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2142
|
+
BILLING: "BILLING",
|
|
2143
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2144
|
+
DEVELOPER: "DEVELOPER",
|
|
2145
|
+
MEMBER: "MEMBER",
|
|
2146
|
+
OWNER: "OWNER",
|
|
2147
|
+
SECURITY: "SECURITY",
|
|
2148
|
+
VIEWER: "VIEWER",
|
|
2149
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2150
|
+
};
|
|
2151
|
+
const userEventPayloadTeamRolesEnum = {
|
|
2152
|
+
BILLING: "BILLING",
|
|
2153
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
2154
|
+
DEVELOPER: "DEVELOPER",
|
|
2155
|
+
MEMBER: "MEMBER",
|
|
2156
|
+
OWNER: "OWNER",
|
|
2157
|
+
SECURITY: "SECURITY",
|
|
2158
|
+
VIEWER: "VIEWER",
|
|
2159
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
2160
|
+
};
|
|
2161
|
+
const userEventPayloadPreviousTeamPermissionsEnum = {
|
|
2162
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2163
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2164
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2165
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2166
|
+
ConnectorManager: "ConnectorManager",
|
|
2167
|
+
CreateProject: "CreateProject",
|
|
2168
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2169
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2170
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2171
|
+
IntegrationManager: "IntegrationManager",
|
|
2172
|
+
OrgAdmin: "OrgAdmin",
|
|
2173
|
+
OrgViewer: "OrgViewer",
|
|
2174
|
+
UsageViewer: "UsageViewer",
|
|
2175
|
+
V0Builder: "V0Builder",
|
|
2176
|
+
V0Chatter: "V0Chatter",
|
|
2177
|
+
V0Viewer: "V0Viewer",
|
|
2178
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2179
|
+
};
|
|
2180
|
+
const userEventPayloadTeamPermissionsEnum = {
|
|
2181
|
+
AiGatewayApiKeyOwnedBySelf: "AiGatewayApiKeyOwnedBySelf",
|
|
2182
|
+
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2183
|
+
AiGatewayCredits: "AiGatewayCredits",
|
|
2184
|
+
AiGatewaySettings: "AiGatewaySettings",
|
|
2185
|
+
ConnectorManager: "ConnectorManager",
|
|
2186
|
+
CreateProject: "CreateProject",
|
|
2187
|
+
EnvVariableManager: "EnvVariableManager",
|
|
2188
|
+
EnvironmentManager: "EnvironmentManager",
|
|
2189
|
+
FullProductionDeployment: "FullProductionDeployment",
|
|
2190
|
+
IntegrationManager: "IntegrationManager",
|
|
2191
|
+
OrgAdmin: "OrgAdmin",
|
|
2192
|
+
OrgViewer: "OrgViewer",
|
|
2193
|
+
UsageViewer: "UsageViewer",
|
|
2194
|
+
V0Builder: "V0Builder",
|
|
2195
|
+
V0Chatter: "V0Chatter",
|
|
2196
|
+
V0Viewer: "V0Viewer",
|
|
2197
|
+
WorkflowDecryptor: "WorkflowDecryptor"
|
|
2198
|
+
};
|
|
2199
|
+
const userEventPayloadPlanEnum = {
|
|
2200
|
+
enterprise: "enterprise",
|
|
2201
|
+
hobby: "hobby",
|
|
2202
|
+
pro: "pro"
|
|
2203
|
+
};
|
|
2204
|
+
const userEventPayloadDecisionEnum = {
|
|
1402
2205
|
keep_on: "keep_on",
|
|
1403
2206
|
turn_off: "turn_off"
|
|
1404
2207
|
};
|
|
1405
|
-
const
|
|
2208
|
+
const userEventPayloadScopeEnum = {
|
|
2209
|
+
project: "project",
|
|
2210
|
+
team: "team",
|
|
2211
|
+
user: "user"
|
|
2212
|
+
};
|
|
2213
|
+
const userEventPayloadSamplingEnvEnum = {
|
|
1406
2214
|
preview: "preview",
|
|
1407
2215
|
production: "production"
|
|
1408
2216
|
};
|
|
1409
|
-
const
|
|
2217
|
+
const userEventPayloadMethodEnum = {
|
|
2218
|
+
passkey: "passkey",
|
|
2219
|
+
self_serve_recovery: "self_serve_recovery",
|
|
2220
|
+
totp: "totp",
|
|
2221
|
+
user_disabled: "user_disabled"
|
|
2222
|
+
};
|
|
2223
|
+
const userEventPayloadAllowedMethodsEnum = {
|
|
2224
|
+
"recovery-code": "recovery-code",
|
|
2225
|
+
totp: "totp",
|
|
2226
|
+
webauthn: "webauthn"
|
|
2227
|
+
};
|
|
2228
|
+
const userEventPayloadContextEnum = {
|
|
1410
2229
|
login: "login",
|
|
1411
2230
|
sudo: "sudo"
|
|
1412
2231
|
};
|
|
1413
|
-
const
|
|
2232
|
+
const userEventPayloadDecisionBasisEnum = {
|
|
1414
2233
|
gmail: "gmail",
|
|
1415
2234
|
none: "none",
|
|
1416
2235
|
"workspace-mx": "workspace-mx"
|
|
1417
2236
|
};
|
|
1418
|
-
const
|
|
2237
|
+
const userEventPayloadDecisionMxOutcomeEnum = {
|
|
1419
2238
|
google: "google",
|
|
1420
2239
|
"lookup-error": "lookup-error",
|
|
1421
2240
|
"non-google": "non-google",
|
|
1422
2241
|
"not-checked": "not-checked"
|
|
1423
2242
|
};
|
|
1424
|
-
const
|
|
2243
|
+
const userEventPayloadTierEnum = {
|
|
1425
2244
|
plus: "plus",
|
|
1426
2245
|
pro: "pro"
|
|
1427
2246
|
};
|
|
1428
|
-
const
|
|
1429
|
-
authorization_code: "authorization_code",
|
|
1430
|
-
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
1431
|
-
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2247
|
+
const userEventPayloadGrantTypeEnum = {
|
|
2248
|
+
authorization_code: "authorization_code",
|
|
2249
|
+
"urn:ietf:params:oauth:grant-type:device_code": "urn:ietf:params:oauth:grant-type:device_code",
|
|
2250
|
+
"urn:ietf:params:oauth:grant-type:token-exchange": "urn:ietf:params:oauth:grant-type:token-exchange"
|
|
2251
|
+
};
|
|
2252
|
+
const userEventPayloadAuthMethodEnum = {
|
|
2253
|
+
app: "app",
|
|
2254
|
+
apple: "apple",
|
|
2255
|
+
bitbucket: "bitbucket",
|
|
2256
|
+
chatgpt: "chatgpt",
|
|
2257
|
+
email: "email",
|
|
2258
|
+
emu: "emu",
|
|
2259
|
+
github: "github",
|
|
2260
|
+
"github-webhook": "github-webhook",
|
|
2261
|
+
gitlab: "gitlab",
|
|
2262
|
+
google: "google",
|
|
2263
|
+
invite: "invite",
|
|
2264
|
+
manual: "manual",
|
|
2265
|
+
otp: "otp",
|
|
2266
|
+
passkey: "passkey",
|
|
2267
|
+
saml: "saml",
|
|
2268
|
+
sms: "sms",
|
|
2269
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
2270
|
+
};
|
|
2271
|
+
const userEventPayloadAppClientAuthenticationUsedMethodEnum = {
|
|
2272
|
+
client_secret_basic: "client_secret_basic",
|
|
2273
|
+
client_secret_jwt: "client_secret_jwt",
|
|
2274
|
+
client_secret_post: "client_secret_post",
|
|
2275
|
+
none: "none",
|
|
2276
|
+
oidc_token: "oidc_token",
|
|
2277
|
+
private_key_jwt: "private_key_jwt"
|
|
1432
2278
|
};
|
|
1433
|
-
const
|
|
2279
|
+
const userEventPayloadOriginEnum = {
|
|
1434
2280
|
app: "app",
|
|
1435
2281
|
apple: "apple",
|
|
1436
2282
|
bitbucket: "bitbucket",
|
|
@@ -1449,13 +2295,7 @@ const authMethodEnum = {
|
|
|
1449
2295
|
sms: "sms",
|
|
1450
2296
|
"token-exchange-oidc": "token-exchange-oidc"
|
|
1451
2297
|
};
|
|
1452
|
-
const
|
|
1453
|
-
vcp_: "vcp_"
|
|
1454
|
-
};
|
|
1455
|
-
const refreshTokenPrefixEnum = {
|
|
1456
|
-
vcr_: "vcr_"
|
|
1457
|
-
};
|
|
1458
|
-
const projectScopeEnum = {
|
|
2298
|
+
const userEventPayloadProjectScopeEnum = {
|
|
1459
2299
|
account: "account",
|
|
1460
2300
|
"project-only": "project-only"
|
|
1461
2301
|
};
|
|
@@ -1487,10 +2327,12 @@ const listEventTypeNameEnum = {
|
|
|
1487
2327
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
1488
2328
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
1489
2329
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
2330
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
1490
2331
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
1491
2332
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
1492
2333
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
1493
2334
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2335
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
1494
2336
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
1495
2337
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
1496
2338
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -1624,6 +2466,7 @@ const listEventTypeNameEnum = {
|
|
|
1624
2466
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
1625
2467
|
"domain-delegated": "domain-delegated",
|
|
1626
2468
|
"domain-delete": "domain-delete",
|
|
2469
|
+
"domain-ech-change": "domain-ech-change",
|
|
1627
2470
|
"domain-move-in": "domain-move-in",
|
|
1628
2471
|
"domain-move-out": "domain-move-out",
|
|
1629
2472
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -1677,6 +2520,10 @@ const listEventTypeNameEnum = {
|
|
|
1677
2520
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
1678
2521
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
1679
2522
|
"env-variable-rotated": "env-variable-rotated",
|
|
2523
|
+
"experiment-created": "experiment-created",
|
|
2524
|
+
"experiment-deleted": "experiment-deleted",
|
|
2525
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
2526
|
+
"experiment-updated": "experiment-updated",
|
|
1680
2527
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
1681
2528
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
1682
2529
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -1700,7 +2547,19 @@ const listEventTypeNameEnum = {
|
|
|
1700
2547
|
"flags-transferred": "flags-transferred",
|
|
1701
2548
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
1702
2549
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2550
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
2551
|
+
"global-config-created": "global-config-created",
|
|
2552
|
+
"global-config-deleted": "global-config-deleted",
|
|
2553
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
2554
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
2555
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
2556
|
+
"global-config-token-created": "global-config-token-created",
|
|
2557
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
2558
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
2559
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
2560
|
+
"global-config-updated": "global-config-updated",
|
|
1703
2561
|
"instant-rollback-created": "instant-rollback-created",
|
|
2562
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
1704
2563
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
1705
2564
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
1706
2565
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -1904,6 +2763,7 @@ const listEventTypeNameEnum = {
|
|
|
1904
2763
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
1905
2764
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
1906
2765
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
2766
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
1907
2767
|
"project-sso-protection": "project-sso-protection",
|
|
1908
2768
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
1909
2769
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2027,6 +2887,8 @@ const listEventTypeNameEnum = {
|
|
|
2027
2887
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2028
2888
|
"tracing-configured": "tracing-configured",
|
|
2029
2889
|
"tracing-disabled": "tracing-disabled",
|
|
2890
|
+
"tracing-paused": "tracing-paused",
|
|
2891
|
+
"tracing-resumed": "tracing-resumed",
|
|
2030
2892
|
"unlink-login-connection": "unlink-login-connection",
|
|
2031
2893
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2032
2894
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2037,6 +2899,8 @@ const listEventTypeNameEnum = {
|
|
|
2037
2899
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2038
2900
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2039
2901
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2902
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
2903
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2040
2904
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2041
2905
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2042
2906
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2147,10 +3011,12 @@ const listEventTypeReplacedByEnum = {
|
|
|
2147
3011
|
"ai-gateway-api-key-created": "ai-gateway-api-key-created",
|
|
2148
3012
|
"ai-gateway-api-key-deleted": "ai-gateway-api-key-deleted",
|
|
2149
3013
|
"ai-gateway-api-key-quota-updated": "ai-gateway-api-key-quota-updated",
|
|
3014
|
+
"ai-gateway-auto-reload-updated": "ai-gateway-auto-reload-updated",
|
|
2150
3015
|
"ai-gateway-budget-default-updated": "ai-gateway-budget-default-updated",
|
|
2151
3016
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
2152
3017
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
2153
3018
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
3019
|
+
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2154
3020
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2155
3021
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2156
3022
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -2284,6 +3150,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2284
3150
|
"domain-custom-ns-change": "domain-custom-ns-change",
|
|
2285
3151
|
"domain-delegated": "domain-delegated",
|
|
2286
3152
|
"domain-delete": "domain-delete",
|
|
3153
|
+
"domain-ech-change": "domain-ech-change",
|
|
2287
3154
|
"domain-move-in": "domain-move-in",
|
|
2288
3155
|
"domain-move-out": "domain-move-out",
|
|
2289
3156
|
"domain-move-out-request-sent": "domain-move-out-request-sent",
|
|
@@ -2337,6 +3204,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
2337
3204
|
"env-variable-read:unknown-source": "env-variable-read:unknown-source",
|
|
2338
3205
|
"env-variable-read:v0:env:pull": "env-variable-read:v0:env:pull",
|
|
2339
3206
|
"env-variable-rotated": "env-variable-rotated",
|
|
3207
|
+
"experiment-created": "experiment-created",
|
|
3208
|
+
"experiment-deleted": "experiment-deleted",
|
|
3209
|
+
"experiment-transitioned": "experiment-transitioned",
|
|
3210
|
+
"experiment-updated": "experiment-updated",
|
|
2340
3211
|
"firewall-bypass-created": "firewall-bypass-created",
|
|
2341
3212
|
"firewall-bypass-deleted": "firewall-bypass-deleted",
|
|
2342
3213
|
"firewall-config-modified": "firewall-config-modified",
|
|
@@ -2360,7 +3231,19 @@ const listEventTypeReplacedByEnum = {
|
|
|
2360
3231
|
"flags-transferred": "flags-transferred",
|
|
2361
3232
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2362
3233
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3234
|
+
"global-config-backup-restored": "global-config-backup-restored",
|
|
3235
|
+
"global-config-created": "global-config-created",
|
|
3236
|
+
"global-config-deleted": "global-config-deleted",
|
|
3237
|
+
"global-config-items-updated": "global-config-items-updated",
|
|
3238
|
+
"global-config-schema-deleted": "global-config-schema-deleted",
|
|
3239
|
+
"global-config-schema-updated": "global-config-schema-updated",
|
|
3240
|
+
"global-config-token-created": "global-config-token-created",
|
|
3241
|
+
"global-config-token-deleted": "global-config-token-deleted",
|
|
3242
|
+
"global-config-transfer-in": "global-config-transfer-in",
|
|
3243
|
+
"global-config-transfer-out": "global-config-transfer-out",
|
|
3244
|
+
"global-config-updated": "global-config-updated",
|
|
2363
3245
|
"instant-rollback-created": "instant-rollback-created",
|
|
3246
|
+
"integration-configuration-credential-revoked": "integration-configuration-credential-revoked",
|
|
2364
3247
|
"integration-configuration-credential-rotated": "integration-configuration-credential-rotated",
|
|
2365
3248
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
2366
3249
|
"integration-configuration-scope-change-confirmed": "integration-configuration-scope-change-confirmed",
|
|
@@ -2564,6 +3447,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2564
3447
|
"project-source-files-outside-root-directory-updated": "project-source-files-outside-root-directory-updated",
|
|
2565
3448
|
"project-speed-insights-disabled": "project-speed-insights-disabled",
|
|
2566
3449
|
"project-speed-insights-enabled": "project-speed-insights-enabled",
|
|
3450
|
+
"project-speed-insights-free-data-started": "project-speed-insights-free-data-started",
|
|
2567
3451
|
"project-sso-protection": "project-sso-protection",
|
|
2568
3452
|
"project-static-ips-updated": "project-static-ips-updated",
|
|
2569
3453
|
"project-trusted-ips": "project-trusted-ips",
|
|
@@ -2687,6 +3571,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2687
3571
|
"team-tokens-invalidated": "team-tokens-invalidated",
|
|
2688
3572
|
"tracing-configured": "tracing-configured",
|
|
2689
3573
|
"tracing-disabled": "tracing-disabled",
|
|
3574
|
+
"tracing-paused": "tracing-paused",
|
|
3575
|
+
"tracing-resumed": "tracing-resumed",
|
|
2690
3576
|
"unlink-login-connection": "unlink-login-connection",
|
|
2691
3577
|
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2692
3578
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
@@ -2697,6 +3583,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2697
3583
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2698
3584
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2699
3585
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
3586
|
+
"user-emu-account-update-opted-in": "user-emu-account-update-opted-in",
|
|
3587
|
+
"user-emu-account-update-opted-out": "user-emu-account-update-opted-out",
|
|
2700
3588
|
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2701
3589
|
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2702
3590
|
"user-emu-toggled": "user-emu-toggled",
|
|
@@ -2754,40 +3642,34 @@ const listEventTypeReplacedByEnum = {
|
|
|
2754
3642
|
"webhook-updated": "webhook-updated",
|
|
2755
3643
|
"workflow-deployment-key-accessed": "workflow-deployment-key-accessed"
|
|
2756
3644
|
};
|
|
2757
|
-
const
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
const flagExperimentAllocationUnitEnum = {
|
|
2782
|
-
cookieId: "cookieId",
|
|
2783
|
-
userId: "userId",
|
|
2784
|
-
visitorId: "visitorId"
|
|
3645
|
+
const listEventTypesResponseCategoriesNameEnum = {
|
|
3646
|
+
account: "account",
|
|
3647
|
+
ai: "ai",
|
|
3648
|
+
"ai-gateway": "ai-gateway",
|
|
3649
|
+
billing: "billing",
|
|
3650
|
+
connect: "connect",
|
|
3651
|
+
deployment: "deployment",
|
|
3652
|
+
domain: "domain",
|
|
3653
|
+
edge: "edge",
|
|
3654
|
+
"env-variable": "env-variable",
|
|
3655
|
+
"feature-flags": "feature-flags",
|
|
3656
|
+
firewall: "firewall",
|
|
3657
|
+
integration: "integration",
|
|
3658
|
+
microfrontends: "microfrontends",
|
|
3659
|
+
network: "network",
|
|
3660
|
+
observability: "observability",
|
|
3661
|
+
other: "other",
|
|
3662
|
+
project: "project",
|
|
3663
|
+
security: "security",
|
|
3664
|
+
storage: "storage",
|
|
3665
|
+
team: "team",
|
|
3666
|
+
v0: "v0",
|
|
3667
|
+
"vercel-app": "vercel-app",
|
|
3668
|
+
workflow: "workflow"
|
|
2785
3669
|
};
|
|
2786
|
-
const
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
paused: "paused",
|
|
2790
|
-
running: "running"
|
|
3670
|
+
const typeEnum = {
|
|
3671
|
+
list: "list",
|
|
3672
|
+
"list/inline": "list/inline"
|
|
2791
3673
|
};
|
|
2792
3674
|
const cmpEnum = {
|
|
2793
3675
|
after: "after",
|
|
@@ -2817,12 +3699,6 @@ const flagStateEnum = {
|
|
|
2817
3699
|
active: "active",
|
|
2818
3700
|
archived: "archived"
|
|
2819
3701
|
};
|
|
2820
|
-
const flagTypeNameEnum = {
|
|
2821
|
-
flag: "flag"
|
|
2822
|
-
};
|
|
2823
|
-
const marketplaceFlagTypeNameEnum = {
|
|
2824
|
-
marketplaceFlag: "marketplaceFlag"
|
|
2825
|
-
};
|
|
2826
3702
|
const marketplaceFlagStateEnum = {
|
|
2827
3703
|
active: "active",
|
|
2828
3704
|
archived: "archived"
|
|
@@ -2831,8 +3707,31 @@ const marketplaceFlagCategoryEnum = {
|
|
|
2831
3707
|
experiment: "experiment",
|
|
2832
3708
|
flag: "flag"
|
|
2833
3709
|
};
|
|
2834
|
-
const
|
|
2835
|
-
|
|
3710
|
+
const segmentDataRulesConditionsRhsTypeEnum = {
|
|
3711
|
+
list: "list",
|
|
3712
|
+
"list/inline": "list/inline"
|
|
3713
|
+
};
|
|
3714
|
+
const segmentDataRulesConditionsRhs = {
|
|
3715
|
+
false: false,
|
|
3716
|
+
true: true
|
|
3717
|
+
};
|
|
3718
|
+
const segmentDataRulesConditionsCmpEnum = {
|
|
3719
|
+
after: "after",
|
|
3720
|
+
before: "before",
|
|
3721
|
+
contains: "contains",
|
|
3722
|
+
containsAllOf: "containsAllOf",
|
|
3723
|
+
containsAnyOf: "containsAnyOf",
|
|
3724
|
+
containsNoneOf: "containsNoneOf",
|
|
3725
|
+
endsWith: "endsWith",
|
|
3726
|
+
eq: "eq",
|
|
3727
|
+
ex: "ex",
|
|
3728
|
+
gt: "gt",
|
|
3729
|
+
gte: "gte",
|
|
3730
|
+
lt: "lt",
|
|
3731
|
+
lte: "lte",
|
|
3732
|
+
oneOf: "oneOf",
|
|
3733
|
+
regex: "regex",
|
|
3734
|
+
startsWith: "startsWith"
|
|
2836
3735
|
};
|
|
2837
3736
|
const flagsSdkKeyWithSecretsTypeEnum = {
|
|
2838
3737
|
client: "client",
|
|
@@ -2851,6 +3750,27 @@ const namedSandboxStatusEnum = {
|
|
|
2851
3750
|
stopped: "stopped",
|
|
2852
3751
|
stopping: "stopping"
|
|
2853
3752
|
};
|
|
3753
|
+
const namedSandboxFailoverRegionsEnum = {
|
|
3754
|
+
arn1: "arn1",
|
|
3755
|
+
bom1: "bom1",
|
|
3756
|
+
cdg1: "cdg1",
|
|
3757
|
+
cle1: "cle1",
|
|
3758
|
+
cpt1: "cpt1",
|
|
3759
|
+
dub1: "dub1",
|
|
3760
|
+
fra1: "fra1",
|
|
3761
|
+
gru1: "gru1",
|
|
3762
|
+
hkg1: "hkg1",
|
|
3763
|
+
hnd1: "hnd1",
|
|
3764
|
+
iad1: "iad1",
|
|
3765
|
+
icn1: "icn1",
|
|
3766
|
+
kix1: "kix1",
|
|
3767
|
+
lhr1: "lhr1",
|
|
3768
|
+
pdx1: "pdx1",
|
|
3769
|
+
sfo1: "sfo1",
|
|
3770
|
+
sin1: "sin1",
|
|
3771
|
+
syd1: "syd1",
|
|
3772
|
+
yul1: "yul1"
|
|
3773
|
+
};
|
|
2854
3774
|
const namedSandboxNetworkPolicyModeEnum = {
|
|
2855
3775
|
"allow-all": "allow-all",
|
|
2856
3776
|
custom: "custom",
|
|
@@ -2978,6 +3898,10 @@ const teamResourceConfigBuildMachineDefaultEnum = {
|
|
|
2978
3898
|
standard: "standard",
|
|
2979
3899
|
turbo: "turbo"
|
|
2980
3900
|
};
|
|
3901
|
+
const teamDisableHardAutoBlocks = {
|
|
3902
|
+
false: false,
|
|
3903
|
+
true: true
|
|
3904
|
+
};
|
|
2981
3905
|
const teamDefaultPassportDeploymentTypeEnum = {
|
|
2982
3906
|
all: "all",
|
|
2983
3907
|
all_except_custom_domains: "all_except_custom_domains",
|
|
@@ -3020,7 +3944,23 @@ const teamNsnbConfigPreferenceEnum = {
|
|
|
3020
3944
|
block: "block",
|
|
3021
3945
|
"manual-approval": "manual-approval"
|
|
3022
3946
|
};
|
|
3023
|
-
const
|
|
3947
|
+
const teamDeploymentPolicyGitSourcesSourcesProviderEnum = {
|
|
3948
|
+
bitbucket: "bitbucket",
|
|
3949
|
+
github: "github"
|
|
3950
|
+
};
|
|
3951
|
+
const teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = {
|
|
3952
|
+
preview: "preview",
|
|
3953
|
+
production: "production"
|
|
3954
|
+
};
|
|
3955
|
+
const teamDeploymentPolicyDeploymentSourcesSourcesEnum = {
|
|
3956
|
+
cli: "cli",
|
|
3957
|
+
"deploy-hook": "deploy-hook",
|
|
3958
|
+
git: "git",
|
|
3959
|
+
integration: "integration",
|
|
3960
|
+
"rest-api": "rest-api",
|
|
3961
|
+
v0: "v0"
|
|
3962
|
+
};
|
|
3963
|
+
const teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = {
|
|
3024
3964
|
preview: "preview",
|
|
3025
3965
|
production: "production"
|
|
3026
3966
|
};
|
|
@@ -3157,6 +4097,32 @@ const teamLimitedMembershipJoinedFromOriginEnum = {
|
|
|
3157
4097
|
saml: "saml",
|
|
3158
4098
|
teams: "teams"
|
|
3159
4099
|
};
|
|
4100
|
+
const authTokenScopesSudoOriginEnum = {
|
|
4101
|
+
"email-otp": "email-otp",
|
|
4102
|
+
otp: "otp",
|
|
4103
|
+
"recovery-code": "recovery-code",
|
|
4104
|
+
totp: "totp",
|
|
4105
|
+
webauthn: "webauthn"
|
|
4106
|
+
};
|
|
4107
|
+
const authTokenScopesOriginEnum = {
|
|
4108
|
+
app: "app",
|
|
4109
|
+
apple: "apple",
|
|
4110
|
+
bitbucket: "bitbucket",
|
|
4111
|
+
chatgpt: "chatgpt",
|
|
4112
|
+
email: "email",
|
|
4113
|
+
emu: "emu",
|
|
4114
|
+
github: "github",
|
|
4115
|
+
"github-webhook": "github-webhook",
|
|
4116
|
+
gitlab: "gitlab",
|
|
4117
|
+
google: "google",
|
|
4118
|
+
invite: "invite",
|
|
4119
|
+
manual: "manual",
|
|
4120
|
+
otp: "otp",
|
|
4121
|
+
passkey: "passkey",
|
|
4122
|
+
saml: "saml",
|
|
4123
|
+
sms: "sms",
|
|
4124
|
+
"token-exchange-oidc": "token-exchange-oidc"
|
|
4125
|
+
};
|
|
3160
4126
|
const authUserSoftBlockReasonEnum = {
|
|
3161
4127
|
BLOCKED_FOR_PLATFORM_ABUSE: "BLOCKED_FOR_PLATFORM_ABUSE",
|
|
3162
4128
|
DOMAIN_OWNER_DELETION_REQUEST: "DOMAIN_OWNER_DELETION_REQUEST",
|
|
@@ -3210,10 +4176,63 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
3210
4176
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
3211
4177
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
3212
4178
|
};
|
|
4179
|
+
const authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
4180
|
+
analyticsUsage: "analyticsUsage",
|
|
4181
|
+
artifacts: "artifacts",
|
|
4182
|
+
bandwidth: "bandwidth",
|
|
4183
|
+
blobDataTransfer: "blobDataTransfer",
|
|
4184
|
+
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
4185
|
+
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
4186
|
+
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
4187
|
+
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
4188
|
+
connectDataTransfer: "connectDataTransfer",
|
|
4189
|
+
dataCacheRead: "dataCacheRead",
|
|
4190
|
+
dataCacheWrite: "dataCacheWrite",
|
|
4191
|
+
edgeConfigRead: "edgeConfigRead",
|
|
4192
|
+
edgeConfigWrite: "edgeConfigWrite",
|
|
4193
|
+
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
4194
|
+
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
4195
|
+
edgeRequest: "edgeRequest",
|
|
4196
|
+
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
4197
|
+
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
4198
|
+
fastDataTransfer: "fastDataTransfer",
|
|
4199
|
+
fastOriginTransfer: "fastOriginTransfer",
|
|
4200
|
+
fluidCpuDuration: "fluidCpuDuration",
|
|
4201
|
+
fluidDuration: "fluidDuration",
|
|
4202
|
+
functionDuration: "functionDuration",
|
|
4203
|
+
functionInvocation: "functionInvocation",
|
|
4204
|
+
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
4205
|
+
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
4206
|
+
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
4207
|
+
logDrainsVolume: "logDrainsVolume",
|
|
4208
|
+
monitoringMetric: "monitoringMetric",
|
|
4209
|
+
observabilityEvent: "observabilityEvent",
|
|
4210
|
+
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
4211
|
+
runtimeCacheRead: "runtimeCacheRead",
|
|
4212
|
+
runtimeCacheWrite: "runtimeCacheWrite",
|
|
4213
|
+
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
4214
|
+
sourceImages: "sourceImages",
|
|
4215
|
+
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
4216
|
+
wafOwaspRequests: "wafOwaspRequests",
|
|
4217
|
+
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4218
|
+
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4219
|
+
};
|
|
3213
4220
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
3214
4221
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
3215
4222
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
3216
4223
|
};
|
|
4224
|
+
const authUserActiveDashboardViewsViewPreferenceEnum = {
|
|
4225
|
+
cards: "cards",
|
|
4226
|
+
list: "list"
|
|
4227
|
+
};
|
|
4228
|
+
const authUserActiveDashboardViewsFavoritesViewPreferenceEnum = {
|
|
4229
|
+
closed: "closed",
|
|
4230
|
+
open: "open"
|
|
4231
|
+
};
|
|
4232
|
+
const authUserActiveDashboardViewsRecentsViewPreferenceEnum = {
|
|
4233
|
+
closed: "closed",
|
|
4234
|
+
open: "open"
|
|
4235
|
+
};
|
|
3217
4236
|
const authUserImportFlowGitProviderEnum = {
|
|
3218
4237
|
bitbucket: "bitbucket",
|
|
3219
4238
|
"cursor-origin": "cursor-origin",
|
|
@@ -3223,16 +4242,21 @@ const authUserImportFlowGitProviderEnum = {
|
|
|
3223
4242
|
gitlab: "gitlab",
|
|
3224
4243
|
vercel: "vercel"
|
|
3225
4244
|
};
|
|
3226
|
-
const
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
4245
|
+
const authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = {
|
|
4246
|
+
admin_override: "admin_override",
|
|
4247
|
+
hard_blocked: "hard_blocked",
|
|
4248
|
+
limits_exceeded: "limits_exceeded"
|
|
3230
4249
|
};
|
|
3231
4250
|
const vcrImageListItemKindEnum = {
|
|
3232
4251
|
attestation: "attestation",
|
|
3233
4252
|
index: "index",
|
|
3234
4253
|
manifest: "manifest"
|
|
3235
4254
|
};
|
|
4255
|
+
const vcrImageListItemStatusEnum = {
|
|
4256
|
+
preparing: "preparing",
|
|
4257
|
+
ready: "ready",
|
|
4258
|
+
unoptimized: "unoptimized"
|
|
4259
|
+
};
|
|
3236
4260
|
const vcrTagKindEnum = {
|
|
3237
4261
|
attestation: "attestation",
|
|
3238
4262
|
index: "index",
|
|
@@ -3243,7 +4267,7 @@ const vcrTagStatusEnum = {
|
|
|
3243
4267
|
ready: "ready",
|
|
3244
4268
|
unoptimized: "unoptimized"
|
|
3245
4269
|
};
|
|
3246
|
-
const
|
|
4270
|
+
const vcrImageLayerOperationEnum = {
|
|
3247
4271
|
ADD: "ADD",
|
|
3248
4272
|
ARG: "ARG",
|
|
3249
4273
|
CMD: "CMD",
|
|
@@ -3263,16 +4287,33 @@ const operationEnum = {
|
|
|
3263
4287
|
VOLUME: "VOLUME",
|
|
3264
4288
|
WORKDIR: "WORKDIR"
|
|
3265
4289
|
};
|
|
3266
|
-
const
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
4290
|
+
const vcrImageLayerTypeEnum = {
|
|
4291
|
+
ADD: "ADD",
|
|
4292
|
+
ARG: "ARG",
|
|
4293
|
+
CMD: "CMD",
|
|
4294
|
+
COPY: "COPY",
|
|
4295
|
+
ENTRYPOINT: "ENTRYPOINT",
|
|
4296
|
+
EXPOSE: "EXPOSE",
|
|
4297
|
+
HEALTHCHECK: "HEALTHCHECK",
|
|
4298
|
+
LABEL: "LABEL",
|
|
4299
|
+
ONBUILD: "ONBUILD",
|
|
4300
|
+
SHELL: "SHELL",
|
|
4301
|
+
STOPSIGNAL: "STOPSIGNAL",
|
|
4302
|
+
UNKNOWN: "UNKNOWN",
|
|
4303
|
+
USER: "USER",
|
|
4304
|
+
VOLUME: "VOLUME",
|
|
4305
|
+
WORKDIR: "WORKDIR"
|
|
3270
4306
|
};
|
|
3271
4307
|
const vcrImageDetailKindEnum = {
|
|
3272
4308
|
attestation: "attestation",
|
|
3273
4309
|
index: "index",
|
|
3274
4310
|
manifest: "manifest"
|
|
3275
4311
|
};
|
|
4312
|
+
const vcrImageDetailStatusEnum = {
|
|
4313
|
+
preparing: "preparing",
|
|
4314
|
+
ready: "ready",
|
|
4315
|
+
unoptimized: "unoptimized"
|
|
4316
|
+
};
|
|
3276
4317
|
const fileTreeTypeEnum = {
|
|
3277
4318
|
directory: "directory",
|
|
3278
4319
|
file: "file",
|
|
@@ -3281,177 +4322,313 @@ const fileTreeTypeEnum = {
|
|
|
3281
4322
|
middleware: "middleware",
|
|
3282
4323
|
symlink: "symlink"
|
|
3283
4324
|
};
|
|
4325
|
+
const listAiGatewayRulesIncludeDisabled = {
|
|
4326
|
+
true: "true",
|
|
4327
|
+
false: "false"
|
|
4328
|
+
};
|
|
4329
|
+
const getRedirectsSortBy = {
|
|
4330
|
+
source: "source",
|
|
4331
|
+
destination: "destination",
|
|
4332
|
+
statusCode: "statusCode"
|
|
4333
|
+
};
|
|
4334
|
+
const getRedirectsSortOrder = {
|
|
4335
|
+
asc: "asc",
|
|
4336
|
+
desc: "desc"
|
|
4337
|
+
};
|
|
4338
|
+
const listProjectChecksBlocks = {
|
|
4339
|
+
"build-start": "build-start",
|
|
4340
|
+
"deployment-start": "deployment-start",
|
|
4341
|
+
"deployment-alias": "deployment-alias",
|
|
4342
|
+
"deployment-promotion": "deployment-promotion",
|
|
4343
|
+
none: "none"
|
|
4344
|
+
};
|
|
4345
|
+
const getDeploymentEventsDirection = {
|
|
4346
|
+
backward: "backward",
|
|
4347
|
+
forward: "forward"
|
|
4348
|
+
};
|
|
4349
|
+
const getDeploymentEventsFollow = {
|
|
4350
|
+
"0": 0,
|
|
4351
|
+
"1": 1
|
|
4352
|
+
};
|
|
4353
|
+
const getDeploymentEventsDelimiter = {
|
|
4354
|
+
"0": 0,
|
|
4355
|
+
"1": 1
|
|
4356
|
+
};
|
|
4357
|
+
const getDeploymentEventsBuilds = {
|
|
4358
|
+
"0": 0,
|
|
4359
|
+
"1": 1
|
|
4360
|
+
};
|
|
4361
|
+
const getDomainConfigStrict = {
|
|
4362
|
+
true: "true",
|
|
4363
|
+
false: "false"
|
|
4364
|
+
};
|
|
4365
|
+
const listFlagsV2State = {
|
|
4366
|
+
active: "active",
|
|
4367
|
+
archived: "archived"
|
|
4368
|
+
};
|
|
4369
|
+
const listFlagsState = {
|
|
4370
|
+
active: "active",
|
|
4371
|
+
archived: "archived"
|
|
4372
|
+
};
|
|
4373
|
+
const listTeamFlagsV2State = {
|
|
4374
|
+
active: "active",
|
|
4375
|
+
archived: "archived"
|
|
4376
|
+
};
|
|
4377
|
+
const listTeamFlagsV2Kind = {
|
|
4378
|
+
boolean: "boolean",
|
|
4379
|
+
string: "string",
|
|
4380
|
+
number: "number",
|
|
4381
|
+
json: "json"
|
|
4382
|
+
};
|
|
4383
|
+
const listTeamFlagsState = {
|
|
4384
|
+
active: "active",
|
|
4385
|
+
archived: "archived"
|
|
4386
|
+
};
|
|
4387
|
+
const listTeamFlagsKind = {
|
|
4388
|
+
boolean: "boolean",
|
|
4389
|
+
string: "string",
|
|
4390
|
+
number: "number",
|
|
4391
|
+
json: "json"
|
|
4392
|
+
};
|
|
4393
|
+
const gitNamespacesProvider = {
|
|
4394
|
+
github: "github",
|
|
4395
|
+
"github-limited": "github-limited",
|
|
4396
|
+
"github-custom-host": "github-custom-host",
|
|
4397
|
+
gitlab: "gitlab",
|
|
4398
|
+
bitbucket: "bitbucket"
|
|
4399
|
+
};
|
|
4400
|
+
const searchRepoProvider = {
|
|
4401
|
+
github: "github",
|
|
4402
|
+
"github-limited": "github-limited",
|
|
4403
|
+
"github-custom-host": "github-custom-host",
|
|
4404
|
+
gitlab: "gitlab",
|
|
4405
|
+
bitbucket: "bitbucket",
|
|
4406
|
+
"cursor-origin": "cursor-origin"
|
|
4407
|
+
};
|
|
4408
|
+
const getBillingPlansSource = {
|
|
4409
|
+
marketplace: "marketplace",
|
|
4410
|
+
"deploy-button": "deploy-button",
|
|
4411
|
+
external: "external",
|
|
4412
|
+
v0: "v0",
|
|
4413
|
+
"resource-claims": "resource-claims",
|
|
4414
|
+
cli: "cli",
|
|
4415
|
+
oauth: "oauth",
|
|
4416
|
+
backoffice: "backoffice",
|
|
4417
|
+
"import-recommended-integrations": "import-recommended-integrations"
|
|
4418
|
+
};
|
|
4419
|
+
const getConfigurationsView = {
|
|
4420
|
+
account: "account",
|
|
4421
|
+
project: "project"
|
|
4422
|
+
};
|
|
4423
|
+
const getConfigurationsInstallationType = {
|
|
4424
|
+
marketplace: "marketplace",
|
|
4425
|
+
external: "external",
|
|
4426
|
+
provisioning: "provisioning"
|
|
4427
|
+
};
|
|
4428
|
+
const deleteKmsIssuerPolicyKind = {
|
|
4429
|
+
"project-grant": "project-grant",
|
|
4430
|
+
"connex-grant": "connex-grant"
|
|
4431
|
+
};
|
|
4432
|
+
const getRoutesFilter = {
|
|
4433
|
+
rewrite: "rewrite",
|
|
4434
|
+
redirect: "redirect",
|
|
4435
|
+
set_status: "set_status",
|
|
4436
|
+
transform: "transform"
|
|
4437
|
+
};
|
|
4438
|
+
const getProjectsBuildQueueConfiguration = {
|
|
4439
|
+
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4440
|
+
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
4441
|
+
};
|
|
4442
|
+
const getProjectDomainsProduction = {
|
|
4443
|
+
true: "true",
|
|
4444
|
+
false: "false"
|
|
4445
|
+
};
|
|
4446
|
+
const getProjectDomainsTarget = {
|
|
4447
|
+
production: "production",
|
|
4448
|
+
preview: "preview"
|
|
4449
|
+
};
|
|
4450
|
+
const getProjectDomainsRedirects = {
|
|
4451
|
+
true: "true",
|
|
4452
|
+
false: "false"
|
|
4453
|
+
};
|
|
4454
|
+
const getProjectDomainsVerified = {
|
|
4455
|
+
true: "true",
|
|
4456
|
+
false: "false"
|
|
4457
|
+
};
|
|
4458
|
+
const getProjectDomainsOrder = {
|
|
4459
|
+
ASC: "ASC",
|
|
4460
|
+
DESC: "DESC"
|
|
4461
|
+
};
|
|
4462
|
+
const filterProjectEnvsDecrypt = {
|
|
4463
|
+
true: "true",
|
|
4464
|
+
false: "false"
|
|
4465
|
+
};
|
|
4466
|
+
const getRollingReleaseState = {
|
|
4467
|
+
ACTIVE: "ACTIVE",
|
|
4468
|
+
COMPLETE: "COMPLETE",
|
|
4469
|
+
ABORTED: "ABORTED"
|
|
4470
|
+
};
|
|
4471
|
+
const listSandboxesSortBy = {
|
|
4472
|
+
createdAt: "createdAt",
|
|
4473
|
+
name: "name",
|
|
4474
|
+
statusUpdatedAt: "statusUpdatedAt",
|
|
4475
|
+
currentSnapshotId: "currentSnapshotId"
|
|
4476
|
+
};
|
|
4477
|
+
const listSandboxesSortOrder = {
|
|
4478
|
+
asc: "asc",
|
|
4479
|
+
desc: "desc"
|
|
4480
|
+
};
|
|
4481
|
+
const listSandboxesStatus = {
|
|
4482
|
+
running: "running",
|
|
4483
|
+
stopping: "stopping",
|
|
4484
|
+
stopped: "stopped"
|
|
4485
|
+
};
|
|
4486
|
+
const listDrivesSortBy = {
|
|
4487
|
+
createdAt: "createdAt",
|
|
4488
|
+
updatedAt: "updatedAt",
|
|
4489
|
+
name: "name"
|
|
4490
|
+
};
|
|
4491
|
+
const listDrivesSortOrder = {
|
|
4492
|
+
asc: "asc",
|
|
4493
|
+
desc: "desc"
|
|
4494
|
+
};
|
|
4495
|
+
const listSessionSnapshotsSortOrder = {
|
|
4496
|
+
asc: "asc",
|
|
4497
|
+
desc: "desc"
|
|
4498
|
+
};
|
|
4499
|
+
const listSessionsSortOrder = {
|
|
4500
|
+
asc: "asc",
|
|
4501
|
+
desc: "desc"
|
|
4502
|
+
};
|
|
4503
|
+
const getSessionCommandWait = {
|
|
4504
|
+
true: "true",
|
|
4505
|
+
false: "false"
|
|
4506
|
+
};
|
|
4507
|
+
const getTeamMembersRole = {
|
|
4508
|
+
OWNER: "OWNER",
|
|
4509
|
+
MEMBER: "MEMBER",
|
|
4510
|
+
DEVELOPER: "DEVELOPER",
|
|
4511
|
+
SECURITY: "SECURITY",
|
|
4512
|
+
BILLING: "BILLING",
|
|
4513
|
+
VIEWER: "VIEWER",
|
|
4514
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS",
|
|
4515
|
+
CONTRIBUTOR: "CONTRIBUTOR"
|
|
4516
|
+
};
|
|
4517
|
+
const listRepositoryTagsSortBy = {
|
|
4518
|
+
updatedAt: "updatedAt",
|
|
4519
|
+
tag: "tag"
|
|
4520
|
+
};
|
|
4521
|
+
const listRepositoryTagsSortOrder = {
|
|
4522
|
+
asc: "asc",
|
|
4523
|
+
desc: "desc"
|
|
4524
|
+
};
|
|
3284
4525
|
|
|
3285
|
-
exports.DNSSECEnabledCodeEnum = DNSSECEnabledCodeEnum;
|
|
3286
|
-
exports.DNSSECEnabledStatusEnum = DNSSECEnabledStatusEnum;
|
|
3287
4526
|
exports.aCLAction = aCLAction;
|
|
3288
|
-
exports.accessEnum = accessEnum;
|
|
3289
4527
|
exports.actionEnum = actionEnum;
|
|
3290
|
-
exports.actorTypeEnum = actorTypeEnum;
|
|
3291
|
-
exports.additionalContactInfoRequiredCodeEnum = additionalContactInfoRequiredCodeEnum;
|
|
3292
|
-
exports.additionalContactInfoRequiredStatusEnum = additionalContactInfoRequiredStatusEnum;
|
|
3293
4528
|
exports.aiGatewayRuleTypeEnum = aiGatewayRuleTypeEnum;
|
|
3294
|
-
exports.aiGatewayVirtualModelConfigCachingEnum = aiGatewayVirtualModelConfigCachingEnum;
|
|
3295
4529
|
exports.aiGatewayVirtualModelConfigHasEnum = aiGatewayVirtualModelConfigHasEnum;
|
|
3296
4530
|
exports.aiGatewayVirtualModelConfigInferenceRegionScopeEnum = aiGatewayVirtualModelConfigInferenceRegionScopeEnum;
|
|
3297
4531
|
exports.aiGatewayVirtualModelConfigSelectorEnum = aiGatewayVirtualModelConfigSelectorEnum;
|
|
3298
4532
|
exports.aiGatewayVirtualModelConfigServiceTierEnum = aiGatewayVirtualModelConfigServiceTierEnum;
|
|
3299
4533
|
exports.aiGatewayVirtualModelConfigSortEnum = aiGatewayVirtualModelConfigSortEnum;
|
|
3300
|
-
exports.
|
|
3301
|
-
exports.
|
|
3302
|
-
exports.
|
|
3303
|
-
exports.
|
|
3304
|
-
exports.
|
|
3305
|
-
exports.
|
|
4534
|
+
exports.authTokenScopesOriginEnum = authTokenScopesOriginEnum;
|
|
4535
|
+
exports.authTokenScopesSudoOriginEnum = authTokenScopesSudoOriginEnum;
|
|
4536
|
+
exports.authUserActiveDashboardViewsFavoritesViewPreferenceEnum = authUserActiveDashboardViewsFavoritesViewPreferenceEnum;
|
|
4537
|
+
exports.authUserActiveDashboardViewsRecentsViewPreferenceEnum = authUserActiveDashboardViewsRecentsViewPreferenceEnum;
|
|
4538
|
+
exports.authUserActiveDashboardViewsViewPreferenceEnum = authUserActiveDashboardViewsViewPreferenceEnum;
|
|
4539
|
+
exports.authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum;
|
|
3306
4540
|
exports.authUserImportFlowGitProviderEnum = authUserImportFlowGitProviderEnum;
|
|
3307
4541
|
exports.authUserResourceConfigBuildQueueConfigurationEnum = authUserResourceConfigBuildQueueConfigurationEnum;
|
|
3308
4542
|
exports.authUserSoftBlockBlockedDueToOverageTypeEnum = authUserSoftBlockBlockedDueToOverageTypeEnum;
|
|
4543
|
+
exports.authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
3309
4544
|
exports.authUserSoftBlockReasonEnum = authUserSoftBlockReasonEnum;
|
|
3310
|
-
exports.badRequestCodeEnum = badRequestCodeEnum;
|
|
3311
|
-
exports.badRequestStatusEnum = badRequestStatusEnum;
|
|
3312
|
-
exports.basisEnum = basisEnum;
|
|
3313
|
-
exports.billingPlanEnum = billingPlanEnum;
|
|
3314
|
-
exports.blockReasonEnum = blockReasonEnum;
|
|
3315
|
-
exports.blockTypeEnum = blockTypeEnum;
|
|
3316
|
-
exports.blockedDueToOverageTypeEnum = blockedDueToOverageTypeEnum;
|
|
3317
|
-
exports.boughtTooRecentlyCodeEnum = boughtTooRecentlyCodeEnum;
|
|
3318
|
-
exports.boughtTooRecentlyStatusEnum = boughtTooRecentlyStatusEnum;
|
|
3319
|
-
exports.buildQueueConfigurationEnum = buildQueueConfigurationEnum;
|
|
3320
|
-
exports.ceilingModeEnum = ceilingModeEnum;
|
|
3321
|
-
exports.changeEnum = changeEnum;
|
|
3322
4545
|
exports.cmpEnum = cmpEnum;
|
|
3323
|
-
exports.
|
|
3324
|
-
exports.
|
|
3325
|
-
exports.
|
|
3326
|
-
exports.
|
|
3327
|
-
exports.
|
|
3328
|
-
exports.
|
|
3329
|
-
exports.
|
|
3330
|
-
exports.defaultEnum = defaultEnum;
|
|
3331
|
-
exports.defaultModeEnum = defaultModeEnum;
|
|
3332
|
-
exports.deploymentTypeEnum = deploymentTypeEnum;
|
|
3333
|
-
exports.directionalityEnum = directionalityEnum;
|
|
3334
|
-
exports.domainAlreadyOwnedCodeEnum = domainAlreadyOwnedCodeEnum;
|
|
3335
|
-
exports.domainAlreadyOwnedStatusEnum = domainAlreadyOwnedStatusEnum;
|
|
3336
|
-
exports.domainAlreadyRenewingCodeEnum = domainAlreadyRenewingCodeEnum;
|
|
3337
|
-
exports.domainAlreadyRenewingStatusEnum = domainAlreadyRenewingStatusEnum;
|
|
3338
|
-
exports.domainCannotBeTransferedOutUntilCodeEnum = domainCannotBeTransferedOutUntilCodeEnum;
|
|
3339
|
-
exports.domainCannotBeTransferedOutUntilStatusEnum = domainCannotBeTransferedOutUntilStatusEnum;
|
|
3340
|
-
exports.domainNotAvailableCodeEnum = domainNotAvailableCodeEnum;
|
|
3341
|
-
exports.domainNotAvailableStatusEnum = domainNotAvailableStatusEnum;
|
|
3342
|
-
exports.domainNotFoundCodeEnum = domainNotFoundCodeEnum;
|
|
3343
|
-
exports.domainNotFoundStatusEnum = domainNotFoundStatusEnum;
|
|
3344
|
-
exports.domainNotRegisteredCodeEnum = domainNotRegisteredCodeEnum;
|
|
3345
|
-
exports.domainNotRegisteredStatusEnum = domainNotRegisteredStatusEnum;
|
|
3346
|
-
exports.domainNotRenewableCodeEnum = domainNotRenewableCodeEnum;
|
|
3347
|
-
exports.domainNotRenewableStatusEnum = domainNotRenewableStatusEnum;
|
|
3348
|
-
exports.domainTooShortCodeEnum = domainTooShortCodeEnum;
|
|
3349
|
-
exports.domainTooShortStatusEnum = domainTooShortStatusEnum;
|
|
3350
|
-
exports.duplicateDomainsCodeEnum = duplicateDomainsCodeEnum;
|
|
3351
|
-
exports.duplicateDomainsStatusEnum = duplicateDomainsStatusEnum;
|
|
3352
|
-
exports.enablePreviewFeedbackEnum = enablePreviewFeedbackEnum;
|
|
3353
|
-
exports.enabledEnum = enabledEnum;
|
|
3354
|
-
exports.enforcementScopeEnum = enforcementScopeEnum;
|
|
3355
|
-
exports.envEnum = envEnum;
|
|
3356
|
-
exports.environmentEnum = environmentEnum;
|
|
3357
|
-
exports.expectedPriceMismatchCodeEnum = expectedPriceMismatchCodeEnum;
|
|
3358
|
-
exports.expectedPriceMismatchStatusEnum = expectedPriceMismatchStatusEnum;
|
|
3359
|
-
exports.failureStageEnum = failureStageEnum;
|
|
3360
|
-
exports.favoritesViewPreferenceEnum = favoritesViewPreferenceEnum;
|
|
4546
|
+
exports.connectConnectorCreateDataOwnerTypeEnum = connectConnectorCreateDataOwnerTypeEnum;
|
|
4547
|
+
exports.connectConnectorCreateDataServerConfigJwksKeysUseEnum = connectConnectorCreateDataServerConfigJwksKeysUseEnum;
|
|
4548
|
+
exports.connectConnectorCreateDataSubjectTypeEnum = connectConnectorCreateDataSubjectTypeEnum;
|
|
4549
|
+
exports.connectConnectorCreateResultCreationModeEnum = connectConnectorCreateResultCreationModeEnum;
|
|
4550
|
+
exports.connectConnectorCreateResultSupportsIconEnum = connectConnectorCreateResultSupportsIconEnum;
|
|
4551
|
+
exports.connectConnectorCreateResultTypeEnum = connectConnectorCreateResultTypeEnum;
|
|
4552
|
+
exports.deleteKmsIssuerPolicyKind = deleteKmsIssuerPolicyKind;
|
|
3361
4553
|
exports.fileTreeTypeEnum = fileTreeTypeEnum;
|
|
3362
|
-
exports.
|
|
3363
|
-
exports.
|
|
3364
|
-
exports.flagExperimentDurationUnitEnum = flagExperimentDurationUnitEnum;
|
|
3365
|
-
exports.flagExperimentStatusEnum = flagExperimentStatusEnum;
|
|
4554
|
+
exports.filterProjectEnvsDecrypt = filterProjectEnvsDecrypt;
|
|
4555
|
+
exports.flagJSONValue = flagJSONValue;
|
|
3366
4556
|
exports.flagKindEnum = flagKindEnum;
|
|
3367
4557
|
exports.flagStateEnum = flagStateEnum;
|
|
3368
|
-
exports.flagTypeNameEnum = flagTypeNameEnum;
|
|
3369
4558
|
exports.flagsSdkKeyWithSecretsTypeEnum = flagsSdkKeyWithSecretsTypeEnum;
|
|
3370
|
-
exports.
|
|
3371
|
-
exports.
|
|
3372
|
-
exports.
|
|
3373
|
-
exports.
|
|
3374
|
-
exports.
|
|
3375
|
-
exports.
|
|
3376
|
-
exports.
|
|
3377
|
-
exports.
|
|
3378
|
-
exports.
|
|
3379
|
-
exports.
|
|
3380
|
-
exports.
|
|
3381
|
-
exports.
|
|
4559
|
+
exports.getBillingPlansSource = getBillingPlansSource;
|
|
4560
|
+
exports.getConfigurationsInstallationType = getConfigurationsInstallationType;
|
|
4561
|
+
exports.getConfigurationsView = getConfigurationsView;
|
|
4562
|
+
exports.getDeploymentEventsBuilds = getDeploymentEventsBuilds;
|
|
4563
|
+
exports.getDeploymentEventsDelimiter = getDeploymentEventsDelimiter;
|
|
4564
|
+
exports.getDeploymentEventsDirection = getDeploymentEventsDirection;
|
|
4565
|
+
exports.getDeploymentEventsFollow = getDeploymentEventsFollow;
|
|
4566
|
+
exports.getDomainConfigStrict = getDomainConfigStrict;
|
|
4567
|
+
exports.getProjectDomainsOrder = getProjectDomainsOrder;
|
|
4568
|
+
exports.getProjectDomainsProduction = getProjectDomainsProduction;
|
|
4569
|
+
exports.getProjectDomainsRedirects = getProjectDomainsRedirects;
|
|
4570
|
+
exports.getProjectDomainsTarget = getProjectDomainsTarget;
|
|
4571
|
+
exports.getProjectDomainsVerified = getProjectDomainsVerified;
|
|
4572
|
+
exports.getProjectsBuildQueueConfiguration = getProjectsBuildQueueConfiguration;
|
|
4573
|
+
exports.getRedirectsSortBy = getRedirectsSortBy;
|
|
4574
|
+
exports.getRedirectsSortOrder = getRedirectsSortOrder;
|
|
4575
|
+
exports.getRollingReleaseState = getRollingReleaseState;
|
|
4576
|
+
exports.getRoutesFilter = getRoutesFilter;
|
|
4577
|
+
exports.getSessionCommandWait = getSessionCommandWait;
|
|
4578
|
+
exports.getTeamMembersRole = getTeamMembersRole;
|
|
4579
|
+
exports.gitNamespacesProvider = gitNamespacesProvider;
|
|
4580
|
+
exports.globalConfigItemValue = globalConfigItemValue;
|
|
3382
4581
|
exports.invitedTeamMemberRoleEnum = invitedTeamMemberRoleEnum;
|
|
3383
4582
|
exports.invitedTeamMemberTeamPermissionsEnum = invitedTeamMemberTeamPermissionsEnum;
|
|
3384
4583
|
exports.invitedTeamMemberTeamRolesEnum = invitedTeamMemberTeamRolesEnum;
|
|
3385
|
-
exports.
|
|
3386
|
-
exports.
|
|
3387
|
-
exports.
|
|
3388
|
-
exports.languageCodeRequiredStatusEnum = languageCodeRequiredStatusEnum;
|
|
4584
|
+
exports.listAiGatewayRulesIncludeDisabled = listAiGatewayRulesIncludeDisabled;
|
|
4585
|
+
exports.listDrivesSortBy = listDrivesSortBy;
|
|
4586
|
+
exports.listDrivesSortOrder = listDrivesSortOrder;
|
|
3389
4587
|
exports.listEventTypeCategoriesEnum = listEventTypeCategoriesEnum;
|
|
3390
4588
|
exports.listEventTypeNameEnum = listEventTypeNameEnum;
|
|
3391
4589
|
exports.listEventTypeReplacedByEnum = listEventTypeReplacedByEnum;
|
|
4590
|
+
exports.listEventTypesResponseCategoriesNameEnum = listEventTypesResponseCategoriesNameEnum;
|
|
4591
|
+
exports.listFlagsState = listFlagsState;
|
|
4592
|
+
exports.listFlagsV2State = listFlagsV2State;
|
|
4593
|
+
exports.listProjectChecksBlocks = listProjectChecksBlocks;
|
|
4594
|
+
exports.listRepositoryTagsSortBy = listRepositoryTagsSortBy;
|
|
4595
|
+
exports.listRepositoryTagsSortOrder = listRepositoryTagsSortOrder;
|
|
4596
|
+
exports.listSandboxesSortBy = listSandboxesSortBy;
|
|
4597
|
+
exports.listSandboxesSortOrder = listSandboxesSortOrder;
|
|
4598
|
+
exports.listSandboxesStatus = listSandboxesStatus;
|
|
4599
|
+
exports.listSessionSnapshotsSortOrder = listSessionSnapshotsSortOrder;
|
|
4600
|
+
exports.listSessionsSortOrder = listSessionsSortOrder;
|
|
4601
|
+
exports.listTeamFlagsKind = listTeamFlagsKind;
|
|
4602
|
+
exports.listTeamFlagsState = listTeamFlagsState;
|
|
4603
|
+
exports.listTeamFlagsV2Kind = listTeamFlagsV2Kind;
|
|
4604
|
+
exports.listTeamFlagsV2State = listTeamFlagsV2State;
|
|
3392
4605
|
exports.marketplaceFlagCategoryEnum = marketplaceFlagCategoryEnum;
|
|
3393
4606
|
exports.marketplaceFlagStateEnum = marketplaceFlagStateEnum;
|
|
3394
|
-
exports.marketplaceFlagTypeNameEnum = marketplaceFlagTypeNameEnum;
|
|
3395
|
-
exports.methodEnum = methodEnum;
|
|
3396
|
-
exports.metricTypeEnum = metricTypeEnum;
|
|
3397
|
-
exports.metricUnitEnum = metricUnitEnum;
|
|
3398
4607
|
exports.modeEnum = modeEnum;
|
|
3399
|
-
exports.
|
|
3400
|
-
exports.nameEnum = nameEnum;
|
|
4608
|
+
exports.namedSandboxFailoverRegionsEnum = namedSandboxFailoverRegionsEnum;
|
|
3401
4609
|
exports.namedSandboxNetworkPolicyModeEnum = namedSandboxNetworkPolicyModeEnum;
|
|
3402
4610
|
exports.namedSandboxStatusEnum = namedSandboxStatusEnum;
|
|
3403
4611
|
exports.networkStatusEnum = networkStatusEnum;
|
|
3404
|
-
exports.newPlanEnum = newPlanEnum;
|
|
3405
|
-
exports.newResourceBlockingPolicyEnum = newResourceBlockingPolicyEnum;
|
|
3406
|
-
exports.nextEnum = nextEnum;
|
|
3407
|
-
exports.nextRoleEnum = nextRoleEnum;
|
|
3408
|
-
exports.notAuthorizedForScopeCodeEnum = notAuthorizedForScopeCodeEnum;
|
|
3409
|
-
exports.notAuthorizedForScopeStatusEnum = notAuthorizedForScopeStatusEnum;
|
|
3410
|
-
exports.notFoundCodeEnum = notFoundCodeEnum;
|
|
3411
|
-
exports.notFoundStatusEnum = notFoundStatusEnum;
|
|
3412
|
-
exports.oldBuildQueueConfigurationEnum = oldBuildQueueConfigurationEnum;
|
|
3413
|
-
exports.oldTrustedIpsEnum = oldTrustedIpsEnum;
|
|
3414
|
-
exports.operationEnum = operationEnum;
|
|
3415
|
-
exports.orderTooExpensiveCodeEnum = orderTooExpensiveCodeEnum;
|
|
3416
|
-
exports.orderTooExpensiveStatusEnum = orderTooExpensiveStatusEnum;
|
|
3417
4612
|
exports.originEnum = originEnum;
|
|
3418
|
-
exports.outcomeEnum = outcomeEnum;
|
|
3419
|
-
exports.overageReasonEnum = overageReasonEnum;
|
|
3420
|
-
exports.planEnum = planEnum;
|
|
3421
|
-
exports.planSlugEnum = planSlugEnum;
|
|
3422
|
-
exports.previousEnum = previousEnum;
|
|
3423
|
-
exports.previousPlanEnum = previousPlanEnum;
|
|
3424
|
-
exports.previousRoleEnum = previousRoleEnum;
|
|
3425
|
-
exports.pricingPlanEnum = pricingPlanEnum;
|
|
3426
|
-
exports.projectScopeEnum = projectScopeEnum;
|
|
3427
|
-
exports.providerEnum = providerEnum;
|
|
3428
|
-
exports.queryTypeEnum = queryTypeEnum;
|
|
3429
|
-
exports.reasonCodeEnum = reasonCodeEnum;
|
|
3430
|
-
exports.reasonEnum = reasonEnum;
|
|
3431
|
-
exports.recentsViewPreferenceEnum = recentsViewPreferenceEnum;
|
|
3432
|
-
exports.refreshPeriodEnum = refreshPeriodEnum;
|
|
3433
|
-
exports.refreshTokenPrefixEnum = refreshTokenPrefixEnum;
|
|
3434
|
-
exports.requestKindEnum = requestKindEnum;
|
|
3435
4613
|
exports.roleEnum = roleEnum;
|
|
3436
|
-
exports.ruleNameEnum = ruleNameEnum;
|
|
3437
|
-
exports.ruleProvenanceEnum = ruleProvenanceEnum;
|
|
3438
4614
|
exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
|
|
3439
4615
|
exports.scopeEnum = scopeEnum;
|
|
3440
|
-
exports.
|
|
3441
|
-
exports.
|
|
4616
|
+
exports.searchRepoProvider = searchRepoProvider;
|
|
4617
|
+
exports.segmentDataRulesConditionsCmpEnum = segmentDataRulesConditionsCmpEnum;
|
|
4618
|
+
exports.segmentDataRulesConditionsRhs = segmentDataRulesConditionsRhs;
|
|
4619
|
+
exports.segmentDataRulesConditionsRhsTypeEnum = segmentDataRulesConditionsRhsTypeEnum;
|
|
3442
4620
|
exports.sessionStatusEnum = sessionStatusEnum;
|
|
3443
|
-
exports.settlementMethodEnum = settlementMethodEnum;
|
|
3444
4621
|
exports.snapshotCreationMethodEnum = snapshotCreationMethodEnum;
|
|
3445
4622
|
exports.snapshotStatusEnum = snapshotStatusEnum;
|
|
3446
|
-
exports.sourceEnum = sourceEnum;
|
|
3447
|
-
exports.storeTypeEnum = storeTypeEnum;
|
|
3448
|
-
exports.subjectTypeEnum = subjectTypeEnum;
|
|
3449
|
-
exports.tagEnum = tagEnum;
|
|
3450
|
-
exports.targetEnum = targetEnum;
|
|
3451
4623
|
exports.teamBillingPlanEnum = teamBillingPlanEnum;
|
|
3452
4624
|
exports.teamDefaultPassportDeploymentTypeEnum = teamDefaultPassportDeploymentTypeEnum;
|
|
3453
4625
|
exports.teamDefaultRolesTeamPermissionsEnum = teamDefaultRolesTeamPermissionsEnum;
|
|
3454
4626
|
exports.teamDefaultRolesTeamRolesEnum = teamDefaultRolesTeamRolesEnum;
|
|
4627
|
+
exports.teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum = teamDeploymentPolicyDeploymentSourcesEnvironmentsTargetEnum;
|
|
4628
|
+
exports.teamDeploymentPolicyDeploymentSourcesSourcesEnum = teamDeploymentPolicyDeploymentSourcesSourcesEnum;
|
|
4629
|
+
exports.teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum = teamDeploymentPolicyGitSourcesEnvironmentsTargetEnum;
|
|
4630
|
+
exports.teamDeploymentPolicyGitSourcesSourcesProviderEnum = teamDeploymentPolicyGitSourcesSourcesProviderEnum;
|
|
4631
|
+
exports.teamDisableHardAutoBlocks = teamDisableHardAutoBlocks;
|
|
3455
4632
|
exports.teamDisjunctiveProductionSecretPolicyEnum = teamDisjunctiveProductionSecretPolicyEnum;
|
|
3456
4633
|
exports.teamDpAccessRequestsModeEnum = teamDpAccessRequestsModeEnum;
|
|
3457
4634
|
exports.teamEnablePreviewFeedbackEnum = teamEnablePreviewFeedbackEnum;
|
|
@@ -3473,27 +4650,181 @@ exports.teamSamlConnectionSyncStateEnum = teamSamlConnectionSyncStateEnum;
|
|
|
3473
4650
|
exports.teamSamlDefaultRedirectUriEnum = teamSamlDefaultRedirectUriEnum;
|
|
3474
4651
|
exports.teamSamlDirectorySyncStateEnum = teamSamlDirectorySyncStateEnum;
|
|
3475
4652
|
exports.teamSensitiveEnvironmentVariablePolicyEnum = teamSensitiveEnvironmentVariablePolicyEnum;
|
|
3476
|
-
exports.tierEnum = tierEnum;
|
|
3477
|
-
exports.tldNotSupportedCodeEnum = tldNotSupportedCodeEnum;
|
|
3478
|
-
exports.tldNotSupportedStatusEnum = tldNotSupportedStatusEnum;
|
|
3479
|
-
exports.toPlanEnum = toPlanEnum;
|
|
3480
|
-
exports.tokenPrefixEnum = tokenPrefixEnum;
|
|
3481
|
-
exports.tooManyDomainsCodeEnum = tooManyDomainsCodeEnum;
|
|
3482
|
-
exports.tooManyDomainsStatusEnum = tooManyDomainsStatusEnum;
|
|
3483
|
-
exports.tooManyRequestsCodeEnum = tooManyRequestsCodeEnum;
|
|
3484
|
-
exports.tooManyRequestsStatusEnum = tooManyRequestsStatusEnum;
|
|
3485
|
-
exports.trustedIpsEnum = trustedIpsEnum;
|
|
3486
4653
|
exports.typeEnum = typeEnum;
|
|
3487
|
-
exports.unauthorizedCodeEnum = unauthorizedCodeEnum;
|
|
3488
|
-
exports.unauthorizedStatusEnum = unauthorizedStatusEnum;
|
|
3489
4654
|
exports.userEventCategoriesEnum = userEventCategoriesEnum;
|
|
4655
|
+
exports.userEventEntitiesTypeEnum = userEventEntitiesTypeEnum;
|
|
4656
|
+
exports.userEventPayloadAccessEnum = userEventPayloadAccessEnum;
|
|
4657
|
+
exports.userEventPayloadActionEnum = userEventPayloadActionEnum;
|
|
4658
|
+
exports.userEventPayloadActorTypeEnum = userEventPayloadActorTypeEnum;
|
|
4659
|
+
exports.userEventPayloadAfterPermissionsEnum = userEventPayloadAfterPermissionsEnum;
|
|
4660
|
+
exports.userEventPayloadAllowedMethodsEnum = userEventPayloadAllowedMethodsEnum;
|
|
4661
|
+
exports.userEventPayloadAppClientAuthenticationUsedMethodEnum = userEventPayloadAppClientAuthenticationUsedMethodEnum;
|
|
4662
|
+
exports.userEventPayloadApprovalScopeEnum = userEventPayloadApprovalScopeEnum;
|
|
4663
|
+
exports.userEventPayloadAuthMethodEnum = userEventPayloadAuthMethodEnum;
|
|
4664
|
+
exports.userEventPayloadBeforePermissionsEnum = userEventPayloadBeforePermissionsEnum;
|
|
4665
|
+
exports.userEventPayloadBillingPlanEnum = userEventPayloadBillingPlanEnum;
|
|
4666
|
+
exports.userEventPayloadBudgetBudgetItemPricingPlanEnum = userEventPayloadBudgetBudgetItemPricingPlanEnum;
|
|
4667
|
+
exports.userEventPayloadBudgetPricingPlanEnum = userEventPayloadBudgetPricingPlanEnum;
|
|
4668
|
+
exports.userEventPayloadBudgetRefreshPeriodEnum = userEventPayloadBudgetRefreshPeriodEnum;
|
|
4669
|
+
exports.userEventPayloadBuildQueueConfigurationEnum = userEventPayloadBuildQueueConfigurationEnum;
|
|
4670
|
+
exports.userEventPayloadChangeEnum = userEventPayloadChangeEnum;
|
|
4671
|
+
exports.userEventPayloadConsentEnum = userEventPayloadConsentEnum;
|
|
4672
|
+
exports.userEventPayloadContextEnum = userEventPayloadContextEnum;
|
|
4673
|
+
exports.userEventPayloadCreateDeploymentsEnum = userEventPayloadCreateDeploymentsEnum;
|
|
4674
|
+
exports.userEventPayloadDataPlanSlugEnum = userEventPayloadDataPlanSlugEnum;
|
|
4675
|
+
exports.userEventPayloadDecisionBasisEnum = userEventPayloadDecisionBasisEnum;
|
|
4676
|
+
exports.userEventPayloadDecisionEnum = userEventPayloadDecisionEnum;
|
|
4677
|
+
exports.userEventPayloadDecisionMxOutcomeEnum = userEventPayloadDecisionMxOutcomeEnum;
|
|
4678
|
+
exports.userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum = userEventPayloadDeploymentAllowListedReadyStateReasonInternalEnum;
|
|
4679
|
+
exports.userEventPayloadEchModeEnum = userEventPayloadEchModeEnum;
|
|
4680
|
+
exports.userEventPayloadEnabledEnum = userEventPayloadEnabledEnum;
|
|
4681
|
+
exports.userEventPayloadEnvironmentEnum = userEventPayloadEnvironmentEnum;
|
|
4682
|
+
exports.userEventPayloadFactorsOriginEnum = userEventPayloadFactorsOriginEnum;
|
|
4683
|
+
exports.userEventPayloadFailureStageEnum = userEventPayloadFailureStageEnum;
|
|
4684
|
+
exports.userEventPayloadFromAccountTypeEnum = userEventPayloadFromAccountTypeEnum;
|
|
4685
|
+
exports.userEventPayloadFromPlanEnum = userEventPayloadFromPlanEnum;
|
|
4686
|
+
exports.userEventPayloadGitProviderEnum = userEventPayloadGitProviderEnum;
|
|
4687
|
+
exports.userEventPayloadGrantTypeEnum = userEventPayloadGrantTypeEnum;
|
|
4688
|
+
exports.userEventPayloadInitiatorEnum = userEventPayloadInitiatorEnum;
|
|
4689
|
+
exports.userEventPayloadJobCommitVerificationEnum = userEventPayloadJobCommitVerificationEnum;
|
|
4690
|
+
exports.userEventPayloadJobNsnbSideEffectActionEnum = userEventPayloadJobNsnbSideEffectActionEnum;
|
|
4691
|
+
exports.userEventPayloadJobProviderEnum = userEventPayloadJobProviderEnum;
|
|
4692
|
+
exports.userEventPayloadKindEnum = userEventPayloadKindEnum;
|
|
4693
|
+
exports.userEventPayloadMethodEnum = userEventPayloadMethodEnum;
|
|
4694
|
+
exports.userEventPayloadNewEnvVarTargetEnum = userEventPayloadNewEnvVarTargetEnum;
|
|
4695
|
+
exports.userEventPayloadNewEnvVarTypeEnum = userEventPayloadNewEnvVarTypeEnum;
|
|
4696
|
+
exports.userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = userEventPayloadNewOwnerAbuseBlockHistoryActionEnum;
|
|
4697
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsFavoritesViewPreferenceEnum;
|
|
4698
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsRecentsViewPreferenceEnum;
|
|
4699
|
+
exports.userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum = userEventPayloadNewOwnerActiveDashboardViewsViewPreferenceEnum;
|
|
4700
|
+
exports.userEventPayloadNewOwnerBillingPlanEnum = userEventPayloadNewOwnerBillingPlanEnum;
|
|
4701
|
+
exports.userEventPayloadNewOwnerCredentialsTypeEnum = userEventPayloadNewOwnerCredentialsTypeEnum;
|
|
4702
|
+
exports.userEventPayloadNewOwnerEnablePreviewFeedbackEnum = userEventPayloadNewOwnerEnablePreviewFeedbackEnum;
|
|
4703
|
+
exports.userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksBlobBlockReasonEnum;
|
|
4704
|
+
exports.userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksBlobOverageReasonEnum;
|
|
4705
|
+
exports.userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksConnexForwardTriggersBlockReasonEnum;
|
|
4706
|
+
exports.userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksConnexTokenRequestsBlockReasonEnum;
|
|
4707
|
+
exports.userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksDataCacheBlockReasonEnum;
|
|
4708
|
+
exports.userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksImageOptimizationTransformationBlockReasonEnum;
|
|
4709
|
+
exports.userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksKmsOperationsBlockReasonEnum;
|
|
4710
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksMicrofrontendsRequestBlockReasonEnum;
|
|
4711
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksMonitoringBlockReasonEnum;
|
|
4712
|
+
exports.userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum = userEventPayloadNewOwnerFeatureBlocksMonitoringBlockTypeEnum;
|
|
4713
|
+
exports.userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockReasonEnum;
|
|
4714
|
+
exports.userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum = userEventPayloadNewOwnerFeatureBlocksObservabilityPlusBlockTypeEnum;
|
|
4715
|
+
exports.userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksPostgresBlockReasonEnum;
|
|
4716
|
+
exports.userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksPostgresOverageReasonEnum;
|
|
4717
|
+
exports.userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksRedisBlockReasonEnum;
|
|
4718
|
+
exports.userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum = userEventPayloadNewOwnerFeatureBlocksRedisOverageReasonEnum;
|
|
4719
|
+
exports.userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksSourceImagesBlockReasonEnum;
|
|
4720
|
+
exports.userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksSpeedInsightsFreeBlockReasonEnum;
|
|
4721
|
+
exports.userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksTracingBlockReasonEnum;
|
|
4722
|
+
exports.userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksVcrBlockReasonEnum;
|
|
4723
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWebAnalyticsBlockReasonEnum;
|
|
4724
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWorkflowEventsBlockReasonEnum;
|
|
4725
|
+
exports.userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum = userEventPayloadNewOwnerFeatureBlocksWorkflowStorageWriteBlockReasonEnum;
|
|
4726
|
+
exports.userEventPayloadNewOwnerImportFlowGitProviderEnum = userEventPayloadNewOwnerImportFlowGitProviderEnum;
|
|
4727
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum = userEventPayloadNewOwnerMfaConfigurationHistoryActionEnum;
|
|
4728
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum = userEventPayloadNewOwnerMfaConfigurationHistoryActorTypeEnum;
|
|
4729
|
+
exports.userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum = userEventPayloadNewOwnerMfaConfigurationHistoryMethodEnum;
|
|
4730
|
+
exports.userEventPayloadNewOwnerPreventAutoBlocking = userEventPayloadNewOwnerPreventAutoBlocking;
|
|
4731
|
+
exports.userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum;
|
|
4732
|
+
exports.userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum;
|
|
4733
|
+
exports.userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum;
|
|
4734
|
+
exports.userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum;
|
|
4735
|
+
exports.userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4736
|
+
exports.userEventPayloadNewOwnerSoftBlockReasonEnum = userEventPayloadNewOwnerSoftBlockReasonEnum;
|
|
4737
|
+
exports.userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = userEventPayloadNewOwnerTeamsJoinedFromOriginEnum;
|
|
4738
|
+
exports.userEventPayloadNewOwnerTeamsRoleEnum = userEventPayloadNewOwnerTeamsRoleEnum;
|
|
4739
|
+
exports.userEventPayloadNewOwnerTeamsTeamPermissionsEnum = userEventPayloadNewOwnerTeamsTeamPermissionsEnum;
|
|
4740
|
+
exports.userEventPayloadNewOwnerTeamsTeamRolesEnum = userEventPayloadNewOwnerTeamsTeamRolesEnum;
|
|
4741
|
+
exports.userEventPayloadNewPlanEnum = userEventPayloadNewPlanEnum;
|
|
4742
|
+
exports.userEventPayloadNextBranchMatcherTypeEnum = userEventPayloadNextBranchMatcherTypeEnum;
|
|
4743
|
+
exports.userEventPayloadNextDefaultEnum = userEventPayloadNextDefaultEnum;
|
|
4744
|
+
exports.userEventPayloadNextEnforcementScopeEnum = userEventPayloadNextEnforcementScopeEnum;
|
|
4745
|
+
exports.userEventPayloadNextEnum = userEventPayloadNextEnum;
|
|
4746
|
+
exports.userEventPayloadNextGitProviderEnum = userEventPayloadNextGitProviderEnum;
|
|
4747
|
+
exports.userEventPayloadNextIssuerModeEnum = userEventPayloadNextIssuerModeEnum;
|
|
4748
|
+
exports.userEventPayloadNextNewResourceBlockingPolicyEnum = userEventPayloadNextNewResourceBlockingPolicyEnum;
|
|
4749
|
+
exports.userEventPayloadNextPassportDeploymentTypeEnum = userEventPayloadNextPassportDeploymentTypeEnum;
|
|
4750
|
+
exports.userEventPayloadNextPermissionsEnum = userEventPayloadNextPermissionsEnum;
|
|
4751
|
+
exports.userEventPayloadNextRoleEnum = userEventPayloadNextRoleEnum;
|
|
4752
|
+
exports.userEventPayloadNextScopeEnum = userEventPayloadNextScopeEnum;
|
|
4753
|
+
exports.userEventPayloadNextScopesEnum = userEventPayloadNextScopesEnum;
|
|
4754
|
+
exports.userEventPayloadOldBuildQueueConfigurationEnum = userEventPayloadOldBuildQueueConfigurationEnum;
|
|
4755
|
+
exports.userEventPayloadOldEnvVarTargetEnum = userEventPayloadOldEnvVarTargetEnum;
|
|
4756
|
+
exports.userEventPayloadOldEnvVarTypeEnum = userEventPayloadOldEnvVarTypeEnum;
|
|
4757
|
+
exports.userEventPayloadOldPasswordProtection = userEventPayloadOldPasswordProtection;
|
|
4758
|
+
exports.userEventPayloadOldPasswordProtectionDeploymentTypeEnum = userEventPayloadOldPasswordProtectionDeploymentTypeEnum;
|
|
4759
|
+
exports.userEventPayloadOldSsoProtection = userEventPayloadOldSsoProtection;
|
|
4760
|
+
exports.userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = userEventPayloadOldSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum;
|
|
4761
|
+
exports.userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum = userEventPayloadOldSsoProtectionCve55182MigrationAppliedFromEnum;
|
|
4762
|
+
exports.userEventPayloadOldSsoProtectionDeploymentTypeEnum = userEventPayloadOldSsoProtectionDeploymentTypeEnum;
|
|
4763
|
+
exports.userEventPayloadOldTrustedIpsEnum = userEventPayloadOldTrustedIpsEnum;
|
|
4764
|
+
exports.userEventPayloadOriginEnum = userEventPayloadOriginEnum;
|
|
4765
|
+
exports.userEventPayloadOutcomeEnum = userEventPayloadOutcomeEnum;
|
|
4766
|
+
exports.userEventPayloadPasswordProtection = userEventPayloadPasswordProtection;
|
|
4767
|
+
exports.userEventPayloadPasswordProtectionDeploymentTypeEnum = userEventPayloadPasswordProtectionDeploymentTypeEnum;
|
|
4768
|
+
exports.userEventPayloadPermissionsEnum = userEventPayloadPermissionsEnum;
|
|
4769
|
+
exports.userEventPayloadPlanEnum = userEventPayloadPlanEnum;
|
|
4770
|
+
exports.userEventPayloadPrevBudgetPricingPlanEnum = userEventPayloadPrevBudgetPricingPlanEnum;
|
|
4771
|
+
exports.userEventPayloadPreviousBranchMatcherTypeEnum = userEventPayloadPreviousBranchMatcherTypeEnum;
|
|
4772
|
+
exports.userEventPayloadPreviousEchModeEnum = userEventPayloadPreviousEchModeEnum;
|
|
4773
|
+
exports.userEventPayloadPreviousEnforcementScopeEnum = userEventPayloadPreviousEnforcementScopeEnum;
|
|
4774
|
+
exports.userEventPayloadPreviousEnum = userEventPayloadPreviousEnum;
|
|
4775
|
+
exports.userEventPayloadPreviousGitProviderEnum = userEventPayloadPreviousGitProviderEnum;
|
|
4776
|
+
exports.userEventPayloadPreviousIssuerModeEnum = userEventPayloadPreviousIssuerModeEnum;
|
|
4777
|
+
exports.userEventPayloadPreviousNewResourceBlockingPolicyEnum = userEventPayloadPreviousNewResourceBlockingPolicyEnum;
|
|
4778
|
+
exports.userEventPayloadPreviousPassportDeploymentTypeEnum = userEventPayloadPreviousPassportDeploymentTypeEnum;
|
|
4779
|
+
exports.userEventPayloadPreviousPlanEnum = userEventPayloadPreviousPlanEnum;
|
|
4780
|
+
exports.userEventPayloadPreviousRoleEnum = userEventPayloadPreviousRoleEnum;
|
|
4781
|
+
exports.userEventPayloadPreviousScopeEnum = userEventPayloadPreviousScopeEnum;
|
|
4782
|
+
exports.userEventPayloadPreviousTeamPermissionsEnum = userEventPayloadPreviousTeamPermissionsEnum;
|
|
4783
|
+
exports.userEventPayloadPreviousTeamRolesEnum = userEventPayloadPreviousTeamRolesEnum;
|
|
4784
|
+
exports.userEventPayloadProjectMembershipPreviousRoleEnum = userEventPayloadProjectMembershipPreviousRoleEnum;
|
|
4785
|
+
exports.userEventPayloadProjectMembershipRoleEnum = userEventPayloadProjectMembershipRoleEnum;
|
|
4786
|
+
exports.userEventPayloadProjectRoleEnum = userEventPayloadProjectRoleEnum;
|
|
4787
|
+
exports.userEventPayloadProjectScopeEnum = userEventPayloadProjectScopeEnum;
|
|
4788
|
+
exports.userEventPayloadProjectsRoleEnum = userEventPayloadProjectsRoleEnum;
|
|
4789
|
+
exports.userEventPayloadProviderEnum = userEventPayloadProviderEnum;
|
|
4790
|
+
exports.userEventPayloadQueryTypeEnum = userEventPayloadQueryTypeEnum;
|
|
4791
|
+
exports.userEventPayloadReasonCodeEnum = userEventPayloadReasonCodeEnum;
|
|
4792
|
+
exports.userEventPayloadReasonEnum = userEventPayloadReasonEnum;
|
|
4793
|
+
exports.userEventPayloadRemovedMembershipRoleEnum = userEventPayloadRemovedMembershipRoleEnum;
|
|
4794
|
+
exports.userEventPayloadRetentionCeilingModeEnum = userEventPayloadRetentionCeilingModeEnum;
|
|
4795
|
+
exports.userEventPayloadRetentionDefaultModeEnum = userEventPayloadRetentionDefaultModeEnum;
|
|
4796
|
+
exports.userEventPayloadRoleEnum = userEventPayloadRoleEnum;
|
|
4797
|
+
exports.userEventPayloadRuleNameEnum = userEventPayloadRuleNameEnum;
|
|
4798
|
+
exports.userEventPayloadRuleProvenanceEnum = userEventPayloadRuleProvenanceEnum;
|
|
4799
|
+
exports.userEventPayloadSamplingEnvEnum = userEventPayloadSamplingEnvEnum;
|
|
4800
|
+
exports.userEventPayloadScopeEnum = userEventPayloadScopeEnum;
|
|
4801
|
+
exports.userEventPayloadScopeTypeEnum = userEventPayloadScopeTypeEnum;
|
|
4802
|
+
exports.userEventPayloadScopesEnum = userEventPayloadScopesEnum;
|
|
4803
|
+
exports.userEventPayloadSettlementMethodEnum = userEventPayloadSettlementMethodEnum;
|
|
4804
|
+
exports.userEventPayloadSourceEnum = userEventPayloadSourceEnum;
|
|
4805
|
+
exports.userEventPayloadSsoProtection = userEventPayloadSsoProtection;
|
|
4806
|
+
exports.userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum = userEventPayloadSsoProtectionApril2026SecurityIncidentMigrationAppliedFromEnum;
|
|
4807
|
+
exports.userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum = userEventPayloadSsoProtectionCve55182MigrationAppliedFromEnum;
|
|
4808
|
+
exports.userEventPayloadSsoProtectionDeploymentTypeEnum = userEventPayloadSsoProtectionDeploymentTypeEnum;
|
|
4809
|
+
exports.userEventPayloadStoreTypeEnum = userEventPayloadStoreTypeEnum;
|
|
4810
|
+
exports.userEventPayloadSubjectTypeEnum = userEventPayloadSubjectTypeEnum;
|
|
4811
|
+
exports.userEventPayloadTargetEnum = userEventPayloadTargetEnum;
|
|
4812
|
+
exports.userEventPayloadTeamPermissionsEnum = userEventPayloadTeamPermissionsEnum;
|
|
4813
|
+
exports.userEventPayloadTeamRolesEnum = userEventPayloadTeamRolesEnum;
|
|
4814
|
+
exports.userEventPayloadTierEnum = userEventPayloadTierEnum;
|
|
4815
|
+
exports.userEventPayloadToAccountTypeEnum = userEventPayloadToAccountTypeEnum;
|
|
4816
|
+
exports.userEventPayloadToPlanEnum = userEventPayloadToPlanEnum;
|
|
4817
|
+
exports.userEventPayloadTrustedIpsEnum = userEventPayloadTrustedIpsEnum;
|
|
4818
|
+
exports.userEventPayloadTypeEnum = userEventPayloadTypeEnum;
|
|
4819
|
+
exports.userEventPayloadUpdateDiffNewTargetEnum = userEventPayloadUpdateDiffNewTargetEnum;
|
|
4820
|
+
exports.userEventPayloadUpdateDiffOldTargetEnum = userEventPayloadUpdateDiffOldTargetEnum;
|
|
4821
|
+
exports.userEventPayloadWidgetEnum = userEventPayloadWidgetEnum;
|
|
3490
4822
|
exports.userEventTypeEnum = userEventTypeEnum;
|
|
3491
4823
|
exports.vcrImageDetailKindEnum = vcrImageDetailKindEnum;
|
|
3492
4824
|
exports.vcrImageDetailStatusEnum = vcrImageDetailStatusEnum;
|
|
4825
|
+
exports.vcrImageLayerOperationEnum = vcrImageLayerOperationEnum;
|
|
4826
|
+
exports.vcrImageLayerTypeEnum = vcrImageLayerTypeEnum;
|
|
3493
4827
|
exports.vcrImageListItemKindEnum = vcrImageListItemKindEnum;
|
|
3494
4828
|
exports.vcrImageListItemStatusEnum = vcrImageListItemStatusEnum;
|
|
3495
4829
|
exports.vcrTagKindEnum = vcrTagKindEnum;
|
|
3496
4830
|
exports.vcrTagStatusEnum = vcrTagStatusEnum;
|
|
3497
|
-
exports.versionEnum = versionEnum;
|
|
3498
|
-
exports.viewPreferenceEnum = viewPreferenceEnum;
|
|
3499
|
-
exports.widgetEnum = widgetEnum;
|