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