@vercel/sdk 1.6.9 → 1.6.10

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.
Files changed (86) hide show
  1. package/bin/mcp-server.js +250 -61
  2. package/bin/mcp-server.js.map +20 -20
  3. package/docs/sdks/user/README.md +2 -0
  4. package/esm/funcs/userListUserEvents.js +1 -0
  5. package/esm/funcs/userListUserEvents.js.map +1 -1
  6. package/esm/lib/config.d.ts +2 -2
  7. package/esm/lib/config.js +2 -2
  8. package/esm/lib/config.js.map +1 -1
  9. package/esm/mcp-server/mcp-server.js +1 -1
  10. package/esm/mcp-server/mcp-server.js.map +1 -1
  11. package/esm/mcp-server/server.js +1 -1
  12. package/esm/mcp-server/server.js.map +1 -1
  13. package/esm/models/authuser.d.ts +3 -0
  14. package/esm/models/authuser.d.ts.map +1 -1
  15. package/esm/models/authuser.js +1 -0
  16. package/esm/models/authuser.js.map +1 -1
  17. package/esm/models/createprojectenvop.d.ts +6 -6
  18. package/esm/models/createprojectenvop.js +2 -2
  19. package/esm/models/createprojectenvop.js.map +1 -1
  20. package/esm/models/createprojectop.d.ts +15 -9
  21. package/esm/models/createprojectop.d.ts.map +1 -1
  22. package/esm/models/createprojectop.js +5 -3
  23. package/esm/models/createprojectop.js.map +1 -1
  24. package/esm/models/createwebhookop.d.ts +24 -0
  25. package/esm/models/createwebhookop.d.ts.map +1 -1
  26. package/esm/models/createwebhookop.js +8 -0
  27. package/esm/models/createwebhookop.js.map +1 -1
  28. package/esm/models/editprojectenvop.d.ts +3 -3
  29. package/esm/models/editprojectenvop.js +1 -1
  30. package/esm/models/editprojectenvop.js.map +1 -1
  31. package/esm/models/getprojectsop.d.ts +6 -0
  32. package/esm/models/getprojectsop.d.ts.map +1 -1
  33. package/esm/models/getprojectsop.js +2 -0
  34. package/esm/models/getprojectsop.js.map +1 -1
  35. package/esm/models/getwebhookop.d.ts +12 -0
  36. package/esm/models/getwebhookop.d.ts.map +1 -1
  37. package/esm/models/getwebhookop.js +4 -0
  38. package/esm/models/getwebhookop.js.map +1 -1
  39. package/esm/models/getwebhooksop.d.ts +24 -0
  40. package/esm/models/getwebhooksop.d.ts.map +1 -1
  41. package/esm/models/getwebhooksop.js +8 -0
  42. package/esm/models/getwebhooksop.js.map +1 -1
  43. package/esm/models/listusereventsop.d.ts +6 -1
  44. package/esm/models/listusereventsop.d.ts.map +1 -1
  45. package/esm/models/listusereventsop.js +2 -0
  46. package/esm/models/listusereventsop.js.map +1 -1
  47. package/esm/models/removeprojectenvop.d.ts +9 -9
  48. package/esm/models/removeprojectenvop.js +3 -3
  49. package/esm/models/removeprojectenvop.js.map +1 -1
  50. package/esm/models/teamlimited.d.ts +30 -1
  51. package/esm/models/teamlimited.d.ts.map +1 -1
  52. package/esm/models/teamlimited.js +24 -0
  53. package/esm/models/teamlimited.js.map +1 -1
  54. package/esm/models/updateprojectdatacacheop.d.ts +6 -0
  55. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  56. package/esm/models/updateprojectdatacacheop.js +2 -0
  57. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  58. package/esm/models/updateprojectop.d.ts +15 -9
  59. package/esm/models/updateprojectop.d.ts.map +1 -1
  60. package/esm/models/updateprojectop.js +5 -3
  61. package/esm/models/updateprojectop.js.map +1 -1
  62. package/esm/models/userevent.d.ts +324 -34
  63. package/esm/models/userevent.d.ts.map +1 -1
  64. package/esm/models/userevent.js +313 -40
  65. package/esm/models/userevent.js.map +1 -1
  66. package/jsr.json +1 -1
  67. package/package.json +1 -1
  68. package/src/funcs/userListUserEvents.ts +1 -0
  69. package/src/lib/config.ts +2 -2
  70. package/src/mcp-server/mcp-server.ts +1 -1
  71. package/src/mcp-server/server.ts +1 -1
  72. package/src/models/authuser.ts +1 -0
  73. package/src/models/createprojectenvop.ts +2 -2
  74. package/src/models/createprojectop.ts +5 -3
  75. package/src/models/createwebhookop.ts +8 -0
  76. package/src/models/editprojectenvop.ts +1 -1
  77. package/src/models/getprojectsop.ts +2 -0
  78. package/src/models/getwebhookop.ts +4 -0
  79. package/src/models/getwebhooksop.ts +8 -0
  80. package/src/models/listusereventsop.ts +8 -1
  81. package/src/models/removeprojectenvop.ts +3 -3
  82. package/src/models/teamlimited.ts +34 -1
  83. package/src/models/updateprojectdatacacheop.ts +2 -0
  84. package/src/models/updateprojectop.ts +5 -3
  85. package/src/models/userevent.ts +579 -70
  86. package/vercel-spec.json +256 -45
package/bin/mcp-server.js CHANGED
@@ -34190,9 +34190,9 @@ var init_config = __esm(() => {
34190
34190
  SDK_METADATA = {
34191
34191
  language: "typescript",
34192
34192
  openapiDocVersion: "0.0.1",
34193
- sdkVersion: "1.6.9",
34193
+ sdkVersion: "1.6.10",
34194
34194
  genVersion: "2.597.9",
34195
- userAgent: "speakeasy-sdk/typescript 1.6.9 2.597.9 0.0.1 @vercel/sdk"
34195
+ userAgent: "speakeasy-sdk/typescript 1.6.10 2.597.9 0.0.1 @vercel/sdk"
34196
34196
  };
34197
34197
  });
34198
34198
 
@@ -66605,10 +66605,10 @@ var init_createprojectop = __esm(() => {
66605
66605
  };
66606
66606
  CreateProjectProjectsResponseType = {
66607
66607
  System: "system",
66608
- Secret: "secret",
66609
66608
  Encrypted: "encrypted",
66610
66609
  Plain: "plain",
66611
- Sensitive: "sensitive"
66610
+ Sensitive: "sensitive",
66611
+ Secret: "secret"
66612
66612
  };
66613
66613
  CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type = {
66614
66614
  FlagsConnectionString: "flags-connection-string"
@@ -66781,7 +66781,8 @@ var init_createprojectop = __esm(() => {
66781
66781
  Performance: "performance"
66782
66782
  };
66783
66783
  CreateProjectBuildMachineType = {
66784
- Enhanced: "enhanced"
66784
+ Enhanced: "enhanced",
66785
+ Ultra: "ultra"
66785
66786
  };
66786
66787
  CreateProjectProjectsFunctionDefaultMemoryType = {
66787
66788
  StandardLegacy: "standard_legacy",
@@ -66789,7 +66790,8 @@ var init_createprojectop = __esm(() => {
66789
66790
  Performance: "performance"
66790
66791
  };
66791
66792
  CreateProjectProjectsBuildMachineType = {
66792
- Enhanced: "enhanced"
66793
+ Enhanced: "enhanced",
66794
+ Ultra: "ultra"
66793
66795
  };
66794
66796
  CreateProjectDeploymentType = {
66795
66797
  Preview: "preview",
@@ -66868,8 +66870,8 @@ var init_createprojectop = __esm(() => {
66868
66870
  Disabled: "disabled"
66869
66871
  };
66870
66872
  CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType = {
66871
- Host: "host",
66872
66873
  Path: "path",
66874
+ Host: "host",
66873
66875
  Method: "method",
66874
66876
  Header: "header",
66875
66877
  Cookie: "cookie",
@@ -66882,8 +66884,8 @@ var init_createprojectop = __esm(() => {
66882
66884
  InitialRequestPath: "initial_request_path"
66883
66885
  };
66884
66886
  CreateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType = {
66885
- Host: "host",
66886
66887
  Path: "path",
66888
+ Host: "host",
66887
66889
  Method: "method",
66888
66890
  Header: "header",
66889
66891
  Cookie: "cookie",
@@ -69850,10 +69852,10 @@ var init_createprojectenvop = __esm(() => {
69850
69852
  };
69851
69853
  CreateProjectEnvCreatedType = {
69852
69854
  System: "system",
69853
- Secret: "secret",
69854
69855
  Encrypted: "encrypted",
69855
69856
  Plain: "plain",
69856
- Sensitive: "sensitive"
69857
+ Sensitive: "sensitive",
69858
+ Secret: "secret"
69857
69859
  };
69858
69860
  CreateProjectEnvContentHintProjectsResponse201ApplicationJSONResponseBodyCreated215Type = {
69859
69861
  FlagsConnectionString: "flags-connection-string"
@@ -69915,10 +69917,10 @@ var init_createprojectenvop = __esm(() => {
69915
69917
  };
69916
69918
  CreatedType = {
69917
69919
  System: "system",
69918
- Secret: "secret",
69919
69920
  Encrypted: "encrypted",
69920
69921
  Plain: "plain",
69921
- Sensitive: "sensitive"
69922
+ Sensitive: "sensitive",
69923
+ Secret: "secret"
69922
69924
  };
69923
69925
  CreateProjectEnvContentHintProjectsResponse201ApplicationJSONResponseBodyCreated115Type = {
69924
69926
  FlagsConnectionString: "flags-connection-string"
@@ -71655,10 +71657,10 @@ var init_editprojectenvop = __esm(() => {
71655
71657
  };
71656
71658
  EditProjectEnvResponseBodyType = {
71657
71659
  System: "system",
71658
- Secret: "secret",
71659
71660
  Encrypted: "encrypted",
71660
71661
  Plain: "plain",
71661
- Sensitive: "sensitive"
71662
+ Sensitive: "sensitive",
71663
+ Secret: "secret"
71662
71664
  };
71663
71665
  EditProjectEnvContentHintProjectsResponse200ApplicationJSONResponseBody115Type = {
71664
71666
  FlagsConnectionString: "flags-connection-string"
@@ -76487,7 +76489,8 @@ var init_getprojectsop = __esm(() => {
76487
76489
  Performance: "performance"
76488
76490
  };
76489
76491
  GetProjectsBuildMachineType = {
76490
- Enhanced: "enhanced"
76492
+ Enhanced: "enhanced",
76493
+ Ultra: "ultra"
76491
76494
  };
76492
76495
  GetProjectsProjectsFunctionDefaultMemoryType = {
76493
76496
  StandardLegacy: "standard_legacy",
@@ -76495,7 +76498,8 @@ var init_getprojectsop = __esm(() => {
76495
76498
  Performance: "performance"
76496
76499
  };
76497
76500
  GetProjectsProjectsBuildMachineType = {
76498
- Enhanced: "enhanced"
76501
+ Enhanced: "enhanced",
76502
+ Ultra: "ultra"
76499
76503
  };
76500
76504
  GetProjectsDeploymentType = {
76501
76505
  Preview: "preview",
@@ -80097,10 +80101,10 @@ var init_removeprojectenvop = __esm(() => {
80097
80101
  };
80098
80102
  RemoveProjectEnvResponseBodyProjectsResponseType = {
80099
80103
  System: "system",
80100
- Secret: "secret",
80101
80104
  Encrypted: "encrypted",
80102
80105
  Plain: "plain",
80103
- Sensitive: "sensitive"
80106
+ Sensitive: "sensitive",
80107
+ Secret: "secret"
80104
80108
  };
80105
80109
  RemoveProjectEnvContentHintProjectsResponse200ApplicationJSONResponseBody315Type = {
80106
80110
  FlagsConnectionString: "flags-connection-string"
@@ -80162,10 +80166,10 @@ var init_removeprojectenvop = __esm(() => {
80162
80166
  };
80163
80167
  RemoveProjectEnvResponseBodyProjectsType = {
80164
80168
  System: "system",
80165
- Secret: "secret",
80166
80169
  Encrypted: "encrypted",
80167
80170
  Plain: "plain",
80168
- Sensitive: "sensitive"
80171
+ Sensitive: "sensitive",
80172
+ Secret: "secret"
80169
80173
  };
80170
80174
  RemoveProjectEnvContentHintProjectsResponse200ApplicationJSONResponseBody215Type = {
80171
80175
  FlagsConnectionString: "flags-connection-string"
@@ -80227,10 +80231,10 @@ var init_removeprojectenvop = __esm(() => {
80227
80231
  };
80228
80232
  RemoveProjectEnvResponseBodyType = {
80229
80233
  System: "system",
80230
- Secret: "secret",
80231
80234
  Encrypted: "encrypted",
80232
80235
  Plain: "plain",
80233
- Sensitive: "sensitive"
80236
+ Sensitive: "sensitive",
80237
+ Secret: "secret"
80234
80238
  };
80235
80239
  RemoveProjectEnvContentHintProjectsResponse200ApplicationJSONResponseBody115Type = {
80236
80240
  FlagsConnectionString: "flags-connection-string"
@@ -82142,10 +82146,10 @@ var init_updateprojectop = __esm(() => {
82142
82146
  };
82143
82147
  UpdateProjectType = {
82144
82148
  System: "system",
82145
- Secret: "secret",
82146
82149
  Encrypted: "encrypted",
82147
82150
  Plain: "plain",
82148
- Sensitive: "sensitive"
82151
+ Sensitive: "sensitive",
82152
+ Secret: "secret"
82149
82153
  };
82150
82154
  UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type = {
82151
82155
  FlagsConnectionString: "flags-connection-string"
@@ -82318,7 +82322,8 @@ var init_updateprojectop = __esm(() => {
82318
82322
  Performance: "performance"
82319
82323
  };
82320
82324
  UpdateProjectBuildMachineType = {
82321
- Enhanced: "enhanced"
82325
+ Enhanced: "enhanced",
82326
+ Ultra: "ultra"
82322
82327
  };
82323
82328
  UpdateProjectProjectsFunctionDefaultMemoryType = {
82324
82329
  StandardLegacy: "standard_legacy",
@@ -82326,7 +82331,8 @@ var init_updateprojectop = __esm(() => {
82326
82331
  Performance: "performance"
82327
82332
  };
82328
82333
  UpdateProjectProjectsBuildMachineType = {
82329
- Enhanced: "enhanced"
82334
+ Enhanced: "enhanced",
82335
+ Ultra: "ultra"
82330
82336
  };
82331
82337
  UpdateProjectProjectsResponseDeploymentType = {
82332
82338
  Preview: "preview",
@@ -82405,8 +82411,8 @@ var init_updateprojectop = __esm(() => {
82405
82411
  Disabled: "disabled"
82406
82412
  };
82407
82413
  UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType = {
82408
- Host: "host",
82409
82414
  Path: "path",
82415
+ Host: "host",
82410
82416
  Method: "method",
82411
82417
  Header: "header",
82412
82418
  Cookie: "cookie",
@@ -82419,8 +82425,8 @@ var init_updateprojectop = __esm(() => {
82419
82425
  InitialRequestPath: "initial_request_path"
82420
82426
  };
82421
82427
  UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType = {
82422
- Host: "host",
82423
82428
  Path: "path",
82429
+ Host: "host",
82424
82430
  Method: "method",
82425
82431
  Header: "header",
82426
82432
  Cookie: "cookie",
@@ -85602,7 +85608,8 @@ var init_updateprojectdatacacheop = __esm(() => {
85602
85608
  Performance: "performance"
85603
85609
  };
85604
85610
  BuildMachineType = {
85605
- Enhanced: "enhanced"
85611
+ Enhanced: "enhanced",
85612
+ Ultra: "ultra"
85606
85613
  };
85607
85614
  UpdateProjectDataCacheFunctionDefaultMemoryType = {
85608
85615
  StandardLegacy: "standard_legacy",
@@ -85610,7 +85617,8 @@ var init_updateprojectdatacacheop = __esm(() => {
85610
85617
  Performance: "performance"
85611
85618
  };
85612
85619
  UpdateProjectDataCacheBuildMachineType = {
85613
- Enhanced: "enhanced"
85620
+ Enhanced: "enhanced",
85621
+ Ultra: "ultra"
85614
85622
  };
85615
85623
  UpdateProjectDataCacheDeploymentType = {
85616
85624
  Preview: "preview",
@@ -94803,9 +94811,13 @@ Get a paginated list of team members for the provided team.`,
94803
94811
  });
94804
94812
 
94805
94813
  // src/models/teamlimited.ts
94806
- var Role, TeamRoles, TeamPermissions, Origin, Connection$inboundSchema, Connection$outboundSchema, Connection$, Directory$inboundSchema, Directory$outboundSchema, Directory$, Saml$inboundSchema, Saml$outboundSchema, Saml$, Entitlements$inboundSchema, Entitlements$outboundSchema, Entitlements$, Role$inboundSchema, Role$outboundSchema, Role$, TeamRoles$inboundSchema, TeamRoles$outboundSchema, TeamRoles$, TeamPermissions$inboundSchema, TeamPermissions$outboundSchema, TeamPermissions$, Origin$inboundSchema, Origin$outboundSchema, Origin$, GitUserId$inboundSchema, GitUserId$outboundSchema, GitUserId$, JoinedFrom$inboundSchema, JoinedFrom$outboundSchema, JoinedFrom$, Membership$inboundSchema, Membership$outboundSchema, Membership$, TeamLimited$inboundSchema, TeamLimited$outboundSchema, TeamLimited$;
94814
+ var LimitedBy, Role, TeamRoles, TeamPermissions, Origin, LimitedBy$inboundSchema, LimitedBy$outboundSchema, LimitedBy$, Connection$inboundSchema, Connection$outboundSchema, Connection$, Directory$inboundSchema, Directory$outboundSchema, Directory$, Saml$inboundSchema, Saml$outboundSchema, Saml$, Entitlements$inboundSchema, Entitlements$outboundSchema, Entitlements$, Role$inboundSchema, Role$outboundSchema, Role$, TeamRoles$inboundSchema, TeamRoles$outboundSchema, TeamRoles$, TeamPermissions$inboundSchema, TeamPermissions$outboundSchema, TeamPermissions$, Origin$inboundSchema, Origin$outboundSchema, Origin$, GitUserId$inboundSchema, GitUserId$outboundSchema, GitUserId$, JoinedFrom$inboundSchema, JoinedFrom$outboundSchema, JoinedFrom$, Membership$inboundSchema, Membership$outboundSchema, Membership$, TeamLimited$inboundSchema, TeamLimited$outboundSchema, TeamLimited$;
94807
94815
  var init_teamlimited = __esm(() => {
94808
94816
  init_lib();
94817
+ LimitedBy = {
94818
+ Saml: "saml",
94819
+ Mfa: "mfa"
94820
+ };
94809
94821
  Role = {
94810
94822
  Owner: "OWNER",
94811
94823
  Member: "MEMBER",
@@ -94844,6 +94856,12 @@ var init_teamlimited = __esm(() => {
94844
94856
  Feedback: "feedback",
94845
94857
  OrganizationTeams: "organization-teams"
94846
94858
  };
94859
+ LimitedBy$inboundSchema = nativeEnumType(LimitedBy);
94860
+ LimitedBy$outboundSchema = LimitedBy$inboundSchema;
94861
+ ((LimitedBy$) => {
94862
+ LimitedBy$.inboundSchema = LimitedBy$inboundSchema;
94863
+ LimitedBy$.outboundSchema = LimitedBy$outboundSchema;
94864
+ })(LimitedBy$ ||= {});
94847
94865
  Connection$inboundSchema = objectType({
94848
94866
  type: stringType(),
94849
94867
  status: stringType(),
@@ -94996,7 +95014,9 @@ var init_teamlimited = __esm(() => {
94996
95014
  })(Membership$ ||= {});
94997
95015
  TeamLimited$inboundSchema = objectType({
94998
95016
  limited: booleanType(),
95017
+ limitedBy: arrayType(LimitedBy$inboundSchema),
94999
95018
  saml: lazyType(() => Saml$inboundSchema).optional(),
95019
+ mfaEnforced: booleanType().optional(),
95000
95020
  id: stringType(),
95001
95021
  slug: stringType(),
95002
95022
  name: nullableType(stringType()),
@@ -95007,7 +95027,9 @@ var init_teamlimited = __esm(() => {
95007
95027
  });
95008
95028
  TeamLimited$outboundSchema = objectType({
95009
95029
  limited: booleanType(),
95030
+ limitedBy: arrayType(LimitedBy$outboundSchema),
95010
95031
  saml: lazyType(() => Saml$outboundSchema).optional(),
95032
+ mfaEnforced: booleanType().optional(),
95011
95033
  id: stringType(),
95012
95034
  slug: stringType(),
95013
95035
  name: nullableType(stringType()),
@@ -96589,7 +96611,8 @@ var init_authuser = __esm(() => {
96589
96611
  WebAnalyticsEvent: "webAnalyticsEvent"
96590
96612
  };
96591
96613
  PurchaseType = {
96592
- Enhanced: "enhanced"
96614
+ Enhanced: "enhanced",
96615
+ Ultra: "ultra"
96593
96616
  };
96594
96617
  ViewPreference = {
96595
96618
  List: "list",
@@ -97121,7 +97144,7 @@ Retrieves information related to the currently authenticated User.`,
97121
97144
  });
97122
97145
 
97123
97146
  // src/models/userevent.ts
97124
- var UserEventType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, EnvId2, UserEventEnvId2, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, EnvId2$inboundSchema, EnvId2$outboundSchema, EnvId2$, EnvId$inboundSchema, EnvId$outboundSchema, EnvId$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, UserEventEnvId2$inboundSchema, UserEventEnvId2$outboundSchema, UserEventEnvId2$, PayloadEnvId$inboundSchema, PayloadEnvId$outboundSchema, PayloadEnvId$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, OverageMetadata$inboundSchema, OverageMetadata$outboundSchema, OverageMetadata$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Two$inboundSchema, Two$outboundSchema, Two$, One$inboundSchema, One$outboundSchema, One$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
97147
+ var UserEventType, UserEventPrincipalType, PrincipalType, UserEventViaType, ViaType, GrantType, AuthMethod, Tier, UserEventPayload131Role, UserEventPayload130Role, PreviousRole, UserEventPayloadRole, PayloadRole, StoreType, UserEventPayloadType, UserEventPayload97Type, PayloadPricingPlan, UserEventPayload96Type, PricingPlan, EnvId2, UserEventEnvId2, UserEventPayloadAction, TrustedIps, OldTrustedIps, PasswordProtection2, PasswordProtectionDeploymentType, OldPasswordProtection2, OldPasswordProtectionDeploymentType, SsoProtection2, DeploymentType, OldSsoProtection2, OldSsoProtectionDeploymentType, UserEventPayload73Role, PayloadOrigin, PayloadName, UserEventPayloadName, UserEventPayload62Action, Plan, UserEventCredentialsType, CredentialsType, PayloadImportFlowGitProvider, PayloadPurchaseType, PayloadViewPreference, PayloadFavoritesViewPreference, PayloadRecentsViewPreference, UserEventPayload62Name, PayloadReason, PayloadBlockedDueToOverageType, UserEventPayload62Role, PayloadTeamRoles, PayloadTeamPermissions, UserEventPayloadOrigin, UserEventPayload62Type, EnablePreviewFeedback, BlockReason, PayloadBlockReason, BlockType, UserEventPayloadBlockReason, PayloadBlockType, UserEventPayload62BlockReason, UserEventPayload62NewOwnerBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlockReason, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason, OverageReason, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason, PayloadOverageReason, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason, UserEventPayloadOverageReason, PayloadVersion, UserEventPayload58OldEnvVarType, UserEventPayloadTarget, UserEventPayload58Type, UserEventPayload58Target, OldTarget, NewTarget, PayloadType, PayloadTarget, PayloadAction, Action, UserEventType$inboundSchema, UserEventType$outboundSchema, UserEventType$, Entities$inboundSchema, Entities$outboundSchema, Entities$, User$inboundSchema, User$outboundSchema, User$, UserEventPrincipalType$inboundSchema, UserEventPrincipalType$outboundSchema, UserEventPrincipalType$, Two$inboundSchema, Two$outboundSchema, Two$, PrincipalType$inboundSchema, PrincipalType$outboundSchema, PrincipalType$, One$inboundSchema, One$outboundSchema, One$, Principal$inboundSchema, Principal$outboundSchema, Principal$, UserEventViaType$inboundSchema, UserEventViaType$outboundSchema, UserEventViaType$, Via2$inboundSchema, Via2$outboundSchema, Via2$, ViaType$inboundSchema, ViaType$outboundSchema, ViaType$, Via1$inboundSchema, Via1$outboundSchema, Via1$, Via$inboundSchema, Via$outboundSchema, Via$, GrantType$inboundSchema, GrantType$outboundSchema, GrantType$, AuthMethod$inboundSchema, AuthMethod$outboundSchema, AuthMethod$, OneHundredAndFortyEight$inboundSchema, OneHundredAndFortyEight$outboundSchema, OneHundredAndFortyEight$, UserEventPayload147Team$inboundSchema, UserEventPayload147Team$outboundSchema, UserEventPayload147Team$, UserEventPayload147Configuration$inboundSchema, UserEventPayload147Configuration$outboundSchema, UserEventPayload147Configuration$, UserEventPayloadPeering$inboundSchema, UserEventPayloadPeering$outboundSchema, UserEventPayloadPeering$, OneHundredAndFortySeven$inboundSchema, OneHundredAndFortySeven$outboundSchema, OneHundredAndFortySeven$, UserEventPayload146Team$inboundSchema, UserEventPayload146Team$outboundSchema, UserEventPayload146Team$, UserEventPayload146Configuration$inboundSchema, UserEventPayload146Configuration$outboundSchema, UserEventPayload146Configuration$, PayloadPeering$inboundSchema, PayloadPeering$outboundSchema, PayloadPeering$, OneHundredAndFortySix$inboundSchema, OneHundredAndFortySix$outboundSchema, OneHundredAndFortySix$, UserEventPayload145Team$inboundSchema, UserEventPayload145Team$outboundSchema, UserEventPayload145Team$, UserEventPayload145Configuration$inboundSchema, UserEventPayload145Configuration$outboundSchema, UserEventPayload145Configuration$, Peering$inboundSchema, Peering$outboundSchema, Peering$, OneHundredAndFortyFive$inboundSchema, OneHundredAndFortyFive$outboundSchema, OneHundredAndFortyFive$, OneHundredAndFortyFour$inboundSchema, OneHundredAndFortyFour$outboundSchema, OneHundredAndFortyFour$, OneHundredAndFortyThree$inboundSchema, OneHundredAndFortyThree$outboundSchema, OneHundredAndFortyThree$, OneHundredAndFortyTwo$inboundSchema, OneHundredAndFortyTwo$outboundSchema, OneHundredAndFortyTwo$, OneHundredAndFortyOne$inboundSchema, OneHundredAndFortyOne$outboundSchema, OneHundredAndFortyOne$, Tier$inboundSchema, Tier$outboundSchema, Tier$, OneHundredAndForty$inboundSchema, OneHundredAndForty$outboundSchema, OneHundredAndForty$, ProjectWebAnalytics$inboundSchema, ProjectWebAnalytics$outboundSchema, ProjectWebAnalytics$, PrevProjectWebAnalytics$inboundSchema, PrevProjectWebAnalytics$outboundSchema, PrevProjectWebAnalytics$, OneHundredAndThirtyNine$inboundSchema, OneHundredAndThirtyNine$outboundSchema, OneHundredAndThirtyNine$, Microfrontends2$inboundSchema, Microfrontends2$outboundSchema, Microfrontends2$, Microfrontends1$inboundSchema, Microfrontends1$outboundSchema, Microfrontends1$, Microfrontends$inboundSchema, Microfrontends$outboundSchema, Microfrontends$, UserEventPayload138Project$inboundSchema, UserEventPayload138Project$outboundSchema, UserEventPayload138Project$, UserEventMicrofrontends2$inboundSchema, UserEventMicrofrontends2$outboundSchema, UserEventMicrofrontends2$, UserEventMicrofrontends1$inboundSchema, UserEventMicrofrontends1$outboundSchema, UserEventMicrofrontends1$, PayloadMicrofrontends$inboundSchema, PayloadMicrofrontends$outboundSchema, PayloadMicrofrontends$, UserEventPayload138PrevProject$inboundSchema, UserEventPayload138PrevProject$outboundSchema, UserEventPayload138PrevProject$, PayloadPrev$inboundSchema, PayloadPrev$outboundSchema, PayloadPrev$, PayloadGroup$inboundSchema, PayloadGroup$outboundSchema, PayloadGroup$, OneHundredAndThirtyEight$inboundSchema, OneHundredAndThirtyEight$outboundSchema, OneHundredAndThirtyEight$, UserEventPayload137Project$inboundSchema, UserEventPayload137Project$outboundSchema, UserEventPayload137Project$, Group$inboundSchema, Group$outboundSchema, Group$, OneHundredAndThirtySeven$inboundSchema, OneHundredAndThirtySeven$outboundSchema, OneHundredAndThirtySeven$, Prev$inboundSchema, Prev$outboundSchema, Prev$, OneHundredAndThirtySix$inboundSchema, OneHundredAndThirtySix$outboundSchema, OneHundredAndThirtySix$, OneHundredAndThirtyFive$inboundSchema, OneHundredAndThirtyFive$outboundSchema, OneHundredAndThirtyFive$, OneHundredAndThirtyFour$inboundSchema, OneHundredAndThirtyFour$outboundSchema, OneHundredAndThirtyFour$, OneHundredAndThirtyThree$inboundSchema, OneHundredAndThirtyThree$outboundSchema, OneHundredAndThirtyThree$, OneHundredAndThirtyTwo$inboundSchema, OneHundredAndThirtyTwo$outboundSchema, OneHundredAndThirtyTwo$, UserEventPayload131Role$inboundSchema, UserEventPayload131Role$outboundSchema, UserEventPayload131Role$, UserEventPayload131Project$inboundSchema, UserEventPayload131Project$outboundSchema, UserEventPayload131Project$, OneHundredAndThirtyOne$inboundSchema, OneHundredAndThirtyOne$outboundSchema, OneHundredAndThirtyOne$, UserEventPayload130Project$inboundSchema, UserEventPayload130Project$outboundSchema, UserEventPayload130Project$, UserEventPayload130Role$inboundSchema, UserEventPayload130Role$outboundSchema, UserEventPayload130Role$, PreviousRole$inboundSchema, PreviousRole$outboundSchema, PreviousRole$, PayloadProjectMembership$inboundSchema, PayloadProjectMembership$outboundSchema, PayloadProjectMembership$, OneHundredAndThirty$inboundSchema, OneHundredAndThirty$outboundSchema, OneHundredAndThirty$, UserEventPayload129Project$inboundSchema, UserEventPayload129Project$outboundSchema, UserEventPayload129Project$, UserEventPayloadRole$inboundSchema, UserEventPayloadRole$outboundSchema, UserEventPayloadRole$, RemovedMembership$inboundSchema, RemovedMembership$outboundSchema, RemovedMembership$, OneHundredAndTwentyNine$inboundSchema, OneHundredAndTwentyNine$outboundSchema, OneHundredAndTwentyNine$, UserEventPayload128Project$inboundSchema, UserEventPayload128Project$outboundSchema, UserEventPayload128Project$, PayloadRole$inboundSchema, PayloadRole$outboundSchema, PayloadRole$, ProjectMembership$inboundSchema, ProjectMembership$outboundSchema, ProjectMembership$, OneHundredAndTwentyEight$inboundSchema, OneHundredAndTwentyEight$outboundSchema, OneHundredAndTwentyEight$, OneHundredAndTwentySeven$inboundSchema, OneHundredAndTwentySeven$outboundSchema, OneHundredAndTwentySeven$, OneHundredAndTwentySix$inboundSchema, OneHundredAndTwentySix$outboundSchema, OneHundredAndTwentySix$, OneHundredAndTwentyFive$inboundSchema, OneHundredAndTwentyFive$outboundSchema, OneHundredAndTwentyFive$, OneHundredAndTwentyFour$inboundSchema, OneHundredAndTwentyFour$outboundSchema, OneHundredAndTwentyFour$, OneHundredAndTwentyThree$inboundSchema, OneHundredAndTwentyThree$outboundSchema, OneHundredAndTwentyThree$, OneHundredAndTwentyTwo$inboundSchema, OneHundredAndTwentyTwo$outboundSchema, OneHundredAndTwentyTwo$, OneHundredAndTwentyOne$inboundSchema, OneHundredAndTwentyOne$outboundSchema, OneHundredAndTwentyOne$, OneHundredAndTwenty$inboundSchema, OneHundredAndTwenty$outboundSchema, OneHundredAndTwenty$, OneHundredAndNineteen$inboundSchema, OneHundredAndNineteen$outboundSchema, OneHundredAndNineteen$, OneHundredAndEighteen$inboundSchema, OneHundredAndEighteen$outboundSchema, OneHundredAndEighteen$, OneHundredAndSeventeen$inboundSchema, OneHundredAndSeventeen$outboundSchema, OneHundredAndSeventeen$, OneHundredAndSixteen$inboundSchema, OneHundredAndSixteen$outboundSchema, OneHundredAndSixteen$, OneHundredAndFifteen$inboundSchema, OneHundredAndFifteen$outboundSchema, OneHundredAndFifteen$, OneHundredAndFourteen$inboundSchema, OneHundredAndFourteen$outboundSchema, OneHundredAndFourteen$, Previous$inboundSchema, Previous$outboundSchema, Previous$, Next$inboundSchema, Next$outboundSchema, Next$, OneHundredAndThirteen$inboundSchema, OneHundredAndThirteen$outboundSchema, OneHundredAndThirteen$, PayloadRemoteCaching$inboundSchema, PayloadRemoteCaching$outboundSchema, PayloadRemoteCaching$, OneHundredAndTwelve$inboundSchema, OneHundredAndTwelve$outboundSchema, OneHundredAndTwelve$, OneHundredAndEleven$inboundSchema, OneHundredAndEleven$outboundSchema, OneHundredAndEleven$, OneHundredAndTen$inboundSchema, OneHundredAndTen$outboundSchema, OneHundredAndTen$, OneHundredAndNine$inboundSchema, OneHundredAndNine$outboundSchema, OneHundredAndNine$, UserEventPayload108User$inboundSchema, UserEventPayload108User$outboundSchema, UserEventPayload108User$, OneHundredAndEight$inboundSchema, OneHundredAndEight$outboundSchema, OneHundredAndEight$, UserEventPayloadUser$inboundSchema, UserEventPayloadUser$outboundSchema, UserEventPayloadUser$, OneHundredAndSeven$inboundSchema, OneHundredAndSeven$outboundSchema, OneHundredAndSeven$, UpdatedUser$inboundSchema, UpdatedUser$outboundSchema, UpdatedUser$, OneHundredAndSix$inboundSchema, OneHundredAndSix$outboundSchema, OneHundredAndSix$, OneHundredAndFive$inboundSchema, OneHundredAndFive$outboundSchema, OneHundredAndFive$, DeletedUser$inboundSchema, DeletedUser$outboundSchema, DeletedUser$, OneHundredAndFour$inboundSchema, OneHundredAndFour$outboundSchema, OneHundredAndFour$, InvitedUser$inboundSchema, InvitedUser$outboundSchema, InvitedUser$, OneHundredAndThree$inboundSchema, OneHundredAndThree$outboundSchema, OneHundredAndThree$, Reasons$inboundSchema, Reasons$outboundSchema, Reasons$, OneHundredAndTwo$inboundSchema, OneHundredAndTwo$outboundSchema, OneHundredAndTwo$, OneHundredAndOne$inboundSchema, OneHundredAndOne$outboundSchema, OneHundredAndOne$, Store$inboundSchema, Store$outboundSchema, Store$, OneHundred$inboundSchema, OneHundred$outboundSchema, OneHundred$, StoreType$inboundSchema, StoreType$outboundSchema, StoreType$, NinetyNine$inboundSchema, NinetyNine$outboundSchema, NinetyNine$, UserEventPayloadType$inboundSchema, UserEventPayloadType$outboundSchema, UserEventPayloadType$, NinetyEight$inboundSchema, NinetyEight$outboundSchema, NinetyEight$, UserEventPayload97Type$inboundSchema, UserEventPayload97Type$outboundSchema, UserEventPayload97Type$, PayloadPricingPlan$inboundSchema, PayloadPricingPlan$outboundSchema, PayloadPricingPlan$, BudgetItem$inboundSchema, BudgetItem$outboundSchema, BudgetItem$, PayloadBudget$inboundSchema, PayloadBudget$outboundSchema, PayloadBudget$, NinetySeven$inboundSchema, NinetySeven$outboundSchema, NinetySeven$, UserEventPayload96Type$inboundSchema, UserEventPayload96Type$outboundSchema, UserEventPayload96Type$, PricingPlan$inboundSchema, PricingPlan$outboundSchema, PricingPlan$, Budget$inboundSchema, Budget$outboundSchema, Budget$, NinetySix$inboundSchema, NinetySix$outboundSchema, NinetySix$, NinetyFive$inboundSchema, NinetyFive$outboundSchema, NinetyFive$, ScalingRules$inboundSchema, ScalingRules$outboundSchema, ScalingRules$, NinetyFour$inboundSchema, NinetyFour$outboundSchema, NinetyFour$, NinetyThree$inboundSchema, NinetyThree$outboundSchema, NinetyThree$, NinetyTwo$inboundSchema, NinetyTwo$outboundSchema, NinetyTwo$, Name2$inboundSchema, Name2$outboundSchema, Name2$, Name$inboundSchema, Name$outboundSchema, Name$, NinetyOne$inboundSchema, NinetyOne$outboundSchema, NinetyOne$, UserEventPayload90Team$inboundSchema, UserEventPayload90Team$outboundSchema, UserEventPayload90Team$, PayloadPreviousRule$inboundSchema, PayloadPreviousRule$outboundSchema, PayloadPreviousRule$, Ninety$inboundSchema, Ninety$outboundSchema, Ninety$, UserEventPayload89Team$inboundSchema, UserEventPayload89Team$outboundSchema, UserEventPayload89Team$, PreviousRule$inboundSchema, PreviousRule$outboundSchema, PreviousRule$, NextRule$inboundSchema, NextRule$outboundSchema, NextRule$, EightyNine$inboundSchema, EightyNine$outboundSchema, EightyNine$, EightyEight$inboundSchema, EightyEight$outboundSchema, EightyEight$, EightySeven$inboundSchema, EightySeven$outboundSchema, EightySeven$, EightySix$inboundSchema, EightySix$outboundSchema, EightySix$, EightyFive$inboundSchema, EightyFive$outboundSchema, EightyFive$, EightyFour$inboundSchema, EightyFour$outboundSchema, EightyFour$, UserEventPayload83Team$inboundSchema, UserEventPayload83Team$outboundSchema, UserEventPayload83Team$, EnvId2$inboundSchema, EnvId2$outboundSchema, EnvId2$, EnvId$inboundSchema, EnvId$outboundSchema, EnvId$, OldConnectConfigurations$inboundSchema, OldConnectConfigurations$outboundSchema, OldConnectConfigurations$, UserEventEnvId2$inboundSchema, UserEventEnvId2$outboundSchema, UserEventEnvId2$, PayloadEnvId$inboundSchema, PayloadEnvId$outboundSchema, PayloadEnvId$, NewConnectConfigurations$inboundSchema, NewConnectConfigurations$outboundSchema, NewConnectConfigurations$, UserEventPayload83Project$inboundSchema, UserEventPayload83Project$outboundSchema, UserEventPayload83Project$, EightyThree$inboundSchema, EightyThree$outboundSchema, EightyThree$, EightyTwo$inboundSchema, EightyTwo$outboundSchema, EightyTwo$, UserEventPayloadAction$inboundSchema, UserEventPayloadAction$outboundSchema, UserEventPayloadAction$, EightyOne$inboundSchema, EightyOne$outboundSchema, EightyOne$, Paths$inboundSchema, Paths$outboundSchema, Paths$, OptionsAllowlist$inboundSchema, OptionsAllowlist$outboundSchema, OptionsAllowlist$, PayloadPaths$inboundSchema, PayloadPaths$outboundSchema, PayloadPaths$, OldOptionsAllowlist$inboundSchema, OldOptionsAllowlist$outboundSchema, OldOptionsAllowlist$, Eighty$inboundSchema, Eighty$outboundSchema, Eighty$, TrustedIps$inboundSchema, TrustedIps$outboundSchema, TrustedIps$, OldTrustedIps$inboundSchema, OldTrustedIps$outboundSchema, OldTrustedIps$, SeventyNine$inboundSchema, SeventyNine$outboundSchema, SeventyNine$, PasswordProtection2$inboundSchema, PasswordProtection2$outboundSchema, PasswordProtection2$, PasswordProtectionDeploymentType$inboundSchema, PasswordProtectionDeploymentType$outboundSchema, PasswordProtectionDeploymentType$, PasswordProtection1$inboundSchema, PasswordProtection1$outboundSchema, PasswordProtection1$, PasswordProtection$inboundSchema, PasswordProtection$outboundSchema, PasswordProtection$, OldPasswordProtection2$inboundSchema, OldPasswordProtection2$outboundSchema, OldPasswordProtection2$, OldPasswordProtectionDeploymentType$inboundSchema, OldPasswordProtectionDeploymentType$outboundSchema, OldPasswordProtectionDeploymentType$, OldPasswordProtection1$inboundSchema, OldPasswordProtection1$outboundSchema, OldPasswordProtection1$, OldPasswordProtection$inboundSchema, OldPasswordProtection$outboundSchema, OldPasswordProtection$, SeventyEight$inboundSchema, SeventyEight$outboundSchema, SeventyEight$, SsoProtection2$inboundSchema, SsoProtection2$outboundSchema, SsoProtection2$, DeploymentType$inboundSchema, DeploymentType$outboundSchema, DeploymentType$, SsoProtection1$inboundSchema, SsoProtection1$outboundSchema, SsoProtection1$, SsoProtection$inboundSchema, SsoProtection$outboundSchema, SsoProtection$, OldSsoProtection2$inboundSchema, OldSsoProtection2$outboundSchema, OldSsoProtection2$, OldSsoProtectionDeploymentType$inboundSchema, OldSsoProtectionDeploymentType$outboundSchema, OldSsoProtectionDeploymentType$, OldSsoProtection1$inboundSchema, OldSsoProtection1$outboundSchema, OldSsoProtection1$, OldSsoProtection$inboundSchema, OldSsoProtection$outboundSchema, OldSsoProtection$, SeventySeven$inboundSchema, SeventySeven$outboundSchema, SeventySeven$, SeventySix$inboundSchema, SeventySix$outboundSchema, SeventySix$, SeventyFive$inboundSchema, SeventyFive$outboundSchema, SeventyFive$, ProjectAnalytics$inboundSchema, ProjectAnalytics$outboundSchema, ProjectAnalytics$, PrevProjectAnalytics$inboundSchema, PrevProjectAnalytics$outboundSchema, PrevProjectAnalytics$, SeventyFour$inboundSchema, SeventyFour$outboundSchema, SeventyFour$, UserEventPayload73Role$inboundSchema, UserEventPayload73Role$outboundSchema, UserEventPayload73Role$, PayloadOrigin$inboundSchema, PayloadOrigin$outboundSchema, PayloadOrigin$, PayloadGitUserId$inboundSchema, PayloadGitUserId$outboundSchema, PayloadGitUserId$, PayloadJoinedFrom$inboundSchema, PayloadJoinedFrom$outboundSchema, PayloadJoinedFrom$, RemovedUsers$inboundSchema, RemovedUsers$outboundSchema, RemovedUsers$, SeventyThree$inboundSchema, SeventyThree$outboundSchema, SeventyThree$, SeventyTwo$inboundSchema, SeventyTwo$outboundSchema, SeventyTwo$, SeventyOne$inboundSchema, SeventyOne$outboundSchema, SeventyOne$, Seventy$inboundSchema, Seventy$outboundSchema, Seventy$, SixtyNine$inboundSchema, SixtyNine$outboundSchema, SixtyNine$, PayloadName$inboundSchema, PayloadName$outboundSchema, PayloadName$, Browser$inboundSchema, Browser$outboundSchema, Browser$, UserEventPayloadName$inboundSchema, UserEventPayloadName$outboundSchema, UserEventPayloadName$, Os$inboundSchema, Os$outboundSchema, Os$, UserAgent$inboundSchema, UserAgent$outboundSchema, UserAgent$, Names$inboundSchema, Names$outboundSchema, Names$, City$inboundSchema, City$outboundSchema, City$, PayloadNames$inboundSchema, PayloadNames$outboundSchema, PayloadNames$, Country$inboundSchema, Country$outboundSchema, Country$, UserEventPayloadNames$inboundSchema, UserEventPayloadNames$outboundSchema, UserEventPayloadNames$, MostSpecificSubdivision$inboundSchema, MostSpecificSubdivision$outboundSchema, MostSpecificSubdivision$, Geolocation$inboundSchema, Geolocation$outboundSchema, Geolocation$, SixtyEight$inboundSchema, SixtyEight$outboundSchema, SixtyEight$, SixtySeven$inboundSchema, SixtySeven$outboundSchema, SixtySeven$, SixtySix$inboundSchema, SixtySix$outboundSchema, SixtySix$, SixtyFive$inboundSchema, SixtyFive$outboundSchema, SixtyFive$, SixtyFour$inboundSchema, SixtyFour$outboundSchema, SixtyFour$, Configurations$inboundSchema, Configurations$outboundSchema, Configurations$, SixtyThree$inboundSchema, SixtyThree$outboundSchema, SixtyThree$, UserEventPayload62Action$inboundSchema, UserEventPayload62Action$outboundSchema, UserEventPayload62Action$, BlockHistory$inboundSchema, BlockHistory$outboundSchema, BlockHistory$, History$inboundSchema, History$outboundSchema, History$, Abuse$inboundSchema, Abuse$outboundSchema, Abuse$, Plan$inboundSchema, Plan$outboundSchema, Plan$, PayloadBilling$inboundSchema, PayloadBilling$outboundSchema, PayloadBilling$, UserEventCredentialsType$inboundSchema, UserEventCredentialsType$outboundSchema, UserEventCredentialsType$, Credentials2$inboundSchema, Credentials2$outboundSchema, Credentials2$, CredentialsType$inboundSchema, CredentialsType$outboundSchema, CredentialsType$, Credentials1$inboundSchema, Credentials1$outboundSchema, Credentials1$, Credentials$inboundSchema, Credentials$outboundSchema, Credentials$, PayloadDataCache$inboundSchema, PayloadDataCache$outboundSchema, PayloadDataCache$, PayloadDismissals$inboundSchema, PayloadDismissals$outboundSchema, PayloadDismissals$, PayloadDismissedToasts$inboundSchema, PayloadDismissedToasts$outboundSchema, PayloadDismissedToasts$, PayloadFavoriteProjectsAndSpaces$inboundSchema, PayloadFavoriteProjectsAndSpaces$outboundSchema, PayloadFavoriteProjectsAndSpaces$, PayloadImportFlowGitNamespace$inboundSchema, PayloadImportFlowGitNamespace$outboundSchema, PayloadImportFlowGitNamespace$, PayloadImportFlowGitNamespaceId$inboundSchema, PayloadImportFlowGitNamespaceId$outboundSchema, PayloadImportFlowGitNamespaceId$, PayloadImportFlowGitProvider$inboundSchema, PayloadImportFlowGitProvider$outboundSchema, PayloadImportFlowGitProvider$, PayloadGitNamespaceId$inboundSchema, PayloadGitNamespaceId$outboundSchema, PayloadGitNamespaceId$, PayloadPreferredScopesAndGitNamespaces$inboundSchema, PayloadPreferredScopesAndGitNamespaces$outboundSchema, PayloadPreferredScopesAndGitNamespaces$, PreventAutoBlocking$inboundSchema, PreventAutoBlocking$outboundSchema, PreventAutoBlocking$, UserEventPayloadRemoteCaching$inboundSchema, UserEventPayloadRemoteCaching$outboundSchema, UserEventPayloadRemoteCaching$, PayloadBuildEntitlements$inboundSchema, PayloadBuildEntitlements$outboundSchema, PayloadBuildEntitlements$, PayloadPurchaseType$inboundSchema, PayloadPurchaseType$outboundSchema, PayloadPurchaseType$, PayloadBuildMachine$inboundSchema, PayloadBuildMachine$outboundSchema, PayloadBuildMachine$, PayloadResourceConfig$inboundSchema, PayloadResourceConfig$outboundSchema, PayloadResourceConfig$, ResourceLimits$inboundSchema, ResourceLimits$outboundSchema, ResourceLimits$, PayloadViewPreference$inboundSchema, PayloadViewPreference$outboundSchema, PayloadViewPreference$, PayloadFavoritesViewPreference$inboundSchema, PayloadFavoritesViewPreference$outboundSchema, PayloadFavoritesViewPreference$, PayloadRecentsViewPreference$inboundSchema, PayloadRecentsViewPreference$outboundSchema, PayloadRecentsViewPreference$, PayloadActiveDashboardViews$inboundSchema, PayloadActiveDashboardViews$outboundSchema, PayloadActiveDashboardViews$, SecondaryEmails$inboundSchema, SecondaryEmails$outboundSchema, SecondaryEmails$, Rules$inboundSchema, Rules$outboundSchema, Rules$, EmailNotifications$inboundSchema, EmailNotifications$outboundSchema, EmailNotifications$, PayloadReasons$inboundSchema, PayloadReasons$outboundSchema, PayloadReasons$, SiftScores$inboundSchema, SiftScores$outboundSchema, SiftScores$, UserEventPayload62Name$inboundSchema, UserEventPayload62Name$outboundSchema, UserEventPayload62Name$, SiftRoute$inboundSchema, SiftRoute$outboundSchema, SiftRoute$, PayloadReason$inboundSchema, PayloadReason$outboundSchema, PayloadReason$, PayloadBlockedDueToOverageType$inboundSchema, PayloadBlockedDueToOverageType$outboundSchema, PayloadBlockedDueToOverageType$, PayloadSoftBlock$inboundSchema, PayloadSoftBlock$outboundSchema, PayloadSoftBlock$, UserEventPayload62Role$inboundSchema, UserEventPayload62Role$outboundSchema, UserEventPayload62Role$, PayloadTeamRoles$inboundSchema, PayloadTeamRoles$outboundSchema, PayloadTeamRoles$, PayloadTeamPermissions$inboundSchema, PayloadTeamPermissions$outboundSchema, PayloadTeamPermissions$, UserEventPayloadOrigin$inboundSchema, UserEventPayloadOrigin$outboundSchema, UserEventPayloadOrigin$, UserEventPayloadGitUserId$inboundSchema, UserEventPayloadGitUserId$outboundSchema, UserEventPayloadGitUserId$, UserEventPayloadJoinedFrom$inboundSchema, UserEventPayloadJoinedFrom$outboundSchema, UserEventPayloadJoinedFrom$, Teams$inboundSchema, Teams$outboundSchema, Teams$, UserEventPayload62Type$inboundSchema, UserEventPayload62Type$outboundSchema, UserEventPayload62Type$, UsageAlerts$inboundSchema, UsageAlerts$outboundSchema, UsageAlerts$, AnalyticsUsage$inboundSchema, AnalyticsUsage$outboundSchema, AnalyticsUsage$, Artifacts$inboundSchema, Artifacts$outboundSchema, Artifacts$, Bandwidth$inboundSchema, Bandwidth$outboundSchema, Bandwidth$, BlobTotalAdvancedRequests$inboundSchema, BlobTotalAdvancedRequests$outboundSchema, BlobTotalAdvancedRequests$, BlobTotalAvgSizeInBytes$inboundSchema, BlobTotalAvgSizeInBytes$outboundSchema, BlobTotalAvgSizeInBytes$, BlobTotalGetResponseObjectSizeInBytes$inboundSchema, BlobTotalGetResponseObjectSizeInBytes$outboundSchema, BlobTotalGetResponseObjectSizeInBytes$, BlobTotalSimpleRequests$inboundSchema, BlobTotalSimpleRequests$outboundSchema, BlobTotalSimpleRequests$, DataCacheRead$inboundSchema, DataCacheRead$outboundSchema, DataCacheRead$, DataCacheWrite$inboundSchema, DataCacheWrite$outboundSchema, DataCacheWrite$, EdgeConfigRead$inboundSchema, EdgeConfigRead$outboundSchema, EdgeConfigRead$, EdgeConfigWrite$inboundSchema, EdgeConfigWrite$outboundSchema, EdgeConfigWrite$, EdgeFunctionExecutionUnits$inboundSchema, EdgeFunctionExecutionUnits$outboundSchema, EdgeFunctionExecutionUnits$, EdgeMiddlewareInvocations$inboundSchema, EdgeMiddlewareInvocations$outboundSchema, EdgeMiddlewareInvocations$, EdgeRequestAdditionalCpuDuration$inboundSchema, EdgeRequestAdditionalCpuDuration$outboundSchema, EdgeRequestAdditionalCpuDuration$, EdgeRequest$inboundSchema, EdgeRequest$outboundSchema, EdgeRequest$, ElasticConcurrencyBuildSlots$inboundSchema, ElasticConcurrencyBuildSlots$outboundSchema, ElasticConcurrencyBuildSlots$, FastDataTransfer$inboundSchema, FastDataTransfer$outboundSchema, FastDataTransfer$, FastOriginTransfer$inboundSchema, FastOriginTransfer$outboundSchema, FastOriginTransfer$, FunctionDuration$inboundSchema, FunctionDuration$outboundSchema, FunctionDuration$, FunctionInvocation$inboundSchema, FunctionInvocation$outboundSchema, FunctionInvocation$, ImageOptimizationCacheRead$inboundSchema, ImageOptimizationCacheRead$outboundSchema, ImageOptimizationCacheRead$, ImageOptimizationCacheWrite$inboundSchema, ImageOptimizationCacheWrite$outboundSchema, ImageOptimizationCacheWrite$, ImageOptimizationTransformation$inboundSchema, ImageOptimizationTransformation$outboundSchema, ImageOptimizationTransformation$, LogDrainsVolume$inboundSchema, LogDrainsVolume$outboundSchema, LogDrainsVolume$, MonitoringMetric$inboundSchema, MonitoringMetric$outboundSchema, MonitoringMetric$, BlobDataTransfer$inboundSchema, BlobDataTransfer$outboundSchema, BlobDataTransfer$, ObservabilityEvent$inboundSchema, ObservabilityEvent$outboundSchema, ObservabilityEvent$, PostgresComputeTime$inboundSchema, PostgresComputeTime$outboundSchema, PostgresComputeTime$, PostgresDataStorage$inboundSchema, PostgresDataStorage$outboundSchema, PostgresDataStorage$, PostgresDataTransfer$inboundSchema, PostgresDataTransfer$outboundSchema, PostgresDataTransfer$, PostgresDatabase$inboundSchema, PostgresDatabase$outboundSchema, PostgresDatabase$, PostgresWrittenData$inboundSchema, PostgresWrittenData$outboundSchema, PostgresWrittenData$, ServerlessFunctionExecution$inboundSchema, ServerlessFunctionExecution$outboundSchema, ServerlessFunctionExecution$, SourceImages$inboundSchema, SourceImages$outboundSchema, SourceImages$, StorageRedisTotalBandwidthInBytes$inboundSchema, StorageRedisTotalBandwidthInBytes$outboundSchema, StorageRedisTotalBandwidthInBytes$, StorageRedisTotalCommands$inboundSchema, StorageRedisTotalCommands$outboundSchema, StorageRedisTotalCommands$, StorageRedisTotalDailyAvgStorageInBytes$inboundSchema, StorageRedisTotalDailyAvgStorageInBytes$outboundSchema, StorageRedisTotalDailyAvgStorageInBytes$, StorageRedisTotalDatabases$inboundSchema, StorageRedisTotalDatabases$outboundSchema, StorageRedisTotalDatabases$, WafOwaspExcessBytes$inboundSchema, WafOwaspExcessBytes$outboundSchema, WafOwaspExcessBytes$, WafOwaspRequests$inboundSchema, WafOwaspRequests$outboundSchema, WafOwaspRequests$, WafRateLimitRequest$inboundSchema, WafRateLimitRequest$outboundSchema, WafRateLimitRequest$, WebAnalyticsEvent$inboundSchema, WebAnalyticsEvent$outboundSchema, WebAnalyticsEvent$, OverageUsageAlerts$inboundSchema, OverageUsageAlerts$outboundSchema, OverageUsageAlerts$, OverageMetadata$inboundSchema, OverageMetadata$outboundSchema, OverageMetadata$, EnablePreviewFeedback$inboundSchema, EnablePreviewFeedback$outboundSchema, EnablePreviewFeedback$, BlockReason$inboundSchema, BlockReason$outboundSchema, BlockReason$, PayloadWebAnalytics$inboundSchema, PayloadWebAnalytics$outboundSchema, PayloadWebAnalytics$, PayloadBlockReason$inboundSchema, PayloadBlockReason$outboundSchema, PayloadBlockReason$, BlockType$inboundSchema, BlockType$outboundSchema, BlockType$, Monitoring$inboundSchema, Monitoring$outboundSchema, Monitoring$, UserEventPayloadBlockReason$inboundSchema, UserEventPayloadBlockReason$outboundSchema, UserEventPayloadBlockReason$, PayloadBlockType$inboundSchema, PayloadBlockType$outboundSchema, PayloadBlockType$, ObservabilityPlus$inboundSchema, ObservabilityPlus$outboundSchema, ObservabilityPlus$, UserEventPayload62BlockReason$inboundSchema, UserEventPayload62BlockReason$outboundSchema, UserEventPayload62BlockReason$, UserEventPayloadDataCache$inboundSchema, UserEventPayloadDataCache$outboundSchema, UserEventPayloadDataCache$, UserEventPayload62NewOwnerBlockReason$inboundSchema, UserEventPayload62NewOwnerBlockReason$outboundSchema, UserEventPayload62NewOwnerBlockReason$, PayloadImageOptimizationTransformation$inboundSchema, PayloadImageOptimizationTransformation$outboundSchema, PayloadImageOptimizationTransformation$, UserEventPayload62NewOwnerFeatureBlocksBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlockReason$, PayloadSourceImages$inboundSchema, PayloadSourceImages$outboundSchema, PayloadSourceImages$, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksBlobBlockReason$, OverageReason$inboundSchema, OverageReason$outboundSchema, OverageReason$, BlobT$inboundSchema, BlobT$outboundSchema, BlobT$, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksPostgresBlockReason$, PayloadOverageReason$inboundSchema, PayloadOverageReason$outboundSchema, PayloadOverageReason$, Postgres$inboundSchema, Postgres$outboundSchema, Postgres$, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$inboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$outboundSchema, UserEventPayload62NewOwnerFeatureBlocksRedisBlockReason$, UserEventPayloadOverageReason$inboundSchema, UserEventPayloadOverageReason$outboundSchema, UserEventPayloadOverageReason$, Redis$inboundSchema, Redis$outboundSchema, Redis$, PayloadFeatureBlocks$inboundSchema, PayloadFeatureBlocks$outboundSchema, PayloadFeatureBlocks$, PayloadVersion$inboundSchema, PayloadVersion$outboundSchema, PayloadVersion$, PayloadNorthstarMigration$inboundSchema, PayloadNorthstarMigration$outboundSchema, PayloadNorthstarMigration$, Totp$inboundSchema, Totp$outboundSchema, Totp$, MfaConfiguration$inboundSchema, MfaConfiguration$outboundSchema, MfaConfiguration$, NewOwner$inboundSchema, NewOwner$outboundSchema, NewOwner$, SixtyTwo$inboundSchema, SixtyTwo$outboundSchema, SixtyTwo$, SixtyOne$inboundSchema, SixtyOne$outboundSchema, SixtyOne$, Sixty$inboundSchema, Sixty$outboundSchema, Sixty$, ConfigChanges$inboundSchema, ConfigChanges$outboundSchema, ConfigChanges$, FiftyNine$inboundSchema, FiftyNine$outboundSchema, FiftyNine$, UserEventPayload58OldEnvVarType$inboundSchema, UserEventPayload58OldEnvVarType$outboundSchema, UserEventPayload58OldEnvVarType$, UserEventPayloadTarget$inboundSchema, UserEventPayloadTarget$outboundSchema, UserEventPayloadTarget$, OldEnvVar$inboundSchema, OldEnvVar$outboundSchema, OldEnvVar$, UserEventPayload58Type$inboundSchema, UserEventPayload58Type$outboundSchema, UserEventPayload58Type$, UserEventPayload58Target$inboundSchema, UserEventPayload58Target$outboundSchema, UserEventPayload58Target$, NewEnvVar$inboundSchema, NewEnvVar$outboundSchema, NewEnvVar$, OldTarget$inboundSchema, OldTarget$outboundSchema, OldTarget$, NewTarget$inboundSchema, NewTarget$outboundSchema, NewTarget$, OldProjects$inboundSchema, OldProjects$outboundSchema, OldProjects$, NewProjects$inboundSchema, NewProjects$outboundSchema, NewProjects$, UpdateDiff$inboundSchema, UpdateDiff$outboundSchema, UpdateDiff$, FiftyEight$inboundSchema, FiftyEight$outboundSchema, FiftyEight$, PayloadType$inboundSchema, PayloadType$outboundSchema, PayloadType$, PayloadTarget$inboundSchema, PayloadTarget$outboundSchema, PayloadTarget$, FiftySeven$inboundSchema, FiftySeven$outboundSchema, FiftySeven$, Target$inboundSchema, Target$outboundSchema, Target$, FiftySix$inboundSchema, FiftySix$outboundSchema, FiftySix$, FiftyFive$inboundSchema, FiftyFive$outboundSchema, FiftyFive$, FiftyFour$inboundSchema, FiftyFour$outboundSchema, FiftyFour$, FiftyThree$inboundSchema, FiftyThree$outboundSchema, FiftyThree$, FiftyTwo$inboundSchema, FiftyTwo$outboundSchema, FiftyTwo$, FiftyOne$inboundSchema, FiftyOne$outboundSchema, FiftyOne$, Fifty$inboundSchema, Fifty$outboundSchema, Fifty$, FortyNine$inboundSchema, FortyNine$outboundSchema, FortyNine$, FortyEight$inboundSchema, FortyEight$outboundSchema, FortyEight$, UserEventPayload47OldTeam$inboundSchema, UserEventPayload47OldTeam$outboundSchema, UserEventPayload47OldTeam$, UserEventPayload47NewTeam$inboundSchema, UserEventPayload47NewTeam$outboundSchema, UserEventPayload47NewTeam$, FortySeven$inboundSchema, FortySeven$outboundSchema, FortySeven$, FortySix$inboundSchema, FortySix$outboundSchema, FortySix$, FortyFive$inboundSchema, FortyFive$outboundSchema, FortyFive$, FortyFour$inboundSchema, FortyFour$outboundSchema, FortyFour$, FortyThree$inboundSchema, FortyThree$outboundSchema, FortyThree$, FortyTwo$inboundSchema, FortyTwo$outboundSchema, FortyTwo$, FortyOne$inboundSchema, FortyOne$outboundSchema, FortyOne$, Forty$inboundSchema, Forty$outboundSchema, Forty$, UserEventPayloadDeployment$inboundSchema, UserEventPayloadDeployment$outboundSchema, UserEventPayloadDeployment$, ThirtyNine$inboundSchema, ThirtyNine$outboundSchema, ThirtyNine$, UserEventPayloadOldTeam$inboundSchema, UserEventPayloadOldTeam$outboundSchema, UserEventPayloadOldTeam$, UserEventPayloadNewTeam$inboundSchema, UserEventPayloadNewTeam$outboundSchema, UserEventPayloadNewTeam$, ThirtyEight$inboundSchema, ThirtyEight$outboundSchema, ThirtyEight$, PayloadDeployment$inboundSchema, PayloadDeployment$outboundSchema, PayloadDeployment$, ThirtySeven$inboundSchema, ThirtySeven$outboundSchema, ThirtySeven$, UserEventPayload36Project$inboundSchema, UserEventPayload36Project$outboundSchema, UserEventPayload36Project$, DeployHook$inboundSchema, DeployHook$outboundSchema, DeployHook$, Job$inboundSchema, Job$outboundSchema, Job$, ThirtySix$inboundSchema, ThirtySix$outboundSchema, ThirtySix$, ThirtyFive$inboundSchema, ThirtyFive$outboundSchema, ThirtyFive$, ThirtyFour$inboundSchema, ThirtyFour$outboundSchema, ThirtyFour$, ThirtyThree$inboundSchema, ThirtyThree$outboundSchema, ThirtyThree$, UserEventPayload32Team$inboundSchema, UserEventPayload32Team$outboundSchema, UserEventPayload32Team$, UserEventPayload32Configuration$inboundSchema, UserEventPayload32Configuration$outboundSchema, UserEventPayload32Configuration$, ThirtyTwo$inboundSchema, ThirtyTwo$outboundSchema, ThirtyTwo$, UserEventPayloadTeam$inboundSchema, UserEventPayloadTeam$outboundSchema, UserEventPayloadTeam$, UserEventPayloadConfiguration$inboundSchema, UserEventPayloadConfiguration$outboundSchema, UserEventPayloadConfiguration$, UserEventPayload31Project$inboundSchema, UserEventPayload31Project$outboundSchema, UserEventPayload31Project$, ThirtyOne$inboundSchema, ThirtyOne$outboundSchema, ThirtyOne$, PayloadTeam$inboundSchema, PayloadTeam$outboundSchema, PayloadTeam$, PayloadConfiguration$inboundSchema, PayloadConfiguration$outboundSchema, PayloadConfiguration$, UserEventPayloadProject$inboundSchema, UserEventPayloadProject$outboundSchema, UserEventPayloadProject$, Thirty$inboundSchema, Thirty$outboundSchema, Thirty$, Team$inboundSchema, Team$outboundSchema, Team$, Configuration$inboundSchema, Configuration$outboundSchema, Configuration$, PayloadProject$inboundSchema, PayloadProject$outboundSchema, PayloadProject$, TwentyNine$inboundSchema, TwentyNine$outboundSchema, TwentyNine$, TwentyEight$inboundSchema, TwentyEight$outboundSchema, TwentyEight$, TwentySeven$inboundSchema, TwentySeven$outboundSchema, TwentySeven$, TwentySix$inboundSchema, TwentySix$outboundSchema, TwentySix$, TwentyFive$inboundSchema, TwentyFive$outboundSchema, TwentyFive$, TwentyFour$inboundSchema, TwentyFour$outboundSchema, TwentyFour$, TwentyThree$inboundSchema, TwentyThree$outboundSchema, TwentyThree$, PayloadOldTeam$inboundSchema, PayloadOldTeam$outboundSchema, PayloadOldTeam$, PayloadNewTeam$inboundSchema, PayloadNewTeam$outboundSchema, PayloadNewTeam$, TwentyTwo$inboundSchema, TwentyTwo$outboundSchema, TwentyTwo$, TwentyOne$inboundSchema, TwentyOne$outboundSchema, TwentyOne$, Twenty$inboundSchema, Twenty$outboundSchema, Twenty$, Nineteen$inboundSchema, Nineteen$outboundSchema, Nineteen$, Eighteen$inboundSchema, Eighteen$outboundSchema, Eighteen$, Seventeen$inboundSchema, Seventeen$outboundSchema, Seventeen$, Sixteen$inboundSchema, Sixteen$outboundSchema, Sixteen$, OldTeam$inboundSchema, OldTeam$outboundSchema, OldTeam$, NewTeam$inboundSchema, NewTeam$outboundSchema, NewTeam$, Fifteen$inboundSchema, Fifteen$outboundSchema, Fifteen$, Fourteen$inboundSchema, Fourteen$outboundSchema, Fourteen$, Thirteen$inboundSchema, Thirteen$outboundSchema, Thirteen$, PayloadAction$inboundSchema, PayloadAction$outboundSchema, PayloadAction$, Twelve$inboundSchema, Twelve$outboundSchema, Twelve$, Eleven$inboundSchema, Eleven$outboundSchema, Eleven$, Ten$inboundSchema, Ten$outboundSchema, Ten$, Nine$inboundSchema, Nine$outboundSchema, Nine$, Eight$inboundSchema, Eight$outboundSchema, Eight$, Deployment$inboundSchema, Deployment$outboundSchema, Deployment$, Seven$inboundSchema, Seven$outboundSchema, Seven$, UserEventPayload6AccessGroup$inboundSchema, UserEventPayload6AccessGroup$outboundSchema, UserEventPayload6AccessGroup$, Project$inboundSchema, Project$outboundSchema, Project$, Six$inboundSchema, Six$outboundSchema, Six$, UserEventPayloadAccessGroup$inboundSchema, UserEventPayloadAccessGroup$outboundSchema, UserEventPayloadAccessGroup$, PayloadUser$inboundSchema, PayloadUser$outboundSchema, PayloadUser$, Five$inboundSchema, Five$outboundSchema, Five$, PayloadAccessGroup$inboundSchema, PayloadAccessGroup$outboundSchema, PayloadAccessGroup$, Four$inboundSchema, Four$outboundSchema, Four$, AccessGroup$inboundSchema, AccessGroup$outboundSchema, AccessGroup$, Three$inboundSchema, Three$outboundSchema, Three$, Action$inboundSchema, Action$outboundSchema, Action$, Payload2$inboundSchema, Payload2$outboundSchema, Payload2$, Payload1$inboundSchema, Payload1$outboundSchema, Payload1$, Payload$inboundSchema, Payload$outboundSchema, Payload$, UserEvent$inboundSchema, UserEvent$outboundSchema, UserEvent$;
97125
97148
  var init_userevent = __esm(() => {
97126
97149
  init_lib();
97127
97150
  init_primitives();
@@ -97148,6 +97171,18 @@ var init_userevent = __esm(() => {
97148
97171
  Store: "store",
97149
97172
  System: "system"
97150
97173
  };
97174
+ UserEventPrincipalType = {
97175
+ App: "app"
97176
+ };
97177
+ PrincipalType = {
97178
+ User: "user"
97179
+ };
97180
+ UserEventViaType = {
97181
+ App: "app"
97182
+ };
97183
+ ViaType = {
97184
+ User: "user"
97185
+ };
97151
97186
  GrantType = {
97152
97187
  AuthorizationCode: "authorization_code",
97153
97188
  RefreshToken: "refresh_token",
@@ -97360,7 +97395,8 @@ var init_userevent = __esm(() => {
97360
97395
  GithubCustomHost: "github-custom-host"
97361
97396
  };
97362
97397
  PayloadPurchaseType = {
97363
- Enhanced: "enhanced"
97398
+ Enhanced: "enhanced",
97399
+ Ultra: "ultra"
97364
97400
  };
97365
97401
  PayloadViewPreference = {
97366
97402
  Cards: "cards",
@@ -97734,21 +97770,131 @@ var init_userevent = __esm(() => {
97734
97770
  User$inboundSchema = objectType({
97735
97771
  avatar: stringType(),
97736
97772
  email: stringType(),
97773
+ username: stringType(),
97737
97774
  slug: stringType().optional(),
97738
- uid: stringType(),
97739
- username: stringType()
97775
+ uid: stringType()
97740
97776
  });
97741
97777
  User$outboundSchema = objectType({
97742
97778
  avatar: stringType(),
97743
97779
  email: stringType(),
97780
+ username: stringType(),
97744
97781
  slug: stringType().optional(),
97745
- uid: stringType(),
97746
- username: stringType()
97782
+ uid: stringType()
97747
97783
  });
97748
97784
  ((User$) => {
97749
97785
  User$.inboundSchema = User$inboundSchema;
97750
97786
  User$.outboundSchema = User$outboundSchema;
97751
97787
  })(User$ ||= {});
97788
+ UserEventPrincipalType$inboundSchema = nativeEnumType(UserEventPrincipalType);
97789
+ UserEventPrincipalType$outboundSchema = UserEventPrincipalType$inboundSchema;
97790
+ ((UserEventPrincipalType$) => {
97791
+ UserEventPrincipalType$.inboundSchema = UserEventPrincipalType$inboundSchema;
97792
+ UserEventPrincipalType$.outboundSchema = UserEventPrincipalType$outboundSchema;
97793
+ })(UserEventPrincipalType$ ||= {});
97794
+ Two$inboundSchema = objectType({
97795
+ type: UserEventPrincipalType$inboundSchema,
97796
+ clientId: stringType(),
97797
+ name: stringType()
97798
+ });
97799
+ Two$outboundSchema = objectType({
97800
+ type: UserEventPrincipalType$outboundSchema,
97801
+ clientId: stringType(),
97802
+ name: stringType()
97803
+ });
97804
+ ((Two$) => {
97805
+ Two$.inboundSchema = Two$inboundSchema;
97806
+ Two$.outboundSchema = Two$outboundSchema;
97807
+ })(Two$ ||= {});
97808
+ PrincipalType$inboundSchema = nativeEnumType(PrincipalType);
97809
+ PrincipalType$outboundSchema = PrincipalType$inboundSchema;
97810
+ ((PrincipalType$) => {
97811
+ PrincipalType$.inboundSchema = PrincipalType$inboundSchema;
97812
+ PrincipalType$.outboundSchema = PrincipalType$outboundSchema;
97813
+ })(PrincipalType$ ||= {});
97814
+ One$inboundSchema = objectType({
97815
+ type: PrincipalType$inboundSchema.optional(),
97816
+ avatar: stringType(),
97817
+ email: stringType(),
97818
+ slug: stringType().optional(),
97819
+ uid: stringType(),
97820
+ username: stringType()
97821
+ });
97822
+ One$outboundSchema = objectType({
97823
+ type: PrincipalType$outboundSchema.optional(),
97824
+ avatar: stringType(),
97825
+ email: stringType(),
97826
+ slug: stringType().optional(),
97827
+ uid: stringType(),
97828
+ username: stringType()
97829
+ });
97830
+ ((One$) => {
97831
+ One$.inboundSchema = One$inboundSchema;
97832
+ One$.outboundSchema = One$outboundSchema;
97833
+ })(One$ ||= {});
97834
+ Principal$inboundSchema = unionType([lazyType(() => Two$inboundSchema), lazyType(() => One$inboundSchema)]);
97835
+ Principal$outboundSchema = unionType([
97836
+ lazyType(() => Two$outboundSchema),
97837
+ lazyType(() => One$outboundSchema)
97838
+ ]);
97839
+ ((Principal$) => {
97840
+ Principal$.inboundSchema = Principal$inboundSchema;
97841
+ Principal$.outboundSchema = Principal$outboundSchema;
97842
+ })(Principal$ ||= {});
97843
+ UserEventViaType$inboundSchema = nativeEnumType(UserEventViaType);
97844
+ UserEventViaType$outboundSchema = UserEventViaType$inboundSchema;
97845
+ ((UserEventViaType$) => {
97846
+ UserEventViaType$.inboundSchema = UserEventViaType$inboundSchema;
97847
+ UserEventViaType$.outboundSchema = UserEventViaType$outboundSchema;
97848
+ })(UserEventViaType$ ||= {});
97849
+ Via2$inboundSchema = objectType({
97850
+ type: UserEventViaType$inboundSchema,
97851
+ clientId: stringType(),
97852
+ name: stringType()
97853
+ });
97854
+ Via2$outboundSchema = objectType({
97855
+ type: UserEventViaType$outboundSchema,
97856
+ clientId: stringType(),
97857
+ name: stringType()
97858
+ });
97859
+ ((Via2$) => {
97860
+ Via2$.inboundSchema = Via2$inboundSchema;
97861
+ Via2$.outboundSchema = Via2$outboundSchema;
97862
+ })(Via2$ ||= {});
97863
+ ViaType$inboundSchema = nativeEnumType(ViaType);
97864
+ ViaType$outboundSchema = ViaType$inboundSchema;
97865
+ ((ViaType$) => {
97866
+ ViaType$.inboundSchema = ViaType$inboundSchema;
97867
+ ViaType$.outboundSchema = ViaType$outboundSchema;
97868
+ })(ViaType$ ||= {});
97869
+ Via1$inboundSchema = objectType({
97870
+ type: ViaType$inboundSchema.optional(),
97871
+ avatar: stringType(),
97872
+ email: stringType(),
97873
+ slug: stringType().optional(),
97874
+ uid: stringType(),
97875
+ username: stringType()
97876
+ });
97877
+ Via1$outboundSchema = objectType({
97878
+ type: ViaType$outboundSchema.optional(),
97879
+ avatar: stringType(),
97880
+ email: stringType(),
97881
+ slug: stringType().optional(),
97882
+ uid: stringType(),
97883
+ username: stringType()
97884
+ });
97885
+ ((Via1$) => {
97886
+ Via1$.inboundSchema = Via1$inboundSchema;
97887
+ Via1$.outboundSchema = Via1$outboundSchema;
97888
+ })(Via1$ ||= {});
97889
+ Via$inboundSchema = unionType([lazyType(() => Via2$inboundSchema), lazyType(() => Via1$inboundSchema)]);
97890
+ Via$outboundSchema = unionType([
97891
+ lazyType(() => Via2$outboundSchema),
97892
+ lazyType(() => Via1$outboundSchema)
97893
+ ]);
97894
+ ((Via$) => {
97895
+ Via$.inboundSchema = Via$inboundSchema;
97896
+ Via$.outboundSchema = Via$outboundSchema;
97897
+ })(Via$ ||= {});
97752
97898
  GrantType$inboundSchema = nativeEnumType(GrantType);
97753
97899
  GrantType$outboundSchema = GrantType$inboundSchema;
97754
97900
  ((GrantType$) => {
@@ -103591,30 +103737,30 @@ var init_userevent = __esm(() => {
103591
103737
  Action$.inboundSchema = Action$inboundSchema;
103592
103738
  Action$.outboundSchema = Action$outboundSchema;
103593
103739
  })(Action$ ||= {});
103594
- Two$inboundSchema = objectType({
103740
+ Payload2$inboundSchema = objectType({
103595
103741
  action: Action$inboundSchema,
103596
103742
  id: stringType(),
103597
103743
  slug: stringType(),
103598
103744
  projectId: stringType()
103599
103745
  });
103600
- Two$outboundSchema = objectType({
103746
+ Payload2$outboundSchema = objectType({
103601
103747
  action: Action$outboundSchema,
103602
103748
  id: stringType(),
103603
103749
  slug: stringType(),
103604
103750
  projectId: stringType()
103605
103751
  });
103606
- ((Two$) => {
103607
- Two$.inboundSchema = Two$inboundSchema;
103608
- Two$.outboundSchema = Two$outboundSchema;
103609
- })(Two$ ||= {});
103610
- One$inboundSchema = objectType({});
103611
- One$outboundSchema = objectType({});
103612
- ((One$) => {
103613
- One$.inboundSchema = One$inboundSchema;
103614
- One$.outboundSchema = One$outboundSchema;
103615
- })(One$ ||= {});
103752
+ ((Payload2$) => {
103753
+ Payload2$.inboundSchema = Payload2$inboundSchema;
103754
+ Payload2$.outboundSchema = Payload2$outboundSchema;
103755
+ })(Payload2$ ||= {});
103756
+ Payload1$inboundSchema = objectType({});
103757
+ Payload1$outboundSchema = objectType({});
103758
+ ((Payload1$) => {
103759
+ Payload1$.inboundSchema = Payload1$inboundSchema;
103760
+ Payload1$.outboundSchema = Payload1$outboundSchema;
103761
+ })(Payload1$ ||= {});
103616
103762
  Payload$inboundSchema = unionType([
103617
- lazyType(() => One$inboundSchema),
103763
+ lazyType(() => Payload1$inboundSchema),
103618
103764
  lazyType(() => Three$inboundSchema),
103619
103765
  lazyType(() => Nine$inboundSchema),
103620
103766
  lazyType(() => Nineteen$inboundSchema),
@@ -103719,7 +103865,7 @@ var init_userevent = __esm(() => {
103719
103865
  lazyType(() => OneHundredAndThirtyEight$inboundSchema),
103720
103866
  lazyType(() => OneHundredAndFortyFive$inboundSchema),
103721
103867
  lazyType(() => OneHundredAndFortySix$inboundSchema),
103722
- lazyType(() => Two$inboundSchema),
103868
+ lazyType(() => Payload2$inboundSchema),
103723
103869
  lazyType(() => Six$inboundSchema),
103724
103870
  lazyType(() => Eleven$inboundSchema),
103725
103871
  lazyType(() => Fifteen$inboundSchema),
@@ -103764,7 +103910,7 @@ var init_userevent = __esm(() => {
103764
103910
  lazyType(() => FiftySeven$inboundSchema)
103765
103911
  ]);
103766
103912
  Payload$outboundSchema = unionType([
103767
- lazyType(() => One$outboundSchema),
103913
+ lazyType(() => Payload1$outboundSchema),
103768
103914
  lazyType(() => Three$outboundSchema),
103769
103915
  lazyType(() => Nine$outboundSchema),
103770
103916
  lazyType(() => Nineteen$outboundSchema),
@@ -103869,7 +104015,7 @@ var init_userevent = __esm(() => {
103869
104015
  lazyType(() => OneHundredAndThirtyEight$outboundSchema),
103870
104016
  lazyType(() => OneHundredAndFortyFive$outboundSchema),
103871
104017
  lazyType(() => OneHundredAndFortySix$outboundSchema),
103872
- lazyType(() => Two$outboundSchema),
104018
+ lazyType(() => Payload2$outboundSchema),
103873
104019
  lazyType(() => Six$outboundSchema),
103874
104020
  lazyType(() => Eleven$outboundSchema),
103875
104021
  lazyType(() => Fifteen$outboundSchema),
@@ -103923,9 +104069,19 @@ var init_userevent = __esm(() => {
103923
104069
  entities: arrayType(lazyType(() => Entities$inboundSchema)),
103924
104070
  createdAt: numberType(),
103925
104071
  user: lazyType(() => User$inboundSchema).optional(),
104072
+ principal: unionType([
104073
+ lazyType(() => Two$inboundSchema),
104074
+ lazyType(() => One$inboundSchema)
104075
+ ]).optional(),
104076
+ via: arrayType(unionType([
104077
+ lazyType(() => Via2$inboundSchema),
104078
+ lazyType(() => Via1$inboundSchema)
104079
+ ])).optional(),
103926
104080
  userId: stringType(),
104081
+ principalId: stringType(),
104082
+ viaIds: arrayType(stringType()).optional(),
103927
104083
  payload: unionType([
103928
- lazyType(() => One$inboundSchema),
104084
+ lazyType(() => Payload1$inboundSchema),
103929
104085
  lazyType(() => Three$inboundSchema),
103930
104086
  lazyType(() => Nine$inboundSchema),
103931
104087
  lazyType(() => Nineteen$inboundSchema),
@@ -104030,7 +104186,7 @@ var init_userevent = __esm(() => {
104030
104186
  lazyType(() => OneHundredAndThirtyEight$inboundSchema),
104031
104187
  lazyType(() => OneHundredAndFortyFive$inboundSchema),
104032
104188
  lazyType(() => OneHundredAndFortySix$inboundSchema),
104033
- lazyType(() => Two$inboundSchema),
104189
+ lazyType(() => Payload2$inboundSchema),
104034
104190
  lazyType(() => Six$inboundSchema),
104035
104191
  lazyType(() => Eleven$inboundSchema),
104036
104192
  lazyType(() => Fifteen$inboundSchema),
@@ -104081,9 +104237,19 @@ var init_userevent = __esm(() => {
104081
104237
  entities: arrayType(lazyType(() => Entities$outboundSchema)),
104082
104238
  createdAt: numberType(),
104083
104239
  user: lazyType(() => User$outboundSchema).optional(),
104240
+ principal: unionType([
104241
+ lazyType(() => Two$outboundSchema),
104242
+ lazyType(() => One$outboundSchema)
104243
+ ]).optional(),
104244
+ via: arrayType(unionType([
104245
+ lazyType(() => Via2$outboundSchema),
104246
+ lazyType(() => Via1$outboundSchema)
104247
+ ])).optional(),
104084
104248
  userId: stringType(),
104249
+ principalId: stringType(),
104250
+ viaIds: arrayType(stringType()).optional(),
104085
104251
  payload: unionType([
104086
- lazyType(() => One$outboundSchema),
104252
+ lazyType(() => Payload1$outboundSchema),
104087
104253
  lazyType(() => Three$outboundSchema),
104088
104254
  lazyType(() => Nine$outboundSchema),
104089
104255
  lazyType(() => Nineteen$outboundSchema),
@@ -104188,7 +104354,7 @@ var init_userevent = __esm(() => {
104188
104354
  lazyType(() => OneHundredAndThirtyEight$outboundSchema),
104189
104355
  lazyType(() => OneHundredAndFortyFive$outboundSchema),
104190
104356
  lazyType(() => OneHundredAndFortySix$outboundSchema),
104191
- lazyType(() => Two$outboundSchema),
104357
+ lazyType(() => Payload2$outboundSchema),
104192
104358
  lazyType(() => Six$outboundSchema),
104193
104359
  lazyType(() => Eleven$outboundSchema),
104194
104360
  lazyType(() => Fifteen$outboundSchema),
@@ -104250,6 +104416,7 @@ var init_listusereventsop = __esm(() => {
104250
104416
  until: stringType().optional(),
104251
104417
  types: stringType().optional(),
104252
104418
  userId: stringType().optional(),
104419
+ principalId: stringType().optional(),
104253
104420
  withPayload: stringType().optional(),
104254
104421
  teamId: stringType().optional(),
104255
104422
  slug: stringType().optional()
@@ -104260,6 +104427,7 @@ var init_listusereventsop = __esm(() => {
104260
104427
  until: stringType().optional(),
104261
104428
  types: stringType().optional(),
104262
104429
  userId: stringType().optional(),
104430
+ principalId: stringType().optional(),
104263
104431
  withPayload: stringType().optional(),
104264
104432
  teamId: stringType().optional(),
104265
104433
  slug: stringType().optional()
@@ -104294,6 +104462,7 @@ async function $do157(client, request, options) {
104294
104462
  const path = pathToFunc("/v3/events")();
104295
104463
  const query = encodeFormQuery({
104296
104464
  limit: payload.limit,
104465
+ principalId: payload.principalId,
104297
104466
  since: payload.since,
104298
104467
  slug: payload.slug,
104299
104468
  teamId: payload.teamId,
@@ -104566,6 +104735,10 @@ var init_createwebhookop = __esm(() => {
104566
104735
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104567
104736
  ProjectCreated: "project.created",
104568
104737
  ProjectRemoved: "project.removed",
104738
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
104739
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
104740
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
104741
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104569
104742
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104570
104743
  DeploymentReadyLegacy: "deployment-ready",
104571
104744
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -104611,6 +104784,10 @@ var init_createwebhookop = __esm(() => {
104611
104784
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104612
104785
  ProjectCreated: "project.created",
104613
104786
  ProjectRemoved: "project.removed",
104787
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
104788
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
104789
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
104790
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104614
104791
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104615
104792
  DeploymentReadyLegacy: "deployment-ready",
104616
104793
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -104973,6 +105150,10 @@ var init_getwebhookop = __esm(() => {
104973
105150
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
104974
105151
  ProjectCreated: "project.created",
104975
105152
  ProjectRemoved: "project.removed",
105153
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105154
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105155
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105156
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
104976
105157
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
104977
105158
  DeploymentReadyLegacy: "deployment-ready",
104978
105159
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105178,6 +105359,10 @@ var init_getwebhooksop = __esm(() => {
105178
105359
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
105179
105360
  ProjectCreated: "project.created",
105180
105361
  ProjectRemoved: "project.removed",
105362
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105363
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105364
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105365
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
105181
105366
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
105182
105367
  DeploymentReadyLegacy: "deployment-ready",
105183
105368
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105271,6 +105456,10 @@ var init_getwebhooksop = __esm(() => {
105271
105456
  IntegrationResourceProjectDisconnected: "integration-resource.project-disconnected",
105272
105457
  ProjectCreated: "project.created",
105273
105458
  ProjectRemoved: "project.removed",
105459
+ ProjectRollingReleaseStarted: "project.rolling-release.started",
105460
+ ProjectRollingReleaseAborted: "project.rolling-release.aborted",
105461
+ ProjectRollingReleaseCompleted: "project.rolling-release.completed",
105462
+ ProjectRollingReleaseApproved: "project.rolling-release.approved",
105274
105463
  DeploymentChecksCompletedLegacy: "deployment-checks-completed",
105275
105464
  DeploymentReadyLegacy: "deployment-ready",
105276
105465
  DeploymentPreparedLegacy: "deployment-prepared",
@@ -105510,7 +105699,7 @@ Get a list of webhooks`,
105510
105699
  function createMCPServer(deps) {
105511
105700
  const server = new McpServer({
105512
105701
  name: "Vercel",
105513
- version: "1.6.9"
105702
+ version: "1.6.10"
105514
105703
  });
105515
105704
  const client = new VercelCore({
105516
105705
  bearerToken: deps.bearerToken,
@@ -107045,7 +107234,7 @@ var routes = an({
107045
107234
  var app = He(routes, {
107046
107235
  name: "mcp",
107047
107236
  versionInfo: {
107048
- currentVersion: "1.6.9"
107237
+ currentVersion: "1.6.10"
107049
107238
  }
107050
107239
  });
107051
107240
  zt(app, process3.argv.slice(2), buildContext(process3));
@@ -107053,5 +107242,5 @@ export {
107053
107242
  app
107054
107243
  };
107055
107244
 
107056
- //# debugId=D499DAB11FD3A27464756E2164756E21
107245
+ //# debugId=C6D97F233342445664756E2164756E21
107057
107246
  //# sourceMappingURL=mcp-server.js.map