@seamapi/types 1.121.0 → 1.122.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.
@@ -244,6 +244,12 @@ declare const _default: {
244
244
  external_type_display_name: {
245
245
  type: string;
246
246
  };
247
+ image_alt_text: {
248
+ type: string;
249
+ };
250
+ image_url: {
251
+ type: string;
252
+ };
247
253
  name: {
248
254
  type: string;
249
255
  };
@@ -18256,6 +18262,8 @@ interface Routes {
18256
18262
  created_at: string;
18257
18263
  workspace_id: string;
18258
18264
  connected_account_ids: string[];
18265
+ image_url: string;
18266
+ image_alt_text: string;
18259
18267
  };
18260
18268
  };
18261
18269
  };
@@ -18281,6 +18289,8 @@ interface Routes {
18281
18289
  created_at: string;
18282
18290
  workspace_id: string;
18283
18291
  connected_account_ids: string[];
18292
+ image_url: string;
18293
+ image_alt_text: string;
18284
18294
  }>;
18285
18295
  };
18286
18296
  };
@@ -24505,6 +24515,8 @@ interface Routes {
24505
24515
  created_at: string;
24506
24516
  workspace_id: string;
24507
24517
  connected_account_ids: string[];
24518
+ image_url: string;
24519
+ image_alt_text: string;
24508
24520
  }>;
24509
24521
  };
24510
24522
  };
@@ -170,6 +170,12 @@ declare const _default: {
170
170
  external_type_display_name: {
171
171
  type: string;
172
172
  };
173
+ image_alt_text: {
174
+ type: string;
175
+ };
176
+ image_url: {
177
+ type: string;
178
+ };
173
179
  name: {
174
180
  type: string;
175
181
  };
@@ -183,6 +183,8 @@ export default {
183
183
  type: 'string',
184
184
  },
185
185
  external_type_display_name: { type: 'string' },
186
+ image_alt_text: { type: 'string' },
187
+ image_url: { type: 'string' },
186
188
  name: { type: 'string' },
187
189
  system_type: {
188
190
  description: 'deprecated: use external_type',
@@ -213,6 +215,8 @@ export default {
213
215
  'created_at',
214
216
  'workspace_id',
215
217
  'connected_account_ids',
218
+ 'image_url',
219
+ 'image_alt_text',
216
220
  ],
217
221
  type: 'object',
218
222
  },