@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 +6 -6
- package/dist/index.d.ts +6 -6
- package/package.json +1 -1
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
|
1179
|
-
subtitle
|
1180
|
-
parentArticleId
|
1181
|
-
slug
|
1182
|
-
markdownContent
|
1183
|
-
status
|
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
|
1179
|
-
subtitle
|
1180
|
-
parentArticleId
|
1181
|
-
slug
|
1182
|
-
markdownContent
|
1183
|
-
status
|
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 = {
|