@indigina/wms-api 0.0.176 → 0.0.178
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 +262 -14
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +288 -27
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;
|
|
@@ -2301,6 +2297,273 @@ declare class ContactsService extends BaseService {
|
|
|
2301
2297
|
static ɵprov: i0.ɵɵInjectableDeclaration<ContactsService>;
|
|
2302
2298
|
}
|
|
2303
2299
|
|
|
2300
|
+
/**
|
|
2301
|
+
* Wms.API.Client
|
|
2302
|
+
*
|
|
2303
|
+
*
|
|
2304
|
+
*
|
|
2305
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2306
|
+
* https://openapi-generator.tech
|
|
2307
|
+
* Do not edit the class manually.
|
|
2308
|
+
*/
|
|
2309
|
+
declare const CountStatuses: {
|
|
2310
|
+
readonly Any: "Any";
|
|
2311
|
+
readonly Active: "Active";
|
|
2312
|
+
readonly Complete: "Complete";
|
|
2313
|
+
readonly Recount: "Recount";
|
|
2314
|
+
readonly Cancel: "Cancel";
|
|
2315
|
+
};
|
|
2316
|
+
type CountStatuses = typeof CountStatuses[keyof typeof CountStatuses];
|
|
2317
|
+
|
|
2318
|
+
/**
|
|
2319
|
+
* Wms.API.Client
|
|
2320
|
+
*
|
|
2321
|
+
*
|
|
2322
|
+
*
|
|
2323
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2324
|
+
* https://openapi-generator.tech
|
|
2325
|
+
* Do not edit the class manually.
|
|
2326
|
+
*/
|
|
2327
|
+
declare const CountType: {
|
|
2328
|
+
readonly Any: "Any";
|
|
2329
|
+
readonly MovementException: "MovementException";
|
|
2330
|
+
readonly PickDenial: "PickDenial";
|
|
2331
|
+
readonly ContinuousInventory: "ContinuousInventory";
|
|
2332
|
+
readonly PlannedCount: "PlannedCount";
|
|
2333
|
+
readonly FreeCount: "FreeCount";
|
|
2334
|
+
};
|
|
2335
|
+
type CountType = typeof CountType[keyof typeof CountType];
|
|
2336
|
+
|
|
2337
|
+
/**
|
|
2338
|
+
* Wms.API.Client
|
|
2339
|
+
*
|
|
2340
|
+
*
|
|
2341
|
+
*
|
|
2342
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2343
|
+
* https://openapi-generator.tech
|
|
2344
|
+
* Do not edit the class manually.
|
|
2345
|
+
*/
|
|
2346
|
+
|
|
2347
|
+
interface CountRecordGridView {
|
|
2348
|
+
id: string;
|
|
2349
|
+
clientId: string;
|
|
2350
|
+
client: string;
|
|
2351
|
+
countType: CountType;
|
|
2352
|
+
countStatus: CountStatuses;
|
|
2353
|
+
location?: string;
|
|
2354
|
+
licencePlate?: number | null;
|
|
2355
|
+
productMasterId?: string | null;
|
|
2356
|
+
sku?: string;
|
|
2357
|
+
createSystemQuantity?: number | null;
|
|
2358
|
+
bestBeforeDate?: string | null;
|
|
2359
|
+
lotNo?: string;
|
|
2360
|
+
locationType?: string;
|
|
2361
|
+
zone?: string;
|
|
2362
|
+
module?: string;
|
|
2363
|
+
storageType?: string;
|
|
2364
|
+
createDate: string;
|
|
2365
|
+
createdByUser: string;
|
|
2366
|
+
firstCountDate?: string | null;
|
|
2367
|
+
firstCountUser?: string;
|
|
2368
|
+
lastSystemQuantity?: number | null;
|
|
2369
|
+
lastCountQuantity?: number | null;
|
|
2370
|
+
lastAdjustmentQuantity?: number | null;
|
|
2371
|
+
lastCountDate?: string | null;
|
|
2372
|
+
lastCountUser?: string;
|
|
2373
|
+
numberOfRecounts?: number | null;
|
|
2374
|
+
plannedCountNumber?: number | null;
|
|
2375
|
+
completedDate?: string | null;
|
|
2376
|
+
completedUser?: string;
|
|
2377
|
+
cancelDate?: string | null;
|
|
2378
|
+
cancelUser?: string;
|
|
2379
|
+
closedDate?: string | null;
|
|
2380
|
+
}
|
|
2381
|
+
declare namespace CountRecordGridView {
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
/**
|
|
2385
|
+
* Wms.API.Client
|
|
2386
|
+
*
|
|
2387
|
+
*
|
|
2388
|
+
*
|
|
2389
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2390
|
+
* https://openapi-generator.tech
|
|
2391
|
+
* Do not edit the class manually.
|
|
2392
|
+
*/
|
|
2393
|
+
|
|
2394
|
+
interface CountRecords {
|
|
2395
|
+
total: number;
|
|
2396
|
+
data: Array<CountRecordGridView>;
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
/**
|
|
2400
|
+
* Wms.API.Client
|
|
2401
|
+
*
|
|
2402
|
+
*
|
|
2403
|
+
*
|
|
2404
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2405
|
+
* https://openapi-generator.tech
|
|
2406
|
+
* Do not edit the class manually.
|
|
2407
|
+
*/
|
|
2408
|
+
declare const CountStatusGroup: {
|
|
2409
|
+
readonly Open: "Open";
|
|
2410
|
+
readonly Closed: "Closed";
|
|
2411
|
+
};
|
|
2412
|
+
type CountStatusGroup = typeof CountStatusGroup[keyof typeof CountStatusGroup];
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* Wms.API.Client
|
|
2416
|
+
*
|
|
2417
|
+
*
|
|
2418
|
+
*
|
|
2419
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2420
|
+
* https://openapi-generator.tech
|
|
2421
|
+
* Do not edit the class manually.
|
|
2422
|
+
*/
|
|
2423
|
+
|
|
2424
|
+
interface OperatorCountGridView {
|
|
2425
|
+
id: string;
|
|
2426
|
+
countRecordId: string;
|
|
2427
|
+
createDate: string;
|
|
2428
|
+
countedBy: string;
|
|
2429
|
+
systemQuantity: number;
|
|
2430
|
+
countQuantity: number;
|
|
2431
|
+
adjustmentQuantity: number;
|
|
2432
|
+
fromCountStatus?: CountStatuses | null;
|
|
2433
|
+
toCountStatus?: CountStatuses | null;
|
|
2434
|
+
}
|
|
2435
|
+
declare namespace OperatorCountGridView {
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
/**
|
|
2439
|
+
* Wms.API.Client
|
|
2440
|
+
*
|
|
2441
|
+
*
|
|
2442
|
+
*
|
|
2443
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2444
|
+
* https://openapi-generator.tech
|
|
2445
|
+
* Do not edit the class manually.
|
|
2446
|
+
*/
|
|
2447
|
+
|
|
2448
|
+
interface OperatorCounts {
|
|
2449
|
+
total: number;
|
|
2450
|
+
data: Array<OperatorCountGridView>;
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
declare class CountRecordsService extends BaseService {
|
|
2454
|
+
protected httpClient: HttpClient;
|
|
2455
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2456
|
+
/**
|
|
2457
|
+
* Cancel count records
|
|
2458
|
+
* @endpoint put /CountRecords/cancel
|
|
2459
|
+
* @param ids
|
|
2460
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2461
|
+
* @param reportProgress flag to report request and response progress.
|
|
2462
|
+
* @param options additional options
|
|
2463
|
+
*/
|
|
2464
|
+
cancelCountRecords(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2465
|
+
httpHeaderAccept?: undefined;
|
|
2466
|
+
context?: HttpContext;
|
|
2467
|
+
transferCache?: boolean;
|
|
2468
|
+
}): Observable<any>;
|
|
2469
|
+
cancelCountRecords(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2470
|
+
httpHeaderAccept?: undefined;
|
|
2471
|
+
context?: HttpContext;
|
|
2472
|
+
transferCache?: boolean;
|
|
2473
|
+
}): Observable<HttpResponse<any>>;
|
|
2474
|
+
cancelCountRecords(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2475
|
+
httpHeaderAccept?: undefined;
|
|
2476
|
+
context?: HttpContext;
|
|
2477
|
+
transferCache?: boolean;
|
|
2478
|
+
}): Observable<HttpEvent<any>>;
|
|
2479
|
+
/**
|
|
2480
|
+
* Get list of count record clients
|
|
2481
|
+
* @endpoint get /CountRecords/clients
|
|
2482
|
+
* @param statusGroup
|
|
2483
|
+
* @param $skip
|
|
2484
|
+
* @param $top
|
|
2485
|
+
* @param $orderby
|
|
2486
|
+
* @param $filter
|
|
2487
|
+
* @param $search
|
|
2488
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2489
|
+
* @param reportProgress flag to report request and response progress.
|
|
2490
|
+
* @param options additional options
|
|
2491
|
+
*/
|
|
2492
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2493
|
+
httpHeaderAccept?: 'application/json';
|
|
2494
|
+
context?: HttpContext;
|
|
2495
|
+
transferCache?: boolean;
|
|
2496
|
+
}): Observable<Array<string>>;
|
|
2497
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2498
|
+
httpHeaderAccept?: 'application/json';
|
|
2499
|
+
context?: HttpContext;
|
|
2500
|
+
transferCache?: boolean;
|
|
2501
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
2502
|
+
getCountRecordClients(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2503
|
+
httpHeaderAccept?: 'application/json';
|
|
2504
|
+
context?: HttpContext;
|
|
2505
|
+
transferCache?: boolean;
|
|
2506
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
2507
|
+
/**
|
|
2508
|
+
* Getting count records
|
|
2509
|
+
* @endpoint get /CountRecords
|
|
2510
|
+
* @param statusGroup
|
|
2511
|
+
* @param $skip
|
|
2512
|
+
* @param $top
|
|
2513
|
+
* @param $orderby
|
|
2514
|
+
* @param $filter
|
|
2515
|
+
* @param $search
|
|
2516
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2517
|
+
* @param reportProgress flag to report request and response progress.
|
|
2518
|
+
* @param options additional options
|
|
2519
|
+
*/
|
|
2520
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2521
|
+
httpHeaderAccept?: 'application/json';
|
|
2522
|
+
context?: HttpContext;
|
|
2523
|
+
transferCache?: boolean;
|
|
2524
|
+
}): Observable<CountRecords>;
|
|
2525
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2526
|
+
httpHeaderAccept?: 'application/json';
|
|
2527
|
+
context?: HttpContext;
|
|
2528
|
+
transferCache?: boolean;
|
|
2529
|
+
}): Observable<HttpResponse<CountRecords>>;
|
|
2530
|
+
getCountRecords(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2531
|
+
httpHeaderAccept?: 'application/json';
|
|
2532
|
+
context?: HttpContext;
|
|
2533
|
+
transferCache?: boolean;
|
|
2534
|
+
}): Observable<HttpEvent<CountRecords>>;
|
|
2535
|
+
/**
|
|
2536
|
+
* Getting operator counts for a count record
|
|
2537
|
+
* @endpoint get /CountRecords/{id}/operatorCounts
|
|
2538
|
+
* @param id
|
|
2539
|
+
* @param $skip
|
|
2540
|
+
* @param $top
|
|
2541
|
+
* @param $orderby
|
|
2542
|
+
* @param $filter
|
|
2543
|
+
* @param $search
|
|
2544
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2545
|
+
* @param reportProgress flag to report request and response progress.
|
|
2546
|
+
* @param options additional options
|
|
2547
|
+
*/
|
|
2548
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2549
|
+
httpHeaderAccept?: 'application/json';
|
|
2550
|
+
context?: HttpContext;
|
|
2551
|
+
transferCache?: boolean;
|
|
2552
|
+
}): Observable<OperatorCounts>;
|
|
2553
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2554
|
+
httpHeaderAccept?: 'application/json';
|
|
2555
|
+
context?: HttpContext;
|
|
2556
|
+
transferCache?: boolean;
|
|
2557
|
+
}): Observable<HttpResponse<OperatorCounts>>;
|
|
2558
|
+
getOperatorCounts(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2559
|
+
httpHeaderAccept?: 'application/json';
|
|
2560
|
+
context?: HttpContext;
|
|
2561
|
+
transferCache?: boolean;
|
|
2562
|
+
}): Observable<HttpEvent<OperatorCounts>>;
|
|
2563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CountRecordsService, [null, { optional: true; }, { optional: true; }]>;
|
|
2564
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CountRecordsService>;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2304
2567
|
/**
|
|
2305
2568
|
* Wms.API.Client
|
|
2306
2569
|
*
|
|
@@ -5677,22 +5940,21 @@ declare class ProductMastersService extends BaseService {
|
|
|
5677
5940
|
* @param $top
|
|
5678
5941
|
* @param $orderby
|
|
5679
5942
|
* @param $filter
|
|
5680
|
-
* @param $search
|
|
5681
5943
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5682
5944
|
* @param reportProgress flag to report request and response progress.
|
|
5683
5945
|
* @param options additional options
|
|
5684
5946
|
*/
|
|
5685
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5947
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5686
5948
|
httpHeaderAccept?: 'application/json';
|
|
5687
5949
|
context?: HttpContext;
|
|
5688
5950
|
transferCache?: boolean;
|
|
5689
5951
|
}): Observable<ProductMasters>;
|
|
5690
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5952
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5691
5953
|
httpHeaderAccept?: 'application/json';
|
|
5692
5954
|
context?: HttpContext;
|
|
5693
5955
|
transferCache?: boolean;
|
|
5694
5956
|
}): Observable<HttpResponse<ProductMasters>>;
|
|
5695
|
-
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
5957
|
+
getProductMasters($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5696
5958
|
httpHeaderAccept?: 'application/json';
|
|
5697
5959
|
context?: HttpContext;
|
|
5698
5960
|
transferCache?: boolean;
|
|
@@ -6785,22 +7047,21 @@ declare class SalesOrdersService extends BaseService {
|
|
|
6785
7047
|
* @param $top
|
|
6786
7048
|
* @param $orderby
|
|
6787
7049
|
* @param $filter
|
|
6788
|
-
* @param $search
|
|
6789
7050
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6790
7051
|
* @param reportProgress flag to report request and response progress.
|
|
6791
7052
|
* @param options additional options
|
|
6792
7053
|
*/
|
|
6793
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7054
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6794
7055
|
httpHeaderAccept?: 'application/json';
|
|
6795
7056
|
context?: HttpContext;
|
|
6796
7057
|
transferCache?: boolean;
|
|
6797
7058
|
}): Observable<SalesOrderItems>;
|
|
6798
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7059
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6799
7060
|
httpHeaderAccept?: 'application/json';
|
|
6800
7061
|
context?: HttpContext;
|
|
6801
7062
|
transferCache?: boolean;
|
|
6802
7063
|
}): Observable<HttpResponse<SalesOrderItems>>;
|
|
6803
|
-
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string,
|
|
7064
|
+
getSalesOrderItems(id: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6804
7065
|
httpHeaderAccept?: 'application/json';
|
|
6805
7066
|
context?: HttpContext;
|
|
6806
7067
|
transferCache?: boolean;
|
|
@@ -9433,7 +9694,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
9433
9694
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
9434
9695
|
}
|
|
9435
9696
|
|
|
9436
|
-
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
9697
|
+
declare const APIS: (typeof AddressesService | typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof ContactsService | typeof CountRecordsService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SalesOrderItemsService | typeof SalesOrdersService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
9437
9698
|
|
|
9438
9699
|
/**
|
|
9439
9700
|
* Wms.API.Client
|
|
@@ -9749,5 +10010,5 @@ declare class ApiModule {
|
|
|
9749
10010
|
|
|
9750
10011
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
9751
10012
|
|
|
9752
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
9753
|
-
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|
|
10013
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
10014
|
+
export type { AddressView, Addresses, ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountRecords, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|