Skip to content

Commit 6e14b59

Browse files
committed
feat: Sync with Seam API via 70f20fab26334df17dacb58c9825f2b936195f6d
1 parent 802ba57 commit 6e14b59

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51951,6 +51951,19 @@ export default {
5195151951
required: ['rule'],
5195251952
type: 'object',
5195351953
},
51954+
reservation_spaces_updated: {
51955+
properties: {
51956+
config: {
51957+
$ref: '#/components/schemas/access_code',
51958+
},
51959+
rule: {
51960+
enum: ['reservation_spaces_updated'],
51961+
type: 'string',
51962+
},
51963+
},
51964+
required: ['rule'],
51965+
type: 'object',
51966+
},
5195451967
reservation_time_updated: {
5195551968
properties: {
5195651969
config: {
@@ -52208,6 +52221,19 @@ export default {
5220852221
required: ['rule'],
5220952222
type: 'object',
5221052223
},
52224+
reservation_spaces_updated: {
52225+
properties: {
52226+
config: {
52227+
$ref: '#/components/schemas/access_code',
52228+
},
52229+
rule: {
52230+
enum: ['reservation_spaces_updated'],
52231+
type: 'string',
52232+
},
52233+
},
52234+
required: ['rule'],
52235+
type: 'object',
52236+
},
5221152237
reservation_time_updated: {
5221252238
properties: {
5221352239
config: {
@@ -52465,6 +52491,17 @@ export default {
5246552491
required: ['rule'],
5246652492
type: 'object',
5246752493
},
52494+
reservation_spaces_updated: {
52495+
properties: {
52496+
config: { properties: {}, type: 'object' },
52497+
rule: {
52498+
enum: ['reservation_spaces_updated'],
52499+
type: 'string',
52500+
},
52501+
},
52502+
required: ['rule'],
52503+
type: 'object',
52504+
},
5246852505
reservation_time_updated: {
5246952506
properties: {
5247052507
config: { properties: {}, type: 'object' },
@@ -52722,6 +52759,17 @@ export default {
5272252759
required: ['rule'],
5272352760
type: 'object',
5272452761
},
52762+
reservation_spaces_updated: {
52763+
properties: {
52764+
config: { properties: {}, type: 'object' },
52765+
rule: {
52766+
enum: ['reservation_spaces_updated'],
52767+
type: 'string',
52768+
},
52769+
},
52770+
required: ['rule'],
52771+
type: 'object',
52772+
},
5272552773
reservation_time_updated: {
5272652774
properties: {
5272752775
config: { properties: {}, type: 'object' },

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62016,6 +62016,12 @@ export type Routes = {
6201662016
config?: {} | undefined
6201762017
}
6201862018
| undefined
62019+
reservation_spaces_updated?:
62020+
| {
62021+
rule: 'reservation_spaces_updated'
62022+
config?: {} | undefined
62023+
}
62024+
| undefined
6201962025
reservation_deleted?:
6202062026
| {
6202162027
rule: 'reservation_deleted'
@@ -62115,6 +62121,12 @@ export type Routes = {
6211562121
config?: {} | undefined
6211662122
}
6211762123
| undefined
62124+
reservation_spaces_updated?:
62125+
| {
62126+
rule: 'reservation_spaces_updated'
62127+
config?: {} | undefined
62128+
}
62129+
| undefined
6211862130
reservation_deleted?:
6211962131
| {
6212062132
rule: 'reservation_deleted'

0 commit comments

Comments
 (0)