@etsoo/appscript 1.2.15 → 1.2.16

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.
@@ -17,7 +17,6 @@ export * from './dto/IdDto';
17
17
  export * from './dto/IdLabelDto';
18
18
  export * from './dto/IdLabelPrimaryDto';
19
19
  export * from './dto/InitCallDto';
20
- export * from './dto/UpdateDto';
21
20
  export * from './i18n/enUS';
22
21
  export * from './i18n/zhCN';
23
22
  export * from './i18n/zhHK';
package/lib/cjs/index.js CHANGED
@@ -36,7 +36,6 @@ __exportStar(require("./dto/IdDto"), exports);
36
36
  __exportStar(require("./dto/IdLabelDto"), exports);
37
37
  __exportStar(require("./dto/IdLabelPrimaryDto"), exports);
38
38
  __exportStar(require("./dto/InitCallDto"), exports);
39
- __exportStar(require("./dto/UpdateDto"), exports);
40
39
  // i18n
41
40
  __exportStar(require("./i18n/enUS"), exports);
42
41
  __exportStar(require("./i18n/zhCN"), exports);
@@ -17,7 +17,6 @@ export * from './dto/IdDto';
17
17
  export * from './dto/IdLabelDto';
18
18
  export * from './dto/IdLabelPrimaryDto';
19
19
  export * from './dto/InitCallDto';
20
- export * from './dto/UpdateDto';
21
20
  export * from './i18n/enUS';
22
21
  export * from './i18n/zhCN';
23
22
  export * from './i18n/zhHK';
package/lib/mjs/index.js CHANGED
@@ -23,7 +23,6 @@ export * from './dto/IdDto';
23
23
  export * from './dto/IdLabelDto';
24
24
  export * from './dto/IdLabelPrimaryDto';
25
25
  export * from './dto/InitCallDto';
26
- export * from './dto/UpdateDto';
27
26
  // i18n
28
27
  export * from './i18n/enUS';
29
28
  export * from './i18n/zhCN';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.2.15",
3
+ "version": "1.2.16",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -54,7 +54,7 @@
54
54
  "dependencies": {
55
55
  "@etsoo/notificationbase": "^1.1.0",
56
56
  "@etsoo/restclient": "^1.0.64",
57
- "@etsoo/shared": "^1.0.97",
57
+ "@etsoo/shared": "^1.0.99",
58
58
  "@types/crypto-js": "^4.1.0",
59
59
  "crypto-js": "^4.1.1"
60
60
  },
@@ -67,9 +67,9 @@
67
67
  "@types/jest": "^27.4.0",
68
68
  "@typescript-eslint/eslint-plugin": "^5.8.1",
69
69
  "@typescript-eslint/parser": "^5.8.1",
70
- "eslint": "^8.5.0",
70
+ "eslint": "^8.6.0",
71
71
  "eslint-config-airbnb-base": "^15.0.0",
72
- "eslint-plugin-import": "^2.25.3",
72
+ "eslint-plugin-import": "^2.25.4",
73
73
  "jest": "^27.4.5",
74
74
  "ts-jest": "^27.1.2",
75
75
  "typescript": "^4.5.4"
package/src/index.ts CHANGED
@@ -28,7 +28,6 @@ export * from './dto/IdDto';
28
28
  export * from './dto/IdLabelDto';
29
29
  export * from './dto/IdLabelPrimaryDto';
30
30
  export * from './dto/InitCallDto';
31
- export * from './dto/UpdateDto';
32
31
 
33
32
  // i18n
34
33
  export * from './i18n/enUS';
@@ -1,11 +0,0 @@
1
- import { DataTypes } from '@etsoo/shared';
2
- import { IdDto } from './IdDto';
3
- /**
4
- * Dto with id and changedFields
5
- */
6
- export declare type UpdateDto<T extends DataTypes.IdType = number> = IdDto<T> & {
7
- /**
8
- * Changed fields
9
- */
10
- changedFields?: string[];
11
- };
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,11 +0,0 @@
1
- import { DataTypes } from '@etsoo/shared';
2
- import { IdDto } from './IdDto';
3
- /**
4
- * Dto with id and changedFields
5
- */
6
- export declare type UpdateDto<T extends DataTypes.IdType = number> = IdDto<T> & {
7
- /**
8
- * Changed fields
9
- */
10
- changedFields?: string[];
11
- };
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- import { DataTypes } from '@etsoo/shared';
2
- import { IdDto } from './IdDto';
3
-
4
- /**
5
- * Dto with id and changedFields
6
- */
7
- export type UpdateDto<T extends DataTypes.IdType = number> = IdDto<T> & {
8
- /**
9
- * Changed fields
10
- */
11
- changedFields?: string[];
12
- };