@indigina/wms-api 0.0.174 → 0.0.176
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/package.json
CHANGED
|
@@ -289,7 +289,7 @@ declare class AddressesService extends BaseService {
|
|
|
289
289
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
290
290
|
/**
|
|
291
291
|
* Getting addresses by company
|
|
292
|
-
* @endpoint get /companies/{companyId}/addresses
|
|
292
|
+
* @endpoint get /companies/{companyId}/addresses/{addressType}
|
|
293
293
|
* @param companyId
|
|
294
294
|
* @param addressType
|
|
295
295
|
* @param $skip
|
|
@@ -318,7 +318,7 @@ declare class AddressesService extends BaseService {
|
|
|
318
318
|
}): Observable<HttpEvent<Addresses>>;
|
|
319
319
|
/**
|
|
320
320
|
* Getting addresses by person
|
|
321
|
-
* @endpoint get /people/{personId}/addresses
|
|
321
|
+
* @endpoint get /people/{personId}/addresses/{addressType}
|
|
322
322
|
* @param personId
|
|
323
323
|
* @param addressType
|
|
324
324
|
* @param $skip
|
|
@@ -2270,9 +2270,9 @@ declare class ContactsService extends BaseService {
|
|
|
2270
2270
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2271
2271
|
/**
|
|
2272
2272
|
* Getting contacts by company
|
|
2273
|
-
* @endpoint get /companies/{companyId}/contacts
|
|
2273
|
+
* @endpoint get /companies/{companyId}/contacts/{contactType}
|
|
2274
2274
|
* @param companyId
|
|
2275
|
-
* @param
|
|
2275
|
+
* @param contactType
|
|
2276
2276
|
* @param $skip
|
|
2277
2277
|
* @param $top
|
|
2278
2278
|
* @param $orderby
|
|
@@ -2282,17 +2282,17 @@ declare class ContactsService extends BaseService {
|
|
|
2282
2282
|
* @param reportProgress flag to report request and response progress.
|
|
2283
2283
|
* @param options additional options
|
|
2284
2284
|
*/
|
|
2285
|
-
getContactsByCompany(companyId: string,
|
|
2285
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2286
2286
|
httpHeaderAccept?: 'application/json';
|
|
2287
2287
|
context?: HttpContext;
|
|
2288
2288
|
transferCache?: boolean;
|
|
2289
2289
|
}): Observable<Contacts>;
|
|
2290
|
-
getContactsByCompany(companyId: string,
|
|
2290
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2291
2291
|
httpHeaderAccept?: 'application/json';
|
|
2292
2292
|
context?: HttpContext;
|
|
2293
2293
|
transferCache?: boolean;
|
|
2294
2294
|
}): Observable<HttpResponse<Contacts>>;
|
|
2295
|
-
getContactsByCompany(companyId: string,
|
|
2295
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2296
2296
|
httpHeaderAccept?: 'application/json';
|
|
2297
2297
|
context?: HttpContext;
|
|
2298
2298
|
transferCache?: boolean;
|
|
@@ -3898,7 +3898,7 @@ interface Dispatch {
|
|
|
3898
3898
|
packedDate?: string | null;
|
|
3899
3899
|
packCompleteDate?: string | null;
|
|
3900
3900
|
dispatchDate?: string | null;
|
|
3901
|
-
|
|
3901
|
+
sysDispatchDate?: string | null;
|
|
3902
3902
|
requestedCarrierId?: string | null;
|
|
3903
3903
|
requestedServiceName?: string;
|
|
3904
3904
|
carrierId?: string | null;
|