@supernova-studio/client 0.49.0 → 0.49.2
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 +25 -13
- package/dist/index.d.ts +25 -13
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/documentation/page-v2.ts +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1738,7 +1738,9 @@ var PageBlockText = z39.object({
|
|
|
1738
1738
|
var PageBlockGuideline = z39.object({
|
|
1739
1739
|
description: nullishToOptional(z39.string()),
|
|
1740
1740
|
asset: nullishToOptional(PageBlockAsset),
|
|
1741
|
-
type: z39.string()
|
|
1741
|
+
type: z39.string(),
|
|
1742
|
+
imageAlt: nullishToOptional(z39.string()),
|
|
1743
|
+
imageCaption: nullishToOptional(z39.string())
|
|
1742
1744
|
});
|
|
1743
1745
|
var PageBlockBaseV1 = z39.object({
|
|
1744
1746
|
persistentId: z39.string(),
|
|
@@ -5428,7 +5430,7 @@ var DTORestoreDocumentationGroupInput = z193.object({
|
|
|
5428
5430
|
});
|
|
5429
5431
|
var DTODocumentationPageApprovalStateChangeInput = z193.object({
|
|
5430
5432
|
persistentId: z193.string(),
|
|
5431
|
-
approvalState: DocumentationPageApprovalState
|
|
5433
|
+
approvalState: DocumentationPageApprovalState.optional()
|
|
5432
5434
|
});
|
|
5433
5435
|
|
|
5434
5436
|
// src/api/dto/documentation/documentation-page-snapshot.ts
|