@indigina/wms-api 0.0.74 → 0.0.76

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.74
1
+ # @indigina/wms-api@0.0.76
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.74 --save
27
+ npm install @indigina/wms-api@0.0.76 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
package/api/api.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  export * from './analytics.service';
2
2
  import { AnalyticsService } from './analytics.service';
3
+ export * from './carrierProviderIntegrations.service';
4
+ import { CarrierProviderIntegrationsService } from './carrierProviderIntegrations.service';
3
5
  export * from './companies.service';
4
6
  import { CompaniesService } from './companies.service';
5
7
  export * from './dcs.service';
@@ -8,8 +10,6 @@ export * from './deliveries.service';
8
10
  import { DeliveriesService } from './deliveries.service';
9
11
  export * from './deliveryItems.service';
10
12
  import { DeliveryItemsService } from './deliveryItems.service';
11
- export * from './dispatch.service';
12
- import { DispatchService } from './dispatch.service';
13
13
  export * from './dispatchItems.service';
14
14
  import { DispatchItemsService } from './dispatchItems.service';
15
15
  export * from './dispatches.service';
@@ -40,4 +40,4 @@ export * from './user.service';
40
40
  import { UserService } from './user.service';
41
41
  export * from './usersInternal.service';
42
42
  import { UsersInternalService } from './usersInternal.service';
43
- export declare const APIS: (typeof AnalyticsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchService | 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)[];
43
+ export declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | 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)[];
@@ -0,0 +1,42 @@
1
+ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { CarrierProviderIntegrations } from '../model/carrierProviderIntegrations';
4
+ import { Configuration } from '../configuration';
5
+ import * as i0 from "@angular/core";
6
+ export declare class CarrierProviderIntegrationsService {
7
+ protected httpClient: HttpClient;
8
+ protected basePath: string;
9
+ defaultHeaders: HttpHeaders;
10
+ configuration: Configuration;
11
+ encoder: HttpParameterCodec;
12
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
13
+ private addToHttpParams;
14
+ private addToHttpParamsRecursive;
15
+ /**
16
+ * Getting carrier provider integrations
17
+ * @param $skip
18
+ * @param $top
19
+ * @param $orderby
20
+ * @param $filter
21
+ * @param $search
22
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
23
+ * @param reportProgress flag to report request and response progress.
24
+ */
25
+ getCarrierProviderIntegrations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
26
+ httpHeaderAccept?: 'application/json';
27
+ context?: HttpContext;
28
+ transferCache?: boolean;
29
+ }): Observable<CarrierProviderIntegrations>;
30
+ getCarrierProviderIntegrations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
31
+ httpHeaderAccept?: 'application/json';
32
+ context?: HttpContext;
33
+ transferCache?: boolean;
34
+ }): Observable<HttpResponse<CarrierProviderIntegrations>>;
35
+ getCarrierProviderIntegrations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
36
+ httpHeaderAccept?: 'application/json';
37
+ context?: HttpContext;
38
+ transferCache?: boolean;
39
+ }): Observable<HttpEvent<CarrierProviderIntegrations>>;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<CarrierProviderIntegrationsService, [null, { optional: true; }, { optional: true; }]>;
41
+ static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
42
+ }
@@ -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