@vercel/sdk 1.10.1 → 1.10.2

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 (93) hide show
  1. package/bin/mcp-server.js +816 -1951
  2. package/bin/mcp-server.js.map +22 -22
  3. package/esm/__tests__/teams.test.js +2 -2
  4. package/esm/__tests__/teams.test.js.map +1 -1
  5. package/esm/funcs/domainsBuyDomain.js +2 -2
  6. package/esm/funcs/domainsBuyDomain.js.map +1 -1
  7. package/esm/funcs/domainsPatchDomain.js +2 -2
  8. package/esm/funcs/domainsPatchDomain.js.map +1 -1
  9. package/esm/lib/config.d.ts +3 -3
  10. package/esm/lib/config.js +3 -3
  11. package/esm/mcp-server/mcp-server.js +1 -1
  12. package/esm/mcp-server/server.js +1 -1
  13. package/esm/models/canceldeploymentop.d.ts +49 -49
  14. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  15. package/esm/models/canceldeploymentop.js +53 -55
  16. package/esm/models/canceldeploymentop.js.map +1 -1
  17. package/esm/models/createdeploymentop.d.ts +139 -139
  18. package/esm/models/createdeploymentop.d.ts.map +1 -1
  19. package/esm/models/createdeploymentop.js +153 -152
  20. package/esm/models/createdeploymentop.js.map +1 -1
  21. package/esm/models/createprojectenvop.d.ts +6 -6
  22. package/esm/models/createprojectenvop.js +2 -2
  23. package/esm/models/createprojectenvop.js.map +1 -1
  24. package/esm/models/createprojectop.d.ts +189 -741
  25. package/esm/models/createprojectop.d.ts.map +1 -1
  26. package/esm/models/createprojectop.js +179 -678
  27. package/esm/models/createprojectop.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/filterprojectenvsop.d.ts +9 -9
  32. package/esm/models/filterprojectenvsop.js +3 -3
  33. package/esm/models/filterprojectenvsop.js.map +1 -1
  34. package/esm/models/getdeploymentop.d.ts +90 -90
  35. package/esm/models/getdeploymentop.d.ts.map +1 -1
  36. package/esm/models/getdeploymentop.js +101 -102
  37. package/esm/models/getdeploymentop.js.map +1 -1
  38. package/esm/models/getfirewallconfigop.d.ts +3 -0
  39. package/esm/models/getfirewallconfigop.d.ts.map +1 -1
  40. package/esm/models/getfirewallconfigop.js +1 -0
  41. package/esm/models/getfirewallconfigop.js.map +1 -1
  42. package/esm/models/getprojectsop.d.ts +33 -585
  43. package/esm/models/getprojectsop.d.ts.map +1 -1
  44. package/esm/models/getprojectsop.js +31 -530
  45. package/esm/models/getprojectsop.js.map +1 -1
  46. package/esm/models/putfirewallconfigop.d.ts +3 -0
  47. package/esm/models/putfirewallconfigop.d.ts.map +1 -1
  48. package/esm/models/putfirewallconfigop.js +1 -0
  49. package/esm/models/putfirewallconfigop.js.map +1 -1
  50. package/esm/models/removeprojectenvop.d.ts +9 -9
  51. package/esm/models/removeprojectenvop.js +3 -3
  52. package/esm/models/removeprojectenvop.js.map +1 -1
  53. package/esm/models/team.d.ts +13 -10
  54. package/esm/models/team.d.ts.map +1 -1
  55. package/esm/models/team.js +6 -5
  56. package/esm/models/team.js.map +1 -1
  57. package/esm/models/updateprojectdatacacheop.d.ts +41 -593
  58. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  59. package/esm/models/updateprojectdatacacheop.js +43 -561
  60. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  61. package/esm/models/updateprojectop.d.ts +33 -585
  62. package/esm/models/updateprojectop.d.ts.map +1 -1
  63. package/esm/models/updateprojectop.js +31 -530
  64. package/esm/models/updateprojectop.js.map +1 -1
  65. package/esm/models/userevent.d.ts +154 -124
  66. package/esm/models/userevent.d.ts.map +1 -1
  67. package/esm/models/userevent.js +166 -135
  68. package/esm/models/userevent.js.map +1 -1
  69. package/examples/package-lock.json +1 -1
  70. package/jsr.json +1 -1
  71. package/package.json +1 -1
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/funcs/domainsBuyDomain.ts +2 -2
  74. package/src/funcs/domainsPatchDomain.ts +2 -2
  75. package/src/lib/config.ts +3 -3
  76. package/src/mcp-server/mcp-server.ts +1 -1
  77. package/src/mcp-server/server.ts +1 -1
  78. package/src/models/canceldeploymentop.ts +78 -104
  79. package/src/models/createdeploymentop.ts +332 -335
  80. package/src/models/createprojectenvop.ts +2 -2
  81. package/src/models/createprojectop.ts +448 -1472
  82. package/src/models/editprojectenvop.ts +1 -1
  83. package/src/models/filterprojectenvsop.ts +3 -3
  84. package/src/models/getdeploymentop.ts +214 -216
  85. package/src/models/getfirewallconfigop.ts +1 -0
  86. package/src/models/getprojectsop.ts +202 -1207
  87. package/src/models/putfirewallconfigop.ts +1 -0
  88. package/src/models/removeprojectenvop.ts +3 -3
  89. package/src/models/team.ts +13 -12
  90. package/src/models/updateprojectdatacacheop.ts +171 -1168
  91. package/src/models/updateprojectop.ts +197 -1221
  92. package/src/models/userevent.ts +309 -236
  93. package/vercel-spec.json +429 -1834
@@ -140,7 +140,7 @@ export type AuthMethod = ClosedEnum<typeof AuthMethod>;
140
140
  /**
141
141
  * The payload of the event, if requested.
142
142
  */
143
- export type OneHundredAndFiftySeven = {
143
+ export type OneHundredAndFiftyEight = {
144
144
  grantType: GrantType;
145
145
  appName: string;
146
146
  /**
@@ -154,11 +154,11 @@ export type OneHundredAndFiftySeven = {
154
154
  scope: string;
155
155
  authMethod: AuthMethod;
156
156
  };
157
- export type UserEventPayload156Team = {
157
+ export type UserEventPayload157Team = {
158
158
  id: string;
159
159
  name: string;
160
160
  };
161
- export type UserEventPayload156Configuration = {
161
+ export type UserEventPayload157Configuration = {
162
162
  id: string;
163
163
  name?: string | undefined;
164
164
  };
@@ -169,17 +169,17 @@ export type UserEventPayloadPeering = {
169
169
  /**
170
170
  * The payload of the event, if requested.
171
171
  */
172
- export type OneHundredAndFiftySix = {
173
- team: UserEventPayload156Team;
174
- configuration: UserEventPayload156Configuration;
172
+ export type OneHundredAndFiftySeven = {
173
+ team: UserEventPayload157Team;
174
+ configuration: UserEventPayload157Configuration;
175
175
  peering: UserEventPayloadPeering;
176
176
  newName?: string | undefined;
177
177
  };
178
- export type UserEventPayload155Team = {
178
+ export type UserEventPayload156Team = {
179
179
  id: string;
180
180
  name: string;
181
181
  };
182
- export type UserEventPayload155Configuration = {
182
+ export type UserEventPayload156Configuration = {
183
183
  id: string;
184
184
  name?: string | undefined;
185
185
  };
@@ -190,16 +190,16 @@ export type PayloadPeering = {
190
190
  /**
191
191
  * The payload of the event, if requested.
192
192
  */
193
- export type OneHundredAndFiftyFive = {
194
- team: UserEventPayload155Team;
195
- configuration: UserEventPayload155Configuration;
193
+ export type OneHundredAndFiftySix = {
194
+ team: UserEventPayload156Team;
195
+ configuration: UserEventPayload156Configuration;
196
196
  peering: PayloadPeering;
197
197
  };
198
- export type UserEventPayload154Team = {
198
+ export type UserEventPayload155Team = {
199
199
  id: string;
200
200
  name: string;
201
201
  };
202
- export type UserEventPayload154Configuration = {
202
+ export type UserEventPayload155Configuration = {
203
203
  id: string;
204
204
  name?: string | undefined;
205
205
  };
@@ -212,11 +212,18 @@ export type Peering = {
212
212
  /**
213
213
  * The payload of the event, if requested.
214
214
  */
215
- export type OneHundredAndFiftyFour = {
216
- team: UserEventPayload154Team;
217
- configuration: UserEventPayload154Configuration;
215
+ export type OneHundredAndFiftyFive = {
216
+ team: UserEventPayload155Team;
217
+ configuration: UserEventPayload155Configuration;
218
218
  peering: Peering;
219
219
  };
220
+ /**
221
+ * The payload of the event, if requested.
222
+ */
223
+ export type OneHundredAndFiftyFour = {
224
+ appName: string;
225
+ appId: string;
226
+ };
220
227
  /**
221
228
  * The payload of the event, if requested.
222
229
  */
@@ -3769,7 +3776,7 @@ export type Payload2 = {
3769
3776
  * The payload of the event, if requested.
3770
3777
  */
3771
3778
  export type Payload1 = {};
3772
- export type Payload = SixtySix | SixtyNine | Seventy | Forty | FortyOne | FiftyEight | SixtyFour | SixtySeven | OneHundredAndThirtyOne | OneHundredAndFiftySeven | Payload2 | FortyFive | SixtyEight | OneHundredAndOne | OneHundredAndFortyOne | Twelve | Sixteen | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyNine | FortyEight | FortyNine | Fifty | FiftyThree | FiftyNine | Sixty | SixtyOne | SixtyThree | SeventyFour | SeventyEight | EightyOne | EightyTwo | NinetyTwo | OneHundredAndNine | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndForty | OneHundredAndFortyTwo | OneHundredAndFortyFour | OneHundredAndFortySeven | OneHundredAndFiftyFour | OneHundredAndFiftyFive | OneHundredAndFiftySix | Four | Five | Six | Seventeen | Eighteen | TwentyThree | TwentySeven | ThirtyFour | ThirtyFive | ThirtySix | FortyThree | FortyFour | FortySeven | FiftyFour | SixtyTwo | SixtyFive | SeventySeven | EightyFive | EightySix | EightySeven | EightyNine | Ninety | NinetyThree | NinetyFour | NinetySeven | NinetyEight | NinetyNine | OneHundredAndFive | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyThree | OneHundredAndThirtyTwo | OneHundredAndThirtyFive | OneHundredAndThirtySix | OneHundredAndThirtySeven | OneHundredAndThirtyNine | OneHundredAndFortyFive | OneHundredAndFortySix | OneHundredAndFortyEight | OneHundredAndFifty | OneHundredAndFiftyOne | OneHundredAndFiftyTwo | Three | Fifteen | Twenty | TwentyTwo | TwentyFour | TwentySix | TwentyEight | ThirtyThree | ThirtySeven | ThirtyEight | FortyTwo | FortySix | FiftyOne | FiftyTwo | SeventyOne | SeventyTwo | SeventyThree | SeventyFive | SeventySix | SeventyNine | Eighty | EightyThree | EightyFour | EightyEight | NinetyFive | NinetySix | OneHundred | OneHundredAndThree | OneHundredAndFour | OneHundredAndSix | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndThirteen | OneHundredAndSixteen | OneHundredAndTwentyTwo | OneHundredAndTwentyFour | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtyEight | OneHundredAndFortyThree | OneHundredAndFortyNine | OneHundredAndFiftyThree | Payload1 | Seven | Eight | Nine | Ten | Eleven | Thirteen | Fourteen | Nineteen | TwentyOne | TwentyFive | FiftyFive | FiftySix | FiftySeven | NinetyOne | OneHundredAndTwo | OneHundredAndTen | OneHundredAndEleven | OneHundredAndSeventeen | OneHundredAndEighteen | OneHundredAndNineteen | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentySeven;
3779
+ export type Payload = SixtySix | SixtyNine | Seventy | Forty | FortyOne | FiftyEight | SixtyFour | SixtySeven | OneHundredAndThirtyOne | OneHundredAndFiftyEight | Payload2 | FortyFive | SixtyEight | OneHundredAndOne | OneHundredAndFortyOne | Twelve | Sixteen | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyNine | FortyEight | FortyNine | Fifty | FiftyThree | FiftyNine | Sixty | SixtyOne | SixtyThree | SeventyFour | SeventyEight | EightyOne | EightyTwo | NinetyTwo | OneHundredAndNine | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndForty | OneHundredAndFortyTwo | OneHundredAndFortyFour | OneHundredAndFortySeven | OneHundredAndFiftyFive | OneHundredAndFiftySix | OneHundredAndFiftySeven | Four | Five | Six | Seventeen | Eighteen | TwentyThree | TwentySeven | ThirtyFour | ThirtyFive | ThirtySix | FortyThree | FortyFour | FortySeven | FiftyFour | SixtyTwo | SixtyFive | SeventySeven | EightyFive | EightySix | EightySeven | EightyNine | Ninety | NinetyThree | NinetyFour | NinetySeven | NinetyEight | NinetyNine | OneHundredAndFive | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyThree | OneHundredAndThirtyTwo | OneHundredAndThirtyFive | OneHundredAndThirtySix | OneHundredAndThirtySeven | OneHundredAndThirtyNine | OneHundredAndFortyFive | OneHundredAndFortySix | OneHundredAndFortyEight | OneHundredAndFifty | OneHundredAndFiftyOne | OneHundredAndFiftyTwo | OneHundredAndFiftyFour | Three | Fifteen | Twenty | TwentyTwo | TwentyFour | TwentySix | TwentyEight | ThirtyThree | ThirtySeven | ThirtyEight | FortyTwo | FortySix | FiftyOne | FiftyTwo | SeventyOne | SeventyTwo | SeventyThree | SeventyFive | SeventySix | SeventyNine | Eighty | EightyThree | EightyFour | EightyEight | NinetyFive | NinetySix | OneHundred | OneHundredAndThree | OneHundredAndFour | OneHundredAndSix | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndThirteen | OneHundredAndSixteen | OneHundredAndTwentyTwo | OneHundredAndTwentyFour | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtyEight | OneHundredAndFortyThree | OneHundredAndFortyNine | OneHundredAndFiftyThree | Payload1 | Seven | Eight | Nine | Ten | Eleven | Thirteen | Fourteen | Nineteen | TwentyOne | TwentyFive | FiftyFive | FiftySix | FiftySeven | NinetyOne | OneHundredAndTwo | OneHundredAndTen | OneHundredAndEleven | OneHundredAndSeventeen | OneHundredAndEighteen | OneHundredAndNineteen | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentySeven;
3773
3780
  /**
3774
3781
  * Array of events generated by the User.
3775
3782
  */
@@ -3811,7 +3818,7 @@ export type UserEvent = {
3811
3818
  * If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".
3812
3819
  */
3813
3820
  viaIds?: Array<string> | undefined;
3814
- payload?: SixtySix | SixtyNine | Seventy | Forty | FortyOne | FiftyEight | SixtyFour | SixtySeven | OneHundredAndThirtyOne | OneHundredAndFiftySeven | Payload2 | FortyFive | SixtyEight | OneHundredAndOne | OneHundredAndFortyOne | Twelve | Sixteen | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyNine | FortyEight | FortyNine | Fifty | FiftyThree | FiftyNine | Sixty | SixtyOne | SixtyThree | SeventyFour | SeventyEight | EightyOne | EightyTwo | NinetyTwo | OneHundredAndNine | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndForty | OneHundredAndFortyTwo | OneHundredAndFortyFour | OneHundredAndFortySeven | OneHundredAndFiftyFour | OneHundredAndFiftyFive | OneHundredAndFiftySix | Four | Five | Six | Seventeen | Eighteen | TwentyThree | TwentySeven | ThirtyFour | ThirtyFive | ThirtySix | FortyThree | FortyFour | FortySeven | FiftyFour | SixtyTwo | SixtyFive | SeventySeven | EightyFive | EightySix | EightySeven | EightyNine | Ninety | NinetyThree | NinetyFour | NinetySeven | NinetyEight | NinetyNine | OneHundredAndFive | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyThree | OneHundredAndThirtyTwo | OneHundredAndThirtyFive | OneHundredAndThirtySix | OneHundredAndThirtySeven | OneHundredAndThirtyNine | OneHundredAndFortyFive | OneHundredAndFortySix | OneHundredAndFortyEight | OneHundredAndFifty | OneHundredAndFiftyOne | OneHundredAndFiftyTwo | Three | Fifteen | Twenty | TwentyTwo | TwentyFour | TwentySix | TwentyEight | ThirtyThree | ThirtySeven | ThirtyEight | FortyTwo | FortySix | FiftyOne | FiftyTwo | SeventyOne | SeventyTwo | SeventyThree | SeventyFive | SeventySix | SeventyNine | Eighty | EightyThree | EightyFour | EightyEight | NinetyFive | NinetySix | OneHundred | OneHundredAndThree | OneHundredAndFour | OneHundredAndSix | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndThirteen | OneHundredAndSixteen | OneHundredAndTwentyTwo | OneHundredAndTwentyFour | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtyEight | OneHundredAndFortyThree | OneHundredAndFortyNine | OneHundredAndFiftyThree | Payload1 | Seven | Eight | Nine | Ten | Eleven | Thirteen | Fourteen | Nineteen | TwentyOne | TwentyFive | FiftyFive | FiftySix | FiftySeven | NinetyOne | OneHundredAndTwo | OneHundredAndTen | OneHundredAndEleven | OneHundredAndSeventeen | OneHundredAndEighteen | OneHundredAndNineteen | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentySeven | undefined;
3821
+ payload?: SixtySix | SixtyNine | Seventy | Forty | FortyOne | FiftyEight | SixtyFour | SixtySeven | OneHundredAndThirtyOne | OneHundredAndFiftyEight | Payload2 | FortyFive | SixtyEight | OneHundredAndOne | OneHundredAndFortyOne | Twelve | Sixteen | TwentyNine | Thirty | ThirtyOne | ThirtyTwo | ThirtyNine | FortyEight | FortyNine | Fifty | FiftyThree | FiftyNine | Sixty | SixtyOne | SixtyThree | SeventyFour | SeventyEight | EightyOne | EightyTwo | NinetyTwo | OneHundredAndNine | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndForty | OneHundredAndFortyTwo | OneHundredAndFortyFour | OneHundredAndFortySeven | OneHundredAndFiftyFive | OneHundredAndFiftySix | OneHundredAndFiftySeven | Four | Five | Six | Seventeen | Eighteen | TwentyThree | TwentySeven | ThirtyFour | ThirtyFive | ThirtySix | FortyThree | FortyFour | FortySeven | FiftyFour | SixtyTwo | SixtyFive | SeventySeven | EightyFive | EightySix | EightySeven | EightyNine | Ninety | NinetyThree | NinetyFour | NinetySeven | NinetyEight | NinetyNine | OneHundredAndFive | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyThree | OneHundredAndThirtyTwo | OneHundredAndThirtyFive | OneHundredAndThirtySix | OneHundredAndThirtySeven | OneHundredAndThirtyNine | OneHundredAndFortyFive | OneHundredAndFortySix | OneHundredAndFortyEight | OneHundredAndFifty | OneHundredAndFiftyOne | OneHundredAndFiftyTwo | OneHundredAndFiftyFour | Three | Fifteen | Twenty | TwentyTwo | TwentyFour | TwentySix | TwentyEight | ThirtyThree | ThirtySeven | ThirtyEight | FortyTwo | FortySix | FiftyOne | FiftyTwo | SeventyOne | SeventyTwo | SeventyThree | SeventyFive | SeventySix | SeventyNine | Eighty | EightyThree | EightyFour | EightyEight | NinetyFive | NinetySix | OneHundred | OneHundredAndThree | OneHundredAndFour | OneHundredAndSix | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndThirteen | OneHundredAndSixteen | OneHundredAndTwentyTwo | OneHundredAndTwentyFour | OneHundredAndTwentyEight | OneHundredAndTwentyNine | OneHundredAndThirty | OneHundredAndThirtyEight | OneHundredAndFortyThree | OneHundredAndFortyNine | OneHundredAndFiftyThree | Payload1 | Seven | Eight | Nine | Ten | Eleven | Thirteen | Fourteen | Nineteen | TwentyOne | TwentyFive | FiftyFive | FiftySix | FiftySeven | NinetyOne | OneHundredAndTwo | OneHundredAndTen | OneHundredAndEleven | OneHundredAndSeventeen | OneHundredAndEighteen | OneHundredAndNineteen | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentySeven | undefined;
3815
3822
  };
3816
3823
  /** @internal */
3817
3824
  export declare const UserEventType$inboundSchema: z.ZodNativeEnum<typeof UserEventType>;
@@ -4200,9 +4207,9 @@ export declare namespace AuthMethod$ {
4200
4207
  }>;
4201
4208
  }
4202
4209
  /** @internal */
4203
- export declare const OneHundredAndFiftySeven$inboundSchema: z.ZodType<OneHundredAndFiftySeven, z.ZodTypeDef, unknown>;
4210
+ export declare const OneHundredAndFiftyEight$inboundSchema: z.ZodType<OneHundredAndFiftyEight, z.ZodTypeDef, unknown>;
4204
4211
  /** @internal */
4205
- export type OneHundredAndFiftySeven$Outbound = {
4212
+ export type OneHundredAndFiftyEight$Outbound = {
4206
4213
  grantType: string;
4207
4214
  appName: string;
4208
4215
  atTTL: number;
@@ -4211,6 +4218,100 @@ export type OneHundredAndFiftySeven$Outbound = {
4211
4218
  authMethod: string;
4212
4219
  };
4213
4220
  /** @internal */
4221
+ export declare const OneHundredAndFiftyEight$outboundSchema: z.ZodType<OneHundredAndFiftyEight$Outbound, z.ZodTypeDef, OneHundredAndFiftyEight>;
4222
+ /**
4223
+ * @internal
4224
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4225
+ */
4226
+ export declare namespace OneHundredAndFiftyEight$ {
4227
+ /** @deprecated use `OneHundredAndFiftyEight$inboundSchema` instead. */
4228
+ const inboundSchema: z.ZodType<OneHundredAndFiftyEight, z.ZodTypeDef, unknown>;
4229
+ /** @deprecated use `OneHundredAndFiftyEight$outboundSchema` instead. */
4230
+ const outboundSchema: z.ZodType<OneHundredAndFiftyEight$Outbound, z.ZodTypeDef, OneHundredAndFiftyEight>;
4231
+ /** @deprecated use `OneHundredAndFiftyEight$Outbound` instead. */
4232
+ type Outbound = OneHundredAndFiftyEight$Outbound;
4233
+ }
4234
+ export declare function oneHundredAndFiftyEightToJSON(oneHundredAndFiftyEight: OneHundredAndFiftyEight): string;
4235
+ export declare function oneHundredAndFiftyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyEight, SDKValidationError>;
4236
+ /** @internal */
4237
+ export declare const UserEventPayload157Team$inboundSchema: z.ZodType<UserEventPayload157Team, z.ZodTypeDef, unknown>;
4238
+ /** @internal */
4239
+ export type UserEventPayload157Team$Outbound = {
4240
+ id: string;
4241
+ name: string;
4242
+ };
4243
+ /** @internal */
4244
+ export declare const UserEventPayload157Team$outboundSchema: z.ZodType<UserEventPayload157Team$Outbound, z.ZodTypeDef, UserEventPayload157Team>;
4245
+ /**
4246
+ * @internal
4247
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4248
+ */
4249
+ export declare namespace UserEventPayload157Team$ {
4250
+ /** @deprecated use `UserEventPayload157Team$inboundSchema` instead. */
4251
+ const inboundSchema: z.ZodType<UserEventPayload157Team, z.ZodTypeDef, unknown>;
4252
+ /** @deprecated use `UserEventPayload157Team$outboundSchema` instead. */
4253
+ const outboundSchema: z.ZodType<UserEventPayload157Team$Outbound, z.ZodTypeDef, UserEventPayload157Team>;
4254
+ /** @deprecated use `UserEventPayload157Team$Outbound` instead. */
4255
+ type Outbound = UserEventPayload157Team$Outbound;
4256
+ }
4257
+ export declare function userEventPayload157TeamToJSON(userEventPayload157Team: UserEventPayload157Team): string;
4258
+ export declare function userEventPayload157TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload157Team, SDKValidationError>;
4259
+ /** @internal */
4260
+ export declare const UserEventPayload157Configuration$inboundSchema: z.ZodType<UserEventPayload157Configuration, z.ZodTypeDef, unknown>;
4261
+ /** @internal */
4262
+ export type UserEventPayload157Configuration$Outbound = {
4263
+ id: string;
4264
+ name?: string | undefined;
4265
+ };
4266
+ /** @internal */
4267
+ export declare const UserEventPayload157Configuration$outboundSchema: z.ZodType<UserEventPayload157Configuration$Outbound, z.ZodTypeDef, UserEventPayload157Configuration>;
4268
+ /**
4269
+ * @internal
4270
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4271
+ */
4272
+ export declare namespace UserEventPayload157Configuration$ {
4273
+ /** @deprecated use `UserEventPayload157Configuration$inboundSchema` instead. */
4274
+ const inboundSchema: z.ZodType<UserEventPayload157Configuration, z.ZodTypeDef, unknown>;
4275
+ /** @deprecated use `UserEventPayload157Configuration$outboundSchema` instead. */
4276
+ const outboundSchema: z.ZodType<UserEventPayload157Configuration$Outbound, z.ZodTypeDef, UserEventPayload157Configuration>;
4277
+ /** @deprecated use `UserEventPayload157Configuration$Outbound` instead. */
4278
+ type Outbound = UserEventPayload157Configuration$Outbound;
4279
+ }
4280
+ export declare function userEventPayload157ConfigurationToJSON(userEventPayload157Configuration: UserEventPayload157Configuration): string;
4281
+ export declare function userEventPayload157ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload157Configuration, SDKValidationError>;
4282
+ /** @internal */
4283
+ export declare const UserEventPayloadPeering$inboundSchema: z.ZodType<UserEventPayloadPeering, z.ZodTypeDef, unknown>;
4284
+ /** @internal */
4285
+ export type UserEventPayloadPeering$Outbound = {
4286
+ id: string;
4287
+ name?: string | undefined;
4288
+ };
4289
+ /** @internal */
4290
+ export declare const UserEventPayloadPeering$outboundSchema: z.ZodType<UserEventPayloadPeering$Outbound, z.ZodTypeDef, UserEventPayloadPeering>;
4291
+ /**
4292
+ * @internal
4293
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4294
+ */
4295
+ export declare namespace UserEventPayloadPeering$ {
4296
+ /** @deprecated use `UserEventPayloadPeering$inboundSchema` instead. */
4297
+ const inboundSchema: z.ZodType<UserEventPayloadPeering, z.ZodTypeDef, unknown>;
4298
+ /** @deprecated use `UserEventPayloadPeering$outboundSchema` instead. */
4299
+ const outboundSchema: z.ZodType<UserEventPayloadPeering$Outbound, z.ZodTypeDef, UserEventPayloadPeering>;
4300
+ /** @deprecated use `UserEventPayloadPeering$Outbound` instead. */
4301
+ type Outbound = UserEventPayloadPeering$Outbound;
4302
+ }
4303
+ export declare function userEventPayloadPeeringToJSON(userEventPayloadPeering: UserEventPayloadPeering): string;
4304
+ export declare function userEventPayloadPeeringFromJSON(jsonString: string): SafeParseResult<UserEventPayloadPeering, SDKValidationError>;
4305
+ /** @internal */
4306
+ export declare const OneHundredAndFiftySeven$inboundSchema: z.ZodType<OneHundredAndFiftySeven, z.ZodTypeDef, unknown>;
4307
+ /** @internal */
4308
+ export type OneHundredAndFiftySeven$Outbound = {
4309
+ team: UserEventPayload157Team$Outbound;
4310
+ configuration: UserEventPayload157Configuration$Outbound;
4311
+ peering: UserEventPayloadPeering$Outbound;
4312
+ newName?: string | undefined;
4313
+ };
4314
+ /** @internal */
4214
4315
  export declare const OneHundredAndFiftySeven$outboundSchema: z.ZodType<OneHundredAndFiftySeven$Outbound, z.ZodTypeDef, OneHundredAndFiftySeven>;
4215
4316
  /**
4216
4317
  * @internal
@@ -4273,36 +4374,35 @@ export declare namespace UserEventPayload156Configuration$ {
4273
4374
  export declare function userEventPayload156ConfigurationToJSON(userEventPayload156Configuration: UserEventPayload156Configuration): string;
4274
4375
  export declare function userEventPayload156ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload156Configuration, SDKValidationError>;
4275
4376
  /** @internal */
4276
- export declare const UserEventPayloadPeering$inboundSchema: z.ZodType<UserEventPayloadPeering, z.ZodTypeDef, unknown>;
4377
+ export declare const PayloadPeering$inboundSchema: z.ZodType<PayloadPeering, z.ZodTypeDef, unknown>;
4277
4378
  /** @internal */
4278
- export type UserEventPayloadPeering$Outbound = {
4379
+ export type PayloadPeering$Outbound = {
4279
4380
  id: string;
4280
4381
  name?: string | undefined;
4281
4382
  };
4282
4383
  /** @internal */
4283
- export declare const UserEventPayloadPeering$outboundSchema: z.ZodType<UserEventPayloadPeering$Outbound, z.ZodTypeDef, UserEventPayloadPeering>;
4384
+ export declare const PayloadPeering$outboundSchema: z.ZodType<PayloadPeering$Outbound, z.ZodTypeDef, PayloadPeering>;
4284
4385
  /**
4285
4386
  * @internal
4286
4387
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4287
4388
  */
4288
- export declare namespace UserEventPayloadPeering$ {
4289
- /** @deprecated use `UserEventPayloadPeering$inboundSchema` instead. */
4290
- const inboundSchema: z.ZodType<UserEventPayloadPeering, z.ZodTypeDef, unknown>;
4291
- /** @deprecated use `UserEventPayloadPeering$outboundSchema` instead. */
4292
- const outboundSchema: z.ZodType<UserEventPayloadPeering$Outbound, z.ZodTypeDef, UserEventPayloadPeering>;
4293
- /** @deprecated use `UserEventPayloadPeering$Outbound` instead. */
4294
- type Outbound = UserEventPayloadPeering$Outbound;
4389
+ export declare namespace PayloadPeering$ {
4390
+ /** @deprecated use `PayloadPeering$inboundSchema` instead. */
4391
+ const inboundSchema: z.ZodType<PayloadPeering, z.ZodTypeDef, unknown>;
4392
+ /** @deprecated use `PayloadPeering$outboundSchema` instead. */
4393
+ const outboundSchema: z.ZodType<PayloadPeering$Outbound, z.ZodTypeDef, PayloadPeering>;
4394
+ /** @deprecated use `PayloadPeering$Outbound` instead. */
4395
+ type Outbound = PayloadPeering$Outbound;
4295
4396
  }
4296
- export declare function userEventPayloadPeeringToJSON(userEventPayloadPeering: UserEventPayloadPeering): string;
4297
- export declare function userEventPayloadPeeringFromJSON(jsonString: string): SafeParseResult<UserEventPayloadPeering, SDKValidationError>;
4397
+ export declare function payloadPeeringToJSON(payloadPeering: PayloadPeering): string;
4398
+ export declare function payloadPeeringFromJSON(jsonString: string): SafeParseResult<PayloadPeering, SDKValidationError>;
4298
4399
  /** @internal */
4299
4400
  export declare const OneHundredAndFiftySix$inboundSchema: z.ZodType<OneHundredAndFiftySix, z.ZodTypeDef, unknown>;
4300
4401
  /** @internal */
4301
4402
  export type OneHundredAndFiftySix$Outbound = {
4302
4403
  team: UserEventPayload156Team$Outbound;
4303
4404
  configuration: UserEventPayload156Configuration$Outbound;
4304
- peering: UserEventPayloadPeering$Outbound;
4305
- newName?: string | undefined;
4405
+ peering: PayloadPeering$Outbound;
4306
4406
  };
4307
4407
  /** @internal */
4308
4408
  export declare const OneHundredAndFiftySix$outboundSchema: z.ZodType<OneHundredAndFiftySix$Outbound, z.ZodTypeDef, OneHundredAndFiftySix>;
@@ -4367,35 +4467,37 @@ export declare namespace UserEventPayload155Configuration$ {
4367
4467
  export declare function userEventPayload155ConfigurationToJSON(userEventPayload155Configuration: UserEventPayload155Configuration): string;
4368
4468
  export declare function userEventPayload155ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload155Configuration, SDKValidationError>;
4369
4469
  /** @internal */
4370
- export declare const PayloadPeering$inboundSchema: z.ZodType<PayloadPeering, z.ZodTypeDef, unknown>;
4470
+ export declare const Peering$inboundSchema: z.ZodType<Peering, z.ZodTypeDef, unknown>;
4371
4471
  /** @internal */
4372
- export type PayloadPeering$Outbound = {
4472
+ export type Peering$Outbound = {
4373
4473
  id: string;
4374
- name?: string | undefined;
4474
+ accountId: string;
4475
+ region: string;
4476
+ vpcId: string;
4375
4477
  };
4376
4478
  /** @internal */
4377
- export declare const PayloadPeering$outboundSchema: z.ZodType<PayloadPeering$Outbound, z.ZodTypeDef, PayloadPeering>;
4479
+ export declare const Peering$outboundSchema: z.ZodType<Peering$Outbound, z.ZodTypeDef, Peering>;
4378
4480
  /**
4379
4481
  * @internal
4380
4482
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4381
4483
  */
4382
- export declare namespace PayloadPeering$ {
4383
- /** @deprecated use `PayloadPeering$inboundSchema` instead. */
4384
- const inboundSchema: z.ZodType<PayloadPeering, z.ZodTypeDef, unknown>;
4385
- /** @deprecated use `PayloadPeering$outboundSchema` instead. */
4386
- const outboundSchema: z.ZodType<PayloadPeering$Outbound, z.ZodTypeDef, PayloadPeering>;
4387
- /** @deprecated use `PayloadPeering$Outbound` instead. */
4388
- type Outbound = PayloadPeering$Outbound;
4484
+ export declare namespace Peering$ {
4485
+ /** @deprecated use `Peering$inboundSchema` instead. */
4486
+ const inboundSchema: z.ZodType<Peering, z.ZodTypeDef, unknown>;
4487
+ /** @deprecated use `Peering$outboundSchema` instead. */
4488
+ const outboundSchema: z.ZodType<Peering$Outbound, z.ZodTypeDef, Peering>;
4489
+ /** @deprecated use `Peering$Outbound` instead. */
4490
+ type Outbound = Peering$Outbound;
4389
4491
  }
4390
- export declare function payloadPeeringToJSON(payloadPeering: PayloadPeering): string;
4391
- export declare function payloadPeeringFromJSON(jsonString: string): SafeParseResult<PayloadPeering, SDKValidationError>;
4492
+ export declare function peeringToJSON(peering: Peering): string;
4493
+ export declare function peeringFromJSON(jsonString: string): SafeParseResult<Peering, SDKValidationError>;
4392
4494
  /** @internal */
4393
4495
  export declare const OneHundredAndFiftyFive$inboundSchema: z.ZodType<OneHundredAndFiftyFive, z.ZodTypeDef, unknown>;
4394
4496
  /** @internal */
4395
4497
  export type OneHundredAndFiftyFive$Outbound = {
4396
4498
  team: UserEventPayload155Team$Outbound;
4397
4499
  configuration: UserEventPayload155Configuration$Outbound;
4398
- peering: PayloadPeering$Outbound;
4500
+ peering: Peering$Outbound;
4399
4501
  };
4400
4502
  /** @internal */
4401
4503
  export declare const OneHundredAndFiftyFive$outboundSchema: z.ZodType<OneHundredAndFiftyFive$Outbound, z.ZodTypeDef, OneHundredAndFiftyFive>;
@@ -4414,83 +4516,11 @@ export declare namespace OneHundredAndFiftyFive$ {
4414
4516
  export declare function oneHundredAndFiftyFiveToJSON(oneHundredAndFiftyFive: OneHundredAndFiftyFive): string;
4415
4517
  export declare function oneHundredAndFiftyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyFive, SDKValidationError>;
4416
4518
  /** @internal */
4417
- export declare const UserEventPayload154Team$inboundSchema: z.ZodType<UserEventPayload154Team, z.ZodTypeDef, unknown>;
4418
- /** @internal */
4419
- export type UserEventPayload154Team$Outbound = {
4420
- id: string;
4421
- name: string;
4422
- };
4423
- /** @internal */
4424
- export declare const UserEventPayload154Team$outboundSchema: z.ZodType<UserEventPayload154Team$Outbound, z.ZodTypeDef, UserEventPayload154Team>;
4425
- /**
4426
- * @internal
4427
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4428
- */
4429
- export declare namespace UserEventPayload154Team$ {
4430
- /** @deprecated use `UserEventPayload154Team$inboundSchema` instead. */
4431
- const inboundSchema: z.ZodType<UserEventPayload154Team, z.ZodTypeDef, unknown>;
4432
- /** @deprecated use `UserEventPayload154Team$outboundSchema` instead. */
4433
- const outboundSchema: z.ZodType<UserEventPayload154Team$Outbound, z.ZodTypeDef, UserEventPayload154Team>;
4434
- /** @deprecated use `UserEventPayload154Team$Outbound` instead. */
4435
- type Outbound = UserEventPayload154Team$Outbound;
4436
- }
4437
- export declare function userEventPayload154TeamToJSON(userEventPayload154Team: UserEventPayload154Team): string;
4438
- export declare function userEventPayload154TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload154Team, SDKValidationError>;
4439
- /** @internal */
4440
- export declare const UserEventPayload154Configuration$inboundSchema: z.ZodType<UserEventPayload154Configuration, z.ZodTypeDef, unknown>;
4441
- /** @internal */
4442
- export type UserEventPayload154Configuration$Outbound = {
4443
- id: string;
4444
- name?: string | undefined;
4445
- };
4446
- /** @internal */
4447
- export declare const UserEventPayload154Configuration$outboundSchema: z.ZodType<UserEventPayload154Configuration$Outbound, z.ZodTypeDef, UserEventPayload154Configuration>;
4448
- /**
4449
- * @internal
4450
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4451
- */
4452
- export declare namespace UserEventPayload154Configuration$ {
4453
- /** @deprecated use `UserEventPayload154Configuration$inboundSchema` instead. */
4454
- const inboundSchema: z.ZodType<UserEventPayload154Configuration, z.ZodTypeDef, unknown>;
4455
- /** @deprecated use `UserEventPayload154Configuration$outboundSchema` instead. */
4456
- const outboundSchema: z.ZodType<UserEventPayload154Configuration$Outbound, z.ZodTypeDef, UserEventPayload154Configuration>;
4457
- /** @deprecated use `UserEventPayload154Configuration$Outbound` instead. */
4458
- type Outbound = UserEventPayload154Configuration$Outbound;
4459
- }
4460
- export declare function userEventPayload154ConfigurationToJSON(userEventPayload154Configuration: UserEventPayload154Configuration): string;
4461
- export declare function userEventPayload154ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload154Configuration, SDKValidationError>;
4462
- /** @internal */
4463
- export declare const Peering$inboundSchema: z.ZodType<Peering, z.ZodTypeDef, unknown>;
4464
- /** @internal */
4465
- export type Peering$Outbound = {
4466
- id: string;
4467
- accountId: string;
4468
- region: string;
4469
- vpcId: string;
4470
- };
4471
- /** @internal */
4472
- export declare const Peering$outboundSchema: z.ZodType<Peering$Outbound, z.ZodTypeDef, Peering>;
4473
- /**
4474
- * @internal
4475
- * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4476
- */
4477
- export declare namespace Peering$ {
4478
- /** @deprecated use `Peering$inboundSchema` instead. */
4479
- const inboundSchema: z.ZodType<Peering, z.ZodTypeDef, unknown>;
4480
- /** @deprecated use `Peering$outboundSchema` instead. */
4481
- const outboundSchema: z.ZodType<Peering$Outbound, z.ZodTypeDef, Peering>;
4482
- /** @deprecated use `Peering$Outbound` instead. */
4483
- type Outbound = Peering$Outbound;
4484
- }
4485
- export declare function peeringToJSON(peering: Peering): string;
4486
- export declare function peeringFromJSON(jsonString: string): SafeParseResult<Peering, SDKValidationError>;
4487
- /** @internal */
4488
4519
  export declare const OneHundredAndFiftyFour$inboundSchema: z.ZodType<OneHundredAndFiftyFour, z.ZodTypeDef, unknown>;
4489
4520
  /** @internal */
4490
4521
  export type OneHundredAndFiftyFour$Outbound = {
4491
- team: UserEventPayload154Team$Outbound;
4492
- configuration: UserEventPayload154Configuration$Outbound;
4493
- peering: Peering$Outbound;
4522
+ appName: string;
4523
+ appId: string;
4494
4524
  };
4495
4525
  /** @internal */
4496
4526
  export declare const OneHundredAndFiftyFour$outboundSchema: z.ZodType<OneHundredAndFiftyFour$Outbound, z.ZodTypeDef, OneHundredAndFiftyFour>;
@@ -15371,7 +15401,7 @@ export declare function payload1FromJSON(jsonString: string): SafeParseResult<Pa
15371
15401
  /** @internal */
15372
15402
  export declare const Payload$inboundSchema: z.ZodType<Payload, z.ZodTypeDef, unknown>;
15373
15403
  /** @internal */
15374
- export type Payload$Outbound = SixtySix$Outbound | SixtyNine$Outbound | Seventy$Outbound | Forty$Outbound | FortyOne$Outbound | FiftyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndFiftySeven$Outbound | Payload2$Outbound | FortyFive$Outbound | SixtyEight$Outbound | OneHundredAndOne$Outbound | OneHundredAndFortyOne$Outbound | Twelve$Outbound | Sixteen$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyNine$Outbound | FortyEight$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyThree$Outbound | FiftyNine$Outbound | Sixty$Outbound | SixtyOne$Outbound | SixtyThree$Outbound | SeventyFour$Outbound | SeventyEight$Outbound | EightyOne$Outbound | EightyTwo$Outbound | NinetyTwo$Outbound | OneHundredAndNine$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFour$Outbound | OneHundredAndFiftyFive$Outbound | OneHundredAndFiftySix$Outbound | Four$Outbound | Five$Outbound | Six$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtySix$Outbound | FortyThree$Outbound | FortyFour$Outbound | FortySeven$Outbound | FiftyFour$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | SeventySeven$Outbound | EightyFive$Outbound | EightySix$Outbound | EightySeven$Outbound | EightyNine$Outbound | Ninety$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetySeven$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundredAndFive$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftyTwo$Outbound | Three$Outbound | Fifteen$Outbound | Twenty$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | FortyTwo$Outbound | FortySix$Outbound | FiftyOne$Outbound | FiftyTwo$Outbound | SeventyOne$Outbound | SeventyTwo$Outbound | SeventyThree$Outbound | SeventyFive$Outbound | SeventySix$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyFive$Outbound | NinetySix$Outbound | OneHundred$Outbound | OneHundredAndThree$Outbound | OneHundredAndFour$Outbound | OneHundredAndSix$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFiftyThree$Outbound | Payload1$Outbound | Seven$Outbound | Eight$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Thirteen$Outbound | Fourteen$Outbound | Nineteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | NinetyOne$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound;
15404
+ export type Payload$Outbound = SixtySix$Outbound | SixtyNine$Outbound | Seventy$Outbound | Forty$Outbound | FortyOne$Outbound | FiftyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndFiftyEight$Outbound | Payload2$Outbound | FortyFive$Outbound | SixtyEight$Outbound | OneHundredAndOne$Outbound | OneHundredAndFortyOne$Outbound | Twelve$Outbound | Sixteen$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyNine$Outbound | FortyEight$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyThree$Outbound | FiftyNine$Outbound | Sixty$Outbound | SixtyOne$Outbound | SixtyThree$Outbound | SeventyFour$Outbound | SeventyEight$Outbound | EightyOne$Outbound | EightyTwo$Outbound | NinetyTwo$Outbound | OneHundredAndNine$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFive$Outbound | OneHundredAndFiftySix$Outbound | OneHundredAndFiftySeven$Outbound | Four$Outbound | Five$Outbound | Six$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtySix$Outbound | FortyThree$Outbound | FortyFour$Outbound | FortySeven$Outbound | FiftyFour$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | SeventySeven$Outbound | EightyFive$Outbound | EightySix$Outbound | EightySeven$Outbound | EightyNine$Outbound | Ninety$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetySeven$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundredAndFive$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftyTwo$Outbound | OneHundredAndFiftyFour$Outbound | Three$Outbound | Fifteen$Outbound | Twenty$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | FortyTwo$Outbound | FortySix$Outbound | FiftyOne$Outbound | FiftyTwo$Outbound | SeventyOne$Outbound | SeventyTwo$Outbound | SeventyThree$Outbound | SeventyFive$Outbound | SeventySix$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyFive$Outbound | NinetySix$Outbound | OneHundred$Outbound | OneHundredAndThree$Outbound | OneHundredAndFour$Outbound | OneHundredAndSix$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFiftyThree$Outbound | Payload1$Outbound | Seven$Outbound | Eight$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Thirteen$Outbound | Fourteen$Outbound | Nineteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | NinetyOne$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound;
15375
15405
  /** @internal */
15376
15406
  export declare const Payload$outboundSchema: z.ZodType<Payload$Outbound, z.ZodTypeDef, Payload>;
15377
15407
  /**
@@ -15402,7 +15432,7 @@ export type UserEvent$Outbound = {
15402
15432
  userId: string;
15403
15433
  principalId: string;
15404
15434
  viaIds?: Array<string> | undefined;
15405
- payload?: SixtySix$Outbound | SixtyNine$Outbound | Seventy$Outbound | Forty$Outbound | FortyOne$Outbound | FiftyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndFiftySeven$Outbound | Payload2$Outbound | FortyFive$Outbound | SixtyEight$Outbound | OneHundredAndOne$Outbound | OneHundredAndFortyOne$Outbound | Twelve$Outbound | Sixteen$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyNine$Outbound | FortyEight$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyThree$Outbound | FiftyNine$Outbound | Sixty$Outbound | SixtyOne$Outbound | SixtyThree$Outbound | SeventyFour$Outbound | SeventyEight$Outbound | EightyOne$Outbound | EightyTwo$Outbound | NinetyTwo$Outbound | OneHundredAndNine$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFour$Outbound | OneHundredAndFiftyFive$Outbound | OneHundredAndFiftySix$Outbound | Four$Outbound | Five$Outbound | Six$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtySix$Outbound | FortyThree$Outbound | FortyFour$Outbound | FortySeven$Outbound | FiftyFour$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | SeventySeven$Outbound | EightyFive$Outbound | EightySix$Outbound | EightySeven$Outbound | EightyNine$Outbound | Ninety$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetySeven$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundredAndFive$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftyTwo$Outbound | Three$Outbound | Fifteen$Outbound | Twenty$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | FortyTwo$Outbound | FortySix$Outbound | FiftyOne$Outbound | FiftyTwo$Outbound | SeventyOne$Outbound | SeventyTwo$Outbound | SeventyThree$Outbound | SeventyFive$Outbound | SeventySix$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyFive$Outbound | NinetySix$Outbound | OneHundred$Outbound | OneHundredAndThree$Outbound | OneHundredAndFour$Outbound | OneHundredAndSix$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFiftyThree$Outbound | Payload1$Outbound | Seven$Outbound | Eight$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Thirteen$Outbound | Fourteen$Outbound | Nineteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | NinetyOne$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound | undefined;
15435
+ payload?: SixtySix$Outbound | SixtyNine$Outbound | Seventy$Outbound | Forty$Outbound | FortyOne$Outbound | FiftyEight$Outbound | SixtyFour$Outbound | SixtySeven$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndFiftyEight$Outbound | Payload2$Outbound | FortyFive$Outbound | SixtyEight$Outbound | OneHundredAndOne$Outbound | OneHundredAndFortyOne$Outbound | Twelve$Outbound | Sixteen$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | ThirtyTwo$Outbound | ThirtyNine$Outbound | FortyEight$Outbound | FortyNine$Outbound | Fifty$Outbound | FiftyThree$Outbound | FiftyNine$Outbound | Sixty$Outbound | SixtyOne$Outbound | SixtyThree$Outbound | SeventyFour$Outbound | SeventyEight$Outbound | EightyOne$Outbound | EightyTwo$Outbound | NinetyTwo$Outbound | OneHundredAndNine$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndForty$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFive$Outbound | OneHundredAndFiftySix$Outbound | OneHundredAndFiftySeven$Outbound | Four$Outbound | Five$Outbound | Six$Outbound | Seventeen$Outbound | Eighteen$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | ThirtySix$Outbound | FortyThree$Outbound | FortyFour$Outbound | FortySeven$Outbound | FiftyFour$Outbound | SixtyTwo$Outbound | SixtyFive$Outbound | SeventySeven$Outbound | EightyFive$Outbound | EightySix$Outbound | EightySeven$Outbound | EightyNine$Outbound | Ninety$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetySeven$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundredAndFive$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftyTwo$Outbound | OneHundredAndFiftyFour$Outbound | Three$Outbound | Fifteen$Outbound | Twenty$Outbound | TwentyTwo$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyThree$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | FortyTwo$Outbound | FortySix$Outbound | FiftyOne$Outbound | FiftyTwo$Outbound | SeventyOne$Outbound | SeventyTwo$Outbound | SeventyThree$Outbound | SeventyFive$Outbound | SeventySix$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightyEight$Outbound | NinetyFive$Outbound | NinetySix$Outbound | OneHundred$Outbound | OneHundredAndThree$Outbound | OneHundredAndFour$Outbound | OneHundredAndSix$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFiftyThree$Outbound | Payload1$Outbound | Seven$Outbound | Eight$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Thirteen$Outbound | Fourteen$Outbound | Nineteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | NinetyOne$Outbound | OneHundredAndTwo$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentySeven$Outbound | undefined;
15406
15436
  };
15407
15437
  /** @internal */
15408
15438
  export declare const UserEvent$outboundSchema: z.ZodType<UserEvent$Outbound, z.ZodTypeDef, UserEvent>;