@indigina/wms-api 0.0.61 → 0.0.62
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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.62
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.62 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -14,7 +14,6 @@ export declare class UsersInternalService {
|
|
|
14
14
|
private addToHttpParamsRecursive;
|
|
15
15
|
/**
|
|
16
16
|
* Retrieve a paginated list of users based on a specification
|
|
17
|
-
* @param id
|
|
18
17
|
* @param $skip
|
|
19
18
|
* @param $top
|
|
20
19
|
* @param $orderby
|
|
@@ -23,17 +22,17 @@ export declare class UsersInternalService {
|
|
|
23
22
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
24
23
|
* @param reportProgress flag to report request and response progress.
|
|
25
24
|
*/
|
|
26
|
-
getUsersInternal(
|
|
25
|
+
getUsersInternal($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
27
26
|
httpHeaderAccept?: 'application/json';
|
|
28
27
|
context?: HttpContext;
|
|
29
28
|
transferCache?: boolean;
|
|
30
29
|
}): Observable<UserInfos>;
|
|
31
|
-
getUsersInternal(
|
|
30
|
+
getUsersInternal($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
32
31
|
httpHeaderAccept?: 'application/json';
|
|
33
32
|
context?: HttpContext;
|
|
34
33
|
transferCache?: boolean;
|
|
35
34
|
}): Observable<HttpResponse<UserInfos>>;
|
|
36
|
-
getUsersInternal(
|
|
35
|
+
getUsersInternal($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
37
36
|
httpHeaderAccept?: 'application/json';
|
|
38
37
|
context?: HttpContext;
|
|
39
38
|
transferCache?: boolean;
|
|
@@ -5780,10 +5780,7 @@ class UsersInternalService {
|
|
|
5780
5780
|
}
|
|
5781
5781
|
return httpParams;
|
|
5782
5782
|
}
|
|
5783
|
-
getUsersInternal(
|
|
5784
|
-
if (id === null || id === undefined) {
|
|
5785
|
-
throw new Error('Required parameter id was null or undefined when calling getUsersInternal.');
|
|
5786
|
-
}
|
|
5783
|
+
getUsersInternal($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
5787
5784
|
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
5788
5785
|
if ($skip !== undefined && $skip !== null) {
|
|
5789
5786
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|