@indigina/wms-api 0.0.177 → 0.0.179
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/fesm2022/indigina-wms-api.mjs +51 -12
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +47 -24
package/package.json
CHANGED
|
@@ -296,22 +296,21 @@ declare class AddressesService extends BaseService {
|
|
|
296
296
|
* @param $top
|
|
297
297
|
* @param $orderby
|
|
298
298
|
* @param $filter
|
|
299
|
-
* @param $search
|
|
300
299
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
301
300
|
* @param reportProgress flag to report request and response progress.
|
|
302
301
|
* @param options additional options
|
|
303
302
|
*/
|
|
304
|
-
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
303
|
+
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
305
304
|
httpHeaderAccept?: 'application/json';
|
|
306
305
|
context?: HttpContext;
|
|
307
306
|
transferCache?: boolean;
|
|
308
307
|
}): Observable<Addresses>;
|
|
309
|
-
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
308
|
+
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
310
309
|
httpHeaderAccept?: 'application/json';
|
|
311
310
|
context?: HttpContext;
|
|
312
311
|
transferCache?: boolean;
|
|
313
312
|
}): Observable<HttpResponse<Addresses>>;
|
|
314
|
-
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
313
|
+
getAddressesByCompany(companyId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
315
314
|
httpHeaderAccept?: 'application/json';
|
|
316
315
|
context?: HttpContext;
|
|
317
316
|
transferCache?: boolean;
|
|
@@ -325,22 +324,21 @@ declare class AddressesService extends BaseService {
|
|
|
325
324
|
* @param $top
|
|
326
325
|
* @param $orderby
|
|
327
326
|
* @param $filter
|
|
328
|
-
* @param $search
|
|
329
327
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
330
328
|
* @param reportProgress flag to report request and response progress.
|
|
331
329
|
* @param options additional options
|
|
332
330
|
*/
|
|
333
|
-
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
331
|
+
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
334
332
|
httpHeaderAccept?: 'application/json';
|
|
335
333
|
context?: HttpContext;
|
|
336
334
|
transferCache?: boolean;
|
|
337
335
|
}): Observable<Addresses>;
|
|
338
|
-
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
336
|
+
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
339
337
|
httpHeaderAccept?: 'application/json';
|
|
340
338
|
context?: HttpContext;
|
|
341
339
|
transferCache?: boolean;
|
|
342
340
|
}): Observable<HttpResponse<Addresses>>;
|
|
343
|
-
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
341
|
+
getAddressesByPerson(personId: string, addressType: AddressType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
344
342
|
httpHeaderAccept?: 'application/json';
|
|
345
343
|
context?: HttpContext;
|
|
346
344
|
transferCache?: boolean;
|
|
@@ -2171,22 +2169,21 @@ declare class CompaniesService extends BaseService {
|
|
|
2171
2169
|
* @param $top
|
|
2172
2170
|
* @param $orderby
|
|
2173
2171
|
* @param $filter
|
|
2174
|
-
* @param $search
|
|
2175
2172
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2176
2173
|
* @param reportProgress flag to report request and response progress.
|
|
2177
2174
|
* @param options additional options
|
|
2178
2175
|
*/
|
|
2179
|
-
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2176
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2180
2177
|
httpHeaderAccept?: 'application/json';
|
|
2181
2178
|
context?: HttpContext;
|
|
2182
2179
|
transferCache?: boolean;
|
|
2183
2180
|
}): Observable<Companies>;
|
|
2184
|
-
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2181
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2185
2182
|
httpHeaderAccept?: 'application/json';
|
|
2186
2183
|
context?: HttpContext;
|
|
2187
2184
|
transferCache?: boolean;
|
|
2188
2185
|
}): Observable<HttpResponse<Companies>>;
|
|
2189
|
-
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2186
|
+
getCompaniesByCompanyType(companyType: CompanyType, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2190
2187
|
httpHeaderAccept?: 'application/json';
|
|
2191
2188
|
context?: HttpContext;
|
|
2192
2189
|
transferCache?: boolean;
|
|
@@ -2277,22 +2274,21 @@ declare class ContactsService extends BaseService {
|
|
|
2277
2274
|
* @param $top
|
|
2278
2275
|
* @param $orderby
|
|
2279
2276
|
* @param $filter
|
|
2280
|
-
* @param $search
|
|
2281
2277
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2282
2278
|
* @param reportProgress flag to report request and response progress.
|
|
2283
2279
|
* @param options additional options
|
|
2284
2280
|
*/
|
|
2285
|
-
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2281
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2286
2282
|
httpHeaderAccept?: 'application/json';
|
|
2287
2283
|
context?: HttpContext;
|
|
2288
2284
|
transferCache?: boolean;
|
|
2289
2285
|
}): Observable<Contacts>;
|
|
2290
|
-
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2286
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2291
2287
|
httpHeaderAccept?: 'application/json';
|
|
2292
2288
|
context?: HttpContext;
|
|
2293
2289
|
transferCache?: boolean;
|
|
2294
2290
|
}): Observable<HttpResponse<Contacts>>;
|
|
2295
|
-
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
2291
|
+
getContactsByCompany(companyId: string, contactType: PeopleGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2296
2292
|
httpHeaderAccept?: 'application/json';
|
|
2297
2293
|
context?: HttpContext;
|
|
2298
2294
|
transferCache?: boolean;
|
|
@@ -2355,6 +2351,7 @@ interface CountRecordGridView {
|
|
|
2355
2351
|
countType: CountType;
|
|
2356
2352
|
countStatus: CountStatuses;
|
|
2357
2353
|
location?: string;
|
|
2354
|
+
sortOrder?: number | null;
|
|
2358
2355
|
licencePlate?: number | null;
|
|
2359
2356
|
productMasterId?: string | null;
|
|
2360
2357
|
sku?: string;
|
|
@@ -2536,6 +2533,34 @@ declare class CountRecordsService extends BaseService {
|
|
|
2536
2533
|
context?: HttpContext;
|
|
2537
2534
|
transferCache?: boolean;
|
|
2538
2535
|
}): Observable<HttpEvent<CountRecords>>;
|
|
2536
|
+
/**
|
|
2537
|
+
* CountRecords list
|
|
2538
|
+
* @endpoint get /CountRecords/search
|
|
2539
|
+
* @param statusGroup
|
|
2540
|
+
* @param $skip
|
|
2541
|
+
* @param $top
|
|
2542
|
+
* @param $orderby
|
|
2543
|
+
* @param $filter
|
|
2544
|
+
* @param searchTerm
|
|
2545
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2546
|
+
* @param reportProgress flag to report request and response progress.
|
|
2547
|
+
* @param options additional options
|
|
2548
|
+
*/
|
|
2549
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2550
|
+
httpHeaderAccept?: 'application/json';
|
|
2551
|
+
context?: HttpContext;
|
|
2552
|
+
transferCache?: boolean;
|
|
2553
|
+
}): Observable<CountRecords>;
|
|
2554
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2555
|
+
httpHeaderAccept?: 'application/json';
|
|
2556
|
+
context?: HttpContext;
|
|
2557
|
+
transferCache?: boolean;
|
|
2558
|
+
}): Observable<HttpResponse<CountRecords>>;
|
|
2559
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2560
|
+
httpHeaderAccept?: 'application/json';
|
|
2561
|
+
context?: HttpContext;
|
|
2562
|
+
transferCache?: boolean;
|
|
2563
|
+
}): Observable<HttpEvent<CountRecords>>;
|
|
2539
2564
|
/**
|
|
2540
2565
|
* Getting operator counts for a count record
|
|
2541
2566
|
* @endpoint get /CountRecords/{id}/operatorCounts
|
|
@@ -5944,22 +5969,21 @@ declare class ProductMastersService extends BaseService {
|
|
|
5944
5969
|
* @param $top
|
|
5945
5970
|
* @param $orderby
|
|
5946
5971
|
* @param $filter
|
|
5947
|
-
* @param $search
|
|
5948
5972
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5949
5973
|
* @param reportProgress flag to report request and response progress.
|
|
5950
5974
|
* @param options additional options
|
|
5951
5975
|
*/
|
|
5952
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5976
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5953
5977
|
httpHeaderAccept?: 'application/json';
|
|
5954
5978
|
context?: HttpContext;
|
|
5955
5979
|
transferCache?: boolean;
|
|
5956
5980
|
}): Observable<ProductMasters>;
|
|
5957
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5981
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5958
5982
|
httpHeaderAccept?: 'application/json';
|
|
5959
5983
|
context?: HttpContext;
|
|
5960
5984
|
transferCache?: boolean;
|
|
5961
5985
|
}): Observable<HttpResponse<ProductMasters>>;
|
|
5962
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5986
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5963
5987
|
httpHeaderAccept?: 'application/json';
|
|
5964
5988
|
context?: HttpContext;
|
|
5965
5989
|
transferCache?: boolean;
|
|
@@ -7052,22 +7076,21 @@ declare class SalesOrdersService extends BaseService {
|
|
|
7052
7076
|
* @param $top
|
|
7053
7077
|
* @param $orderby
|
|
7054
7078
|
* @param $filter
|
|
7055
|
-
* @param $search
|
|
7056
7079
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7057
7080
|
* @param reportProgress flag to report request and response progress.
|
|
7058
7081
|
* @param options additional options
|
|
7059
7082
|
*/
|
|
7060
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7083
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7061
7084
|
httpHeaderAccept?: 'application/json';
|
|
7062
7085
|
context?: HttpContext;
|
|
7063
7086
|
transferCache?: boolean;
|
|
7064
7087
|
}): Observable<SalesOrderItems>;
|
|
7065
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7088
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7066
7089
|
httpHeaderAccept?: 'application/json';
|
|
7067
7090
|
context?: HttpContext;
|
|
7068
7091
|
transferCache?: boolean;
|
|
7069
7092
|
}): Observable<HttpResponse<SalesOrderItems>>;
|
|
7070
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7093
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7071
7094
|
httpHeaderAccept?: 'application/json';
|
|
7072
7095
|
context?: HttpContext;
|
|
7073
7096
|
transferCache?: boolean;
|