@smartspace/api-client 0.1.0-pr.889.7f46648 → 0.1.0-pr.890.c2dda18
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.
|
@@ -2047,6 +2047,7 @@ export declare const draftsPublishDraftParams: zod.ZodObject<{
|
|
|
2047
2047
|
}, zod.core.$strict>;
|
|
2048
2048
|
export declare const draftsPublishDraftBody: zod.ZodObject<{
|
|
2049
2049
|
confirmOverwrite: zod.ZodBoolean;
|
|
2050
|
+
publishAs: zod.ZodOptional<zod.ZodNullable<zod.ZodString>>;
|
|
2050
2051
|
}, zod.core.$strict>;
|
|
2051
2052
|
export declare const draftsPublishDraftResponseBlockSetIdRegExp: RegExp;
|
|
2052
2053
|
export declare const draftsPublishDraftResponse: zod.ZodObject<{
|
|
@@ -1586,7 +1586,8 @@ exports.draftsPublishDraftParams = zod_1.default.strictObject({
|
|
|
1586
1586
|
"name": zod_1.default.string()
|
|
1587
1587
|
});
|
|
1588
1588
|
exports.draftsPublishDraftBody = zod_1.default.strictObject({
|
|
1589
|
-
"confirmOverwrite": zod_1.default.boolean()
|
|
1589
|
+
"confirmOverwrite": zod_1.default.boolean(),
|
|
1590
|
+
"publishAs": zod_1.default.string().nullish()
|
|
1590
1591
|
});
|
|
1591
1592
|
exports.draftsPublishDraftResponseBlockSetIdRegExp = new RegExp('^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$');
|
|
1592
1593
|
exports.draftsPublishDraftResponse = zod_1.default.object({
|