@juhuu/sdk-ts 1.2.26 → 1.2.27

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 CHANGED
@@ -1175,12 +1175,12 @@ declare namespace JUHUU {
1175
1175
  namespace Update {
1176
1176
  type Params = {
1177
1177
  articleId: string;
1178
- title: LocaleString;
1179
- subtitle: LocaleString;
1180
- parentArticleId: string | null;
1181
- slug: string;
1182
- markdownContent: LocaleString;
1183
- status: "draft" | "published";
1178
+ title?: LocaleString;
1179
+ subtitle?: LocaleString;
1180
+ parentArticleId?: string | null;
1181
+ slug?: string;
1182
+ markdownContent?: LocaleString;
1183
+ status?: "draft" | "published";
1184
1184
  };
1185
1185
  type Options = JUHUU.RequestOptions;
1186
1186
  type Response = {
package/dist/index.d.ts CHANGED
@@ -1175,12 +1175,12 @@ declare namespace JUHUU {
1175
1175
  namespace Update {
1176
1176
  type Params = {
1177
1177
  articleId: string;
1178
- title: LocaleString;
1179
- subtitle: LocaleString;
1180
- parentArticleId: string | null;
1181
- slug: string;
1182
- markdownContent: LocaleString;
1183
- status: "draft" | "published";
1178
+ title?: LocaleString;
1179
+ subtitle?: LocaleString;
1180
+ parentArticleId?: string | null;
1181
+ slug?: string;
1182
+ markdownContent?: LocaleString;
1183
+ status?: "draft" | "published";
1184
1184
  };
1185
1185
  type Options = JUHUU.RequestOptions;
1186
1186
  type Response = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.26",
3
+ "version": "1.2.27",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",