File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff 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 ( )
Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments