@juhuu/sdk-ts 1.2.36 → 1.2.37
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 +14 -2
- package/dist/index.d.ts +14 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -495,9 +495,21 @@ type Command = {
|
|
495
495
|
parameterName: string;
|
496
496
|
};
|
497
497
|
interface LocaleString {
|
498
|
-
de: string;
|
499
498
|
en: string;
|
500
|
-
|
499
|
+
de?: string;
|
500
|
+
fr?: string;
|
501
|
+
it?: string;
|
502
|
+
nl?: string;
|
503
|
+
es?: string;
|
504
|
+
da?: string;
|
505
|
+
hr?: string;
|
506
|
+
hu?: string;
|
507
|
+
no?: string;
|
508
|
+
pl?: string;
|
509
|
+
sv?: string;
|
510
|
+
cs?: string;
|
511
|
+
et?: string;
|
512
|
+
gsw?: string;
|
501
513
|
}
|
502
514
|
|
503
515
|
declare class Service {
|
package/dist/index.d.ts
CHANGED
@@ -495,9 +495,21 @@ type Command = {
|
|
495
495
|
parameterName: string;
|
496
496
|
};
|
497
497
|
interface LocaleString {
|
498
|
-
de: string;
|
499
498
|
en: string;
|
500
|
-
|
499
|
+
de?: string;
|
500
|
+
fr?: string;
|
501
|
+
it?: string;
|
502
|
+
nl?: string;
|
503
|
+
es?: string;
|
504
|
+
da?: string;
|
505
|
+
hr?: string;
|
506
|
+
hu?: string;
|
507
|
+
no?: string;
|
508
|
+
pl?: string;
|
509
|
+
sv?: string;
|
510
|
+
cs?: string;
|
511
|
+
et?: string;
|
512
|
+
gsw?: string;
|
501
513
|
}
|
502
514
|
|
503
515
|
declare class Service {
|
package/dist/index.js
CHANGED
@@ -1566,7 +1566,7 @@ var ArticlesService = class extends Service {
|
|
1566
1566
|
parentArticleId: ArticleUpdateParams.parentArticleId,
|
1567
1567
|
markdownContent: ArticleUpdateParams.markdownContent,
|
1568
1568
|
status: ArticleUpdateParams.status,
|
1569
|
-
|
1569
|
+
languageCodeArray: ArticleUpdateParams.languageCodeArray
|
1570
1570
|
},
|
1571
1571
|
useAuthentication: true
|
1572
1572
|
},
|
package/dist/index.mjs
CHANGED
@@ -1521,7 +1521,7 @@ var ArticlesService = class extends Service {
|
|
1521
1521
|
parentArticleId: ArticleUpdateParams.parentArticleId,
|
1522
1522
|
markdownContent: ArticleUpdateParams.markdownContent,
|
1523
1523
|
status: ArticleUpdateParams.status,
|
1524
|
-
|
1524
|
+
languageCodeArray: ArticleUpdateParams.languageCodeArray
|
1525
1525
|
},
|
1526
1526
|
useAuthentication: true
|
1527
1527
|
},
|