@etsoo/smarterp-core 1.0.18 → 1.0.19
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/UserApi.js +1 -1
- package/lib/mjs/UserApi.js +1 -1
- package/package.json +1 -1
- package/src/UserApi.ts +1 -1
package/lib/cjs/UserApi.js
CHANGED
|
@@ -122,7 +122,7 @@ class UserApi extends appscript_1.EntityApi {
|
|
|
122
122
|
* @returns Result
|
|
123
123
|
*/
|
|
124
124
|
updateRead(payload) {
|
|
125
|
-
return this.api.
|
|
125
|
+
return this.api.get(`${this.flag}/UpdateRead`, undefined, payload);
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
exports.UserApi = UserApi;
|
package/lib/mjs/UserApi.js
CHANGED
package/package.json
CHANGED
package/src/UserApi.ts
CHANGED
|
@@ -158,6 +158,6 @@ export class UserApi extends EntityApi {
|
|
|
158
158
|
* @returns Result
|
|
159
159
|
*/
|
|
160
160
|
updateRead(payload?: IApiPayload<UserUpdateReadDto>) {
|
|
161
|
-
return this.api.
|
|
161
|
+
return this.api.get(`${this.flag}/UpdateRead`, undefined, payload);
|
|
162
162
|
}
|
|
163
163
|
}
|