@indigina/wms-api 0.0.176 → 0.0.177

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.176
1
+ # @indigina/wms-api@0.0.177
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.176 --save
27
+ npm install @indigina/wms-api@0.0.177 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -2430,6 +2430,211 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
2430
2430
  type: Optional
2431
2431
  }] }] });
2432
2432
 
2433
+ /**
2434
+ * Wms.API.Client
2435
+ *
2436
+ *
2437
+ *
2438
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2439
+ * https://openapi-generator.tech
2440
+ * Do not edit the class manually.
2441
+ */
2442
+ /* tslint:disable:no-unused-variable member-ordering */
2443
+ class CountRecordsService extends BaseService {
2444
+ httpClient;
2445
+ constructor(httpClient, basePath, configuration) {
2446
+ super(basePath, configuration);
2447
+ this.httpClient = httpClient;
2448
+ }
2449
+ cancelCountRecords(ids, observe = 'body', reportProgress = false, options) {
2450
+ if (ids === null || ids === undefined) {
2451
+ throw new Error('Required parameter ids was null or undefined when calling cancelCountRecords.');
2452
+ }
2453
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2454
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'ids', ids, QueryParamStyle.Form, true);
2455
+ let localVarHeaders = this.defaultHeaders;
2456
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
2457
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2458
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2459
+ }
2460
+ const localVarHttpContext = options?.context ?? new HttpContext();
2461
+ const localVarTransferCache = options?.transferCache ?? true;
2462
+ let responseType_ = 'json';
2463
+ if (localVarHttpHeaderAcceptSelected) {
2464
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2465
+ responseType_ = 'text';
2466
+ }
2467
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2468
+ responseType_ = 'json';
2469
+ }
2470
+ else {
2471
+ responseType_ = 'blob';
2472
+ }
2473
+ }
2474
+ let localVarPath = `/CountRecords/cancel`;
2475
+ const { basePath, withCredentials } = this.configuration;
2476
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
2477
+ context: localVarHttpContext,
2478
+ params: localVarQueryParameters.toHttpParams(),
2479
+ responseType: responseType_,
2480
+ ...(withCredentials ? { withCredentials } : {}),
2481
+ headers: localVarHeaders,
2482
+ observe: observe,
2483
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2484
+ reportProgress: reportProgress
2485
+ });
2486
+ }
2487
+ getCountRecordClients(statusGroup, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2488
+ if (statusGroup === null || statusGroup === undefined) {
2489
+ throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecordClients.');
2490
+ }
2491
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2492
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2493
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2494
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2495
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2496
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2497
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
2498
+ let localVarHeaders = this.defaultHeaders;
2499
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2500
+ 'application/json'
2501
+ ]);
2502
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2503
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2504
+ }
2505
+ const localVarHttpContext = options?.context ?? new HttpContext();
2506
+ const localVarTransferCache = options?.transferCache ?? true;
2507
+ let responseType_ = 'json';
2508
+ if (localVarHttpHeaderAcceptSelected) {
2509
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2510
+ responseType_ = 'text';
2511
+ }
2512
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2513
+ responseType_ = 'json';
2514
+ }
2515
+ else {
2516
+ responseType_ = 'blob';
2517
+ }
2518
+ }
2519
+ let localVarPath = `/CountRecords/clients`;
2520
+ const { basePath, withCredentials } = this.configuration;
2521
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2522
+ context: localVarHttpContext,
2523
+ params: localVarQueryParameters.toHttpParams(),
2524
+ responseType: responseType_,
2525
+ ...(withCredentials ? { withCredentials } : {}),
2526
+ headers: localVarHeaders,
2527
+ observe: observe,
2528
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2529
+ reportProgress: reportProgress
2530
+ });
2531
+ }
2532
+ getCountRecords(statusGroup, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2533
+ if (statusGroup === null || statusGroup === undefined) {
2534
+ throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecords.');
2535
+ }
2536
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2537
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2538
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2539
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2540
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2541
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2542
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
2543
+ let localVarHeaders = this.defaultHeaders;
2544
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2545
+ 'application/json'
2546
+ ]);
2547
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2548
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2549
+ }
2550
+ const localVarHttpContext = options?.context ?? new HttpContext();
2551
+ const localVarTransferCache = options?.transferCache ?? true;
2552
+ let responseType_ = 'json';
2553
+ if (localVarHttpHeaderAcceptSelected) {
2554
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2555
+ responseType_ = 'text';
2556
+ }
2557
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2558
+ responseType_ = 'json';
2559
+ }
2560
+ else {
2561
+ responseType_ = 'blob';
2562
+ }
2563
+ }
2564
+ let localVarPath = `/CountRecords`;
2565
+ const { basePath, withCredentials } = this.configuration;
2566
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2567
+ context: localVarHttpContext,
2568
+ params: localVarQueryParameters.toHttpParams(),
2569
+ responseType: responseType_,
2570
+ ...(withCredentials ? { withCredentials } : {}),
2571
+ headers: localVarHeaders,
2572
+ observe: observe,
2573
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2574
+ reportProgress: reportProgress
2575
+ });
2576
+ }
2577
+ getOperatorCounts(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
2578
+ if (id === null || id === undefined) {
2579
+ throw new Error('Required parameter id was null or undefined when calling getOperatorCounts.');
2580
+ }
2581
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
2582
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
2583
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
2584
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
2585
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
2586
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
2587
+ let localVarHeaders = this.defaultHeaders;
2588
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
2589
+ 'application/json'
2590
+ ]);
2591
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
2592
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
2593
+ }
2594
+ const localVarHttpContext = options?.context ?? new HttpContext();
2595
+ const localVarTransferCache = options?.transferCache ?? true;
2596
+ let responseType_ = 'json';
2597
+ if (localVarHttpHeaderAcceptSelected) {
2598
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
2599
+ responseType_ = 'text';
2600
+ }
2601
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
2602
+ responseType_ = 'json';
2603
+ }
2604
+ else {
2605
+ responseType_ = 'blob';
2606
+ }
2607
+ }
2608
+ let localVarPath = `/CountRecords/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/operatorCounts`;
2609
+ const { basePath, withCredentials } = this.configuration;
2610
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
2611
+ context: localVarHttpContext,
2612
+ params: localVarQueryParameters.toHttpParams(),
2613
+ responseType: responseType_,
2614
+ ...(withCredentials ? { withCredentials } : {}),
2615
+ headers: localVarHeaders,
2616
+ observe: observe,
2617
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
2618
+ reportProgress: reportProgress
2619
+ });
2620
+ }
2621
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2622
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, providedIn: 'root' });
2623
+ }
2624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CountRecordsService, decorators: [{
2625
+ type: Injectable,
2626
+ args: [{
2627
+ providedIn: 'root'
2628
+ }]
2629
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
2630
+ type: Optional
2631
+ }, {
2632
+ type: Inject,
2633
+ args: [BASE_PATH]
2634
+ }] }, { type: Configuration, decorators: [{
2635
+ type: Optional
2636
+ }] }] });
2637
+
2433
2638
  /**
2434
2639
  * Wms.API.Client
2435
2640
  *
@@ -9978,7 +10183,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
9978
10183
  type: Optional
9979
10184
  }] }] });
9980
10185
 
9981
- const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
10186
+ const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
9982
10187
 
9983
10188
  /**
9984
10189
  * Wms.API.Client
@@ -10263,6 +10468,55 @@ const CompanyType = {
10263
10468
  * Do not edit the class manually.
10264
10469
  */
10265
10470
 
10471
+ /**
10472
+ * Wms.API.Client
10473
+ *
10474
+ *
10475
+ *
10476
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10477
+ * https://openapi-generator.tech
10478
+ * Do not edit the class manually.
10479
+ */
10480
+ const CountStatusGroup = {
10481
+ Open: 'Open',
10482
+ Closed: 'Closed'
10483
+ };
10484
+
10485
+ /**
10486
+ * Wms.API.Client
10487
+ *
10488
+ *
10489
+ *
10490
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10491
+ * https://openapi-generator.tech
10492
+ * Do not edit the class manually.
10493
+ */
10494
+ const CountStatuses = {
10495
+ Any: 'Any',
10496
+ Active: 'Active',
10497
+ Complete: 'Complete',
10498
+ Recount: 'Recount',
10499
+ Cancel: 'Cancel'
10500
+ };
10501
+
10502
+ /**
10503
+ * Wms.API.Client
10504
+ *
10505
+ *
10506
+ *
10507
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10508
+ * https://openapi-generator.tech
10509
+ * Do not edit the class manually.
10510
+ */
10511
+ const CountType = {
10512
+ Any: 'Any',
10513
+ MovementException: 'MovementException',
10514
+ PickDenial: 'PickDenial',
10515
+ ContinuousInventory: 'ContinuousInventory',
10516
+ PlannedCount: 'PlannedCount',
10517
+ FreeCount: 'FreeCount'
10518
+ };
10519
+
10266
10520
  /**
10267
10521
  * Wms.API.Client
10268
10522
  *
@@ -11289,5 +11543,5 @@ function provideApi(configOrBasePath) {
11289
11543
  * Generated bundle index. Do not edit.
11290
11544
  */
11291
11545
 
11292
- export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
11546
+ export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SalesOrderItemsService, SalesOrdersService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
11293
11547
  //# sourceMappingURL=indigina-wms-api.mjs.map