Skip to content

Commit 718a8e2

Browse files
committed
feat: Sync with Seam API via d666d4bce9e145650c09e1d218ed911db5e62d5a
1 parent e0c6b52 commit 718a8e2

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

src/lib/seam/connect/openapi.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79054,6 +79054,19 @@ const openapi: OpenAPISpec = {
7905479054
type: 'array',
7905579055
},
7905679056
name: { description: 'Name of the space.', type: 'string' },
79057+
parent_space_id: {
79058+
description:
79059+
'Reassign this space to the parent space (site) with this `parent_space_id`.',
79060+
format: 'uuid',
79061+
type: 'string',
79062+
'x-undocumented': 'Only used internally.',
79063+
},
79064+
parent_space_key: {
79065+
description:
79066+
'Reassign this space to the parent space (site) with this `parent_space_key`.',
79067+
type: 'string',
79068+
'x-undocumented': 'Only used internally.',
79069+
},
7905779070
space_id: {
7905879071
description: 'ID of the space that you want to update.',
7905979072
format: 'uuid',
@@ -79151,6 +79164,19 @@ const openapi: OpenAPISpec = {
7915179164
type: 'array',
7915279165
},
7915379166
name: { description: 'Name of the space.', type: 'string' },
79167+
parent_space_id: {
79168+
description:
79169+
'Reassign this space to the parent space (site) with this `parent_space_id`.',
79170+
format: 'uuid',
79171+
type: 'string',
79172+
'x-undocumented': 'Only used internally.',
79173+
},
79174+
parent_space_key: {
79175+
description:
79176+
'Reassign this space to the parent space (site) with this `parent_space_key`.',
79177+
type: 'string',
79178+
'x-undocumented': 'Only used internally.',
79179+
},
7915479180
space_id: {
7915579181
description: 'ID of the space that you want to update.',
7915679182
format: 'uuid',

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100749,6 +100749,10 @@ export type Routes = {
100749100749
default_checkout_time?: (string | null) | undefined
100750100750
}
100751100751
| undefined
100752+
/** Reassign this space to the parent space (site) with this `parent_space_id`. */
100753+
parent_space_id?: string | undefined
100754+
/** Reassign this space to the parent space (site) with this `parent_space_key`. */
100755+
parent_space_key?: string | undefined
100752100756
}
100753100757
commonParams: {}
100754100758
formData: {}

0 commit comments

Comments
 (0)