@wrcb/cb-common 1.0.849 → 1.0.851
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.
|
@@ -15,3 +15,17 @@ export declare enum LiVoiceTone {
|
|
|
15
15
|
Technical = "technical",
|
|
16
16
|
Inspirational = "inspirational"
|
|
17
17
|
}
|
|
18
|
+
export declare enum LiPostLanguage {
|
|
19
|
+
Portuguese = "Portuguese",
|
|
20
|
+
English = "English",
|
|
21
|
+
Spanish = "Spanish",
|
|
22
|
+
French = "French",
|
|
23
|
+
German = "German",
|
|
24
|
+
Italian = "Italian",
|
|
25
|
+
Japanese = "Japanese",
|
|
26
|
+
Chinese = "Chinese"
|
|
27
|
+
}
|
|
28
|
+
export declare enum LiImageStyle {
|
|
29
|
+
Vivid = "vivid",
|
|
30
|
+
Natural = "natural"
|
|
31
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LiVoiceTone = exports.LiApprovalMode = exports.LiPostStatus = void 0;
|
|
3
|
+
exports.LiImageStyle = exports.LiPostLanguage = exports.LiVoiceTone = exports.LiApprovalMode = exports.LiPostStatus = void 0;
|
|
4
4
|
var LiPostStatus;
|
|
5
5
|
(function (LiPostStatus) {
|
|
6
6
|
LiPostStatus["Draft"] = "draft";
|
|
@@ -21,3 +21,19 @@ var LiVoiceTone;
|
|
|
21
21
|
LiVoiceTone["Technical"] = "technical";
|
|
22
22
|
LiVoiceTone["Inspirational"] = "inspirational";
|
|
23
23
|
})(LiVoiceTone || (exports.LiVoiceTone = LiVoiceTone = {}));
|
|
24
|
+
var LiPostLanguage;
|
|
25
|
+
(function (LiPostLanguage) {
|
|
26
|
+
LiPostLanguage["Portuguese"] = "Portuguese";
|
|
27
|
+
LiPostLanguage["English"] = "English";
|
|
28
|
+
LiPostLanguage["Spanish"] = "Spanish";
|
|
29
|
+
LiPostLanguage["French"] = "French";
|
|
30
|
+
LiPostLanguage["German"] = "German";
|
|
31
|
+
LiPostLanguage["Italian"] = "Italian";
|
|
32
|
+
LiPostLanguage["Japanese"] = "Japanese";
|
|
33
|
+
LiPostLanguage["Chinese"] = "Chinese";
|
|
34
|
+
})(LiPostLanguage || (exports.LiPostLanguage = LiPostLanguage = {}));
|
|
35
|
+
var LiImageStyle;
|
|
36
|
+
(function (LiImageStyle) {
|
|
37
|
+
LiImageStyle["Vivid"] = "vivid";
|
|
38
|
+
LiImageStyle["Natural"] = "natural";
|
|
39
|
+
})(LiImageStyle || (exports.LiImageStyle = LiImageStyle = {}));
|