vercel-api-js 1.8.3 → 1.9.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.cjs +520 -11
- package/dist/components.d.mts +343 -10
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +503 -11
- package/dist/effect.cjs +465 -5
- package/dist/effect.d.mts +331 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +465 -5
- package/dist/index.cjs +1708 -92
- package/dist/index.d.ts +3379 -121
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +1478 -77
- package/dist/schemas.cjs +1053 -73
- package/dist/schemas.d.mts +613 -41
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +829 -58
- package/dist/types.cjs +153 -9
- package/dist/types.d.mts +2407 -71
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +148 -10
- package/package.json +1 -1
package/dist/types.cjs
CHANGED
|
@@ -207,6 +207,11 @@ const userEventTypeEnum = {
|
|
|
207
207
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
208
208
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
209
209
|
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
210
|
+
"ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
|
|
211
|
+
"ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
|
|
212
|
+
"ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
|
|
213
|
+
"ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
|
|
214
|
+
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
210
215
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
211
216
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
212
217
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -252,6 +257,7 @@ const userEventTypeEnum = {
|
|
|
252
257
|
"cert-system-create": "cert-system-create",
|
|
253
258
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
254
259
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
260
|
+
"compliance-document-previewed": "compliance-document-previewed",
|
|
255
261
|
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
256
262
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
257
263
|
"connect-attach-project": "connect-attach-project",
|
|
@@ -390,6 +396,7 @@ const userEventTypeEnum = {
|
|
|
390
396
|
"flags-segment": "flags-segment",
|
|
391
397
|
"flags-settings": "flags-settings",
|
|
392
398
|
"flags-transferred": "flags-transferred",
|
|
399
|
+
"git-integration-repo-push": "git-integration-repo-push",
|
|
393
400
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
394
401
|
"instant-rollback-created": "instant-rollback-created",
|
|
395
402
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
@@ -410,6 +417,7 @@ const userEventTypeEnum = {
|
|
|
410
417
|
"kms-issuer-deleted": "kms-issuer-deleted",
|
|
411
418
|
"kms-issuer-key-activated": "kms-issuer-key-activated",
|
|
412
419
|
"kms-issuer-key-created": "kms-issuer-key-created",
|
|
420
|
+
"kms-issuer-key-revoked": "kms-issuer-key-revoked",
|
|
413
421
|
"kms-issuer-key-rotated": "kms-issuer-key-rotated",
|
|
414
422
|
"kms-issuer-policy-created": "kms-issuer-policy-created",
|
|
415
423
|
"kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
|
|
@@ -420,6 +428,8 @@ const userEventTypeEnum = {
|
|
|
420
428
|
"log-drain-disabled": "log-drain-disabled",
|
|
421
429
|
"log-drain-enabled": "log-drain-enabled",
|
|
422
430
|
login: "login",
|
|
431
|
+
"login-connection-linked": "login-connection-linked",
|
|
432
|
+
"login-connection-unlinked": "login-connection-unlinked",
|
|
423
433
|
"manual-deployment-promotion-created": "manual-deployment-promotion-created",
|
|
424
434
|
"marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
|
|
425
435
|
"marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
|
|
@@ -451,6 +461,8 @@ const userEventTypeEnum = {
|
|
|
451
461
|
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
452
462
|
"organization-create": "organization-create",
|
|
453
463
|
"organization-delete": "organization-delete",
|
|
464
|
+
"organization-dsync-group-delete": "organization-dsync-group-delete",
|
|
465
|
+
"organization-dsync-group-upsert": "organization-dsync-group-upsert",
|
|
454
466
|
"organization-slug-update": "organization-slug-update",
|
|
455
467
|
"organization-team-add": "organization-team-add",
|
|
456
468
|
"organization-team-create": "organization-team-create",
|
|
@@ -599,8 +611,11 @@ const userEventTypeEnum = {
|
|
|
599
611
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
600
612
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
601
613
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
614
|
+
"saml-connection-created": "saml-connection-created",
|
|
615
|
+
"saml-connection-deleted": "saml-connection-deleted",
|
|
602
616
|
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
603
617
|
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
618
|
+
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
604
619
|
scale: "scale",
|
|
605
620
|
"scale-auto": "scale-auto",
|
|
606
621
|
"secondary-email-added": "secondary-email-added",
|
|
@@ -630,6 +645,7 @@ const userEventTypeEnum = {
|
|
|
630
645
|
"spend-created": "spend-created",
|
|
631
646
|
"spend-deleted": "spend-deleted",
|
|
632
647
|
"spend-updated": "spend-updated",
|
|
648
|
+
"sso-login": "sso-login",
|
|
633
649
|
"storage-accept-tos": "storage-accept-tos",
|
|
634
650
|
"storage-access-token-set": "storage-access-token-set",
|
|
635
651
|
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
@@ -656,6 +672,7 @@ const userEventTypeEnum = {
|
|
|
656
672
|
"subscription-product-added": "subscription-product-added",
|
|
657
673
|
"subscription-product-removed": "subscription-product-removed",
|
|
658
674
|
"subscription-updated": "subscription-updated",
|
|
675
|
+
"support-session-created": "support-session-created",
|
|
659
676
|
team: "team",
|
|
660
677
|
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
661
678
|
"team-avatar-update": "team-avatar-update",
|
|
@@ -706,24 +723,36 @@ const userEventTypeEnum = {
|
|
|
706
723
|
"tracing-configured": "tracing-configured",
|
|
707
724
|
"tracing-disabled": "tracing-disabled",
|
|
708
725
|
"unlink-login-connection": "unlink-login-connection",
|
|
726
|
+
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
709
727
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
728
|
+
"user-auto-block-configured": "user-auto-block-configured",
|
|
729
|
+
"user-blocked": "user-blocked",
|
|
710
730
|
"user-delete": "user-delete",
|
|
731
|
+
"user-delete-requested": "user-delete-requested",
|
|
711
732
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
712
733
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
713
734
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
735
|
+
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
736
|
+
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
737
|
+
"user-emu-toggled": "user-emu-toggled",
|
|
714
738
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
715
739
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
716
740
|
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
717
741
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
742
|
+
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
718
743
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
719
744
|
"user-mfa-removed": "user-mfa-removed",
|
|
720
745
|
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
721
746
|
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
722
747
|
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
748
|
+
"user-phone-removed": "user-phone-removed",
|
|
749
|
+
"user-phone-updated": "user-phone-updated",
|
|
723
750
|
"user-primary-email-updated": "user-primary-email-updated",
|
|
751
|
+
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
724
752
|
"user-token-created": "user-token-created",
|
|
725
753
|
"user-token-deleted": "user-token-deleted",
|
|
726
754
|
"user-tokens-deleted": "user-tokens-deleted",
|
|
755
|
+
"user-unblocked": "user-unblocked",
|
|
727
756
|
username: "username",
|
|
728
757
|
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
729
758
|
"v0-chat-created": "v0-chat-created",
|
|
@@ -735,6 +764,7 @@ const userEventTypeEnum = {
|
|
|
735
764
|
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
736
765
|
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
737
766
|
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
767
|
+
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
738
768
|
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
739
769
|
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
740
770
|
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
@@ -762,6 +792,7 @@ const userEventCategoriesEnum = {
|
|
|
762
792
|
ai: "ai",
|
|
763
793
|
"ai-gateway": "ai-gateway",
|
|
764
794
|
billing: "billing",
|
|
795
|
+
connect: "connect",
|
|
765
796
|
deployment: "deployment",
|
|
766
797
|
domain: "domain",
|
|
767
798
|
edge: "edge",
|
|
@@ -798,7 +829,8 @@ const providerEnum = {
|
|
|
798
829
|
"github-custom-host": "github-custom-host",
|
|
799
830
|
"github-limited": "github-limited",
|
|
800
831
|
gitlab: "gitlab",
|
|
801
|
-
google: "google"
|
|
832
|
+
google: "google",
|
|
833
|
+
saml: "saml"
|
|
802
834
|
};
|
|
803
835
|
const fromPlanEnum = {
|
|
804
836
|
hobby: "hobby",
|
|
@@ -824,6 +856,14 @@ const scopeTypeEnum = {
|
|
|
824
856
|
project: "project",
|
|
825
857
|
team: "team"
|
|
826
858
|
};
|
|
859
|
+
const defaultModeEnum = {
|
|
860
|
+
days: "days",
|
|
861
|
+
"until-requested": "until-requested"
|
|
862
|
+
};
|
|
863
|
+
const ceilingModeEnum = {
|
|
864
|
+
days: "days",
|
|
865
|
+
"until-requested": "until-requested"
|
|
866
|
+
};
|
|
827
867
|
const nextRoleEnum = {
|
|
828
868
|
ADMIN: "ADMIN",
|
|
829
869
|
PROJECT_DEVELOPER: "PROJECT_DEVELOPER",
|
|
@@ -869,6 +909,9 @@ const subjectTypeEnum = {
|
|
|
869
909
|
app: "app",
|
|
870
910
|
user: "user"
|
|
871
911
|
};
|
|
912
|
+
const gitCredentialSourceEnum = {
|
|
913
|
+
"external-token": "external-token"
|
|
914
|
+
};
|
|
872
915
|
const commitVerificationEnum = {
|
|
873
916
|
unknown: "unknown",
|
|
874
917
|
unverified: "unverified",
|
|
@@ -887,6 +930,16 @@ const initiatorEnum = {
|
|
|
887
930
|
system: "system",
|
|
888
931
|
user: "user"
|
|
889
932
|
};
|
|
933
|
+
const outcomeEnum = {
|
|
934
|
+
failure: "failure",
|
|
935
|
+
success: "success"
|
|
936
|
+
};
|
|
937
|
+
const failureStageEnum = {
|
|
938
|
+
authorization: "authorization",
|
|
939
|
+
push: "push",
|
|
940
|
+
unexpected: "unexpected",
|
|
941
|
+
unknown: "unknown"
|
|
942
|
+
};
|
|
890
943
|
const planEnum = {
|
|
891
944
|
enterprise: "enterprise",
|
|
892
945
|
hobby: "hobby",
|
|
@@ -894,6 +947,7 @@ const planEnum = {
|
|
|
894
947
|
};
|
|
895
948
|
const importFlowGitProviderEnum = {
|
|
896
949
|
bitbucket: "bitbucket",
|
|
950
|
+
"cursor-origin": "cursor-origin",
|
|
897
951
|
github: "github",
|
|
898
952
|
"github-custom-host": "github-custom-host",
|
|
899
953
|
"github-limited": "github-limited",
|
|
@@ -902,21 +956,34 @@ const importFlowGitProviderEnum = {
|
|
|
902
956
|
};
|
|
903
957
|
const widgetEnum = {
|
|
904
958
|
alert: "alert",
|
|
959
|
+
"analytics-online": "analytics-online",
|
|
960
|
+
"analytics-page-views": "analytics-page-views",
|
|
961
|
+
"analytics-visitors": "analytics-visitors",
|
|
905
962
|
"firewall-allowed": "firewall-allowed",
|
|
906
963
|
"firewall-denied": "firewall-denied",
|
|
964
|
+
"observability-alert": "observability-alert",
|
|
965
|
+
"observability-edge-requests": "observability-edge-requests",
|
|
966
|
+
"observability-error-rate": "observability-error-rate",
|
|
967
|
+
"observability-function-invocations": "observability-function-invocations",
|
|
907
968
|
online: "online",
|
|
908
|
-
res: "res"
|
|
969
|
+
res: "res",
|
|
970
|
+
"speed-insights-cls": "speed-insights-cls",
|
|
971
|
+
"speed-insights-lcp": "speed-insights-lcp",
|
|
972
|
+
"speed-insights-res": "speed-insights-res"
|
|
909
973
|
};
|
|
910
974
|
const configurationEnum = {
|
|
911
975
|
SKIP_NAMESPACE_QUEUE: "SKIP_NAMESPACE_QUEUE",
|
|
912
976
|
WAIT_FOR_NAMESPACE_QUEUE: "WAIT_FOR_NAMESPACE_QUEUE"
|
|
913
977
|
};
|
|
914
978
|
const defaultEnum = {
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
979
|
+
BILLING: "BILLING",
|
|
980
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
981
|
+
DEVELOPER: "DEVELOPER",
|
|
982
|
+
MEMBER: "MEMBER",
|
|
983
|
+
OWNER: "OWNER",
|
|
984
|
+
SECURITY: "SECURITY",
|
|
985
|
+
VIEWER: "VIEWER",
|
|
986
|
+
VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS"
|
|
920
987
|
};
|
|
921
988
|
const viewPreferenceEnum = {
|
|
922
989
|
cards: "cards",
|
|
@@ -1114,8 +1181,7 @@ const methodEnum = {
|
|
|
1114
1181
|
private_key_jwt: "private_key_jwt"
|
|
1115
1182
|
};
|
|
1116
1183
|
const actorTypeEnum = {
|
|
1117
|
-
admin: "admin"
|
|
1118
|
-
user: "user"
|
|
1184
|
+
admin: "admin"
|
|
1119
1185
|
};
|
|
1120
1186
|
const queryTypeEnum = {
|
|
1121
1187
|
"data-edit": "data-edit",
|
|
@@ -1162,6 +1228,7 @@ const oldBuildQueueConfigurationEnum = {
|
|
|
1162
1228
|
};
|
|
1163
1229
|
const gitProviderEnum = {
|
|
1164
1230
|
bitbucket: "bitbucket",
|
|
1231
|
+
"cursor-origin": "cursor-origin",
|
|
1165
1232
|
github: "github",
|
|
1166
1233
|
"github-custom-host": "github-custom-host",
|
|
1167
1234
|
"github-limited": "github-limited",
|
|
@@ -1367,6 +1434,11 @@ const listEventTypeNameEnum = {
|
|
|
1367
1434
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
1368
1435
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
1369
1436
|
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
1437
|
+
"ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
|
|
1438
|
+
"ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
|
|
1439
|
+
"ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
|
|
1440
|
+
"ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
|
|
1441
|
+
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
1370
1442
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
1371
1443
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
1372
1444
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -1412,6 +1484,7 @@ const listEventTypeNameEnum = {
|
|
|
1412
1484
|
"cert-system-create": "cert-system-create",
|
|
1413
1485
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
1414
1486
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
1487
|
+
"compliance-document-previewed": "compliance-document-previewed",
|
|
1415
1488
|
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
1416
1489
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
1417
1490
|
"connect-attach-project": "connect-attach-project",
|
|
@@ -1550,6 +1623,7 @@ const listEventTypeNameEnum = {
|
|
|
1550
1623
|
"flags-segment": "flags-segment",
|
|
1551
1624
|
"flags-settings": "flags-settings",
|
|
1552
1625
|
"flags-transferred": "flags-transferred",
|
|
1626
|
+
"git-integration-repo-push": "git-integration-repo-push",
|
|
1553
1627
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
1554
1628
|
"instant-rollback-created": "instant-rollback-created",
|
|
1555
1629
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
@@ -1570,6 +1644,7 @@ const listEventTypeNameEnum = {
|
|
|
1570
1644
|
"kms-issuer-deleted": "kms-issuer-deleted",
|
|
1571
1645
|
"kms-issuer-key-activated": "kms-issuer-key-activated",
|
|
1572
1646
|
"kms-issuer-key-created": "kms-issuer-key-created",
|
|
1647
|
+
"kms-issuer-key-revoked": "kms-issuer-key-revoked",
|
|
1573
1648
|
"kms-issuer-key-rotated": "kms-issuer-key-rotated",
|
|
1574
1649
|
"kms-issuer-policy-created": "kms-issuer-policy-created",
|
|
1575
1650
|
"kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
|
|
@@ -1580,6 +1655,8 @@ const listEventTypeNameEnum = {
|
|
|
1580
1655
|
"log-drain-disabled": "log-drain-disabled",
|
|
1581
1656
|
"log-drain-enabled": "log-drain-enabled",
|
|
1582
1657
|
login: "login",
|
|
1658
|
+
"login-connection-linked": "login-connection-linked",
|
|
1659
|
+
"login-connection-unlinked": "login-connection-unlinked",
|
|
1583
1660
|
"manual-deployment-promotion-created": "manual-deployment-promotion-created",
|
|
1584
1661
|
"marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
|
|
1585
1662
|
"marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
|
|
@@ -1611,6 +1688,8 @@ const listEventTypeNameEnum = {
|
|
|
1611
1688
|
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
1612
1689
|
"organization-create": "organization-create",
|
|
1613
1690
|
"organization-delete": "organization-delete",
|
|
1691
|
+
"organization-dsync-group-delete": "organization-dsync-group-delete",
|
|
1692
|
+
"organization-dsync-group-upsert": "organization-dsync-group-upsert",
|
|
1614
1693
|
"organization-slug-update": "organization-slug-update",
|
|
1615
1694
|
"organization-team-add": "organization-team-add",
|
|
1616
1695
|
"organization-team-create": "organization-team-create",
|
|
@@ -1759,8 +1838,11 @@ const listEventTypeNameEnum = {
|
|
|
1759
1838
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
1760
1839
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
1761
1840
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
1841
|
+
"saml-connection-created": "saml-connection-created",
|
|
1842
|
+
"saml-connection-deleted": "saml-connection-deleted",
|
|
1762
1843
|
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
1763
1844
|
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
1845
|
+
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
1764
1846
|
scale: "scale",
|
|
1765
1847
|
"scale-auto": "scale-auto",
|
|
1766
1848
|
"secondary-email-added": "secondary-email-added",
|
|
@@ -1790,6 +1872,7 @@ const listEventTypeNameEnum = {
|
|
|
1790
1872
|
"spend-created": "spend-created",
|
|
1791
1873
|
"spend-deleted": "spend-deleted",
|
|
1792
1874
|
"spend-updated": "spend-updated",
|
|
1875
|
+
"sso-login": "sso-login",
|
|
1793
1876
|
"storage-accept-tos": "storage-accept-tos",
|
|
1794
1877
|
"storage-access-token-set": "storage-access-token-set",
|
|
1795
1878
|
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
@@ -1816,6 +1899,7 @@ const listEventTypeNameEnum = {
|
|
|
1816
1899
|
"subscription-product-added": "subscription-product-added",
|
|
1817
1900
|
"subscription-product-removed": "subscription-product-removed",
|
|
1818
1901
|
"subscription-updated": "subscription-updated",
|
|
1902
|
+
"support-session-created": "support-session-created",
|
|
1819
1903
|
team: "team",
|
|
1820
1904
|
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
1821
1905
|
"team-avatar-update": "team-avatar-update",
|
|
@@ -1866,24 +1950,36 @@ const listEventTypeNameEnum = {
|
|
|
1866
1950
|
"tracing-configured": "tracing-configured",
|
|
1867
1951
|
"tracing-disabled": "tracing-disabled",
|
|
1868
1952
|
"unlink-login-connection": "unlink-login-connection",
|
|
1953
|
+
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
1869
1954
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
1955
|
+
"user-auto-block-configured": "user-auto-block-configured",
|
|
1956
|
+
"user-blocked": "user-blocked",
|
|
1870
1957
|
"user-delete": "user-delete",
|
|
1958
|
+
"user-delete-requested": "user-delete-requested",
|
|
1871
1959
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
1872
1960
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
1873
1961
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
1962
|
+
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
1963
|
+
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
1964
|
+
"user-emu-toggled": "user-emu-toggled",
|
|
1874
1965
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
1875
1966
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
1876
1967
|
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
1877
1968
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
1969
|
+
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
1878
1970
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
1879
1971
|
"user-mfa-removed": "user-mfa-removed",
|
|
1880
1972
|
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
1881
1973
|
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
1882
1974
|
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
1975
|
+
"user-phone-removed": "user-phone-removed",
|
|
1976
|
+
"user-phone-updated": "user-phone-updated",
|
|
1883
1977
|
"user-primary-email-updated": "user-primary-email-updated",
|
|
1978
|
+
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
1884
1979
|
"user-token-created": "user-token-created",
|
|
1885
1980
|
"user-token-deleted": "user-token-deleted",
|
|
1886
1981
|
"user-tokens-deleted": "user-tokens-deleted",
|
|
1982
|
+
"user-unblocked": "user-unblocked",
|
|
1887
1983
|
username: "username",
|
|
1888
1984
|
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
1889
1985
|
"v0-chat-created": "v0-chat-created",
|
|
@@ -1895,6 +1991,7 @@ const listEventTypeNameEnum = {
|
|
|
1895
1991
|
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
1896
1992
|
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
1897
1993
|
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
1994
|
+
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
1898
1995
|
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
1899
1996
|
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
1900
1997
|
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
@@ -1922,6 +2019,7 @@ const listEventTypeCategoriesEnum = {
|
|
|
1922
2019
|
ai: "ai",
|
|
1923
2020
|
"ai-gateway": "ai-gateway",
|
|
1924
2021
|
billing: "billing",
|
|
2022
|
+
connect: "connect",
|
|
1925
2023
|
deployment: "deployment",
|
|
1926
2024
|
domain: "domain",
|
|
1927
2025
|
edge: "edge",
|
|
@@ -1979,6 +2077,11 @@ const listEventTypeReplacedByEnum = {
|
|
|
1979
2077
|
"ai-gateway-rule-deleted": "ai-gateway-rule-deleted",
|
|
1980
2078
|
"ai-gateway-rule-updated": "ai-gateway-rule-updated",
|
|
1981
2079
|
"ai-gateway-scope-budget-updated": "ai-gateway-scope-budget-updated",
|
|
2080
|
+
"ai-gateway-transcripts-default-disabled": "ai-gateway-transcripts-default-disabled",
|
|
2081
|
+
"ai-gateway-transcripts-default-enabled": "ai-gateway-transcripts-default-enabled",
|
|
2082
|
+
"ai-gateway-transcripts-disabled": "ai-gateway-transcripts-disabled",
|
|
2083
|
+
"ai-gateway-transcripts-enabled": "ai-gateway-transcripts-enabled",
|
|
2084
|
+
"ai-gateway-transcripts-retention-updated": "ai-gateway-transcripts-retention-updated",
|
|
1982
2085
|
"ai-gateway-virtual-model-config-archived": "ai-gateway-virtual-model-config-archived",
|
|
1983
2086
|
"ai-gateway-virtual-model-config-created": "ai-gateway-virtual-model-config-created",
|
|
1984
2087
|
"ai-gateway-virtual-model-config-restored": "ai-gateway-virtual-model-config-restored",
|
|
@@ -2024,6 +2127,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2024
2127
|
"cert-system-create": "cert-system-create",
|
|
2025
2128
|
"code-owners-config-updated": "code-owners-config-updated",
|
|
2026
2129
|
"compliance-document-downloaded": "compliance-document-downloaded",
|
|
2130
|
+
"compliance-document-previewed": "compliance-document-previewed",
|
|
2027
2131
|
"compliance-documents-bulk-downloaded": "compliance-documents-bulk-downloaded",
|
|
2028
2132
|
"concurrent-builds-update": "concurrent-builds-update",
|
|
2029
2133
|
"connect-attach-project": "connect-attach-project",
|
|
@@ -2162,6 +2266,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2162
2266
|
"flags-segment": "flags-segment",
|
|
2163
2267
|
"flags-settings": "flags-settings",
|
|
2164
2268
|
"flags-transferred": "flags-transferred",
|
|
2269
|
+
"git-integration-repo-push": "git-integration-repo-push",
|
|
2165
2270
|
git_account_integration_link_added: "git_account_integration_link_added",
|
|
2166
2271
|
"instant-rollback-created": "instant-rollback-created",
|
|
2167
2272
|
"integration-configuration-owner-changed": "integration-configuration-owner-changed",
|
|
@@ -2182,6 +2287,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2182
2287
|
"kms-issuer-deleted": "kms-issuer-deleted",
|
|
2183
2288
|
"kms-issuer-key-activated": "kms-issuer-key-activated",
|
|
2184
2289
|
"kms-issuer-key-created": "kms-issuer-key-created",
|
|
2290
|
+
"kms-issuer-key-revoked": "kms-issuer-key-revoked",
|
|
2185
2291
|
"kms-issuer-key-rotated": "kms-issuer-key-rotated",
|
|
2186
2292
|
"kms-issuer-policy-created": "kms-issuer-policy-created",
|
|
2187
2293
|
"kms-issuer-policy-deleted": "kms-issuer-policy-deleted",
|
|
@@ -2192,6 +2298,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2192
2298
|
"log-drain-disabled": "log-drain-disabled",
|
|
2193
2299
|
"log-drain-enabled": "log-drain-enabled",
|
|
2194
2300
|
login: "login",
|
|
2301
|
+
"login-connection-linked": "login-connection-linked",
|
|
2302
|
+
"login-connection-unlinked": "login-connection-unlinked",
|
|
2195
2303
|
"manual-deployment-promotion-created": "manual-deployment-promotion-created",
|
|
2196
2304
|
"marketplace-flex-commit-opt-in": "marketplace-flex-commit-opt-in",
|
|
2197
2305
|
"marketplace-integration-allowlist-updated": "marketplace-integration-allowlist-updated",
|
|
@@ -2223,6 +2331,8 @@ const listEventTypeReplacedByEnum = {
|
|
|
2223
2331
|
"oidc-policy-used-to-obtain-app-token": "oidc-policy-used-to-obtain-app-token",
|
|
2224
2332
|
"organization-create": "organization-create",
|
|
2225
2333
|
"organization-delete": "organization-delete",
|
|
2334
|
+
"organization-dsync-group-delete": "organization-dsync-group-delete",
|
|
2335
|
+
"organization-dsync-group-upsert": "organization-dsync-group-upsert",
|
|
2226
2336
|
"organization-slug-update": "organization-slug-update",
|
|
2227
2337
|
"organization-team-add": "organization-team-add",
|
|
2228
2338
|
"organization-team-create": "organization-team-create",
|
|
@@ -2371,8 +2481,11 @@ const listEventTypeReplacedByEnum = {
|
|
|
2371
2481
|
"protected-git-scope-added": "protected-git-scope-added",
|
|
2372
2482
|
"protected-git-scope-removed": "protected-git-scope-removed",
|
|
2373
2483
|
"runtime-cache-purge-all": "runtime-cache-purge-all",
|
|
2484
|
+
"saml-connection-created": "saml-connection-created",
|
|
2485
|
+
"saml-connection-deleted": "saml-connection-deleted",
|
|
2374
2486
|
"sandbox-alias-assigned": "sandbox-alias-assigned",
|
|
2375
2487
|
"sandbox-alias-delete": "sandbox-alias-delete",
|
|
2488
|
+
"sandbox-snapshot-regions-updated": "sandbox-snapshot-regions-updated",
|
|
2376
2489
|
scale: "scale",
|
|
2377
2490
|
"scale-auto": "scale-auto",
|
|
2378
2491
|
"secondary-email-added": "secondary-email-added",
|
|
@@ -2402,6 +2515,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2402
2515
|
"spend-created": "spend-created",
|
|
2403
2516
|
"spend-deleted": "spend-deleted",
|
|
2404
2517
|
"spend-updated": "spend-updated",
|
|
2518
|
+
"sso-login": "sso-login",
|
|
2405
2519
|
"storage-accept-tos": "storage-accept-tos",
|
|
2406
2520
|
"storage-access-token-set": "storage-access-token-set",
|
|
2407
2521
|
"storage-accessed-data-browser": "storage-accessed-data-browser",
|
|
@@ -2428,6 +2542,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2428
2542
|
"subscription-product-added": "subscription-product-added",
|
|
2429
2543
|
"subscription-product-removed": "subscription-product-removed",
|
|
2430
2544
|
"subscription-updated": "subscription-updated",
|
|
2545
|
+
"support-session-created": "support-session-created",
|
|
2431
2546
|
team: "team",
|
|
2432
2547
|
"team-agent-billing-migration-decision-changed": "team-agent-billing-migration-decision-changed",
|
|
2433
2548
|
"team-avatar-update": "team-avatar-update",
|
|
@@ -2478,24 +2593,36 @@ const listEventTypeReplacedByEnum = {
|
|
|
2478
2593
|
"tracing-configured": "tracing-configured",
|
|
2479
2594
|
"tracing-disabled": "tracing-disabled",
|
|
2480
2595
|
"unlink-login-connection": "unlink-login-connection",
|
|
2596
|
+
"update-account-flow-dismissed": "update-account-flow-dismissed",
|
|
2481
2597
|
"update-account-flow-triggered": "update-account-flow-triggered",
|
|
2598
|
+
"user-auto-block-configured": "user-auto-block-configured",
|
|
2599
|
+
"user-blocked": "user-blocked",
|
|
2482
2600
|
"user-delete": "user-delete",
|
|
2601
|
+
"user-delete-requested": "user-delete-requested",
|
|
2483
2602
|
"user-emu-account-archived": "user-emu-account-archived",
|
|
2484
2603
|
"user-emu-account-deleted": "user-emu-account-deleted",
|
|
2485
2604
|
"user-emu-account-recovered": "user-emu-account-recovered",
|
|
2605
|
+
"user-emu-recovery-email-sent": "user-emu-recovery-email-sent",
|
|
2606
|
+
"user-emu-recovery-initiated": "user-emu-recovery-initiated",
|
|
2607
|
+
"user-emu-toggled": "user-emu-toggled",
|
|
2486
2608
|
"user-mfa-challenge-failed": "user-mfa-challenge-failed",
|
|
2487
2609
|
"user-mfa-challenge-verified": "user-mfa-challenge-verified",
|
|
2488
2610
|
"user-mfa-change-failed": "user-mfa-change-failed",
|
|
2489
2611
|
"user-mfa-configuration-updated": "user-mfa-configuration-updated",
|
|
2612
|
+
"user-mfa-recovery-code-used": "user-mfa-recovery-code-used",
|
|
2490
2613
|
"user-mfa-recovery-codes-regenerated": "user-mfa-recovery-codes-regenerated",
|
|
2491
2614
|
"user-mfa-removed": "user-mfa-removed",
|
|
2492
2615
|
"user-mfa-setup-skipped": "user-mfa-setup-skipped",
|
|
2493
2616
|
"user-mfa-totp-verification-started": "user-mfa-totp-verification-started",
|
|
2494
2617
|
"user-mfa-totp-verified": "user-mfa-totp-verified",
|
|
2618
|
+
"user-phone-removed": "user-phone-removed",
|
|
2619
|
+
"user-phone-updated": "user-phone-updated",
|
|
2495
2620
|
"user-primary-email-updated": "user-primary-email-updated",
|
|
2621
|
+
"user-sudo-mode-removed": "user-sudo-mode-removed",
|
|
2496
2622
|
"user-token-created": "user-token-created",
|
|
2497
2623
|
"user-token-deleted": "user-token-deleted",
|
|
2498
2624
|
"user-tokens-deleted": "user-tokens-deleted",
|
|
2625
|
+
"user-unblocked": "user-unblocked",
|
|
2499
2626
|
username: "username",
|
|
2500
2627
|
"v0-chat-ai-usage": "v0-chat-ai-usage",
|
|
2501
2628
|
"v0-chat-created": "v0-chat-created",
|
|
@@ -2507,6 +2634,7 @@ const listEventTypeReplacedByEnum = {
|
|
|
2507
2634
|
"vcr-repository-permission-added": "vcr-repository-permission-added",
|
|
2508
2635
|
"vcr-repository-permission-removed": "vcr-repository-permission-removed",
|
|
2509
2636
|
"vcr-repository-permissions-cleared": "vcr-repository-permissions-cleared",
|
|
2637
|
+
"vcr-repository-visibility-changed": "vcr-repository-visibility-changed",
|
|
2510
2638
|
"vercel-agent-elevated-permissions-approved": "vercel-agent-elevated-permissions-approved",
|
|
2511
2639
|
"vercel-agent-elevated-permissions-requested": "vercel-agent-elevated-permissions-requested",
|
|
2512
2640
|
"vercel-agent-session-created": "vercel-agent-session-created",
|
|
@@ -2685,6 +2813,7 @@ const invitedTeamMemberTeamPermissionsEnum = {
|
|
|
2685
2813
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2686
2814
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2687
2815
|
AiGatewaySettings: "AiGatewaySettings",
|
|
2816
|
+
ConnectorManager: "ConnectorManager",
|
|
2688
2817
|
CreateProject: "CreateProject",
|
|
2689
2818
|
EnvVariableManager: "EnvVariableManager",
|
|
2690
2819
|
EnvironmentManager: "EnvironmentManager",
|
|
@@ -2710,6 +2839,11 @@ const teamSamlDefaultRedirectUriEnum = {
|
|
|
2710
2839
|
"v0.dev": "v0.dev",
|
|
2711
2840
|
"vercel.com": "vercel.com"
|
|
2712
2841
|
};
|
|
2842
|
+
const teamBillingPlanEnum = {
|
|
2843
|
+
enterprise: "enterprise",
|
|
2844
|
+
hobby: "hobby",
|
|
2845
|
+
pro: "pro"
|
|
2846
|
+
};
|
|
2713
2847
|
const teamDefaultRolesTeamRolesEnum = {
|
|
2714
2848
|
BILLING: "BILLING",
|
|
2715
2849
|
CONTRIBUTOR: "CONTRIBUTOR",
|
|
@@ -2725,6 +2859,7 @@ const teamDefaultRolesTeamPermissionsEnum = {
|
|
|
2725
2859
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2726
2860
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2727
2861
|
AiGatewaySettings: "AiGatewaySettings",
|
|
2862
|
+
ConnectorManager: "ConnectorManager",
|
|
2728
2863
|
CreateProject: "CreateProject",
|
|
2729
2864
|
EnvVariableManager: "EnvVariableManager",
|
|
2730
2865
|
EnvironmentManager: "EnvironmentManager",
|
|
@@ -2810,6 +2945,7 @@ const teamMembershipTeamPermissionsEnum = {
|
|
|
2810
2945
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2811
2946
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2812
2947
|
AiGatewaySettings: "AiGatewaySettings",
|
|
2948
|
+
ConnectorManager: "ConnectorManager",
|
|
2813
2949
|
CreateProject: "CreateProject",
|
|
2814
2950
|
EnvVariableManager: "EnvVariableManager",
|
|
2815
2951
|
EnvironmentManager: "EnvironmentManager",
|
|
@@ -2881,6 +3017,7 @@ const teamLimitedMembershipTeamPermissionsEnum = {
|
|
|
2881
3017
|
AiGatewayBudgetManager: "AiGatewayBudgetManager",
|
|
2882
3018
|
AiGatewayCredits: "AiGatewayCredits",
|
|
2883
3019
|
AiGatewaySettings: "AiGatewaySettings",
|
|
3020
|
+
ConnectorManager: "ConnectorManager",
|
|
2884
3021
|
CreateProject: "CreateProject",
|
|
2885
3022
|
EnvVariableManager: "EnvVariableManager",
|
|
2886
3023
|
EnvironmentManager: "EnvironmentManager",
|
|
@@ -2973,6 +3110,7 @@ const authUserResourceConfigBuildQueueConfigurationEnum = {
|
|
|
2973
3110
|
};
|
|
2974
3111
|
const authUserImportFlowGitProviderEnum = {
|
|
2975
3112
|
bitbucket: "bitbucket",
|
|
3113
|
+
"cursor-origin": "cursor-origin",
|
|
2976
3114
|
github: "github",
|
|
2977
3115
|
"github-custom-host": "github-custom-host",
|
|
2978
3116
|
"github-limited": "github-limited",
|
|
@@ -3065,6 +3203,7 @@ exports.blockedDueToOverageTypeEnum = blockedDueToOverageTypeEnum;
|
|
|
3065
3203
|
exports.boughtTooRecentlyCodeEnum = boughtTooRecentlyCodeEnum;
|
|
3066
3204
|
exports.boughtTooRecentlyStatusEnum = boughtTooRecentlyStatusEnum;
|
|
3067
3205
|
exports.buildQueueConfigurationEnum = buildQueueConfigurationEnum;
|
|
3206
|
+
exports.ceilingModeEnum = ceilingModeEnum;
|
|
3068
3207
|
exports.changeEnum = changeEnum;
|
|
3069
3208
|
exports.cmpEnum = cmpEnum;
|
|
3070
3209
|
exports.commitVerificationEnum = commitVerificationEnum;
|
|
@@ -3074,6 +3213,7 @@ exports.createDeploymentsEnum = createDeploymentsEnum;
|
|
|
3074
3213
|
exports.cve55182MigrationAppliedFromEnum = cve55182MigrationAppliedFromEnum;
|
|
3075
3214
|
exports.decisionEnum = decisionEnum;
|
|
3076
3215
|
exports.defaultEnum = defaultEnum;
|
|
3216
|
+
exports.defaultModeEnum = defaultModeEnum;
|
|
3077
3217
|
exports.deploymentTypeEnum = deploymentTypeEnum;
|
|
3078
3218
|
exports.directionalityEnum = directionalityEnum;
|
|
3079
3219
|
exports.domainAlreadyOwnedCodeEnum = domainAlreadyOwnedCodeEnum;
|
|
@@ -3101,6 +3241,7 @@ exports.envEnum = envEnum;
|
|
|
3101
3241
|
exports.environmentEnum = environmentEnum;
|
|
3102
3242
|
exports.expectedPriceMismatchCodeEnum = expectedPriceMismatchCodeEnum;
|
|
3103
3243
|
exports.expectedPriceMismatchStatusEnum = expectedPriceMismatchStatusEnum;
|
|
3244
|
+
exports.failureStageEnum = failureStageEnum;
|
|
3104
3245
|
exports.favoritesViewPreferenceEnum = favoritesViewPreferenceEnum;
|
|
3105
3246
|
exports.fileTreeTypeEnum = fileTreeTypeEnum;
|
|
3106
3247
|
exports.flagExperimentAllocationUnitEnum = flagExperimentAllocationUnitEnum;
|
|
@@ -3114,6 +3255,7 @@ exports.flagsSdkKeyWithSecretsTypeEnum = flagsSdkKeyWithSecretsTypeEnum;
|
|
|
3114
3255
|
exports.forbiddenCodeEnum = forbiddenCodeEnum;
|
|
3115
3256
|
exports.forbiddenStatusEnum = forbiddenStatusEnum;
|
|
3116
3257
|
exports.fromPlanEnum = fromPlanEnum;
|
|
3258
|
+
exports.gitCredentialSourceEnum = gitCredentialSourceEnum;
|
|
3117
3259
|
exports.gitProviderEnum = gitProviderEnum;
|
|
3118
3260
|
exports.grantTypeEnum = grantTypeEnum;
|
|
3119
3261
|
exports.importFlowGitProviderEnum = importFlowGitProviderEnum;
|
|
@@ -3157,6 +3299,7 @@ exports.operationEnum = operationEnum;
|
|
|
3157
3299
|
exports.orderTooExpensiveCodeEnum = orderTooExpensiveCodeEnum;
|
|
3158
3300
|
exports.orderTooExpensiveStatusEnum = orderTooExpensiveStatusEnum;
|
|
3159
3301
|
exports.originEnum = originEnum;
|
|
3302
|
+
exports.outcomeEnum = outcomeEnum;
|
|
3160
3303
|
exports.overageReasonEnum = overageReasonEnum;
|
|
3161
3304
|
exports.planEnum = planEnum;
|
|
3162
3305
|
exports.planSlugEnum = planSlugEnum;
|
|
@@ -3189,6 +3332,7 @@ exports.storeTypeEnum = storeTypeEnum;
|
|
|
3189
3332
|
exports.subjectTypeEnum = subjectTypeEnum;
|
|
3190
3333
|
exports.tagEnum = tagEnum;
|
|
3191
3334
|
exports.targetEnum = targetEnum;
|
|
3335
|
+
exports.teamBillingPlanEnum = teamBillingPlanEnum;
|
|
3192
3336
|
exports.teamDefaultPassportDeploymentTypeEnum = teamDefaultPassportDeploymentTypeEnum;
|
|
3193
3337
|
exports.teamDefaultRolesTeamPermissionsEnum = teamDefaultRolesTeamPermissionsEnum;
|
|
3194
3338
|
exports.teamDefaultRolesTeamRolesEnum = teamDefaultRolesTeamRolesEnum;
|