Skip to content

Commit 11f4154

Browse files
authored
feat: Sync with Seam API via 0fa32223253153fe59910986069ac9ee0bd42d1a (#2614)
1 parent 688d002 commit 11f4154

File tree

2 files changed

+40
-4
lines changed

2 files changed

+40
-4
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59233,21 +59233,38 @@ export default {
5923359233
format: 'uuid',
5923459234
type: 'string',
5923559235
},
59236+
connected_account_id: {
59237+
format: 'uuid',
59238+
type: 'string',
59239+
},
5923659240
name: { type: 'string' },
5923759241
},
59238-
required: ['acs_entrance_id', 'name'],
59242+
required: [
59243+
'acs_entrance_id',
59244+
'name',
59245+
'connected_account_id',
59246+
],
5923959247
type: 'object',
5924059248
},
5924159249
type: 'array',
5924259250
},
5924359251
devices: {
5924459252
items: {
5924559253
properties: {
59254+
connected_account_id: {
59255+
format: 'uuid',
59256+
type: 'string',
59257+
},
5924659258
device_id: { format: 'uuid', type: 'string' },
5924759259
device_type: { type: 'string' },
5924859260
name: { type: 'string' },
5924959261
},
59250-
required: ['device_id', 'device_type', 'name'],
59262+
required: [
59263+
'device_id',
59264+
'device_type',
59265+
'name',
59266+
'connected_account_id',
59267+
],
5925159268
type: 'object',
5925259269
},
5925359270
type: 'array',
@@ -59332,21 +59349,38 @@ export default {
5933259349
format: 'uuid',
5933359350
type: 'string',
5933459351
},
59352+
connected_account_id: {
59353+
format: 'uuid',
59354+
type: 'string',
59355+
},
5933559356
name: { type: 'string' },
5933659357
},
59337-
required: ['acs_entrance_id', 'name'],
59358+
required: [
59359+
'acs_entrance_id',
59360+
'name',
59361+
'connected_account_id',
59362+
],
5933859363
type: 'object',
5933959364
},
5934059365
type: 'array',
5934159366
},
5934259367
devices: {
5934359368
items: {
5934459369
properties: {
59370+
connected_account_id: {
59371+
format: 'uuid',
59372+
type: 'string',
59373+
},
5934559374
device_id: { format: 'uuid', type: 'string' },
5934659375
device_type: { type: 'string' },
5934759376
name: { type: 'string' },
5934859377
},
59349-
required: ['device_id', 'device_type', 'name'],
59378+
required: [
59379+
'device_id',
59380+
'device_type',
59381+
'name',
59382+
'connected_account_id',
59383+
],
5935059384
type: 'object',
5935159385
},
5935259386
type: 'array',

src/lib/seam/connect/route-types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67659,10 +67659,12 @@ export type Routes = {
6765967659
device_id: string
6766067660
device_type: string
6766167661
name: string
67662+
connected_account_id: string
6766267663
}[]
6766367664
acs_entrances: {
6766467665
acs_entrance_id: string
6766567666
name: string
67667+
connected_account_id: string
6766667668
}[]
6766767669
needs_review?: boolean | undefined
6766867670
is_draft?: boolean | undefined

0 commit comments

Comments
 (0)