@evergis/api 3.0.41 → 3.0.42
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/dist/__generated__/AccountService.d.ts +12 -1
- package/dist/__generated__/data-contracts.d.ts +47 -0
- package/dist/api.cjs.development.js +17 -1
- package/dist/api.cjs.development.js.map +1 -1
- package/dist/api.cjs.production.min.js +1 -1
- package/dist/api.cjs.production.min.js.map +1 -1
- package/dist/api.esm.js +17 -1
- package/dist/api.esm.js.map +1 -1
- package/package.json +3 -2
package/dist/api.esm.js
CHANGED
|
@@ -86,7 +86,7 @@ function _isNativeReflectConstruct() {
|
|
|
86
86
|
if (typeof Proxy === "function") return true;
|
|
87
87
|
|
|
88
88
|
try {
|
|
89
|
-
|
|
89
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
90
90
|
return true;
|
|
91
91
|
} catch (e) {
|
|
92
92
|
return false;
|
|
@@ -4370,6 +4370,22 @@ let AccountService = /*#__PURE__*/function (_Service) {
|
|
|
4370
4370
|
value: function getUsers(query) {
|
|
4371
4371
|
return this.http.get("/account/user/list", query).json();
|
|
4372
4372
|
}
|
|
4373
|
+
/**
|
|
4374
|
+
* No description
|
|
4375
|
+
*
|
|
4376
|
+
* @tags Account
|
|
4377
|
+
* @name GetExtendedUsers
|
|
4378
|
+
* @operationId AccountController_GetExtendedUsers
|
|
4379
|
+
* @summary Returns the list of extended users informations that correspond to the given conditions.
|
|
4380
|
+
* @request GET:/account/user/extendedlist
|
|
4381
|
+
* @response `200` Success
|
|
4382
|
+
*/
|
|
4383
|
+
|
|
4384
|
+
}, {
|
|
4385
|
+
key: "getExtendedUsers",
|
|
4386
|
+
value: function getExtendedUsers(query) {
|
|
4387
|
+
return this.http.get("/account/user/extendedlist", query).json();
|
|
4388
|
+
}
|
|
4373
4389
|
/**
|
|
4374
4390
|
* No description
|
|
4375
4391
|
*
|