@supernova-studio/client 0.21.0 → 0.21.1
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/index.d.mts +26 -26
- package/dist/index.d.ts +26 -26
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/documentation/group.ts +1 -1
- package/src/api/dto/elements/documentation/page-v2.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3648,8 +3648,8 @@ var DTOMoveDocumentationGroupInput = z129.object({
|
|
|
3648
3648
|
// Identifier of the group to update
|
|
3649
3649
|
id: z129.string().uuid(),
|
|
3650
3650
|
// Group placement properties
|
|
3651
|
-
|
|
3652
|
-
|
|
3651
|
+
parentPersistentId: z129.string().uuid(),
|
|
3652
|
+
afterPersistentId: z129.string().uuid().optional()
|
|
3653
3653
|
});
|
|
3654
3654
|
var DTODuplicateDocumentationGroupInput = z129.object({
|
|
3655
3655
|
// Identifier of the group to duplicate from
|
|
@@ -3783,7 +3783,7 @@ var DTOMoveDocumentationPageInputV2 = z131.object({
|
|
|
3783
3783
|
id: z131.string(),
|
|
3784
3784
|
// Page placement properties
|
|
3785
3785
|
parentPersistentId: z131.string().uuid(),
|
|
3786
|
-
afterPersistentId: z131.string().uuid()
|
|
3786
|
+
afterPersistentId: z131.string().uuid().optional()
|
|
3787
3787
|
});
|
|
3788
3788
|
var DTODuplicateDocumentationPageInputV2 = z131.object({
|
|
3789
3789
|
// Identifier of the page to duplicate from
|