@indigina/wms-api 0.0.74 → 0.0.75
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 +2 -2
- package/api/api.d.ts +1 -3
- package/api/dispatches.service.d.ts +98 -0
- package/fesm2022/indigina-wms-api.mjs +185 -273
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/api/dispatch.service.d.ts +0 -114
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.75
|
|
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.75 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
package/api/api.d.ts
CHANGED
|
@@ -8,8 +8,6 @@ export * from './deliveries.service';
|
|
|
8
8
|
import { DeliveriesService } from './deliveries.service';
|
|
9
9
|
export * from './deliveryItems.service';
|
|
10
10
|
import { DeliveryItemsService } from './deliveryItems.service';
|
|
11
|
-
export * from './dispatch.service';
|
|
12
|
-
import { DispatchService } from './dispatch.service';
|
|
13
11
|
export * from './dispatchItems.service';
|
|
14
12
|
import { DispatchItemsService } from './dispatchItems.service';
|
|
15
13
|
export * from './dispatches.service';
|
|
@@ -40,4 +38,4 @@ export * from './user.service';
|
|
|
40
38
|
import { UserService } from './user.service';
|
|
41
39
|
export * from './usersInternal.service';
|
|
42
40
|
import { UsersInternalService } from './usersInternal.service';
|
|
43
|
-
export declare const APIS: (typeof AnalyticsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof
|
|
41
|
+
export declare const APIS: (typeof AnalyticsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
+
import { Dispatch } from '../model/dispatch';
|
|
4
|
+
import { DispatchSummaryView } from '../model/dispatchSummaryView';
|
|
5
|
+
import { Dispatches } from '../model/dispatches';
|
|
6
|
+
import { OrderStatus } from '../model/orderStatus';
|
|
3
7
|
import { Configuration } from '../configuration';
|
|
4
8
|
import * as i0 from "@angular/core";
|
|
5
9
|
export declare class DispatchesService {
|
|
@@ -54,6 +58,100 @@ export declare class DispatchesService {
|
|
|
54
58
|
context?: HttpContext;
|
|
55
59
|
transferCache?: boolean;
|
|
56
60
|
}): Observable<HttpEvent<any>>;
|
|
61
|
+
/**
|
|
62
|
+
* Getting dispatch by id
|
|
63
|
+
* @param id
|
|
64
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
65
|
+
* @param reportProgress flag to report request and response progress.
|
|
66
|
+
*/
|
|
67
|
+
getDispatch(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
68
|
+
httpHeaderAccept?: 'application/json';
|
|
69
|
+
context?: HttpContext;
|
|
70
|
+
transferCache?: boolean;
|
|
71
|
+
}): Observable<Dispatch>;
|
|
72
|
+
getDispatch(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
73
|
+
httpHeaderAccept?: 'application/json';
|
|
74
|
+
context?: HttpContext;
|
|
75
|
+
transferCache?: boolean;
|
|
76
|
+
}): Observable<HttpResponse<Dispatch>>;
|
|
77
|
+
getDispatch(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
78
|
+
httpHeaderAccept?: 'application/json';
|
|
79
|
+
context?: HttpContext;
|
|
80
|
+
transferCache?: boolean;
|
|
81
|
+
}): Observable<HttpEvent<Dispatch>>;
|
|
82
|
+
/**
|
|
83
|
+
* Getting dispatch summary by id
|
|
84
|
+
* @param id
|
|
85
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
86
|
+
* @param reportProgress flag to report request and response progress.
|
|
87
|
+
*/
|
|
88
|
+
getDispatchSummaryView(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
89
|
+
httpHeaderAccept?: 'application/json';
|
|
90
|
+
context?: HttpContext;
|
|
91
|
+
transferCache?: boolean;
|
|
92
|
+
}): Observable<DispatchSummaryView>;
|
|
93
|
+
getDispatchSummaryView(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
94
|
+
httpHeaderAccept?: 'application/json';
|
|
95
|
+
context?: HttpContext;
|
|
96
|
+
transferCache?: boolean;
|
|
97
|
+
}): Observable<HttpResponse<DispatchSummaryView>>;
|
|
98
|
+
getDispatchSummaryView(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
99
|
+
httpHeaderAccept?: 'application/json';
|
|
100
|
+
context?: HttpContext;
|
|
101
|
+
transferCache?: boolean;
|
|
102
|
+
}): Observable<HttpEvent<DispatchSummaryView>>;
|
|
103
|
+
/**
|
|
104
|
+
* Getting dispatches
|
|
105
|
+
* @param orderStatus
|
|
106
|
+
* @param $skip
|
|
107
|
+
* @param $top
|
|
108
|
+
* @param $orderby
|
|
109
|
+
* @param $filter
|
|
110
|
+
* @param $search
|
|
111
|
+
* @param tabName
|
|
112
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
113
|
+
* @param reportProgress flag to report request and response progress.
|
|
114
|
+
*/
|
|
115
|
+
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
116
|
+
httpHeaderAccept?: 'application/json';
|
|
117
|
+
context?: HttpContext;
|
|
118
|
+
transferCache?: boolean;
|
|
119
|
+
}): Observable<Dispatches>;
|
|
120
|
+
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
121
|
+
httpHeaderAccept?: 'application/json';
|
|
122
|
+
context?: HttpContext;
|
|
123
|
+
transferCache?: boolean;
|
|
124
|
+
}): Observable<HttpResponse<Dispatches>>;
|
|
125
|
+
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
126
|
+
httpHeaderAccept?: 'application/json';
|
|
127
|
+
context?: HttpContext;
|
|
128
|
+
transferCache?: boolean;
|
|
129
|
+
}): Observable<HttpEvent<Dispatches>>;
|
|
130
|
+
/**
|
|
131
|
+
* Dispatches list
|
|
132
|
+
* @param $skip
|
|
133
|
+
* @param $top
|
|
134
|
+
* @param $orderby
|
|
135
|
+
* @param $filter
|
|
136
|
+
* @param searchTerm
|
|
137
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
138
|
+
* @param reportProgress flag to report request and response progress.
|
|
139
|
+
*/
|
|
140
|
+
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
141
|
+
httpHeaderAccept?: 'application/json';
|
|
142
|
+
context?: HttpContext;
|
|
143
|
+
transferCache?: boolean;
|
|
144
|
+
}): Observable<Dispatches>;
|
|
145
|
+
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
146
|
+
httpHeaderAccept?: 'application/json';
|
|
147
|
+
context?: HttpContext;
|
|
148
|
+
transferCache?: boolean;
|
|
149
|
+
}): Observable<HttpResponse<Dispatches>>;
|
|
150
|
+
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
151
|
+
httpHeaderAccept?: 'application/json';
|
|
152
|
+
context?: HttpContext;
|
|
153
|
+
transferCache?: boolean;
|
|
154
|
+
}): Observable<HttpEvent<Dispatches>>;
|
|
57
155
|
/**
|
|
58
156
|
* Release on-hold dispatches
|
|
59
157
|
* @param ids
|