@seamapi/types 1.897.0 → 1.898.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +22 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -0
- package/dist/index.cjs +22 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +22 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
|
@@ -72930,6 +72930,17 @@ const openapi = {
|
|
|
72930
72930
|
type: 'array',
|
|
72931
72931
|
},
|
|
72932
72932
|
name: { description: 'Name of the space.', type: 'string' },
|
|
72933
|
+
parent_space_id: {
|
|
72934
|
+
description: 'Reassign this space to the parent space (site) with this `parent_space_id`.',
|
|
72935
|
+
format: 'uuid',
|
|
72936
|
+
type: 'string',
|
|
72937
|
+
'x-undocumented': 'Only used internally.',
|
|
72938
|
+
},
|
|
72939
|
+
parent_space_key: {
|
|
72940
|
+
description: 'Reassign this space to the parent space (site) with this `parent_space_key`.',
|
|
72941
|
+
type: 'string',
|
|
72942
|
+
'x-undocumented': 'Only used internally.',
|
|
72943
|
+
},
|
|
72933
72944
|
space_id: {
|
|
72934
72945
|
description: 'ID of the space that you want to update.',
|
|
72935
72946
|
format: 'uuid',
|
|
@@ -73020,6 +73031,17 @@ const openapi = {
|
|
|
73020
73031
|
type: 'array',
|
|
73021
73032
|
},
|
|
73022
73033
|
name: { description: 'Name of the space.', type: 'string' },
|
|
73034
|
+
parent_space_id: {
|
|
73035
|
+
description: 'Reassign this space to the parent space (site) with this `parent_space_id`.',
|
|
73036
|
+
format: 'uuid',
|
|
73037
|
+
type: 'string',
|
|
73038
|
+
'x-undocumented': 'Only used internally.',
|
|
73039
|
+
},
|
|
73040
|
+
parent_space_key: {
|
|
73041
|
+
description: 'Reassign this space to the parent space (site) with this `parent_space_key`.',
|
|
73042
|
+
type: 'string',
|
|
73043
|
+
'x-undocumented': 'Only used internally.',
|
|
73044
|
+
},
|
|
73023
73045
|
space_id: {
|
|
73024
73046
|
description: 'ID of the space that you want to update.',
|
|
73025
73047
|
format: 'uuid',
|