vercel-api-js 1.15.0 → 1.16.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-l5748yis.cjs → components-gzixkjh5.cjs} +450 -12
- package/dist/{components-nvgbng8u.js → components-l47b33g0.js} +432 -12
- package/dist/components.cjs +20 -2
- package/dist/components.d.mts +378 -14
- 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 +39 -3
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +312 -28
- package/dist/index.d.ts +4665 -591
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-f3m4uoi5.js → schemas-mg9u0zgi.js} +1552 -252
- package/dist/{schemas-k96frmq7.cjs → schemas-tv2viiu8.cjs} +1841 -272
- package/dist/schemas.cjs +291 -22
- package/dist/schemas.d.mts +1012 -187
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +222 -115
- package/dist/types.d.mts +3258 -391
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +203 -111
- package/package.json +5 -5
package/dist/types.cjs
CHANGED
|
@@ -49,12 +49,49 @@ const networkStatusEnum = {
|
|
|
49
49
|
error: "error",
|
|
50
50
|
ready: "ready"
|
|
51
51
|
};
|
|
52
|
+
const privateLinkEndpointStatusEnum = {
|
|
53
|
+
available: "available",
|
|
54
|
+
creating: "creating",
|
|
55
|
+
deleting: "deleting",
|
|
56
|
+
failed: "failed",
|
|
57
|
+
"pending-acceptance": "pending-acceptance",
|
|
58
|
+
provisioning: "provisioning",
|
|
59
|
+
rejected: "rejected"
|
|
60
|
+
};
|
|
61
|
+
const connectConnectorCreationModeEnum = {
|
|
62
|
+
managed: "managed",
|
|
63
|
+
manual: "manual"
|
|
64
|
+
};
|
|
65
|
+
const connectConnectorTypeEnum = {
|
|
66
|
+
"api-key": "api-key",
|
|
67
|
+
"aws-alpha": "aws-alpha",
|
|
68
|
+
custom: "custom",
|
|
69
|
+
discord: "discord",
|
|
70
|
+
github: "github",
|
|
71
|
+
linear: "linear",
|
|
72
|
+
linq: "linq",
|
|
73
|
+
"microsoft-entra": "microsoft-entra",
|
|
74
|
+
"microsoft-teams": "microsoft-teams",
|
|
75
|
+
oauth: "oauth",
|
|
76
|
+
photon: "photon",
|
|
77
|
+
salesforce: "salesforce",
|
|
78
|
+
sendblue: "sendblue",
|
|
79
|
+
slack: "slack",
|
|
80
|
+
snowflake: "snowflake",
|
|
81
|
+
"snowflake-wif": "snowflake-wif"
|
|
82
|
+
};
|
|
83
|
+
const connectConnectorSupportsIconEnum = {
|
|
84
|
+
false: false,
|
|
85
|
+
maybe: "maybe",
|
|
86
|
+
true: true
|
|
87
|
+
};
|
|
52
88
|
const connectConnectorCreateResultCreationModeEnum = {
|
|
53
89
|
managed: "managed",
|
|
54
90
|
manual: "manual"
|
|
55
91
|
};
|
|
56
92
|
const connectConnectorCreateResultTypeEnum = {
|
|
57
93
|
"api-key": "api-key",
|
|
94
|
+
"aws-alpha": "aws-alpha",
|
|
58
95
|
custom: "custom",
|
|
59
96
|
discord: "discord",
|
|
60
97
|
github: "github",
|
|
@@ -89,6 +126,28 @@ const connectConnectorCreateDataOwnerTypeEnum = {
|
|
|
89
126
|
User: "User",
|
|
90
127
|
Organization: "Organization"
|
|
91
128
|
};
|
|
129
|
+
const connectConnectorCreateDataShortcutsTypeEnum = {
|
|
130
|
+
global: "global",
|
|
131
|
+
message: "message"
|
|
132
|
+
};
|
|
133
|
+
const connectServiceSyncStatusEnum = {
|
|
134
|
+
done: "done",
|
|
135
|
+
required: "required"
|
|
136
|
+
};
|
|
137
|
+
const connectConnectorUpdateDataServerConfigJwksKeysUseEnum = {
|
|
138
|
+
sig: "sig",
|
|
139
|
+
enc: "enc"
|
|
140
|
+
};
|
|
141
|
+
const connectConnectorUpdateDataOwnerTypeEnum = {
|
|
142
|
+
user: "user",
|
|
143
|
+
organization: "organization",
|
|
144
|
+
User: "User",
|
|
145
|
+
Organization: "Organization"
|
|
146
|
+
};
|
|
147
|
+
const connectConnectorUpdateDataShortcutsTypeEnum = {
|
|
148
|
+
global: "global",
|
|
149
|
+
message: "message"
|
|
150
|
+
};
|
|
92
151
|
const flagJSONValue = {
|
|
93
152
|
false: false,
|
|
94
153
|
true: true
|
|
@@ -155,8 +214,10 @@ const userEventTypeEnum = {
|
|
|
155
214
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
156
215
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
157
216
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
217
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
158
218
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
159
219
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
220
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
160
221
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
161
222
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
162
223
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -166,6 +227,7 @@ const userEventTypeEnum = {
|
|
|
166
227
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
167
228
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
168
229
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
230
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
169
231
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
170
232
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
171
233
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
@@ -179,8 +241,10 @@ const userEventTypeEnum = {
|
|
|
179
241
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
180
242
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
181
243
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
244
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
182
245
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
183
246
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
247
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
184
248
|
"ai-omniagent": "ai-omniagent",
|
|
185
249
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
186
250
|
"alert-rule-created": "alert-rule-created",
|
|
@@ -370,6 +434,7 @@ const userEventTypeEnum = {
|
|
|
370
434
|
"flags-segment": "flags-segment",
|
|
371
435
|
"flags-settings": "flags-settings",
|
|
372
436
|
"flags-transferred": "flags-transferred",
|
|
437
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
373
438
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
374
439
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
375
440
|
"global-config-backup-restored": "global-config-backup-restored",
|
|
@@ -454,6 +519,7 @@ const userEventTypeEnum = {
|
|
|
454
519
|
"organization-team-add": "organization-team-add",
|
|
455
520
|
"organization-team-create": "organization-team-create",
|
|
456
521
|
"organization-team-delete": "organization-team-delete",
|
|
522
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
457
523
|
"owner-blocked": "owner-blocked",
|
|
458
524
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
459
525
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -533,6 +599,12 @@ const userEventTypeEnum = {
|
|
|
533
599
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
534
600
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
535
601
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
602
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
603
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
604
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
605
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
606
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
607
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
536
608
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
537
609
|
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
538
610
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
@@ -598,6 +670,9 @@ const userEventTypeEnum = {
|
|
|
598
670
|
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
599
671
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
600
672
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
673
|
+
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
674
|
+
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
675
|
+
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
601
676
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
602
677
|
"saml-connection-created": "saml-connection-created",
|
|
603
678
|
"saml-connection-deleted": "saml-connection-deleted",
|
|
@@ -625,6 +700,8 @@ const userEventTypeEnum = {
|
|
|
625
700
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
626
701
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
627
702
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
703
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
704
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
628
705
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
629
706
|
"show-ip-addresses": "show-ip-addresses",
|
|
630
707
|
signup: "signup",
|
|
@@ -655,6 +732,7 @@ const userEventTypeEnum = {
|
|
|
655
732
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
656
733
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
657
734
|
"storage-view-secret": "storage-view-secret",
|
|
735
|
+
"strict-connectors": "strict-connectors",
|
|
658
736
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
659
737
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
660
738
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -895,6 +973,7 @@ const userEventPayloadPermissionsEnum = {
|
|
|
895
973
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
896
974
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
897
975
|
"read-write:alerts": "read-write:alerts",
|
|
976
|
+
"read-write:automations": "read-write:automations",
|
|
898
977
|
"read-write:billing": "read-write:billing",
|
|
899
978
|
"read-write:blob": "read-write:blob",
|
|
900
979
|
"read-write:connect": "read-write:connect",
|
|
@@ -925,7 +1004,9 @@ const userEventPayloadPermissionsEnum = {
|
|
|
925
1004
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
926
1005
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
927
1006
|
"read:alerts": "read:alerts",
|
|
1007
|
+
"read:automations": "read:automations",
|
|
928
1008
|
"read:billing": "read:billing",
|
|
1009
|
+
"read:connect": "read:connect",
|
|
929
1010
|
"read:deployment": "read:deployment",
|
|
930
1011
|
"read:domain": "read:domain",
|
|
931
1012
|
"read:event": "read:event",
|
|
@@ -944,6 +1025,7 @@ const userEventPayloadPermissionsEnum = {
|
|
|
944
1025
|
"read:team": "read:team",
|
|
945
1026
|
"read:vcr": "read:vcr",
|
|
946
1027
|
"read:web-analytics": "read:web-analytics",
|
|
1028
|
+
"read:webhooks": "read:webhooks",
|
|
947
1029
|
"use:ai-gateway": "use:ai-gateway"
|
|
948
1030
|
};
|
|
949
1031
|
const userEventPayloadNextScopesEnum = {
|
|
@@ -961,6 +1043,7 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
961
1043
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
962
1044
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
963
1045
|
"read-write:alerts": "read-write:alerts",
|
|
1046
|
+
"read-write:automations": "read-write:automations",
|
|
964
1047
|
"read-write:billing": "read-write:billing",
|
|
965
1048
|
"read-write:blob": "read-write:blob",
|
|
966
1049
|
"read-write:connect": "read-write:connect",
|
|
@@ -991,7 +1074,9 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
991
1074
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
992
1075
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
993
1076
|
"read:alerts": "read:alerts",
|
|
1077
|
+
"read:automations": "read:automations",
|
|
994
1078
|
"read:billing": "read:billing",
|
|
1079
|
+
"read:connect": "read:connect",
|
|
995
1080
|
"read:deployment": "read:deployment",
|
|
996
1081
|
"read:domain": "read:domain",
|
|
997
1082
|
"read:event": "read:event",
|
|
@@ -1011,6 +1096,7 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
1011
1096
|
"read:user": "read:user",
|
|
1012
1097
|
"read:vcr": "read:vcr",
|
|
1013
1098
|
"read:web-analytics": "read:web-analytics",
|
|
1099
|
+
"read:webhooks": "read:webhooks",
|
|
1014
1100
|
"use:ai-gateway": "use:ai-gateway"
|
|
1015
1101
|
};
|
|
1016
1102
|
const userEventPayloadBeforePermissionsEnum = {
|
|
@@ -1022,6 +1108,7 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1022
1108
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1023
1109
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1024
1110
|
"read-write:alerts": "read-write:alerts",
|
|
1111
|
+
"read-write:automations": "read-write:automations",
|
|
1025
1112
|
"read-write:billing": "read-write:billing",
|
|
1026
1113
|
"read-write:blob": "read-write:blob",
|
|
1027
1114
|
"read-write:connect": "read-write:connect",
|
|
@@ -1052,7 +1139,9 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1052
1139
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1053
1140
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1054
1141
|
"read:alerts": "read:alerts",
|
|
1142
|
+
"read:automations": "read:automations",
|
|
1055
1143
|
"read:billing": "read:billing",
|
|
1144
|
+
"read:connect": "read:connect",
|
|
1056
1145
|
"read:deployment": "read:deployment",
|
|
1057
1146
|
"read:domain": "read:domain",
|
|
1058
1147
|
"read:event": "read:event",
|
|
@@ -1071,6 +1160,7 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1071
1160
|
"read:team": "read:team",
|
|
1072
1161
|
"read:vcr": "read:vcr",
|
|
1073
1162
|
"read:web-analytics": "read:web-analytics",
|
|
1163
|
+
"read:webhooks": "read:webhooks",
|
|
1074
1164
|
"use:ai-gateway": "use:ai-gateway"
|
|
1075
1165
|
};
|
|
1076
1166
|
const userEventPayloadAfterPermissionsEnum = {
|
|
@@ -1082,6 +1172,7 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1082
1172
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1083
1173
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1084
1174
|
"read-write:alerts": "read-write:alerts",
|
|
1175
|
+
"read-write:automations": "read-write:automations",
|
|
1085
1176
|
"read-write:billing": "read-write:billing",
|
|
1086
1177
|
"read-write:blob": "read-write:blob",
|
|
1087
1178
|
"read-write:connect": "read-write:connect",
|
|
@@ -1112,7 +1203,9 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1112
1203
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1113
1204
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1114
1205
|
"read:alerts": "read:alerts",
|
|
1206
|
+
"read:automations": "read:automations",
|
|
1115
1207
|
"read:billing": "read:billing",
|
|
1208
|
+
"read:connect": "read:connect",
|
|
1116
1209
|
"read:deployment": "read:deployment",
|
|
1117
1210
|
"read:domain": "read:domain",
|
|
1118
1211
|
"read:event": "read:event",
|
|
@@ -1131,6 +1224,7 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1131
1224
|
"read:team": "read:team",
|
|
1132
1225
|
"read:vcr": "read:vcr",
|
|
1133
1226
|
"read:web-analytics": "read:web-analytics",
|
|
1227
|
+
"read:webhooks": "read:webhooks",
|
|
1134
1228
|
"use:ai-gateway": "use:ai-gateway"
|
|
1135
1229
|
};
|
|
1136
1230
|
const userEventPayloadSettlementMethodEnum = {
|
|
@@ -1200,6 +1294,10 @@ const userEventPayloadToAccountTypeEnum = {
|
|
|
1200
1294
|
team: "team",
|
|
1201
1295
|
user: "user"
|
|
1202
1296
|
};
|
|
1297
|
+
const userEventPayloadVisibilityEnum = {
|
|
1298
|
+
config: "config",
|
|
1299
|
+
secret: "secret"
|
|
1300
|
+
};
|
|
1203
1301
|
const userEventPayloadTypeEnum = {
|
|
1204
1302
|
blob: "blob",
|
|
1205
1303
|
"edge-config": "edge-config",
|
|
@@ -1249,6 +1347,27 @@ const actionEnum = {
|
|
|
1249
1347
|
deny: "deny",
|
|
1250
1348
|
log: "log"
|
|
1251
1349
|
};
|
|
1350
|
+
const userEventPayloadSourceEnum = {
|
|
1351
|
+
"account-update": "account-update",
|
|
1352
|
+
bitbucket: "bitbucket",
|
|
1353
|
+
dsync: "dsync",
|
|
1354
|
+
feedback: "feedback",
|
|
1355
|
+
github: "github",
|
|
1356
|
+
gitlab: "gitlab",
|
|
1357
|
+
import: "import",
|
|
1358
|
+
link: "link",
|
|
1359
|
+
mail: "mail",
|
|
1360
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1361
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1362
|
+
"nsnb-invite": "nsnb-invite",
|
|
1363
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1364
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1365
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1366
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1367
|
+
"organization-teams": "organization-teams",
|
|
1368
|
+
saml: "saml",
|
|
1369
|
+
teams: "teams"
|
|
1370
|
+
};
|
|
1252
1371
|
const userEventPayloadOutcomeEnum = {
|
|
1253
1372
|
"account-matched": "account-matched",
|
|
1254
1373
|
"linking-required": "linking-required"
|
|
@@ -1304,6 +1423,7 @@ const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
|
1304
1423
|
"observability-edge-requests": "observability-edge-requests",
|
|
1305
1424
|
"observability-error-rate": "observability-error-rate",
|
|
1306
1425
|
"observability-function-invocations": "observability-function-invocations",
|
|
1426
|
+
shortcut: "shortcut",
|
|
1307
1427
|
"speed-insights-cls": "speed-insights-cls",
|
|
1308
1428
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1309
1429
|
"speed-insights-res": "speed-insights-res"
|
|
@@ -1338,7 +1458,6 @@ const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
|
1338
1458
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1339
1459
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1340
1460
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1341
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1342
1461
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1343
1462
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1344
1463
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -1384,47 +1503,6 @@ const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
1384
1503
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1385
1504
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1386
1505
|
};
|
|
1387
|
-
const userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
1388
|
-
analyticsUsage: "analyticsUsage",
|
|
1389
|
-
artifacts: "artifacts",
|
|
1390
|
-
bandwidth: "bandwidth",
|
|
1391
|
-
blobDataTransfer: "blobDataTransfer",
|
|
1392
|
-
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
1393
|
-
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
1394
|
-
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
1395
|
-
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
1396
|
-
connectDataTransfer: "connectDataTransfer",
|
|
1397
|
-
dataCacheRead: "dataCacheRead",
|
|
1398
|
-
dataCacheWrite: "dataCacheWrite",
|
|
1399
|
-
edgeConfigRead: "edgeConfigRead",
|
|
1400
|
-
edgeConfigWrite: "edgeConfigWrite",
|
|
1401
|
-
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
1402
|
-
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
1403
|
-
edgeRequest: "edgeRequest",
|
|
1404
|
-
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
1405
|
-
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
1406
|
-
fastDataTransfer: "fastDataTransfer",
|
|
1407
|
-
fastOriginTransfer: "fastOriginTransfer",
|
|
1408
|
-
fluidCpuDuration: "fluidCpuDuration",
|
|
1409
|
-
fluidDuration: "fluidDuration",
|
|
1410
|
-
functionDuration: "functionDuration",
|
|
1411
|
-
functionInvocation: "functionInvocation",
|
|
1412
|
-
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
1413
|
-
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
1414
|
-
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
1415
|
-
logDrainsVolume: "logDrainsVolume",
|
|
1416
|
-
monitoringMetric: "monitoringMetric",
|
|
1417
|
-
observabilityEvent: "observabilityEvent",
|
|
1418
|
-
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
1419
|
-
runtimeCacheRead: "runtimeCacheRead",
|
|
1420
|
-
runtimeCacheWrite: "runtimeCacheWrite",
|
|
1421
|
-
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
1422
|
-
sourceImages: "sourceImages",
|
|
1423
|
-
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
1424
|
-
wafOwaspRequests: "wafOwaspRequests",
|
|
1425
|
-
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1426
|
-
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1427
|
-
};
|
|
1428
1506
|
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1429
1507
|
BILLING: "BILLING",
|
|
1430
1508
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -1765,6 +1843,14 @@ const userEventPayloadBillingPlanEnum = {
|
|
|
1765
1843
|
enterprise: "enterprise",
|
|
1766
1844
|
platform: "platform"
|
|
1767
1845
|
};
|
|
1846
|
+
const userEventPayloadPreviousModeEnum = {
|
|
1847
|
+
organization: "organization",
|
|
1848
|
+
team: "team"
|
|
1849
|
+
};
|
|
1850
|
+
const userEventPayloadModeEnum = {
|
|
1851
|
+
organization: "organization",
|
|
1852
|
+
team: "team"
|
|
1853
|
+
};
|
|
1768
1854
|
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1769
1855
|
all: "all",
|
|
1770
1856
|
preview: "preview"
|
|
@@ -1845,6 +1931,7 @@ const userEventPayloadWidgetEnum = {
|
|
|
1845
1931
|
"observability-function-invocations": "observability-function-invocations",
|
|
1846
1932
|
online: "online",
|
|
1847
1933
|
res: "res",
|
|
1934
|
+
shortcut: "shortcut",
|
|
1848
1935
|
"speed-insights-cls": "speed-insights-cls",
|
|
1849
1936
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1850
1937
|
"speed-insights-res": "speed-insights-res"
|
|
@@ -1874,6 +1961,7 @@ const userEventPayloadPreviousGitProviderEnum = {
|
|
|
1874
1961
|
"github-custom-host": "github-custom-host",
|
|
1875
1962
|
"github-limited": "github-limited",
|
|
1876
1963
|
gitlab: "gitlab",
|
|
1964
|
+
v0: "v0",
|
|
1877
1965
|
vercel: "vercel"
|
|
1878
1966
|
};
|
|
1879
1967
|
const userEventPayloadNextGitProviderEnum = {
|
|
@@ -1883,6 +1971,7 @@ const userEventPayloadNextGitProviderEnum = {
|
|
|
1883
1971
|
"github-custom-host": "github-custom-host",
|
|
1884
1972
|
"github-limited": "github-limited",
|
|
1885
1973
|
gitlab: "gitlab",
|
|
1974
|
+
v0: "v0",
|
|
1886
1975
|
vercel: "vercel"
|
|
1887
1976
|
};
|
|
1888
1977
|
const userEventPayloadGitProviderEnum = {
|
|
@@ -1892,6 +1981,7 @@ const userEventPayloadGitProviderEnum = {
|
|
|
1892
1981
|
"github-custom-host": "github-custom-host",
|
|
1893
1982
|
"github-limited": "github-limited",
|
|
1894
1983
|
gitlab: "gitlab",
|
|
1984
|
+
v0: "v0",
|
|
1895
1985
|
vercel: "vercel"
|
|
1896
1986
|
};
|
|
1897
1987
|
const userEventPayloadCreateDeploymentsEnum = {
|
|
@@ -2037,6 +2127,11 @@ const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
|
2037
2127
|
plus: "plus",
|
|
2038
2128
|
unbundled: "unbundled"
|
|
2039
2129
|
};
|
|
2130
|
+
const userEventPayloadBudgetBudgetItemScopeEnum = {
|
|
2131
|
+
organization: "organization",
|
|
2132
|
+
project: "project",
|
|
2133
|
+
team: "team"
|
|
2134
|
+
};
|
|
2040
2135
|
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2041
2136
|
flex: "flex",
|
|
2042
2137
|
legacy: "legacy",
|
|
@@ -2044,6 +2139,11 @@ const userEventPayloadBudgetPricingPlanEnum = {
|
|
|
2044
2139
|
plus: "plus",
|
|
2045
2140
|
unbundled: "unbundled"
|
|
2046
2141
|
};
|
|
2142
|
+
const userEventPayloadBudgetScopeEnum = {
|
|
2143
|
+
organization: "organization",
|
|
2144
|
+
project: "project",
|
|
2145
|
+
team: "team"
|
|
2146
|
+
};
|
|
2047
2147
|
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2048
2148
|
flex: "flex",
|
|
2049
2149
|
legacy: "legacy",
|
|
@@ -2051,6 +2151,11 @@ const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
|
2051
2151
|
plus: "plus",
|
|
2052
2152
|
unbundled: "unbundled"
|
|
2053
2153
|
};
|
|
2154
|
+
const userEventPayloadPrevBudgetScopeEnum = {
|
|
2155
|
+
organization: "organization",
|
|
2156
|
+
project: "project",
|
|
2157
|
+
team: "team"
|
|
2158
|
+
};
|
|
2054
2159
|
const userEventPayloadStoreTypeEnum = {
|
|
2055
2160
|
blob: "blob",
|
|
2056
2161
|
"edge-config": "edge-config",
|
|
@@ -2102,6 +2207,7 @@ const userEventPayloadReasonEnum = {
|
|
|
2102
2207
|
"long-build-duration": "long-build-duration",
|
|
2103
2208
|
"oom-failure": "oom-failure",
|
|
2104
2209
|
"plan-change": "plan-change",
|
|
2210
|
+
"project-transfer": "project-transfer",
|
|
2105
2211
|
"short-build-duration": "short-build-duration",
|
|
2106
2212
|
"sustained-high-cpu": "sustained-high-cpu"
|
|
2107
2213
|
};
|
|
@@ -2134,27 +2240,6 @@ const userEventPayloadNewPlanEnum = {
|
|
|
2134
2240
|
hobby: "hobby",
|
|
2135
2241
|
pro: "pro"
|
|
2136
2242
|
};
|
|
2137
|
-
const userEventPayloadSourceEnum = {
|
|
2138
|
-
"account-update": "account-update",
|
|
2139
|
-
bitbucket: "bitbucket",
|
|
2140
|
-
dsync: "dsync",
|
|
2141
|
-
feedback: "feedback",
|
|
2142
|
-
github: "github",
|
|
2143
|
-
gitlab: "gitlab",
|
|
2144
|
-
import: "import",
|
|
2145
|
-
link: "link",
|
|
2146
|
-
mail: "mail",
|
|
2147
|
-
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
2148
|
-
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
2149
|
-
"nsnb-invite": "nsnb-invite",
|
|
2150
|
-
"nsnb-redeploy": "nsnb-redeploy",
|
|
2151
|
-
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
2152
|
-
"nsnb-request-access": "nsnb-request-access",
|
|
2153
|
-
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
2154
|
-
"organization-teams": "organization-teams",
|
|
2155
|
-
saml: "saml",
|
|
2156
|
-
teams: "teams"
|
|
2157
|
-
};
|
|
2158
2243
|
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2159
2244
|
BILLING: "BILLING",
|
|
2160
2245
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -2353,8 +2438,10 @@ const listEventTypeNameEnum = {
|
|
|
2353
2438
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
2354
2439
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
2355
2440
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2441
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
2356
2442
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2357
2443
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2444
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
2358
2445
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
2359
2446
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2360
2447
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -2364,6 +2451,7 @@ const listEventTypeNameEnum = {
|
|
|
2364
2451
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
2365
2452
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
2366
2453
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
2454
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
2367
2455
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
2368
2456
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
2369
2457
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
@@ -2377,8 +2465,10 @@ const listEventTypeNameEnum = {
|
|
|
2377
2465
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
2378
2466
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
2379
2467
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
2468
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
2380
2469
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
2381
2470
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
2471
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
2382
2472
|
"ai-omniagent": "ai-omniagent",
|
|
2383
2473
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
2384
2474
|
"alert-rule-created": "alert-rule-created",
|
|
@@ -2568,6 +2658,7 @@ const listEventTypeNameEnum = {
|
|
|
2568
2658
|
"flags-segment": "flags-segment",
|
|
2569
2659
|
"flags-settings": "flags-settings",
|
|
2570
2660
|
"flags-transferred": "flags-transferred",
|
|
2661
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
2571
2662
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2572
2663
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2573
2664
|
"global-config-backup-restored": "global-config-backup-restored",
|
|
@@ -2652,6 +2743,7 @@ const listEventTypeNameEnum = {
|
|
|
2652
2743
|
"organization-team-add": "organization-team-add",
|
|
2653
2744
|
"organization-team-create": "organization-team-create",
|
|
2654
2745
|
"organization-team-delete": "organization-team-delete",
|
|
2746
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
2655
2747
|
"owner-blocked": "owner-blocked",
|
|
2656
2748
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
2657
2749
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -2731,6 +2823,12 @@ const listEventTypeNameEnum = {
|
|
|
2731
2823
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
2732
2824
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
2733
2825
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
2826
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
2827
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
2828
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
2829
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
2830
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
2831
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
2734
2832
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
2735
2833
|
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
2736
2834
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
@@ -2796,6 +2894,9 @@ const listEventTypeNameEnum = {
|
|
|
2796
2894
|
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
2797
2895
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
2798
2896
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
2897
|
+
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
2898
|
+
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
2899
|
+
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
2799
2900
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
2800
2901
|
"saml-connection-created": "saml-connection-created",
|
|
2801
2902
|
"saml-connection-deleted": "saml-connection-deleted",
|
|
@@ -2823,6 +2924,8 @@ const listEventTypeNameEnum = {
|
|
|
2823
2924
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
2824
2925
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
2825
2926
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
2927
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
2928
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
2826
2929
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
2827
2930
|
"show-ip-addresses": "show-ip-addresses",
|
|
2828
2931
|
signup: "signup",
|
|
@@ -2853,6 +2956,7 @@ const listEventTypeNameEnum = {
|
|
|
2853
2956
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
2854
2957
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
2855
2958
|
"storage-view-secret": "storage-view-secret",
|
|
2959
|
+
"strict-connectors": "strict-connectors",
|
|
2856
2960
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
2857
2961
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
2858
2962
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -3039,8 +3143,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
3039
3143
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
3040
3144
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
3041
3145
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
3146
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
3042
3147
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
3043
3148
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
3149
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
3044
3150
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
3045
3151
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
3046
3152
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -3050,6 +3156,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3050
3156
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
3051
3157
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
3052
3158
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
3159
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
3053
3160
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
3054
3161
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
3055
3162
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
@@ -3063,8 +3170,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
3063
3170
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
3064
3171
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
3065
3172
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
3173
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
3066
3174
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
3067
3175
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
3176
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
3068
3177
|
"ai-omniagent": "ai-omniagent",
|
|
3069
3178
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
3070
3179
|
"alert-rule-created": "alert-rule-created",
|
|
@@ -3254,6 +3363,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3254
3363
|
"flags-segment": "flags-segment",
|
|
3255
3364
|
"flags-settings": "flags-settings",
|
|
3256
3365
|
"flags-transferred": "flags-transferred",
|
|
3366
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
3257
3367
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
3258
3368
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3259
3369
|
"global-config-backup-restored": "global-config-backup-restored",
|
|
@@ -3338,6 +3448,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3338
3448
|
"organization-team-add": "organization-team-add",
|
|
3339
3449
|
"organization-team-create": "organization-team-create",
|
|
3340
3450
|
"organization-team-delete": "organization-team-delete",
|
|
3451
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
3341
3452
|
"owner-blocked": "owner-blocked",
|
|
3342
3453
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
3343
3454
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -3417,6 +3528,12 @@ const listEventTypeReplacedByEnum = {
|
|
|
3417
3528
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
3418
3529
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
3419
3530
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
3531
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
3532
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
3533
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
3534
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
3535
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
3536
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
3420
3537
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
3421
3538
|
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
3422
3539
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
@@ -3482,6 +3599,9 @@ const listEventTypeReplacedByEnum = {
|
|
|
3482
3599
|
"project-web-analytics-enabled": "project-web-analytics-enabled",
|
|
3483
3600
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
3484
3601
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
3602
|
+
"repository-ci-env-variable-create": "repository-ci-env-variable-create",
|
|
3603
|
+
"repository-ci-env-variable-delete": "repository-ci-env-variable-delete",
|
|
3604
|
+
"repository-ci-env-variable-update": "repository-ci-env-variable-update",
|
|
3485
3605
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
3486
3606
|
"saml-connection-created": "saml-connection-created",
|
|
3487
3607
|
"saml-connection-deleted": "saml-connection-deleted",
|
|
@@ -3509,6 +3629,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
3509
3629
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
3510
3630
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
3511
3631
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
3632
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
3633
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
3512
3634
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
3513
3635
|
"show-ip-addresses": "show-ip-addresses",
|
|
3514
3636
|
signup: "signup",
|
|
@@ -3539,6 +3661,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3539
3661
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
3540
3662
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
3541
3663
|
"storage-view-secret": "storage-view-secret",
|
|
3664
|
+
"strict-connectors": "strict-connectors",
|
|
3542
3665
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
3543
3666
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
3544
3667
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -3692,6 +3815,10 @@ const listEventTypesResponseCategoriesNameEnum = {
|
|
|
3692
3815
|
"vercel-app": "vercel-app",
|
|
3693
3816
|
workflow: "workflow"
|
|
3694
3817
|
};
|
|
3818
|
+
const flagVariantsValue = {
|
|
3819
|
+
false: false,
|
|
3820
|
+
true: true
|
|
3821
|
+
};
|
|
3695
3822
|
const typeEnum = {
|
|
3696
3823
|
list: "list",
|
|
3697
3824
|
"list/inline": "list/inline"
|
|
@@ -3805,7 +3932,8 @@ const namedSandboxNetworkPolicyModeEnum = {
|
|
|
3805
3932
|
};
|
|
3806
3933
|
const modeEnum = {
|
|
3807
3934
|
"read-only": "read-only",
|
|
3808
|
-
"read-write": "read-write"
|
|
3935
|
+
"read-write": "read-write",
|
|
3936
|
+
snapshot: "snapshot"
|
|
3809
3937
|
};
|
|
3810
3938
|
const sandboxNetworkPolicyModeEnum = {
|
|
3811
3939
|
"allow-all": "allow-all",
|
|
@@ -4163,7 +4291,6 @@ const authUserSoftBlockReasonEnum = {
|
|
|
4163
4291
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
4164
4292
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
4165
4293
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
4166
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
4167
4294
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
4168
4295
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
4169
4296
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -4209,47 +4336,6 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
4209
4336
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4210
4337
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4211
4338
|
};
|
|
4212
|
-
const authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = {
|
|
4213
|
-
analyticsUsage: "analyticsUsage",
|
|
4214
|
-
artifacts: "artifacts",
|
|
4215
|
-
bandwidth: "bandwidth",
|
|
4216
|
-
blobDataTransfer: "blobDataTransfer",
|
|
4217
|
-
blobTotalAdvancedRequests: "blobTotalAdvancedRequests",
|
|
4218
|
-
blobTotalAvgSizeInBytes: "blobTotalAvgSizeInBytes",
|
|
4219
|
-
blobTotalGetResponseObjectSizeInBytes: "blobTotalGetResponseObjectSizeInBytes",
|
|
4220
|
-
blobTotalSimpleRequests: "blobTotalSimpleRequests",
|
|
4221
|
-
connectDataTransfer: "connectDataTransfer",
|
|
4222
|
-
dataCacheRead: "dataCacheRead",
|
|
4223
|
-
dataCacheWrite: "dataCacheWrite",
|
|
4224
|
-
edgeConfigRead: "edgeConfigRead",
|
|
4225
|
-
edgeConfigWrite: "edgeConfigWrite",
|
|
4226
|
-
edgeFunctionExecutionUnits: "edgeFunctionExecutionUnits",
|
|
4227
|
-
edgeMiddlewareInvocations: "edgeMiddlewareInvocations",
|
|
4228
|
-
edgeRequest: "edgeRequest",
|
|
4229
|
-
edgeRequestAdditionalCpuDuration: "edgeRequestAdditionalCpuDuration",
|
|
4230
|
-
elasticConcurrencyBuildSlots: "elasticConcurrencyBuildSlots",
|
|
4231
|
-
fastDataTransfer: "fastDataTransfer",
|
|
4232
|
-
fastOriginTransfer: "fastOriginTransfer",
|
|
4233
|
-
fluidCpuDuration: "fluidCpuDuration",
|
|
4234
|
-
fluidDuration: "fluidDuration",
|
|
4235
|
-
functionDuration: "functionDuration",
|
|
4236
|
-
functionInvocation: "functionInvocation",
|
|
4237
|
-
imageOptimizationCacheRead: "imageOptimizationCacheRead",
|
|
4238
|
-
imageOptimizationCacheWrite: "imageOptimizationCacheWrite",
|
|
4239
|
-
imageOptimizationTransformation: "imageOptimizationTransformation",
|
|
4240
|
-
logDrainsVolume: "logDrainsVolume",
|
|
4241
|
-
monitoringMetric: "monitoringMetric",
|
|
4242
|
-
observabilityEvent: "observabilityEvent",
|
|
4243
|
-
onDemandConcurrencyMinutes: "onDemandConcurrencyMinutes",
|
|
4244
|
-
runtimeCacheRead: "runtimeCacheRead",
|
|
4245
|
-
runtimeCacheWrite: "runtimeCacheWrite",
|
|
4246
|
-
serverlessFunctionExecution: "serverlessFunctionExecution",
|
|
4247
|
-
sourceImages: "sourceImages",
|
|
4248
|
-
wafOwaspExcessBytes: "wafOwaspExcessBytes",
|
|
4249
|
-
wafOwaspRequests: "wafOwaspRequests",
|
|
4250
|
-
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4251
|
-
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4252
|
-
};
|
|
4253
4339
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
4254
4340
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4255
4341
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
@@ -4375,6 +4461,11 @@ const listProjectChecksBlocks = {
|
|
|
4375
4461
|
"deployment-promotion": "deployment-promotion",
|
|
4376
4462
|
none: "none"
|
|
4377
4463
|
};
|
|
4464
|
+
const listConnectorsSort = {
|
|
4465
|
+
name: "name",
|
|
4466
|
+
createdAt: "createdAt",
|
|
4467
|
+
updatedAt: "updatedAt"
|
|
4468
|
+
};
|
|
4378
4469
|
const getDeploymentEventsDirection = {
|
|
4379
4470
|
backward: "backward",
|
|
4380
4471
|
forward: "forward"
|
|
@@ -4447,7 +4538,8 @@ const getBillingPlansSource = {
|
|
|
4447
4538
|
cli: "cli",
|
|
4448
4539
|
oauth: "oauth",
|
|
4449
4540
|
backoffice: "backoffice",
|
|
4450
|
-
"import-recommended-integrations": "import-recommended-integrations"
|
|
4541
|
+
"import-recommended-integrations": "import-recommended-integrations",
|
|
4542
|
+
organization: "organization"
|
|
4451
4543
|
};
|
|
4452
4544
|
const getConfigurationsView = {
|
|
4453
4545
|
account: "account",
|
|
@@ -4501,17 +4593,17 @@ const getRollingReleaseState = {
|
|
|
4501
4593
|
COMPLETE: "COMPLETE",
|
|
4502
4594
|
ABORTED: "ABORTED"
|
|
4503
4595
|
};
|
|
4504
|
-
const
|
|
4596
|
+
const listNamedSandboxesSortBy = {
|
|
4505
4597
|
createdAt: "createdAt",
|
|
4506
4598
|
name: "name",
|
|
4507
4599
|
statusUpdatedAt: "statusUpdatedAt",
|
|
4508
4600
|
currentSnapshotId: "currentSnapshotId"
|
|
4509
4601
|
};
|
|
4510
|
-
const
|
|
4602
|
+
const listNamedSandboxesSortOrder = {
|
|
4511
4603
|
asc: "asc",
|
|
4512
4604
|
desc: "desc"
|
|
4513
4605
|
};
|
|
4514
|
-
const
|
|
4606
|
+
const listNamedSandboxesStatus = {
|
|
4515
4607
|
running: "running",
|
|
4516
4608
|
stopping: "stopping",
|
|
4517
4609
|
stopped: "stopped"
|
|
@@ -4573,21 +4665,29 @@ exports.authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = authUserFeatureB
|
|
|
4573
4665
|
exports.authUserImportFlowGitProviderEnum = authUserImportFlowGitProviderEnum;
|
|
4574
4666
|
exports.authUserResourceConfigBuildQueueConfigurationEnum = authUserResourceConfigBuildQueueConfigurationEnum;
|
|
4575
4667
|
exports.authUserSoftBlockBlockedDueToOverageTypeEnum = authUserSoftBlockBlockedDueToOverageTypeEnum;
|
|
4576
|
-
exports.authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4577
4668
|
exports.authUserSoftBlockReasonEnum = authUserSoftBlockReasonEnum;
|
|
4578
4669
|
exports.cmpEnum = cmpEnum;
|
|
4579
4670
|
exports.connectConnectorCreateDataOwnerTypeEnum = connectConnectorCreateDataOwnerTypeEnum;
|
|
4580
4671
|
exports.connectConnectorCreateDataServerConfigJwksKeysUseEnum = connectConnectorCreateDataServerConfigJwksKeysUseEnum;
|
|
4672
|
+
exports.connectConnectorCreateDataShortcutsTypeEnum = connectConnectorCreateDataShortcutsTypeEnum;
|
|
4581
4673
|
exports.connectConnectorCreateDataSubjectTypeEnum = connectConnectorCreateDataSubjectTypeEnum;
|
|
4582
4674
|
exports.connectConnectorCreateResultCreationModeEnum = connectConnectorCreateResultCreationModeEnum;
|
|
4583
4675
|
exports.connectConnectorCreateResultSupportsIconEnum = connectConnectorCreateResultSupportsIconEnum;
|
|
4584
4676
|
exports.connectConnectorCreateResultTypeEnum = connectConnectorCreateResultTypeEnum;
|
|
4677
|
+
exports.connectConnectorCreationModeEnum = connectConnectorCreationModeEnum;
|
|
4678
|
+
exports.connectConnectorSupportsIconEnum = connectConnectorSupportsIconEnum;
|
|
4679
|
+
exports.connectConnectorTypeEnum = connectConnectorTypeEnum;
|
|
4680
|
+
exports.connectConnectorUpdateDataOwnerTypeEnum = connectConnectorUpdateDataOwnerTypeEnum;
|
|
4681
|
+
exports.connectConnectorUpdateDataServerConfigJwksKeysUseEnum = connectConnectorUpdateDataServerConfigJwksKeysUseEnum;
|
|
4682
|
+
exports.connectConnectorUpdateDataShortcutsTypeEnum = connectConnectorUpdateDataShortcutsTypeEnum;
|
|
4683
|
+
exports.connectServiceSyncStatusEnum = connectServiceSyncStatusEnum;
|
|
4585
4684
|
exports.deleteKmsIssuerPolicyKind = deleteKmsIssuerPolicyKind;
|
|
4586
4685
|
exports.fileTreeTypeEnum = fileTreeTypeEnum;
|
|
4587
4686
|
exports.filterProjectEnvsDecrypt = filterProjectEnvsDecrypt;
|
|
4588
4687
|
exports.flagJSONValue = flagJSONValue;
|
|
4589
4688
|
exports.flagKindEnum = flagKindEnum;
|
|
4590
4689
|
exports.flagStateEnum = flagStateEnum;
|
|
4690
|
+
exports.flagVariantsValue = flagVariantsValue;
|
|
4591
4691
|
exports.flagsSdkKeyWithSecretsTypeEnum = flagsSdkKeyWithSecretsTypeEnum;
|
|
4592
4692
|
exports.getBillingPlansSource = getBillingPlansSource;
|
|
4593
4693
|
exports.getConfigurationsInstallationType = getConfigurationsInstallationType;
|
|
@@ -4615,6 +4715,7 @@ exports.invitedTeamMemberRoleEnum = invitedTeamMemberRoleEnum;
|
|
|
4615
4715
|
exports.invitedTeamMemberTeamPermissionsEnum = invitedTeamMemberTeamPermissionsEnum;
|
|
4616
4716
|
exports.invitedTeamMemberTeamRolesEnum = invitedTeamMemberTeamRolesEnum;
|
|
4617
4717
|
exports.listAiGatewayRulesIncludeDisabled = listAiGatewayRulesIncludeDisabled;
|
|
4718
|
+
exports.listConnectorsSort = listConnectorsSort;
|
|
4618
4719
|
exports.listDrivesSortBy = listDrivesSortBy;
|
|
4619
4720
|
exports.listDrivesSortOrder = listDrivesSortOrder;
|
|
4620
4721
|
exports.listEventTypeCategoriesEnum = listEventTypeCategoriesEnum;
|
|
@@ -4623,12 +4724,12 @@ exports.listEventTypeReplacedByEnum = listEventTypeReplacedByEnum;
|
|
|
4623
4724
|
exports.listEventTypesResponseCategoriesNameEnum = listEventTypesResponseCategoriesNameEnum;
|
|
4624
4725
|
exports.listFlagsState = listFlagsState;
|
|
4625
4726
|
exports.listFlagsV2State = listFlagsV2State;
|
|
4727
|
+
exports.listNamedSandboxesSortBy = listNamedSandboxesSortBy;
|
|
4728
|
+
exports.listNamedSandboxesSortOrder = listNamedSandboxesSortOrder;
|
|
4729
|
+
exports.listNamedSandboxesStatus = listNamedSandboxesStatus;
|
|
4626
4730
|
exports.listProjectChecksBlocks = listProjectChecksBlocks;
|
|
4627
4731
|
exports.listRepositoryTagsSortBy = listRepositoryTagsSortBy;
|
|
4628
4732
|
exports.listRepositoryTagsSortOrder = listRepositoryTagsSortOrder;
|
|
4629
|
-
exports.listSandboxesSortBy = listSandboxesSortBy;
|
|
4630
|
-
exports.listSandboxesSortOrder = listSandboxesSortOrder;
|
|
4631
|
-
exports.listSandboxesStatus = listSandboxesStatus;
|
|
4632
4733
|
exports.listSessionSnapshotsSortOrder = listSessionSnapshotsSortOrder;
|
|
4633
4734
|
exports.listSessionsSortOrder = listSessionsSortOrder;
|
|
4634
4735
|
exports.listTeamFlagsKind = listTeamFlagsKind;
|
|
@@ -4643,6 +4744,7 @@ exports.namedSandboxNetworkPolicyModeEnum = namedSandboxNetworkPolicyModeEnum;
|
|
|
4643
4744
|
exports.namedSandboxStatusEnum = namedSandboxStatusEnum;
|
|
4644
4745
|
exports.networkStatusEnum = networkStatusEnum;
|
|
4645
4746
|
exports.originEnum = originEnum;
|
|
4747
|
+
exports.privateLinkEndpointStatusEnum = privateLinkEndpointStatusEnum;
|
|
4646
4748
|
exports.roleEnum = roleEnum;
|
|
4647
4749
|
exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
|
|
4648
4750
|
exports.scopeEnum = scopeEnum;
|
|
@@ -4697,8 +4799,10 @@ exports.userEventPayloadAuthMethodEnum = userEventPayloadAuthMethodEnum;
|
|
|
4697
4799
|
exports.userEventPayloadBeforePermissionsEnum = userEventPayloadBeforePermissionsEnum;
|
|
4698
4800
|
exports.userEventPayloadBillingPlanEnum = userEventPayloadBillingPlanEnum;
|
|
4699
4801
|
exports.userEventPayloadBudgetBudgetItemPricingPlanEnum = userEventPayloadBudgetBudgetItemPricingPlanEnum;
|
|
4802
|
+
exports.userEventPayloadBudgetBudgetItemScopeEnum = userEventPayloadBudgetBudgetItemScopeEnum;
|
|
4700
4803
|
exports.userEventPayloadBudgetPricingPlanEnum = userEventPayloadBudgetPricingPlanEnum;
|
|
4701
4804
|
exports.userEventPayloadBudgetRefreshPeriodEnum = userEventPayloadBudgetRefreshPeriodEnum;
|
|
4805
|
+
exports.userEventPayloadBudgetScopeEnum = userEventPayloadBudgetScopeEnum;
|
|
4702
4806
|
exports.userEventPayloadBuildQueueConfigurationEnum = userEventPayloadBuildQueueConfigurationEnum;
|
|
4703
4807
|
exports.userEventPayloadChangeEnum = userEventPayloadChangeEnum;
|
|
4704
4808
|
exports.userEventPayloadChangedFieldsEnum = userEventPayloadChangedFieldsEnum;
|
|
@@ -4725,6 +4829,7 @@ exports.userEventPayloadJobNsnbSideEffectActionEnum = userEventPayloadJobNsnbSid
|
|
|
4725
4829
|
exports.userEventPayloadJobProviderEnum = userEventPayloadJobProviderEnum;
|
|
4726
4830
|
exports.userEventPayloadKindEnum = userEventPayloadKindEnum;
|
|
4727
4831
|
exports.userEventPayloadMethodEnum = userEventPayloadMethodEnum;
|
|
4832
|
+
exports.userEventPayloadModeEnum = userEventPayloadModeEnum;
|
|
4728
4833
|
exports.userEventPayloadNewEnvVarTargetEnum = userEventPayloadNewEnvVarTargetEnum;
|
|
4729
4834
|
exports.userEventPayloadNewEnvVarTypeEnum = userEventPayloadNewEnvVarTypeEnum;
|
|
4730
4835
|
exports.userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = userEventPayloadNewOwnerAbuseBlockHistoryActionEnum;
|
|
@@ -4767,7 +4872,6 @@ exports.userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = userEve
|
|
|
4767
4872
|
exports.userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum;
|
|
4768
4873
|
exports.userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum;
|
|
4769
4874
|
exports.userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum;
|
|
4770
|
-
exports.userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4771
4875
|
exports.userEventPayloadNewOwnerSoftBlockReasonEnum = userEventPayloadNewOwnerSoftBlockReasonEnum;
|
|
4772
4876
|
exports.userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = userEventPayloadNewOwnerTeamsJoinedFromOriginEnum;
|
|
4773
4877
|
exports.userEventPayloadNewOwnerTeamsRoleEnum = userEventPayloadNewOwnerTeamsRoleEnum;
|
|
@@ -4803,12 +4907,14 @@ exports.userEventPayloadPasswordProtectionDeploymentTypeEnum = userEventPayloadP
|
|
|
4803
4907
|
exports.userEventPayloadPermissionsEnum = userEventPayloadPermissionsEnum;
|
|
4804
4908
|
exports.userEventPayloadPlanEnum = userEventPayloadPlanEnum;
|
|
4805
4909
|
exports.userEventPayloadPrevBudgetPricingPlanEnum = userEventPayloadPrevBudgetPricingPlanEnum;
|
|
4910
|
+
exports.userEventPayloadPrevBudgetScopeEnum = userEventPayloadPrevBudgetScopeEnum;
|
|
4806
4911
|
exports.userEventPayloadPreviousBranchMatcherTypeEnum = userEventPayloadPreviousBranchMatcherTypeEnum;
|
|
4807
4912
|
exports.userEventPayloadPreviousEchModeEnum = userEventPayloadPreviousEchModeEnum;
|
|
4808
4913
|
exports.userEventPayloadPreviousEnforcementScopeEnum = userEventPayloadPreviousEnforcementScopeEnum;
|
|
4809
4914
|
exports.userEventPayloadPreviousEnum = userEventPayloadPreviousEnum;
|
|
4810
4915
|
exports.userEventPayloadPreviousGitProviderEnum = userEventPayloadPreviousGitProviderEnum;
|
|
4811
4916
|
exports.userEventPayloadPreviousIssuerModeEnum = userEventPayloadPreviousIssuerModeEnum;
|
|
4917
|
+
exports.userEventPayloadPreviousModeEnum = userEventPayloadPreviousModeEnum;
|
|
4812
4918
|
exports.userEventPayloadPreviousNewResourceBlockingPolicyEnum = userEventPayloadPreviousNewResourceBlockingPolicyEnum;
|
|
4813
4919
|
exports.userEventPayloadPreviousPassportDeploymentTypeEnum = userEventPayloadPreviousPassportDeploymentTypeEnum;
|
|
4814
4920
|
exports.userEventPayloadPreviousPlanEnum = userEventPayloadPreviousPlanEnum;
|
|
@@ -4853,6 +4959,7 @@ exports.userEventPayloadTrustedIpsEnum = userEventPayloadTrustedIpsEnum;
|
|
|
4853
4959
|
exports.userEventPayloadTypeEnum = userEventPayloadTypeEnum;
|
|
4854
4960
|
exports.userEventPayloadUpdateDiffNewTargetEnum = userEventPayloadUpdateDiffNewTargetEnum;
|
|
4855
4961
|
exports.userEventPayloadUpdateDiffOldTargetEnum = userEventPayloadUpdateDiffOldTargetEnum;
|
|
4962
|
+
exports.userEventPayloadVisibilityEnum = userEventPayloadVisibilityEnum;
|
|
4856
4963
|
exports.userEventPayloadWidgetEnum = userEventPayloadWidgetEnum;
|
|
4857
4964
|
exports.userEventTypeEnum = userEventTypeEnum;
|
|
4858
4965
|
exports.vcrImageDetailKindEnum = vcrImageDetailKindEnum;
|