@etsoo/appscript 1.4.47 → 1.4.49

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.
@@ -19,3 +19,20 @@ export type CultureItem = {
19
19
  */
20
20
  jsonData?: string;
21
21
  };
22
+ /**
23
+ * Culture grid item for editing
24
+ */
25
+ export type CultureGridItem = {
26
+ /**
27
+ * Culture
28
+ */
29
+ id: string;
30
+ /**
31
+ * Title / label
32
+ */
33
+ title: string;
34
+ /**
35
+ * JSON data related
36
+ */
37
+ jsonData?: string;
38
+ };
@@ -18,6 +18,7 @@ export * from './bridges/IBridgeHost';
18
18
  export * from './business/ApiService';
19
19
  export * from './business/BusinessTax';
20
20
  export * from './business/BusinessUtils';
21
+ export * from './business/CultureItem';
21
22
  export * from './business/Currency';
22
23
  export * from './business/DataPrivacy';
23
24
  export * from './business/EntityStatus';
package/lib/cjs/index.js CHANGED
@@ -39,6 +39,7 @@ __exportStar(require("./bridges/IBridgeHost"), exports);
39
39
  __exportStar(require("./business/ApiService"), exports);
40
40
  __exportStar(require("./business/BusinessTax"), exports);
41
41
  __exportStar(require("./business/BusinessUtils"), exports);
42
+ __exportStar(require("./business/CultureItem"), exports);
42
43
  __exportStar(require("./business/Currency"), exports);
43
44
  __exportStar(require("./business/DataPrivacy"), exports);
44
45
  __exportStar(require("./business/EntityStatus"), exports);
@@ -19,3 +19,20 @@ export type CultureItem = {
19
19
  */
20
20
  jsonData?: string;
21
21
  };
22
+ /**
23
+ * Culture grid item for editing
24
+ */
25
+ export type CultureGridItem = {
26
+ /**
27
+ * Culture
28
+ */
29
+ id: string;
30
+ /**
31
+ * Title / label
32
+ */
33
+ title: string;
34
+ /**
35
+ * JSON data related
36
+ */
37
+ jsonData?: string;
38
+ };
@@ -18,6 +18,7 @@ export * from './bridges/IBridgeHost';
18
18
  export * from './business/ApiService';
19
19
  export * from './business/BusinessTax';
20
20
  export * from './business/BusinessUtils';
21
+ export * from './business/CultureItem';
21
22
  export * from './business/Currency';
22
23
  export * from './business/DataPrivacy';
23
24
  export * from './business/EntityStatus';
package/lib/mjs/index.js CHANGED
@@ -22,6 +22,7 @@ export * from './bridges/IBridgeHost';
22
22
  export * from './business/ApiService';
23
23
  export * from './business/BusinessTax';
24
24
  export * from './business/BusinessUtils';
25
+ export * from './business/CultureItem';
25
26
  export * from './business/Currency';
26
27
  export * from './business/DataPrivacy';
27
28
  export * from './business/EntityStatus';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.4.47",
3
+ "version": "1.4.49",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -22,3 +22,23 @@ export type CultureItem = {
22
22
  */
23
23
  jsonData?: string;
24
24
  };
25
+
26
+ /**
27
+ * Culture grid item for editing
28
+ */
29
+ export type CultureGridItem = {
30
+ /**
31
+ * Culture
32
+ */
33
+ id: string;
34
+
35
+ /**
36
+ * Title / label
37
+ */
38
+ title: string;
39
+
40
+ /**
41
+ * JSON data related
42
+ */
43
+ jsonData?: string;
44
+ };
package/src/index.ts CHANGED
@@ -25,6 +25,7 @@ export * from './bridges/IBridgeHost';
25
25
  export * from './business/ApiService';
26
26
  export * from './business/BusinessTax';
27
27
  export * from './business/BusinessUtils';
28
+ export * from './business/CultureItem';
28
29
  export * from './business/Currency';
29
30
  export * from './business/DataPrivacy';
30
31
  export * from './business/EntityStatus';