File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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',
Original file line number Diff line number Diff 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: {}
You can’t perform that action at this time.
0 commit comments