@seamapi/types 1.557.0 → 1.558.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18218,7 +18218,7 @@ export type Routes = {
18218
18218
  } | undefined;
18219
18219
  event_type: 'connected_account.connected';
18220
18220
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
18221
- connect_webview_id: string;
18221
+ connect_webview_id?: string | undefined;
18222
18222
  /** The customer key associated with this connected account, if any. */
18223
18223
  customer_key?: string | undefined;
18224
18224
  } | {
@@ -36205,7 +36205,7 @@ export type Routes = {
36205
36205
  } | undefined;
36206
36206
  event_type: 'connected_account.connected';
36207
36207
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
36208
- connect_webview_id: string;
36208
+ connect_webview_id?: string | undefined;
36209
36209
  /** The customer key associated with this connected account, if any. */
36210
36210
  customer_key?: string | undefined;
36211
36211
  } | {
@@ -38129,7 +38129,7 @@ export type Routes = {
38129
38129
  } | undefined;
38130
38130
  event_type: 'connected_account.connected';
38131
38131
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
38132
- connect_webview_id: string;
38132
+ connect_webview_id?: string | undefined;
38133
38133
  /** The customer key associated with this connected account, if any. */
38134
38134
  customer_key?: string | undefined;
38135
38135
  } | {
@@ -57216,7 +57216,7 @@ export type Routes = {
57216
57216
  } | undefined;
57217
57217
  event_type: 'connected_account.connected';
57218
57218
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
57219
- connect_webview_id: string;
57219
+ connect_webview_id?: string | undefined;
57220
57220
  /** The customer key associated with this connected account, if any. */
57221
57221
  customer_key?: string | undefined;
57222
57222
  } | {
@@ -84897,7 +84897,7 @@ export type Routes = {
84897
84897
  } | undefined;
84898
84898
  event_type: 'connected_account.connected';
84899
84899
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
84900
- connect_webview_id: string;
84900
+ connect_webview_id?: string | undefined;
84901
84901
  /** The customer key associated with this connected account, if any. */
84902
84902
  customer_key?: string | undefined;
84903
84903
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.557.0",
3
+ "version": "1.558.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -27,7 +27,7 @@ const connect_webview_id = z
27
27
  export const connected_account_connected_event = connected_account_event.extend(
28
28
  {
29
29
  event_type: z.literal('connected_account.connected'),
30
- connect_webview_id,
30
+ connect_webview_id: connect_webview_id.optional(),
31
31
  customer_key: z
32
32
  .string()
33
33
  .optional()
@@ -16000,7 +16000,6 @@ export default {
16000
16000
  'occurred_at',
16001
16001
  'connected_account_id',
16002
16002
  'event_type',
16003
- 'connect_webview_id',
16004
16003
  ],
16005
16004
  type: 'object',
16006
16005
  'x-route-path': '/connected_accounts',
@@ -21171,7 +21171,7 @@ export type Routes = {
21171
21171
  | undefined
21172
21172
  event_type: 'connected_account.connected'
21173
21173
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
21174
- connect_webview_id: string
21174
+ connect_webview_id?: string | undefined
21175
21175
  /** The customer key associated with this connected account, if any. */
21176
21176
  customer_key?: string | undefined
21177
21177
  }
@@ -42653,7 +42653,7 @@ export type Routes = {
42653
42653
  | undefined
42654
42654
  event_type: 'connected_account.connected'
42655
42655
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
42656
- connect_webview_id: string
42656
+ connect_webview_id?: string | undefined
42657
42657
  /** The customer key associated with this connected account, if any. */
42658
42658
  customer_key?: string | undefined
42659
42659
  }
@@ -45103,7 +45103,7 @@ export type Routes = {
45103
45103
  | undefined
45104
45104
  event_type: 'connected_account.connected'
45105
45105
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
45106
- connect_webview_id: string
45106
+ connect_webview_id?: string | undefined
45107
45107
  /** The customer key associated with this connected account, if any. */
45108
45108
  customer_key?: string | undefined
45109
45109
  }
@@ -68092,7 +68092,7 @@ export type Routes = {
68092
68092
  | undefined
68093
68093
  event_type: 'connected_account.connected'
68094
68094
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
68095
- connect_webview_id: string
68095
+ connect_webview_id?: string | undefined
68096
68096
  /** The customer key associated with this connected account, if any. */
68097
68097
  customer_key?: string | undefined
68098
68098
  }
@@ -101017,7 +101017,7 @@ export type Routes = {
101017
101017
  | undefined
101018
101018
  event_type: 'connected_account.connected'
101019
101019
  /** ID of the [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) associated with the event. */
101020
- connect_webview_id: string
101020
+ connect_webview_id?: string | undefined
101021
101021
  /** The customer key associated with this connected account, if any. */
101022
101022
  customer_key?: string | undefined
101023
101023
  }