@etsoo/appscript 1.4.46 → 1.4.47

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.
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Culture item for multilingual labels
3
+ */
4
+ export type CultureItem = {
5
+ /**
6
+ * Target id
7
+ */
8
+ id: number;
9
+ /**
10
+ * Culture, like zh-Hans
11
+ */
12
+ culture: string;
13
+ /**
14
+ * Title / label
15
+ */
16
+ title: string;
17
+ /**
18
+ * JSON data related
19
+ */
20
+ jsonData?: string;
21
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Culture item for multilingual labels
3
+ */
4
+ export type CultureItem = {
5
+ /**
6
+ * Target id
7
+ */
8
+ id: number;
9
+ /**
10
+ * Culture, like zh-Hans
11
+ */
12
+ culture: string;
13
+ /**
14
+ * Title / label
15
+ */
16
+ title: string;
17
+ /**
18
+ * JSON data related
19
+ */
20
+ jsonData?: string;
21
+ };
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.4.46",
3
+ "version": "1.4.47",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Culture item for multilingual labels
3
+ */
4
+ export type CultureItem = {
5
+ /**
6
+ * Target id
7
+ */
8
+ id: number;
9
+
10
+ /**
11
+ * Culture, like zh-Hans
12
+ */
13
+ culture: string;
14
+
15
+ /**
16
+ * Title / label
17
+ */
18
+ title: string;
19
+
20
+ /**
21
+ * JSON data related
22
+ */
23
+ jsonData?: string;
24
+ };