vercel-api-js 1.15.0 → 1.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{components-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 +311 -28
- package/dist/index.d.ts +4625 -591
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-k96frmq7.cjs → schemas-csiv5yep.cjs} +1821 -272
- package/dist/{schemas-f3m4uoi5.js → schemas-lm0wg73i.js} +1532 -252
- package/dist/schemas.cjs +291 -22
- package/dist/schemas.d.mts +993 -187
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +208 -115
- package/dist/types.d.mts +3237 -391
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +190 -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",
|
|
@@ -625,6 +697,8 @@ const userEventTypeEnum = {
|
|
|
625
697
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
626
698
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
627
699
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
700
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
701
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
628
702
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
629
703
|
"show-ip-addresses": "show-ip-addresses",
|
|
630
704
|
signup: "signup",
|
|
@@ -655,6 +729,7 @@ const userEventTypeEnum = {
|
|
|
655
729
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
656
730
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
657
731
|
"storage-view-secret": "storage-view-secret",
|
|
732
|
+
"strict-connectors": "strict-connectors",
|
|
658
733
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
659
734
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
660
735
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -895,6 +970,7 @@ const userEventPayloadPermissionsEnum = {
|
|
|
895
970
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
896
971
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
897
972
|
"read-write:alerts": "read-write:alerts",
|
|
973
|
+
"read-write:automations": "read-write:automations",
|
|
898
974
|
"read-write:billing": "read-write:billing",
|
|
899
975
|
"read-write:blob": "read-write:blob",
|
|
900
976
|
"read-write:connect": "read-write:connect",
|
|
@@ -925,7 +1001,9 @@ const userEventPayloadPermissionsEnum = {
|
|
|
925
1001
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
926
1002
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
927
1003
|
"read:alerts": "read:alerts",
|
|
1004
|
+
"read:automations": "read:automations",
|
|
928
1005
|
"read:billing": "read:billing",
|
|
1006
|
+
"read:connect": "read:connect",
|
|
929
1007
|
"read:deployment": "read:deployment",
|
|
930
1008
|
"read:domain": "read:domain",
|
|
931
1009
|
"read:event": "read:event",
|
|
@@ -944,6 +1022,7 @@ const userEventPayloadPermissionsEnum = {
|
|
|
944
1022
|
"read:team": "read:team",
|
|
945
1023
|
"read:vcr": "read:vcr",
|
|
946
1024
|
"read:web-analytics": "read:web-analytics",
|
|
1025
|
+
"read:webhooks": "read:webhooks",
|
|
947
1026
|
"use:ai-gateway": "use:ai-gateway"
|
|
948
1027
|
};
|
|
949
1028
|
const userEventPayloadNextScopesEnum = {
|
|
@@ -961,6 +1040,7 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
961
1040
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
962
1041
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
963
1042
|
"read-write:alerts": "read-write:alerts",
|
|
1043
|
+
"read-write:automations": "read-write:automations",
|
|
964
1044
|
"read-write:billing": "read-write:billing",
|
|
965
1045
|
"read-write:blob": "read-write:blob",
|
|
966
1046
|
"read-write:connect": "read-write:connect",
|
|
@@ -991,7 +1071,9 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
991
1071
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
992
1072
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
993
1073
|
"read:alerts": "read:alerts",
|
|
1074
|
+
"read:automations": "read:automations",
|
|
994
1075
|
"read:billing": "read:billing",
|
|
1076
|
+
"read:connect": "read:connect",
|
|
995
1077
|
"read:deployment": "read:deployment",
|
|
996
1078
|
"read:domain": "read:domain",
|
|
997
1079
|
"read:event": "read:event",
|
|
@@ -1011,6 +1093,7 @@ const userEventPayloadNextPermissionsEnum = {
|
|
|
1011
1093
|
"read:user": "read:user",
|
|
1012
1094
|
"read:vcr": "read:vcr",
|
|
1013
1095
|
"read:web-analytics": "read:web-analytics",
|
|
1096
|
+
"read:webhooks": "read:webhooks",
|
|
1014
1097
|
"use:ai-gateway": "use:ai-gateway"
|
|
1015
1098
|
};
|
|
1016
1099
|
const userEventPayloadBeforePermissionsEnum = {
|
|
@@ -1022,6 +1105,7 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1022
1105
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1023
1106
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1024
1107
|
"read-write:alerts": "read-write:alerts",
|
|
1108
|
+
"read-write:automations": "read-write:automations",
|
|
1025
1109
|
"read-write:billing": "read-write:billing",
|
|
1026
1110
|
"read-write:blob": "read-write:blob",
|
|
1027
1111
|
"read-write:connect": "read-write:connect",
|
|
@@ -1052,7 +1136,9 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1052
1136
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1053
1137
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1054
1138
|
"read:alerts": "read:alerts",
|
|
1139
|
+
"read:automations": "read:automations",
|
|
1055
1140
|
"read:billing": "read:billing",
|
|
1141
|
+
"read:connect": "read:connect",
|
|
1056
1142
|
"read:deployment": "read:deployment",
|
|
1057
1143
|
"read:domain": "read:domain",
|
|
1058
1144
|
"read:event": "read:event",
|
|
@@ -1071,6 +1157,7 @@ const userEventPayloadBeforePermissionsEnum = {
|
|
|
1071
1157
|
"read:team": "read:team",
|
|
1072
1158
|
"read:vcr": "read:vcr",
|
|
1073
1159
|
"read:web-analytics": "read:web-analytics",
|
|
1160
|
+
"read:webhooks": "read:webhooks",
|
|
1074
1161
|
"use:ai-gateway": "use:ai-gateway"
|
|
1075
1162
|
};
|
|
1076
1163
|
const userEventPayloadAfterPermissionsEnum = {
|
|
@@ -1082,6 +1169,7 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1082
1169
|
"read-write:ai-gateway-rules": "read-write:ai-gateway-rules",
|
|
1083
1170
|
"read-write:ai-gateway-virtual-model-configs": "read-write:ai-gateway-virtual-model-configs",
|
|
1084
1171
|
"read-write:alerts": "read-write:alerts",
|
|
1172
|
+
"read-write:automations": "read-write:automations",
|
|
1085
1173
|
"read-write:billing": "read-write:billing",
|
|
1086
1174
|
"read-write:blob": "read-write:blob",
|
|
1087
1175
|
"read-write:connect": "read-write:connect",
|
|
@@ -1112,7 +1200,9 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1112
1200
|
"read:ai-gateway-rules": "read:ai-gateway-rules",
|
|
1113
1201
|
"read:ai-gateway-virtual-model-configs": "read:ai-gateway-virtual-model-configs",
|
|
1114
1202
|
"read:alerts": "read:alerts",
|
|
1203
|
+
"read:automations": "read:automations",
|
|
1115
1204
|
"read:billing": "read:billing",
|
|
1205
|
+
"read:connect": "read:connect",
|
|
1116
1206
|
"read:deployment": "read:deployment",
|
|
1117
1207
|
"read:domain": "read:domain",
|
|
1118
1208
|
"read:event": "read:event",
|
|
@@ -1131,6 +1221,7 @@ const userEventPayloadAfterPermissionsEnum = {
|
|
|
1131
1221
|
"read:team": "read:team",
|
|
1132
1222
|
"read:vcr": "read:vcr",
|
|
1133
1223
|
"read:web-analytics": "read:web-analytics",
|
|
1224
|
+
"read:webhooks": "read:webhooks",
|
|
1134
1225
|
"use:ai-gateway": "use:ai-gateway"
|
|
1135
1226
|
};
|
|
1136
1227
|
const userEventPayloadSettlementMethodEnum = {
|
|
@@ -1249,6 +1340,27 @@ const actionEnum = {
|
|
|
1249
1340
|
deny: "deny",
|
|
1250
1341
|
log: "log"
|
|
1251
1342
|
};
|
|
1343
|
+
const userEventPayloadSourceEnum = {
|
|
1344
|
+
"account-update": "account-update",
|
|
1345
|
+
bitbucket: "bitbucket",
|
|
1346
|
+
dsync: "dsync",
|
|
1347
|
+
feedback: "feedback",
|
|
1348
|
+
github: "github",
|
|
1349
|
+
gitlab: "gitlab",
|
|
1350
|
+
import: "import",
|
|
1351
|
+
link: "link",
|
|
1352
|
+
mail: "mail",
|
|
1353
|
+
"nsnb-auto-approve": "nsnb-auto-approve",
|
|
1354
|
+
"nsnb-hobby-upgrade": "nsnb-hobby-upgrade",
|
|
1355
|
+
"nsnb-invite": "nsnb-invite",
|
|
1356
|
+
"nsnb-redeploy": "nsnb-redeploy",
|
|
1357
|
+
"nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card",
|
|
1358
|
+
"nsnb-request-access": "nsnb-request-access",
|
|
1359
|
+
"nsnb-viewer-upgrade": "nsnb-viewer-upgrade",
|
|
1360
|
+
"organization-teams": "organization-teams",
|
|
1361
|
+
saml: "saml",
|
|
1362
|
+
teams: "teams"
|
|
1363
|
+
};
|
|
1252
1364
|
const userEventPayloadOutcomeEnum = {
|
|
1253
1365
|
"account-matched": "account-matched",
|
|
1254
1366
|
"linking-required": "linking-required"
|
|
@@ -1304,6 +1416,7 @@ const userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = {
|
|
|
1304
1416
|
"observability-edge-requests": "observability-edge-requests",
|
|
1305
1417
|
"observability-error-rate": "observability-error-rate",
|
|
1306
1418
|
"observability-function-invocations": "observability-function-invocations",
|
|
1419
|
+
shortcut: "shortcut",
|
|
1307
1420
|
"speed-insights-cls": "speed-insights-cls",
|
|
1308
1421
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1309
1422
|
"speed-insights-res": "speed-insights-res"
|
|
@@ -1338,7 +1451,6 @@ const userEventPayloadNewOwnerSoftBlockReasonEnum = {
|
|
|
1338
1451
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
1339
1452
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
1340
1453
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
1341
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
1342
1454
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
1343
1455
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
1344
1456
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -1384,47 +1496,6 @@ const userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
1384
1496
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
1385
1497
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
1386
1498
|
};
|
|
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
1499
|
const userEventPayloadNewOwnerTeamsRoleEnum = {
|
|
1429
1500
|
BILLING: "BILLING",
|
|
1430
1501
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -1765,6 +1836,14 @@ const userEventPayloadBillingPlanEnum = {
|
|
|
1765
1836
|
enterprise: "enterprise",
|
|
1766
1837
|
platform: "platform"
|
|
1767
1838
|
};
|
|
1839
|
+
const userEventPayloadPreviousModeEnum = {
|
|
1840
|
+
organization: "organization",
|
|
1841
|
+
team: "team"
|
|
1842
|
+
};
|
|
1843
|
+
const userEventPayloadModeEnum = {
|
|
1844
|
+
organization: "organization",
|
|
1845
|
+
team: "team"
|
|
1846
|
+
};
|
|
1768
1847
|
const userEventPayloadPreviousEnforcementScopeEnum = {
|
|
1769
1848
|
all: "all",
|
|
1770
1849
|
preview: "preview"
|
|
@@ -1845,6 +1924,7 @@ const userEventPayloadWidgetEnum = {
|
|
|
1845
1924
|
"observability-function-invocations": "observability-function-invocations",
|
|
1846
1925
|
online: "online",
|
|
1847
1926
|
res: "res",
|
|
1927
|
+
shortcut: "shortcut",
|
|
1848
1928
|
"speed-insights-cls": "speed-insights-cls",
|
|
1849
1929
|
"speed-insights-lcp": "speed-insights-lcp",
|
|
1850
1930
|
"speed-insights-res": "speed-insights-res"
|
|
@@ -1874,6 +1954,7 @@ const userEventPayloadPreviousGitProviderEnum = {
|
|
|
1874
1954
|
"github-custom-host": "github-custom-host",
|
|
1875
1955
|
"github-limited": "github-limited",
|
|
1876
1956
|
gitlab: "gitlab",
|
|
1957
|
+
v0: "v0",
|
|
1877
1958
|
vercel: "vercel"
|
|
1878
1959
|
};
|
|
1879
1960
|
const userEventPayloadNextGitProviderEnum = {
|
|
@@ -1883,6 +1964,7 @@ const userEventPayloadNextGitProviderEnum = {
|
|
|
1883
1964
|
"github-custom-host": "github-custom-host",
|
|
1884
1965
|
"github-limited": "github-limited",
|
|
1885
1966
|
gitlab: "gitlab",
|
|
1967
|
+
v0: "v0",
|
|
1886
1968
|
vercel: "vercel"
|
|
1887
1969
|
};
|
|
1888
1970
|
const userEventPayloadGitProviderEnum = {
|
|
@@ -1892,6 +1974,7 @@ const userEventPayloadGitProviderEnum = {
|
|
|
1892
1974
|
"github-custom-host": "github-custom-host",
|
|
1893
1975
|
"github-limited": "github-limited",
|
|
1894
1976
|
gitlab: "gitlab",
|
|
1977
|
+
v0: "v0",
|
|
1895
1978
|
vercel: "vercel"
|
|
1896
1979
|
};
|
|
1897
1980
|
const userEventPayloadCreateDeploymentsEnum = {
|
|
@@ -2037,6 +2120,11 @@ const userEventPayloadBudgetBudgetItemPricingPlanEnum = {
|
|
|
2037
2120
|
plus: "plus",
|
|
2038
2121
|
unbundled: "unbundled"
|
|
2039
2122
|
};
|
|
2123
|
+
const userEventPayloadBudgetBudgetItemScopeEnum = {
|
|
2124
|
+
organization: "organization",
|
|
2125
|
+
project: "project",
|
|
2126
|
+
team: "team"
|
|
2127
|
+
};
|
|
2040
2128
|
const userEventPayloadBudgetPricingPlanEnum = {
|
|
2041
2129
|
flex: "flex",
|
|
2042
2130
|
legacy: "legacy",
|
|
@@ -2044,6 +2132,11 @@ const userEventPayloadBudgetPricingPlanEnum = {
|
|
|
2044
2132
|
plus: "plus",
|
|
2045
2133
|
unbundled: "unbundled"
|
|
2046
2134
|
};
|
|
2135
|
+
const userEventPayloadBudgetScopeEnum = {
|
|
2136
|
+
organization: "organization",
|
|
2137
|
+
project: "project",
|
|
2138
|
+
team: "team"
|
|
2139
|
+
};
|
|
2047
2140
|
const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
2048
2141
|
flex: "flex",
|
|
2049
2142
|
legacy: "legacy",
|
|
@@ -2051,6 +2144,11 @@ const userEventPayloadPrevBudgetPricingPlanEnum = {
|
|
|
2051
2144
|
plus: "plus",
|
|
2052
2145
|
unbundled: "unbundled"
|
|
2053
2146
|
};
|
|
2147
|
+
const userEventPayloadPrevBudgetScopeEnum = {
|
|
2148
|
+
organization: "organization",
|
|
2149
|
+
project: "project",
|
|
2150
|
+
team: "team"
|
|
2151
|
+
};
|
|
2054
2152
|
const userEventPayloadStoreTypeEnum = {
|
|
2055
2153
|
blob: "blob",
|
|
2056
2154
|
"edge-config": "edge-config",
|
|
@@ -2102,6 +2200,7 @@ const userEventPayloadReasonEnum = {
|
|
|
2102
2200
|
"long-build-duration": "long-build-duration",
|
|
2103
2201
|
"oom-failure": "oom-failure",
|
|
2104
2202
|
"plan-change": "plan-change",
|
|
2203
|
+
"project-transfer": "project-transfer",
|
|
2105
2204
|
"short-build-duration": "short-build-duration",
|
|
2106
2205
|
"sustained-high-cpu": "sustained-high-cpu"
|
|
2107
2206
|
};
|
|
@@ -2134,27 +2233,6 @@ const userEventPayloadNewPlanEnum = {
|
|
|
2134
2233
|
hobby: "hobby",
|
|
2135
2234
|
pro: "pro"
|
|
2136
2235
|
};
|
|
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
2236
|
const userEventPayloadPreviousTeamRolesEnum = {
|
|
2159
2237
|
BILLING: "BILLING",
|
|
2160
2238
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -2353,8 +2431,10 @@ const listEventTypeNameEnum = {
|
|
|
2353
2431
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
2354
2432
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
2355
2433
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
2434
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
2356
2435
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
2357
2436
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
2437
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
2358
2438
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
2359
2439
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
2360
2440
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -2364,6 +2444,7 @@ const listEventTypeNameEnum = {
|
|
|
2364
2444
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
2365
2445
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
2366
2446
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
2447
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
2367
2448
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
2368
2449
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
2369
2450
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
@@ -2377,8 +2458,10 @@ const listEventTypeNameEnum = {
|
|
|
2377
2458
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
2378
2459
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
2379
2460
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
2461
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
2380
2462
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
2381
2463
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
2464
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
2382
2465
|
"ai-omniagent": "ai-omniagent",
|
|
2383
2466
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
2384
2467
|
"alert-rule-created": "alert-rule-created",
|
|
@@ -2568,6 +2651,7 @@ const listEventTypeNameEnum = {
|
|
|
2568
2651
|
"flags-segment": "flags-segment",
|
|
2569
2652
|
"flags-settings": "flags-settings",
|
|
2570
2653
|
"flags-transferred": "flags-transferred",
|
|
2654
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
2571
2655
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
2572
2656
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2573
2657
|
"global-config-backup-restored": "global-config-backup-restored",
|
|
@@ -2652,6 +2736,7 @@ const listEventTypeNameEnum = {
|
|
|
2652
2736
|
"organization-team-add": "organization-team-add",
|
|
2653
2737
|
"organization-team-create": "organization-team-create",
|
|
2654
2738
|
"organization-team-delete": "organization-team-delete",
|
|
2739
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
2655
2740
|
"owner-blocked": "owner-blocked",
|
|
2656
2741
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
2657
2742
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -2731,6 +2816,12 @@ const listEventTypeNameEnum = {
|
|
|
2731
2816
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
2732
2817
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
2733
2818
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
2819
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
2820
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
2821
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
2822
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
2823
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
2824
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
2734
2825
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
2735
2826
|
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
2736
2827
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
@@ -2823,6 +2914,8 @@ const listEventTypeNameEnum = {
|
|
|
2823
2914
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
2824
2915
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
2825
2916
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
2917
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
2918
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
2826
2919
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
2827
2920
|
"show-ip-addresses": "show-ip-addresses",
|
|
2828
2921
|
signup: "signup",
|
|
@@ -2853,6 +2946,7 @@ const listEventTypeNameEnum = {
|
|
|
2853
2946
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
2854
2947
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
2855
2948
|
"storage-view-secret": "storage-view-secret",
|
|
2949
|
+
"strict-connectors": "strict-connectors",
|
|
2856
2950
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
2857
2951
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
2858
2952
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -3039,8 +3133,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
3039
3133
|
"ai-gateway-byok-credential-created": "ai-gateway-byok-credential-created",
|
|
3040
3134
|
"ai-gateway-byok-credential-deleted": "ai-gateway-byok-credential-deleted",
|
|
3041
3135
|
"ai-gateway-byok-credential-updated": "ai-gateway-byok-credential-updated",
|
|
3136
|
+
"ai-gateway-byok-model-mappings-updated": "ai-gateway-byok-model-mappings-updated",
|
|
3042
3137
|
"ai-gateway-credits-purchased": "ai-gateway-credits-purchased",
|
|
3043
3138
|
"ai-gateway-guardrails-updated": "ai-gateway-guardrails-updated",
|
|
3139
|
+
"ai-gateway-hipaa-compliance-toggled": "ai-gateway-hipaa-compliance-toggled",
|
|
3044
3140
|
"ai-gateway-inference-regions-updated": "ai-gateway-inference-regions-updated",
|
|
3045
3141
|
"ai-gateway-model-allowlist-models-updated": "ai-gateway-model-allowlist-models-updated",
|
|
3046
3142
|
"ai-gateway-model-allowlist-toggled": "ai-gateway-model-allowlist-toggled",
|
|
@@ -3050,6 +3146,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3050
3146
|
"ai-gateway-private-provider-created": "ai-gateway-private-provider-created",
|
|
3051
3147
|
"ai-gateway-private-provider-deleted": "ai-gateway-private-provider-deleted",
|
|
3052
3148
|
"ai-gateway-private-provider-updated": "ai-gateway-private-provider-updated",
|
|
3149
|
+
"ai-gateway-prompt-training-opt-out-toggled": "ai-gateway-prompt-training-opt-out-toggled",
|
|
3053
3150
|
"ai-gateway-provider-allowlist-providers-updated": "ai-gateway-provider-allowlist-providers-updated",
|
|
3054
3151
|
"ai-gateway-provider-allowlist-toggled": "ai-gateway-provider-allowlist-toggled",
|
|
3055
3152
|
"ai-gateway-rule-created": "ai-gateway-rule-created",
|
|
@@ -3063,8 +3160,10 @@ const listEventTypeReplacedByEnum = {
|
|
|
3063
3160
|
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
3064
3161
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
3065
3162
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
3163
|
+
"ai-gateway-virtual-model-config-deleted": "ai-gateway-virtual-model-config-deleted",
|
|
3066
3164
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
3067
3165
|
"ai-gateway-virtual-model-config-updated": "ai-gateway-virtual-model-config-updated",
|
|
3166
|
+
"ai-gateway-zero-data-retention-toggled": "ai-gateway-zero-data-retention-toggled",
|
|
3068
3167
|
"ai-omniagent": "ai-omniagent",
|
|
3069
3168
|
"alert-investigation-project-allowlist-updated": "alert-investigation-project-allowlist-updated",
|
|
3070
3169
|
"alert-rule-created": "alert-rule-created",
|
|
@@ -3254,6 +3353,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3254
3353
|
"flags-segment": "flags-segment",
|
|
3255
3354
|
"flags-settings": "flags-settings",
|
|
3256
3355
|
"flags-transferred": "flags-transferred",
|
|
3356
|
+
"flat-rate-cdn-auto-upgrade-consent": "flat-rate-cdn-auto-upgrade-consent",
|
|
3257
3357
|
"git-integration-repo-push": "git-integration-repo-push",
|
|
3258
3358
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
3259
3359
|
"global-config-backup-restored": "global-config-backup-restored",
|
|
@@ -3338,6 +3438,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3338
3438
|
"organization-team-add": "organization-team-add",
|
|
3339
3439
|
"organization-team-create": "organization-team-create",
|
|
3340
3440
|
"organization-team-delete": "organization-team-delete",
|
|
3441
|
+
"organization-team-sso-update": "organization-team-sso-update",
|
|
3341
3442
|
"owner-blocked": "owner-blocked",
|
|
3342
3443
|
"owner-soft-blocked": "owner-soft-blocked",
|
|
3343
3444
|
"owner-soft-unblocked": "owner-soft-unblocked",
|
|
@@ -3417,6 +3518,12 @@ const listEventTypeReplacedByEnum = {
|
|
|
3417
3518
|
"project-git-commit-comments-toggled": "project-git-commit-comments-toggled",
|
|
3418
3519
|
"project-git-commit-status-toggled": "project-git-commit-status-toggled",
|
|
3419
3520
|
"project-git-create-deployments-toggled": "project-git-create-deployments-toggled",
|
|
3521
|
+
"project-git-credential-bound-created": "project-git-credential-bound-created",
|
|
3522
|
+
"project-git-credential-bound-deleted": "project-git-credential-bound-deleted",
|
|
3523
|
+
"project-git-credential-bound-updated": "project-git-credential-bound-updated",
|
|
3524
|
+
"project-git-credential-grant-created": "project-git-credential-grant-created",
|
|
3525
|
+
"project-git-credential-grant-deleted": "project-git-credential-grant-deleted",
|
|
3526
|
+
"project-git-credential-grant-updated": "project-git-credential-grant-updated",
|
|
3420
3527
|
"project-git-fork-protection-updated": "project-git-fork-protection-updated",
|
|
3421
3528
|
"project-git-lfs-toggled": "project-git-lfs-toggled",
|
|
3422
3529
|
"project-git-pr-comments-toggled": "project-git-pr-comments-toggled",
|
|
@@ -3509,6 +3616,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
3509
3616
|
"shared-env-variable-create": "shared-env-variable-create",
|
|
3510
3617
|
"shared-env-variable-delete": "shared-env-variable-delete",
|
|
3511
3618
|
"shared-env-variable-read": "shared-env-variable-read",
|
|
3619
|
+
"shared-env-variable-repo-link": "shared-env-variable-repo-link",
|
|
3620
|
+
"shared-env-variable-repo-unlink": "shared-env-variable-repo-unlink",
|
|
3512
3621
|
"shared-env-variable-update": "shared-env-variable-update",
|
|
3513
3622
|
"show-ip-addresses": "show-ip-addresses",
|
|
3514
3623
|
signup: "signup",
|
|
@@ -3539,6 +3648,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
3539
3648
|
"storage-update-project-connection": "storage-update-project-connection",
|
|
3540
3649
|
"storage-upgrade-project-connection-to-oidc": "storage-upgrade-project-connection-to-oidc",
|
|
3541
3650
|
"storage-view-secret": "storage-view-secret",
|
|
3651
|
+
"strict-connectors": "strict-connectors",
|
|
3542
3652
|
"strict-deployment-protection-settings": "strict-deployment-protection-settings",
|
|
3543
3653
|
"strict-password-protection-settings": "strict-password-protection-settings",
|
|
3544
3654
|
"strict-shareable-links": "strict-shareable-links",
|
|
@@ -3692,6 +3802,10 @@ const listEventTypesResponseCategoriesNameEnum = {
|
|
|
3692
3802
|
"vercel-app": "vercel-app",
|
|
3693
3803
|
workflow: "workflow"
|
|
3694
3804
|
};
|
|
3805
|
+
const flagVariantsValue = {
|
|
3806
|
+
false: false,
|
|
3807
|
+
true: true
|
|
3808
|
+
};
|
|
3695
3809
|
const typeEnum = {
|
|
3696
3810
|
list: "list",
|
|
3697
3811
|
"list/inline": "list/inline"
|
|
@@ -3805,7 +3919,8 @@ const namedSandboxNetworkPolicyModeEnum = {
|
|
|
3805
3919
|
};
|
|
3806
3920
|
const modeEnum = {
|
|
3807
3921
|
"read-only": "read-only",
|
|
3808
|
-
"read-write": "read-write"
|
|
3922
|
+
"read-write": "read-write",
|
|
3923
|
+
snapshot: "snapshot"
|
|
3809
3924
|
};
|
|
3810
3925
|
const sandboxNetworkPolicyModeEnum = {
|
|
3811
3926
|
"allow-all": "allow-all",
|
|
@@ -4163,7 +4278,6 @@ const authUserSoftBlockReasonEnum = {
|
|
|
4163
4278
|
ENTERPRISE_UNPAID_INVOICE: "ENTERPRISE_UNPAID_INVOICE",
|
|
4164
4279
|
EXPOSURE_CAP_EXCEEDED: "EXPOSURE_CAP_EXCEEDED",
|
|
4165
4280
|
FAIR_USE_LIMITS_EXCEEDED: "FAIR_USE_LIMITS_EXCEEDED",
|
|
4166
|
-
HOBBY_ALLOCATION_PAUSED: "HOBBY_ALLOCATION_PAUSED",
|
|
4167
4281
|
SUBSCRIPTION_CANCELED: "SUBSCRIPTION_CANCELED",
|
|
4168
4282
|
SUBSCRIPTION_EXPIRED: "SUBSCRIPTION_EXPIRED",
|
|
4169
4283
|
UNPAID_INVOICE: "UNPAID_INVOICE"
|
|
@@ -4209,47 +4323,6 @@ const authUserSoftBlockBlockedDueToOverageTypeEnum = {
|
|
|
4209
4323
|
wafRateLimitRequest: "wafRateLimitRequest",
|
|
4210
4324
|
webAnalyticsEvent: "webAnalyticsEvent"
|
|
4211
4325
|
};
|
|
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
4326
|
const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
4254
4327
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
4255
4328
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
@@ -4375,6 +4448,11 @@ const listProjectChecksBlocks = {
|
|
|
4375
4448
|
"deployment-promotion": "deployment-promotion",
|
|
4376
4449
|
none: "none"
|
|
4377
4450
|
};
|
|
4451
|
+
const listConnectorsSort = {
|
|
4452
|
+
name: "name",
|
|
4453
|
+
createdAt: "createdAt",
|
|
4454
|
+
updatedAt: "updatedAt"
|
|
4455
|
+
};
|
|
4378
4456
|
const getDeploymentEventsDirection = {
|
|
4379
4457
|
backward: "backward",
|
|
4380
4458
|
forward: "forward"
|
|
@@ -4447,7 +4525,8 @@ const getBillingPlansSource = {
|
|
|
4447
4525
|
cli: "cli",
|
|
4448
4526
|
oauth: "oauth",
|
|
4449
4527
|
backoffice: "backoffice",
|
|
4450
|
-
"import-recommended-integrations": "import-recommended-integrations"
|
|
4528
|
+
"import-recommended-integrations": "import-recommended-integrations",
|
|
4529
|
+
organization: "organization"
|
|
4451
4530
|
};
|
|
4452
4531
|
const getConfigurationsView = {
|
|
4453
4532
|
account: "account",
|
|
@@ -4501,17 +4580,17 @@ const getRollingReleaseState = {
|
|
|
4501
4580
|
COMPLETE: "COMPLETE",
|
|
4502
4581
|
ABORTED: "ABORTED"
|
|
4503
4582
|
};
|
|
4504
|
-
const
|
|
4583
|
+
const listNamedSandboxesSortBy = {
|
|
4505
4584
|
createdAt: "createdAt",
|
|
4506
4585
|
name: "name",
|
|
4507
4586
|
statusUpdatedAt: "statusUpdatedAt",
|
|
4508
4587
|
currentSnapshotId: "currentSnapshotId"
|
|
4509
4588
|
};
|
|
4510
|
-
const
|
|
4589
|
+
const listNamedSandboxesSortOrder = {
|
|
4511
4590
|
asc: "asc",
|
|
4512
4591
|
desc: "desc"
|
|
4513
4592
|
};
|
|
4514
|
-
const
|
|
4593
|
+
const listNamedSandboxesStatus = {
|
|
4515
4594
|
running: "running",
|
|
4516
4595
|
stopping: "stopping",
|
|
4517
4596
|
stopped: "stopped"
|
|
@@ -4573,21 +4652,29 @@ exports.authUserFeatureBlocksSpeedInsightsFreeBlockReasonEnum = authUserFeatureB
|
|
|
4573
4652
|
exports.authUserImportFlowGitProviderEnum = authUserImportFlowGitProviderEnum;
|
|
4574
4653
|
exports.authUserResourceConfigBuildQueueConfigurationEnum = authUserResourceConfigBuildQueueConfigurationEnum;
|
|
4575
4654
|
exports.authUserSoftBlockBlockedDueToOverageTypeEnum = authUserSoftBlockBlockedDueToOverageTypeEnum;
|
|
4576
|
-
exports.authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum = authUserSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4577
4655
|
exports.authUserSoftBlockReasonEnum = authUserSoftBlockReasonEnum;
|
|
4578
4656
|
exports.cmpEnum = cmpEnum;
|
|
4579
4657
|
exports.connectConnectorCreateDataOwnerTypeEnum = connectConnectorCreateDataOwnerTypeEnum;
|
|
4580
4658
|
exports.connectConnectorCreateDataServerConfigJwksKeysUseEnum = connectConnectorCreateDataServerConfigJwksKeysUseEnum;
|
|
4659
|
+
exports.connectConnectorCreateDataShortcutsTypeEnum = connectConnectorCreateDataShortcutsTypeEnum;
|
|
4581
4660
|
exports.connectConnectorCreateDataSubjectTypeEnum = connectConnectorCreateDataSubjectTypeEnum;
|
|
4582
4661
|
exports.connectConnectorCreateResultCreationModeEnum = connectConnectorCreateResultCreationModeEnum;
|
|
4583
4662
|
exports.connectConnectorCreateResultSupportsIconEnum = connectConnectorCreateResultSupportsIconEnum;
|
|
4584
4663
|
exports.connectConnectorCreateResultTypeEnum = connectConnectorCreateResultTypeEnum;
|
|
4664
|
+
exports.connectConnectorCreationModeEnum = connectConnectorCreationModeEnum;
|
|
4665
|
+
exports.connectConnectorSupportsIconEnum = connectConnectorSupportsIconEnum;
|
|
4666
|
+
exports.connectConnectorTypeEnum = connectConnectorTypeEnum;
|
|
4667
|
+
exports.connectConnectorUpdateDataOwnerTypeEnum = connectConnectorUpdateDataOwnerTypeEnum;
|
|
4668
|
+
exports.connectConnectorUpdateDataServerConfigJwksKeysUseEnum = connectConnectorUpdateDataServerConfigJwksKeysUseEnum;
|
|
4669
|
+
exports.connectConnectorUpdateDataShortcutsTypeEnum = connectConnectorUpdateDataShortcutsTypeEnum;
|
|
4670
|
+
exports.connectServiceSyncStatusEnum = connectServiceSyncStatusEnum;
|
|
4585
4671
|
exports.deleteKmsIssuerPolicyKind = deleteKmsIssuerPolicyKind;
|
|
4586
4672
|
exports.fileTreeTypeEnum = fileTreeTypeEnum;
|
|
4587
4673
|
exports.filterProjectEnvsDecrypt = filterProjectEnvsDecrypt;
|
|
4588
4674
|
exports.flagJSONValue = flagJSONValue;
|
|
4589
4675
|
exports.flagKindEnum = flagKindEnum;
|
|
4590
4676
|
exports.flagStateEnum = flagStateEnum;
|
|
4677
|
+
exports.flagVariantsValue = flagVariantsValue;
|
|
4591
4678
|
exports.flagsSdkKeyWithSecretsTypeEnum = flagsSdkKeyWithSecretsTypeEnum;
|
|
4592
4679
|
exports.getBillingPlansSource = getBillingPlansSource;
|
|
4593
4680
|
exports.getConfigurationsInstallationType = getConfigurationsInstallationType;
|
|
@@ -4615,6 +4702,7 @@ exports.invitedTeamMemberRoleEnum = invitedTeamMemberRoleEnum;
|
|
|
4615
4702
|
exports.invitedTeamMemberTeamPermissionsEnum = invitedTeamMemberTeamPermissionsEnum;
|
|
4616
4703
|
exports.invitedTeamMemberTeamRolesEnum = invitedTeamMemberTeamRolesEnum;
|
|
4617
4704
|
exports.listAiGatewayRulesIncludeDisabled = listAiGatewayRulesIncludeDisabled;
|
|
4705
|
+
exports.listConnectorsSort = listConnectorsSort;
|
|
4618
4706
|
exports.listDrivesSortBy = listDrivesSortBy;
|
|
4619
4707
|
exports.listDrivesSortOrder = listDrivesSortOrder;
|
|
4620
4708
|
exports.listEventTypeCategoriesEnum = listEventTypeCategoriesEnum;
|
|
@@ -4623,12 +4711,12 @@ exports.listEventTypeReplacedByEnum = listEventTypeReplacedByEnum;
|
|
|
4623
4711
|
exports.listEventTypesResponseCategoriesNameEnum = listEventTypesResponseCategoriesNameEnum;
|
|
4624
4712
|
exports.listFlagsState = listFlagsState;
|
|
4625
4713
|
exports.listFlagsV2State = listFlagsV2State;
|
|
4714
|
+
exports.listNamedSandboxesSortBy = listNamedSandboxesSortBy;
|
|
4715
|
+
exports.listNamedSandboxesSortOrder = listNamedSandboxesSortOrder;
|
|
4716
|
+
exports.listNamedSandboxesStatus = listNamedSandboxesStatus;
|
|
4626
4717
|
exports.listProjectChecksBlocks = listProjectChecksBlocks;
|
|
4627
4718
|
exports.listRepositoryTagsSortBy = listRepositoryTagsSortBy;
|
|
4628
4719
|
exports.listRepositoryTagsSortOrder = listRepositoryTagsSortOrder;
|
|
4629
|
-
exports.listSandboxesSortBy = listSandboxesSortBy;
|
|
4630
|
-
exports.listSandboxesSortOrder = listSandboxesSortOrder;
|
|
4631
|
-
exports.listSandboxesStatus = listSandboxesStatus;
|
|
4632
4720
|
exports.listSessionSnapshotsSortOrder = listSessionSnapshotsSortOrder;
|
|
4633
4721
|
exports.listSessionsSortOrder = listSessionsSortOrder;
|
|
4634
4722
|
exports.listTeamFlagsKind = listTeamFlagsKind;
|
|
@@ -4643,6 +4731,7 @@ exports.namedSandboxNetworkPolicyModeEnum = namedSandboxNetworkPolicyModeEnum;
|
|
|
4643
4731
|
exports.namedSandboxStatusEnum = namedSandboxStatusEnum;
|
|
4644
4732
|
exports.networkStatusEnum = networkStatusEnum;
|
|
4645
4733
|
exports.originEnum = originEnum;
|
|
4734
|
+
exports.privateLinkEndpointStatusEnum = privateLinkEndpointStatusEnum;
|
|
4646
4735
|
exports.roleEnum = roleEnum;
|
|
4647
4736
|
exports.sandboxNetworkPolicyModeEnum = sandboxNetworkPolicyModeEnum;
|
|
4648
4737
|
exports.scopeEnum = scopeEnum;
|
|
@@ -4697,8 +4786,10 @@ exports.userEventPayloadAuthMethodEnum = userEventPayloadAuthMethodEnum;
|
|
|
4697
4786
|
exports.userEventPayloadBeforePermissionsEnum = userEventPayloadBeforePermissionsEnum;
|
|
4698
4787
|
exports.userEventPayloadBillingPlanEnum = userEventPayloadBillingPlanEnum;
|
|
4699
4788
|
exports.userEventPayloadBudgetBudgetItemPricingPlanEnum = userEventPayloadBudgetBudgetItemPricingPlanEnum;
|
|
4789
|
+
exports.userEventPayloadBudgetBudgetItemScopeEnum = userEventPayloadBudgetBudgetItemScopeEnum;
|
|
4700
4790
|
exports.userEventPayloadBudgetPricingPlanEnum = userEventPayloadBudgetPricingPlanEnum;
|
|
4701
4791
|
exports.userEventPayloadBudgetRefreshPeriodEnum = userEventPayloadBudgetRefreshPeriodEnum;
|
|
4792
|
+
exports.userEventPayloadBudgetScopeEnum = userEventPayloadBudgetScopeEnum;
|
|
4702
4793
|
exports.userEventPayloadBuildQueueConfigurationEnum = userEventPayloadBuildQueueConfigurationEnum;
|
|
4703
4794
|
exports.userEventPayloadChangeEnum = userEventPayloadChangeEnum;
|
|
4704
4795
|
exports.userEventPayloadChangedFieldsEnum = userEventPayloadChangedFieldsEnum;
|
|
@@ -4725,6 +4816,7 @@ exports.userEventPayloadJobNsnbSideEffectActionEnum = userEventPayloadJobNsnbSid
|
|
|
4725
4816
|
exports.userEventPayloadJobProviderEnum = userEventPayloadJobProviderEnum;
|
|
4726
4817
|
exports.userEventPayloadKindEnum = userEventPayloadKindEnum;
|
|
4727
4818
|
exports.userEventPayloadMethodEnum = userEventPayloadMethodEnum;
|
|
4819
|
+
exports.userEventPayloadModeEnum = userEventPayloadModeEnum;
|
|
4728
4820
|
exports.userEventPayloadNewEnvVarTargetEnum = userEventPayloadNewEnvVarTargetEnum;
|
|
4729
4821
|
exports.userEventPayloadNewEnvVarTypeEnum = userEventPayloadNewEnvVarTypeEnum;
|
|
4730
4822
|
exports.userEventPayloadNewOwnerAbuseBlockHistoryActionEnum = userEventPayloadNewOwnerAbuseBlockHistoryActionEnum;
|
|
@@ -4767,7 +4859,6 @@ exports.userEventPayloadNewOwnerProjectCardWidgetPreferencesWidgetEnum = userEve
|
|
|
4767
4859
|
exports.userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum = userEventPayloadNewOwnerResourceConfigBuildMachineDefaultEnum;
|
|
4768
4860
|
exports.userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum = userEventPayloadNewOwnerResourceConfigBuildQueueConfigurationEnum;
|
|
4769
4861
|
exports.userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum = userEventPayloadNewOwnerSoftBlockBlockedDueToOverageTypeEnum;
|
|
4770
|
-
exports.userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum = userEventPayloadNewOwnerSoftBlockHobbyAllocationPauseTriggersAllocationEnum;
|
|
4771
4862
|
exports.userEventPayloadNewOwnerSoftBlockReasonEnum = userEventPayloadNewOwnerSoftBlockReasonEnum;
|
|
4772
4863
|
exports.userEventPayloadNewOwnerTeamsJoinedFromOriginEnum = userEventPayloadNewOwnerTeamsJoinedFromOriginEnum;
|
|
4773
4864
|
exports.userEventPayloadNewOwnerTeamsRoleEnum = userEventPayloadNewOwnerTeamsRoleEnum;
|
|
@@ -4803,12 +4894,14 @@ exports.userEventPayloadPasswordProtectionDeploymentTypeEnum = userEventPayloadP
|
|
|
4803
4894
|
exports.userEventPayloadPermissionsEnum = userEventPayloadPermissionsEnum;
|
|
4804
4895
|
exports.userEventPayloadPlanEnum = userEventPayloadPlanEnum;
|
|
4805
4896
|
exports.userEventPayloadPrevBudgetPricingPlanEnum = userEventPayloadPrevBudgetPricingPlanEnum;
|
|
4897
|
+
exports.userEventPayloadPrevBudgetScopeEnum = userEventPayloadPrevBudgetScopeEnum;
|
|
4806
4898
|
exports.userEventPayloadPreviousBranchMatcherTypeEnum = userEventPayloadPreviousBranchMatcherTypeEnum;
|
|
4807
4899
|
exports.userEventPayloadPreviousEchModeEnum = userEventPayloadPreviousEchModeEnum;
|
|
4808
4900
|
exports.userEventPayloadPreviousEnforcementScopeEnum = userEventPayloadPreviousEnforcementScopeEnum;
|
|
4809
4901
|
exports.userEventPayloadPreviousEnum = userEventPayloadPreviousEnum;
|
|
4810
4902
|
exports.userEventPayloadPreviousGitProviderEnum = userEventPayloadPreviousGitProviderEnum;
|
|
4811
4903
|
exports.userEventPayloadPreviousIssuerModeEnum = userEventPayloadPreviousIssuerModeEnum;
|
|
4904
|
+
exports.userEventPayloadPreviousModeEnum = userEventPayloadPreviousModeEnum;
|
|
4812
4905
|
exports.userEventPayloadPreviousNewResourceBlockingPolicyEnum = userEventPayloadPreviousNewResourceBlockingPolicyEnum;
|
|
4813
4906
|
exports.userEventPayloadPreviousPassportDeploymentTypeEnum = userEventPayloadPreviousPassportDeploymentTypeEnum;
|
|
4814
4907
|
exports.userEventPayloadPreviousPlanEnum = userEventPayloadPreviousPlanEnum;
|