vercel-api-js 1.10.0 → 1.11.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.
@@ -475,6 +475,15 @@ declare const userEventSchema: z.ZodObject<{
475
475
  "access-group-updated": "access-group-updated";
476
476
  "access-group-user-added": "access-group-user-added";
477
477
  "access-group-user-removed": "access-group-user-removed";
478
+ "admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
479
+ "admin-plan-updated": "admin-plan-updated";
480
+ "admin-secondary-email-added": "admin-secondary-email-added";
481
+ "admin-secondary-email-removed": "admin-secondary-email-removed";
482
+ "admin-team-name-update": "admin-team-name-update";
483
+ "admin-team-slug-update": "admin-team-slug-update";
484
+ "admin-user-delete": "admin-user-delete";
485
+ "admin-user-primary-email-updated": "admin-user-primary-email-updated";
486
+ "admin-username-updated": "admin-username-updated";
478
487
  "agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
479
488
  "agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
480
489
  "agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
@@ -1036,6 +1045,7 @@ declare const userEventSchema: z.ZodObject<{
1036
1045
  "user-emu-recovery-initiated": "user-emu-recovery-initiated";
1037
1046
  "user-emu-toggled": "user-emu-toggled";
1038
1047
  "user-mfa-challenge-failed": "user-mfa-challenge-failed";
1048
+ "user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
1039
1049
  "user-mfa-challenge-verified": "user-mfa-challenge-verified";
1040
1050
  "user-mfa-change-failed": "user-mfa-change-failed";
1041
1051
  "user-mfa-configuration-updated": "user-mfa-configuration-updated";
@@ -1048,6 +1058,7 @@ declare const userEventSchema: z.ZodObject<{
1048
1058
  "user-phone-removed": "user-phone-removed";
1049
1059
  "user-phone-updated": "user-phone-updated";
1050
1060
  "user-primary-email-updated": "user-primary-email-updated";
1061
+ "user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
1051
1062
  "user-sudo-mode-removed": "user-sudo-mode-removed";
1052
1063
  "user-token-created": "user-token-created";
1053
1064
  "user-token-deleted": "user-token-deleted";
@@ -1254,6 +1265,20 @@ declare const userEventSchema: z.ZodObject<{
1254
1265
  stripeAccount: z.ZodOptional<z.ZodString>;
1255
1266
  resourceId: z.ZodString;
1256
1267
  projectName: z.ZodString;
1268
+ }, z.core.$strict>, z.ZodObject<{
1269
+ provider: z.ZodOptional<z.ZodEnum<{
1270
+ chatgpt: "chatgpt";
1271
+ stripe: "stripe";
1272
+ }>>;
1273
+ providerAccount: z.ZodOptional<z.ZodString>;
1274
+ stripeAccount: z.ZodOptional<z.ZodString>;
1275
+ stripeOrganisation: z.ZodOptional<z.ZodString>;
1276
+ teamId: z.ZodString;
1277
+ actorId: z.ZodString;
1278
+ actorType: z.ZodEnum<{
1279
+ admin: "admin";
1280
+ }>;
1281
+ actorName: z.ZodOptional<z.ZodString>;
1257
1282
  }, z.core.$strict>, z.ZodObject<{
1258
1283
  provider: z.ZodOptional<z.ZodEnum<{
1259
1284
  chatgpt: "chatgpt";
@@ -2823,6 +2848,9 @@ declare const userEventSchema: z.ZodObject<{
2823
2848
  projectName: z.ZodString;
2824
2849
  gitCommitterName: z.ZodString;
2825
2850
  source: z.ZodString;
2851
+ reason: z.ZodOptional<z.ZodEnum<{
2852
+ ip_allow_list: "ip_allow_list";
2853
+ }>>;
2826
2854
  }, z.core.$strict>, z.ZodObject<{
2827
2855
  deployment: z.ZodObject<{
2828
2856
  id: z.ZodString;
@@ -3699,6 +3727,7 @@ declare const userEventSchema: z.ZodObject<{
3699
3727
  V0Builder: "V0Builder";
3700
3728
  V0Chatter: "V0Chatter";
3701
3729
  V0Viewer: "V0Viewer";
3730
+ WorkflowDecryptor: "WorkflowDecryptor";
3702
3731
  }>>>;
3703
3732
  created: z.ZodNumber;
3704
3733
  joinedFrom: z.ZodOptional<z.ZodObject<{
@@ -4517,6 +4546,7 @@ declare const userEventSchema: z.ZodObject<{
4517
4546
  }, z.core.$strip>>>;
4518
4547
  env: z.ZodOptional<z.ZodString>;
4519
4548
  os: z.ZodOptional<z.ZodString>;
4549
+ loginSessionId: z.ZodOptional<z.ZodString>;
4520
4550
  username: z.ZodOptional<z.ZodString>;
4521
4551
  ssoType: z.ZodOptional<z.ZodString>;
4522
4552
  factors: z.ZodOptional<z.ZodUnion<readonly [z.ZodArray<z.ZodObject<{
@@ -4529,6 +4559,7 @@ declare const userEventSchema: z.ZodObject<{
4529
4559
  apple: "apple";
4530
4560
  google: "google";
4531
4561
  saml: "saml";
4562
+ "emu-recovery": "emu-recovery";
4532
4563
  invite: "invite";
4533
4564
  "magic-link": "magic-link";
4534
4565
  otp: "otp";
@@ -4549,6 +4580,7 @@ declare const userEventSchema: z.ZodObject<{
4549
4580
  apple: "apple";
4550
4581
  google: "google";
4551
4582
  saml: "saml";
4583
+ "emu-recovery": "emu-recovery";
4552
4584
  invite: "invite";
4553
4585
  "magic-link": "magic-link";
4554
4586
  otp: "otp";
@@ -4976,6 +5008,70 @@ declare const userEventSchema: z.ZodObject<{
4976
5008
  reason: z.ZodOptional<z.ZodString>;
4977
5009
  timestamp: z.ZodOptional<z.ZodNumber>;
4978
5010
  removedMemberCount: z.ZodOptional<z.ZodNumber>;
5011
+ }, z.core.$strict>, z.ZodObject<{
5012
+ plan: z.ZodString;
5013
+ removedUsers: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodObject<{
5014
+ role: z.ZodEnum<{
5015
+ BILLING: "BILLING";
5016
+ CONTRIBUTOR: "CONTRIBUTOR";
5017
+ DEVELOPER: "DEVELOPER";
5018
+ MEMBER: "MEMBER";
5019
+ OWNER: "OWNER";
5020
+ SECURITY: "SECURITY";
5021
+ VIEWER: "VIEWER";
5022
+ VIEWER_FOR_PLUS: "VIEWER_FOR_PLUS";
5023
+ }>;
5024
+ confirmed: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
5025
+ confirmedAt: z.ZodOptional<z.ZodNumber>;
5026
+ joinedFrom: z.ZodOptional<z.ZodObject<{
5027
+ origin: z.ZodEnum<{
5028
+ teams: "teams";
5029
+ link: "link";
5030
+ bitbucket: "bitbucket";
5031
+ github: "github";
5032
+ gitlab: "gitlab";
5033
+ "account-update": "account-update";
5034
+ dsync: "dsync";
5035
+ feedback: "feedback";
5036
+ import: "import";
5037
+ mail: "mail";
5038
+ "nsnb-auto-approve": "nsnb-auto-approve";
5039
+ "nsnb-hobby-upgrade": "nsnb-hobby-upgrade";
5040
+ "nsnb-invite": "nsnb-invite";
5041
+ "nsnb-redeploy": "nsnb-redeploy";
5042
+ "nsnb-redeploy-attribution-card": "nsnb-redeploy-attribution-card";
5043
+ "nsnb-request-access": "nsnb-request-access";
5044
+ "nsnb-viewer-upgrade": "nsnb-viewer-upgrade";
5045
+ "organization-teams": "organization-teams";
5046
+ saml: "saml";
5047
+ }>;
5048
+ commitId: z.ZodOptional<z.ZodString>;
5049
+ repoId: z.ZodOptional<z.ZodString>;
5050
+ repoPath: z.ZodOptional<z.ZodString>;
5051
+ gitUserId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
5052
+ gitUserLogin: z.ZodOptional<z.ZodString>;
5053
+ ssoUserId: z.ZodOptional<z.ZodString>;
5054
+ ssoConnectedAt: z.ZodOptional<z.ZodNumber>;
5055
+ idpUserId: z.ZodOptional<z.ZodString>;
5056
+ dsyncUserId: z.ZodOptional<z.ZodString>;
5057
+ dsyncConnectedAt: z.ZodOptional<z.ZodNumber>;
5058
+ }, z.core.$strip>>;
5059
+ }, z.core.$strip>>>>;
5060
+ prevPlan: z.ZodOptional<z.ZodString>;
5061
+ priorPlan: z.ZodOptional<z.ZodString>;
5062
+ isDowngrade: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
5063
+ userAgent: z.ZodOptional<z.ZodString>;
5064
+ isReactivate: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
5065
+ isTrialUpgrade: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
5066
+ automated: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>>;
5067
+ reason: z.ZodOptional<z.ZodString>;
5068
+ timestamp: z.ZodOptional<z.ZodNumber>;
5069
+ removedMemberCount: z.ZodOptional<z.ZodNumber>;
5070
+ actorId: z.ZodString;
5071
+ actorType: z.ZodEnum<{
5072
+ admin: "admin";
5073
+ }>;
5074
+ actorName: z.ZodOptional<z.ZodString>;
4979
5075
  }, z.core.$strict>, z.ZodObject<{
4980
5076
  price: z.ZodOptional<z.ZodNumber>;
4981
5077
  currency: z.ZodOptional<z.ZodString>;
@@ -5860,6 +5956,14 @@ declare const userEventSchema: z.ZodObject<{
5860
5956
  }, z.core.$strict>, z.ZodObject<{
5861
5957
  email: z.ZodString;
5862
5958
  verified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
5959
+ }, z.core.$strict>, z.ZodObject<{
5960
+ email: z.ZodString;
5961
+ verified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
5962
+ actorId: z.ZodString;
5963
+ actorType: z.ZodEnum<{
5964
+ admin: "admin";
5965
+ }>;
5966
+ actorName: z.ZodOptional<z.ZodString>;
5863
5967
  }, z.core.$strict>, z.ZodObject<{
5864
5968
  email: z.ZodString;
5865
5969
  }, z.core.$strict>, z.ZodObject<{
@@ -6445,6 +6549,13 @@ declare const userEventSchema: z.ZodObject<{
6445
6549
  inviteCode: z.ZodOptional<z.ZodString>;
6446
6550
  }, z.core.$strict>, z.ZodObject<{
6447
6551
  name: z.ZodOptional<z.ZodString>;
6552
+ }, z.core.$strict>, z.ZodObject<{
6553
+ name: z.ZodOptional<z.ZodString>;
6554
+ actorId: z.ZodString;
6555
+ actorType: z.ZodEnum<{
6556
+ admin: "admin";
6557
+ }>;
6558
+ actorName: z.ZodOptional<z.ZodString>;
6448
6559
  }, z.core.$strict>, z.ZodObject<{
6449
6560
  decision: z.ZodEnum<{
6450
6561
  keep_on: "keep_on";
@@ -6513,6 +6624,13 @@ declare const userEventSchema: z.ZodObject<{
6513
6624
  fileId: z.ZodString;
6514
6625
  }, z.core.$strict>, z.ZodObject<{
6515
6626
  slug: z.ZodOptional<z.ZodString>;
6627
+ }, z.core.$strict>, z.ZodObject<{
6628
+ slug: z.ZodOptional<z.ZodString>;
6629
+ actorId: z.ZodString;
6630
+ actorType: z.ZodEnum<{
6631
+ admin: "admin";
6632
+ }>;
6633
+ actorName: z.ZodOptional<z.ZodString>;
6516
6634
  }, z.core.$strict>, z.ZodObject<{
6517
6635
  projectId: z.ZodString;
6518
6636
  projectName: z.ZodString;
@@ -6537,10 +6655,19 @@ declare const userEventSchema: z.ZodObject<{
6537
6655
  user: "user";
6538
6656
  admin: "admin";
6539
6657
  }>>;
6658
+ actorName: z.ZodOptional<z.ZodString>;
6540
6659
  reason: z.ZodOptional<z.ZodString>;
6541
6660
  }, z.core.$strict>, z.ZodObject<{
6542
6661
  deletedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6543
6662
  username: z.ZodString;
6663
+ }, z.core.$strict>, z.ZodObject<{
6664
+ deletedAt: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6665
+ username: z.ZodString;
6666
+ actorId: z.ZodString;
6667
+ actorType: z.ZodEnum<{
6668
+ admin: "admin";
6669
+ }>;
6670
+ actorName: z.ZodOptional<z.ZodString>;
6544
6671
  }, z.core.$strict>, z.ZodObject<{
6545
6672
  username: z.ZodString;
6546
6673
  }, z.core.$strict>, z.ZodObject<{
@@ -6576,6 +6703,17 @@ declare const userEventSchema: z.ZodObject<{
6576
6703
  "email-otp": "email-otp";
6577
6704
  }>;
6578
6705
  reason: z.ZodString;
6706
+ flowId: z.ZodOptional<z.ZodString>;
6707
+ loginSessionId: z.ZodOptional<z.ZodString>;
6708
+ }, z.core.$strict>, z.ZodObject<{
6709
+ allowedMethods: z.ZodArray<z.ZodEnum<{
6710
+ totp: "totp";
6711
+ webauthn: "webauthn";
6712
+ "recovery-code": "recovery-code";
6713
+ }>>;
6714
+ firstFactor: z.ZodString;
6715
+ flowId: z.ZodString;
6716
+ loginSessionId: z.ZodOptional<z.ZodString>;
6579
6717
  }, z.core.$strict>, z.ZodObject<{
6580
6718
  action: z.ZodEnum<{
6581
6719
  disable: "disable";
@@ -6596,8 +6734,18 @@ declare const userEventSchema: z.ZodObject<{
6596
6734
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6597
6735
  totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6598
6736
  }, z.core.$strip>;
6737
+ method: z.ZodOptional<z.ZodEnum<{
6738
+ totp: "totp";
6739
+ passkey: "passkey";
6740
+ self_serve_recovery: "self_serve_recovery";
6741
+ user_disabled: "user_disabled";
6742
+ }>>;
6599
6743
  }, z.core.$strict>, z.ZodObject<{
6600
6744
  remaining: z.ZodNumber;
6745
+ context: z.ZodOptional<z.ZodEnum<{
6746
+ login: "login";
6747
+ sudo: "sudo";
6748
+ }>>;
6601
6749
  }, z.core.$strict>, z.ZodObject<{
6602
6750
  mfaEnabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6603
6751
  }, z.core.$strict>, z.ZodObject<{
@@ -6608,9 +6756,59 @@ declare const userEventSchema: z.ZodObject<{
6608
6756
  }, z.core.$strict>, z.ZodObject<{
6609
6757
  enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6610
6758
  totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6759
+ }, z.core.$strict>, z.ZodObject<{
6760
+ previous: z.ZodObject<{
6761
+ enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6762
+ totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6763
+ }, z.core.$strip>;
6764
+ next: z.ZodObject<{
6765
+ enabled: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6766
+ totpVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6767
+ }, z.core.$strip>;
6768
+ }, z.core.$strict>, z.ZodObject<{
6769
+ provider: z.ZodEnum<{
6770
+ google: "google";
6771
+ }>;
6772
+ providerSubjectId: z.ZodString;
6773
+ outcome: z.ZodEnum<{
6774
+ "account-matched": "account-matched";
6775
+ "linking-required": "linking-required";
6776
+ }>;
6777
+ decision: z.ZodObject<{
6778
+ authoritative: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6779
+ basis: z.ZodEnum<{
6780
+ none: "none";
6781
+ gmail: "gmail";
6782
+ "workspace-mx": "workspace-mx";
6783
+ }>;
6784
+ emailDomain: z.ZodString;
6785
+ emailVerified: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6786
+ hostedDomainMatch: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodLiteral<true>]>;
6787
+ mxOutcome: z.ZodEnum<{
6788
+ google: "google";
6789
+ "lookup-error": "lookup-error";
6790
+ "non-google": "non-google";
6791
+ "not-checked": "not-checked";
6792
+ }>;
6793
+ }, z.core.$strip>;
6611
6794
  }, z.core.$strict>, z.ZodObject<{
6612
6795
  email: z.ZodString;
6613
6796
  prevEmail: z.ZodString;
6797
+ }, z.core.$strict>, z.ZodObject<{
6798
+ email: z.ZodString;
6799
+ prevEmail: z.ZodString;
6800
+ actorId: z.ZodString;
6801
+ actorType: z.ZodEnum<{
6802
+ admin: "admin";
6803
+ }>;
6804
+ actorName: z.ZodOptional<z.ZodString>;
6805
+ }, z.core.$strict>, z.ZodObject<{
6806
+ username: z.ZodString;
6807
+ actorId: z.ZodString;
6808
+ actorType: z.ZodEnum<{
6809
+ admin: "admin";
6810
+ }>;
6811
+ actorName: z.ZodOptional<z.ZodString>;
6614
6812
  }, z.core.$strict>, z.ZodObject<{
6615
6813
  projectId: z.ZodString;
6616
6814
  projectName: z.ZodString;
@@ -7031,6 +7229,15 @@ declare const listEventTypeSchema: z.ZodObject<{
7031
7229
  "access-group-updated": "access-group-updated";
7032
7230
  "access-group-user-added": "access-group-user-added";
7033
7231
  "access-group-user-removed": "access-group-user-removed";
7232
+ "admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
7233
+ "admin-plan-updated": "admin-plan-updated";
7234
+ "admin-secondary-email-added": "admin-secondary-email-added";
7235
+ "admin-secondary-email-removed": "admin-secondary-email-removed";
7236
+ "admin-team-name-update": "admin-team-name-update";
7237
+ "admin-team-slug-update": "admin-team-slug-update";
7238
+ "admin-user-delete": "admin-user-delete";
7239
+ "admin-user-primary-email-updated": "admin-user-primary-email-updated";
7240
+ "admin-username-updated": "admin-username-updated";
7034
7241
  "agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
7035
7242
  "agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
7036
7243
  "agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
@@ -7592,6 +7799,7 @@ declare const listEventTypeSchema: z.ZodObject<{
7592
7799
  "user-emu-recovery-initiated": "user-emu-recovery-initiated";
7593
7800
  "user-emu-toggled": "user-emu-toggled";
7594
7801
  "user-mfa-challenge-failed": "user-mfa-challenge-failed";
7802
+ "user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
7595
7803
  "user-mfa-challenge-verified": "user-mfa-challenge-verified";
7596
7804
  "user-mfa-change-failed": "user-mfa-change-failed";
7597
7805
  "user-mfa-configuration-updated": "user-mfa-configuration-updated";
@@ -7604,6 +7812,7 @@ declare const listEventTypeSchema: z.ZodObject<{
7604
7812
  "user-phone-removed": "user-phone-removed";
7605
7813
  "user-phone-updated": "user-phone-updated";
7606
7814
  "user-primary-email-updated": "user-primary-email-updated";
7815
+ "user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
7607
7816
  "user-sudo-mode-removed": "user-sudo-mode-removed";
7608
7817
  "user-token-created": "user-token-created";
7609
7818
  "user-token-deleted": "user-token-deleted";
@@ -7681,6 +7890,15 @@ declare const listEventTypeSchema: z.ZodObject<{
7681
7890
  "access-group-updated": "access-group-updated";
7682
7891
  "access-group-user-added": "access-group-user-added";
7683
7892
  "access-group-user-removed": "access-group-user-removed";
7893
+ "admin-agentic-provisioning-account-unlinked": "admin-agentic-provisioning-account-unlinked";
7894
+ "admin-plan-updated": "admin-plan-updated";
7895
+ "admin-secondary-email-added": "admin-secondary-email-added";
7896
+ "admin-secondary-email-removed": "admin-secondary-email-removed";
7897
+ "admin-team-name-update": "admin-team-name-update";
7898
+ "admin-team-slug-update": "admin-team-slug-update";
7899
+ "admin-user-delete": "admin-user-delete";
7900
+ "admin-user-primary-email-updated": "admin-user-primary-email-updated";
7901
+ "admin-username-updated": "admin-username-updated";
7684
7902
  "agentic-provisioning-account-blocked": "agentic-provisioning-account-blocked";
7685
7903
  "agentic-provisioning-account-linked": "agentic-provisioning-account-linked";
7686
7904
  "agentic-provisioning-account-relinked": "agentic-provisioning-account-relinked";
@@ -8242,6 +8460,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8242
8460
  "user-emu-recovery-initiated": "user-emu-recovery-initiated";
8243
8461
  "user-emu-toggled": "user-emu-toggled";
8244
8462
  "user-mfa-challenge-failed": "user-mfa-challenge-failed";
8463
+ "user-mfa-challenge-initiated": "user-mfa-challenge-initiated";
8245
8464
  "user-mfa-challenge-verified": "user-mfa-challenge-verified";
8246
8465
  "user-mfa-change-failed": "user-mfa-change-failed";
8247
8466
  "user-mfa-configuration-updated": "user-mfa-configuration-updated";
@@ -8254,6 +8473,7 @@ declare const listEventTypeSchema: z.ZodObject<{
8254
8473
  "user-phone-removed": "user-phone-removed";
8255
8474
  "user-phone-updated": "user-phone-updated";
8256
8475
  "user-primary-email-updated": "user-primary-email-updated";
8476
+ "user-provider-email-claim-evaluated": "user-provider-email-claim-evaluated";
8257
8477
  "user-sudo-mode-removed": "user-sudo-mode-removed";
8258
8478
  "user-token-created": "user-token-created";
8259
8479
  "user-token-deleted": "user-token-deleted";
@@ -8965,6 +9185,7 @@ declare const invitedTeamMemberSchema: z.ZodObject<{
8965
9185
  V0Builder: "V0Builder";
8966
9186
  V0Chatter: "V0Chatter";
8967
9187
  V0Viewer: "V0Viewer";
9188
+ WorkflowDecryptor: "WorkflowDecryptor";
8968
9189
  }>>>;
8969
9190
  }, z.core.$strip>;
8970
9191
  declare const teamSchema: z.ZodObject<{
@@ -9054,6 +9275,7 @@ declare const teamSchema: z.ZodObject<{
9054
9275
  V0Builder: "V0Builder";
9055
9276
  V0Chatter: "V0Chatter";
9056
9277
  V0Viewer: "V0Viewer";
9278
+ WorkflowDecryptor: "WorkflowDecryptor";
9057
9279
  }>>>;
9058
9280
  }, z.core.$strip>>;
9059
9281
  stagingPrefix: z.ZodString;
@@ -9291,6 +9513,7 @@ declare const teamSchema: z.ZodObject<{
9291
9513
  V0Builder: "V0Builder";
9292
9514
  V0Chatter: "V0Chatter";
9293
9515
  V0Viewer: "V0Viewer";
9516
+ WorkflowDecryptor: "WorkflowDecryptor";
9294
9517
  }>>>;
9295
9518
  createdAt: z.ZodNumber;
9296
9519
  created: z.ZodNumber;
@@ -9414,6 +9637,7 @@ declare const teamLimitedSchema: z.ZodObject<{
9414
9637
  V0Builder: "V0Builder";
9415
9638
  V0Chatter: "V0Chatter";
9416
9639
  V0Viewer: "V0Viewer";
9640
+ WorkflowDecryptor: "WorkflowDecryptor";
9417
9641
  }>>>;
9418
9642
  createdAt: z.ZodNumber;
9419
9643
  created: z.ZodNumber;