@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 +2 -2
- package/api/api.d.ts +3 -3
- package/api/carrierProviderIntegrations.service.d.ts +42 -0
- package/api/dispatches.service.d.ts +98 -0
- package/fesm2022/indigina-wms-api.mjs +403 -332
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/model/carrierProviderIntegration.d.ts +15 -0
- package/model/carrierProviderIntegrations.d.ts +14 -0
- package/model/models.d.ts +2 -0
- package/package.json +1 -1
- package/api/dispatch.service.d.ts +0 -114
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
export interface CarrierProviderIntegration {
|
|
11
|
+
id?: string;
|
|
12
|
+
carrierProviderName?: string | null;
|
|
13
|
+
carrierProviderId?: string | null;
|
|
14
|
+
createdDate?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Wms.API.Client
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7
|
+
* https://openapi-generator.tech
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*/
|
|
10
|
+
import { CarrierProviderIntegration } from './carrierProviderIntegration';
|
|
11
|
+
export interface CarrierProviderIntegrations {
|
|
12
|
+
total: number;
|
|
13
|
+
data: Array<CarrierProviderIntegration>;
|
|
14
|
+
}
|
package/model/models.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpParameterCodec, HttpContext } from '@angular/common/http';
|
|
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';
|
|
7
|
-
import { Configuration } from '../configuration';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class DispatchService {
|
|
10
|
-
protected httpClient: HttpClient;
|
|
11
|
-
protected basePath: string;
|
|
12
|
-
defaultHeaders: HttpHeaders;
|
|
13
|
-
configuration: Configuration;
|
|
14
|
-
encoder: HttpParameterCodec;
|
|
15
|
-
constructor(httpClient: HttpClient, basePath: string | string[], configuration: Configuration);
|
|
16
|
-
private addToHttpParams;
|
|
17
|
-
private addToHttpParamsRecursive;
|
|
18
|
-
/**
|
|
19
|
-
* Getting dispatch by id
|
|
20
|
-
* @param id
|
|
21
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
22
|
-
* @param reportProgress flag to report request and response progress.
|
|
23
|
-
*/
|
|
24
|
-
getDispatch(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
25
|
-
httpHeaderAccept?: 'application/json';
|
|
26
|
-
context?: HttpContext;
|
|
27
|
-
transferCache?: boolean;
|
|
28
|
-
}): Observable<Dispatch>;
|
|
29
|
-
getDispatch(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
30
|
-
httpHeaderAccept?: 'application/json';
|
|
31
|
-
context?: HttpContext;
|
|
32
|
-
transferCache?: boolean;
|
|
33
|
-
}): Observable<HttpResponse<Dispatch>>;
|
|
34
|
-
getDispatch(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
35
|
-
httpHeaderAccept?: 'application/json';
|
|
36
|
-
context?: HttpContext;
|
|
37
|
-
transferCache?: boolean;
|
|
38
|
-
}): Observable<HttpEvent<Dispatch>>;
|
|
39
|
-
/**
|
|
40
|
-
* Getting dispatch summary by id
|
|
41
|
-
* @param id
|
|
42
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
43
|
-
* @param reportProgress flag to report request and response progress.
|
|
44
|
-
*/
|
|
45
|
-
getDispatchSummaryView(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
46
|
-
httpHeaderAccept?: 'application/json';
|
|
47
|
-
context?: HttpContext;
|
|
48
|
-
transferCache?: boolean;
|
|
49
|
-
}): Observable<DispatchSummaryView>;
|
|
50
|
-
getDispatchSummaryView(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
51
|
-
httpHeaderAccept?: 'application/json';
|
|
52
|
-
context?: HttpContext;
|
|
53
|
-
transferCache?: boolean;
|
|
54
|
-
}): Observable<HttpResponse<DispatchSummaryView>>;
|
|
55
|
-
getDispatchSummaryView(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
56
|
-
httpHeaderAccept?: 'application/json';
|
|
57
|
-
context?: HttpContext;
|
|
58
|
-
transferCache?: boolean;
|
|
59
|
-
}): Observable<HttpEvent<DispatchSummaryView>>;
|
|
60
|
-
/**
|
|
61
|
-
* Getting dispatches
|
|
62
|
-
* @param orderStatus
|
|
63
|
-
* @param $skip
|
|
64
|
-
* @param $top
|
|
65
|
-
* @param $orderby
|
|
66
|
-
* @param $filter
|
|
67
|
-
* @param $search
|
|
68
|
-
* @param tabName
|
|
69
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
70
|
-
* @param reportProgress flag to report request and response progress.
|
|
71
|
-
*/
|
|
72
|
-
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
73
|
-
httpHeaderAccept?: 'application/json';
|
|
74
|
-
context?: HttpContext;
|
|
75
|
-
transferCache?: boolean;
|
|
76
|
-
}): Observable<Dispatches>;
|
|
77
|
-
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
78
|
-
httpHeaderAccept?: 'application/json';
|
|
79
|
-
context?: HttpContext;
|
|
80
|
-
transferCache?: boolean;
|
|
81
|
-
}): Observable<HttpResponse<Dispatches>>;
|
|
82
|
-
getDispatchesByOrderStatus(orderStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
83
|
-
httpHeaderAccept?: 'application/json';
|
|
84
|
-
context?: HttpContext;
|
|
85
|
-
transferCache?: boolean;
|
|
86
|
-
}): Observable<HttpEvent<Dispatches>>;
|
|
87
|
-
/**
|
|
88
|
-
* Dispatches list
|
|
89
|
-
* @param $skip
|
|
90
|
-
* @param $top
|
|
91
|
-
* @param $orderby
|
|
92
|
-
* @param $filter
|
|
93
|
-
* @param searchTerm
|
|
94
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
95
|
-
* @param reportProgress flag to report request and response progress.
|
|
96
|
-
*/
|
|
97
|
-
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
98
|
-
httpHeaderAccept?: 'application/json';
|
|
99
|
-
context?: HttpContext;
|
|
100
|
-
transferCache?: boolean;
|
|
101
|
-
}): Observable<Dispatches>;
|
|
102
|
-
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
103
|
-
httpHeaderAccept?: 'application/json';
|
|
104
|
-
context?: HttpContext;
|
|
105
|
-
transferCache?: boolean;
|
|
106
|
-
}): Observable<HttpResponse<Dispatches>>;
|
|
107
|
-
getDispatchesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
108
|
-
httpHeaderAccept?: 'application/json';
|
|
109
|
-
context?: HttpContext;
|
|
110
|
-
transferCache?: boolean;
|
|
111
|
-
}): Observable<HttpEvent<Dispatches>>;
|
|
112
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DispatchService, [null, { optional: true; }, { optional: true; }]>;
|
|
113
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<DispatchService>;
|
|
114
|
-
}
|