Skip to content

Commit 57917dd

Browse files
authored
feat: Sync with Seam API via f89f0334247c13e56662b895468915667c3bac39 (#2656)
1 parent 60e8499 commit 57917dd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/lib/seam/connect/models/customer/customer-portal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export const portal_configuration_base = z.object({
146146
),
147147
deep_link: z
148148
.object({
149-
resource_type: z.enum(['reservation']),
149+
resource_type: z.enum(['reservation', 'space']),
150150
resource_key: z.string(),
151151
})
152152
.optional()

src/lib/seam/connect/openapi.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47397,7 +47397,7 @@ export default {
4739747397
properties: {
4739847398
resource_key: { type: 'string' },
4739947399
resource_type: {
47400-
enum: ['reservation'],
47400+
enum: ['reservation', 'space'],
4740147401
type: 'string',
4740247402
},
4740347403
},
@@ -62483,7 +62483,7 @@ export default {
6248362483
properties: {
6248462484
resource_key: { type: 'string' },
6248562485
resource_type: {
62486-
enum: ['reservation'],
62486+
enum: ['reservation', 'space'],
6248762487
type: 'string',
6248862488
},
6248962489
},
@@ -62862,7 +62862,7 @@ export default {
6286262862
properties: {
6286362863
resource_key: { type: 'string' },
6286462864
resource_type: {
62865-
enum: ['reservation'],
62865+
enum: ['reservation', 'space'],
6286662866
type: 'string',
6286762867
},
6286862868
},

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32041,7 +32041,7 @@ export type Routes = {
3204132041
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
3204232042
deep_link?:
3204332043
| {
32044-
resource_type: 'reservation'
32044+
resource_type: 'reservation' | 'space'
3204532045
resource_key: string
3204632046
}
3204732047
| undefined
@@ -71446,7 +71446,7 @@ export type Routes = {
7144671446
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
7144771447
deep_link?:
7144871448
| {
71449-
resource_type: 'reservation'
71449+
resource_type: 'reservation' | 'space'
7145071450
resource_key: string
7145171451
}
7145271452
| undefined

0 commit comments

Comments
 (0)