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