@appconda/sdk 1.0.646 → 1.0.648
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/modules/emploid/schema.d.ts +5 -0
- package/dist/modules/emploid/schema.js +6 -1
- package/dist/modules/emploid/service.js +7 -2
- package/dist/modules/emploid/types.d.ts +3 -0
- package/dist/modules/emploid/types.js +1 -1
- package/package.json +1 -1
- package/src/modules/emploid/schema.ts +5 -0
- package/src/modules/emploid/service.ts +6 -1
- package/src/modules/emploid/types.ts +3 -0
|
@@ -1593,6 +1593,8 @@ export declare const CreateWikiPageSchema: z.ZodObject<{
|
|
|
1593
1593
|
title: z.ZodString;
|
|
1594
1594
|
slug: z.ZodString;
|
|
1595
1595
|
description: z.ZodOptional<z.ZodString>;
|
|
1596
|
+
icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1597
|
+
iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1596
1598
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1597
1599
|
}, z.core.$strip>;
|
|
1598
1600
|
export declare const UpdateWikiPageSchema: z.ZodObject<{
|
|
@@ -1600,8 +1602,11 @@ export declare const UpdateWikiPageSchema: z.ZodObject<{
|
|
|
1600
1602
|
title: z.ZodOptional<z.ZodString>;
|
|
1601
1603
|
slug: z.ZodOptional<z.ZodString>;
|
|
1602
1604
|
description: z.ZodOptional<z.ZodString>;
|
|
1605
|
+
icon: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1606
|
+
iconColor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1603
1607
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1604
1608
|
status: z.ZodOptional<z.ZodString>;
|
|
1609
|
+
fullPageWidth: z.ZodOptional<z.ZodBoolean>;
|
|
1605
1610
|
}, z.core.$strip>;
|
|
1606
1611
|
export declare const DeleteWikiPageSchema: z.ZodObject<{
|
|
1607
1612
|
id: z.ZodString;
|