@etsoo/smarterp-core 1.1.71 → 1.1.73
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/DocumentApi.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare class DocumentApi extends EntityApi {
|
|
|
45
45
|
* @param payload Payload
|
|
46
46
|
* @returns Result
|
|
47
47
|
*/
|
|
48
|
-
list(rq: DocumentListRQ, payload
|
|
48
|
+
list(rq: DocumentListRQ, payload?: IApiPayload<DocumentListData[]>): Promise<DocumentListData[] | undefined>;
|
|
49
49
|
/**
|
|
50
50
|
* Query
|
|
51
51
|
* @param rq Request data
|
package/lib/mjs/DocumentApi.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare class DocumentApi extends EntityApi {
|
|
|
45
45
|
* @param payload Payload
|
|
46
46
|
* @returns Result
|
|
47
47
|
*/
|
|
48
|
-
list(rq: DocumentListRQ, payload
|
|
48
|
+
list(rq: DocumentListRQ, payload?: IApiPayload<DocumentListData[]>): Promise<DocumentListData[] | undefined>;
|
|
49
49
|
/**
|
|
50
50
|
* Query
|
|
51
51
|
* @param rq Request data
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/smarterp-core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.73",
|
|
4
4
|
"description": "TypeScript APIs for SmartERP Core",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -56,15 +56,18 @@
|
|
|
56
56
|
"react-dom": "$react-dom"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@etsoo/appscript": "^1.6.
|
|
60
|
-
"@etsoo/materialui": "^1.6.
|
|
61
|
-
"@etsoo/react": "^1.8.
|
|
62
|
-
"@etsoo/shared": "^1.2.
|
|
63
|
-
"@etsoo/toolpad": "^1.0.
|
|
59
|
+
"@etsoo/appscript": "^1.6.69",
|
|
60
|
+
"@etsoo/materialui": "^1.6.73",
|
|
61
|
+
"@etsoo/react": "^1.8.93",
|
|
62
|
+
"@etsoo/shared": "^1.2.87",
|
|
63
|
+
"@etsoo/toolpad": "^1.0.51",
|
|
64
64
|
"@mui/material": "^9.1.2",
|
|
65
65
|
"ajv": "^8.20.0",
|
|
66
66
|
"ajv-formats": "^3.0.1",
|
|
67
67
|
"react": "^19.2.7",
|
|
68
68
|
"react-dom": "^19.2.7"
|
|
69
|
+
},
|
|
70
|
+
"allowScripts": {
|
|
71
|
+
"core-js-pure@3.49.0": true
|
|
69
72
|
}
|
|
70
73
|
}
|
package/src/DocumentApi.ts
CHANGED
|
@@ -67,7 +67,7 @@ export class DocumentApi extends EntityApi {
|
|
|
67
67
|
* @param payload Payload
|
|
68
68
|
* @returns Result
|
|
69
69
|
*/
|
|
70
|
-
list(rq: DocumentListRQ, payload
|
|
70
|
+
list(rq: DocumentListRQ, payload?: IApiPayload<DocumentListData[]>) {
|
|
71
71
|
return this.listBase(rq, payload);
|
|
72
72
|
}
|
|
73
73
|
|