@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.
- package/lib/cjs/index.d.ts +0 -1
- package/lib/cjs/index.js +0 -1
- package/lib/mjs/index.d.ts +0 -1
- package/lib/mjs/index.js +0 -1
- package/package.json +4 -4
- package/src/index.ts +0 -1
- package/lib/cjs/dto/UpdateDto.d.ts +0 -11
- package/lib/cjs/dto/UpdateDto.js +0 -2
- package/lib/mjs/dto/UpdateDto.d.ts +0 -11
- package/lib/mjs/dto/UpdateDto.js +0 -1
- package/src/dto/UpdateDto.ts +0 -12
package/lib/cjs/index.d.ts
CHANGED
|
@@ -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);
|
package/lib/mjs/index.d.ts
CHANGED
|
@@ -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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.2.
|
|
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.
|
|
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.
|
|
70
|
+
"eslint": "^8.6.0",
|
|
71
71
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
72
|
-
"eslint-plugin-import": "^2.25.
|
|
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
|
@@ -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
|
-
};
|
package/lib/cjs/dto/UpdateDto.js
DELETED
|
@@ -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
|
-
};
|
package/lib/mjs/dto/UpdateDto.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/src/dto/UpdateDto.ts
DELETED
|
@@ -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
|
-
};
|