@indigina/wms-api 0.0.155 → 0.0.157

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.155
1
+ # @indigina/wms-api@0.0.157
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.155 --save
27
+ npm install @indigina/wms-api@0.0.157 --save
28
28
  ```
29
29
 
30
30
  _without publishing (not recommended):_
@@ -1376,6 +1376,208 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
1376
1376
  type: Optional
1377
1377
  }] }] });
1378
1378
 
1379
+ /**
1380
+ * Wms.API.Client
1381
+ *
1382
+ *
1383
+ *
1384
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1385
+ * https://openapi-generator.tech
1386
+ * Do not edit the class manually.
1387
+ */
1388
+ /* tslint:disable:no-unused-variable member-ordering */
1389
+ class ClientWaveConfigurationsService extends BaseService {
1390
+ httpClient;
1391
+ constructor(httpClient, basePath, configuration) {
1392
+ super(basePath, configuration);
1393
+ this.httpClient = httpClient;
1394
+ }
1395
+ deleteClientWaveConfiguration(id, observe = 'body', reportProgress = false, options) {
1396
+ if (id === null || id === undefined) {
1397
+ throw new Error('Required parameter id was null or undefined when calling deleteClientWaveConfiguration.');
1398
+ }
1399
+ let localVarHeaders = this.defaultHeaders;
1400
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
1401
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1402
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1403
+ }
1404
+ const localVarHttpContext = options?.context ?? new HttpContext();
1405
+ const localVarTransferCache = options?.transferCache ?? true;
1406
+ let responseType_ = 'json';
1407
+ if (localVarHttpHeaderAcceptSelected) {
1408
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1409
+ responseType_ = 'text';
1410
+ }
1411
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1412
+ responseType_ = 'json';
1413
+ }
1414
+ else {
1415
+ responseType_ = 'blob';
1416
+ }
1417
+ }
1418
+ let localVarPath = `/clientWaveConfigurations/${this.configuration.encodeParam({ name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
1419
+ const { basePath, withCredentials } = this.configuration;
1420
+ return this.httpClient.request('delete', `${basePath}${localVarPath}`, {
1421
+ context: localVarHttpContext,
1422
+ responseType: responseType_,
1423
+ ...(withCredentials ? { withCredentials } : {}),
1424
+ headers: localVarHeaders,
1425
+ observe: observe,
1426
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
1427
+ reportProgress: reportProgress
1428
+ });
1429
+ }
1430
+ getClientWaveConfigurations(clientId, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
1431
+ if (clientId === null || clientId === undefined) {
1432
+ throw new Error('Required parameter clientId was null or undefined when calling getClientWaveConfigurations.');
1433
+ }
1434
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
1435
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'clientId', clientId, QueryParamStyle.Form, true);
1436
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
1437
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
1438
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
1439
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
1440
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$search', $search, QueryParamStyle.Form, true);
1441
+ let localVarHeaders = this.defaultHeaders;
1442
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1443
+ 'application/json'
1444
+ ]);
1445
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1446
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1447
+ }
1448
+ const localVarHttpContext = options?.context ?? new HttpContext();
1449
+ const localVarTransferCache = options?.transferCache ?? true;
1450
+ let responseType_ = 'json';
1451
+ if (localVarHttpHeaderAcceptSelected) {
1452
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1453
+ responseType_ = 'text';
1454
+ }
1455
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1456
+ responseType_ = 'json';
1457
+ }
1458
+ else {
1459
+ responseType_ = 'blob';
1460
+ }
1461
+ }
1462
+ let localVarPath = `/clientWaveConfigurations`;
1463
+ const { basePath, withCredentials } = this.configuration;
1464
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
1465
+ context: localVarHttpContext,
1466
+ params: localVarQueryParameters.toHttpParams(),
1467
+ responseType: responseType_,
1468
+ ...(withCredentials ? { withCredentials } : {}),
1469
+ headers: localVarHeaders,
1470
+ observe: observe,
1471
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
1472
+ reportProgress: reportProgress
1473
+ });
1474
+ }
1475
+ getClientWaveConfigurationsFromIndex(clientId, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
1476
+ if (clientId === null || clientId === undefined) {
1477
+ throw new Error('Required parameter clientId was null or undefined when calling getClientWaveConfigurationsFromIndex.');
1478
+ }
1479
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
1480
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'clientId', clientId, QueryParamStyle.Form, true);
1481
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
1482
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
1483
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
1484
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
1485
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
1486
+ let localVarHeaders = this.defaultHeaders;
1487
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
1488
+ 'application/json'
1489
+ ]);
1490
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1491
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1492
+ }
1493
+ const localVarHttpContext = options?.context ?? new HttpContext();
1494
+ const localVarTransferCache = options?.transferCache ?? true;
1495
+ let responseType_ = 'json';
1496
+ if (localVarHttpHeaderAcceptSelected) {
1497
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1498
+ responseType_ = 'text';
1499
+ }
1500
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1501
+ responseType_ = 'json';
1502
+ }
1503
+ else {
1504
+ responseType_ = 'blob';
1505
+ }
1506
+ }
1507
+ let localVarPath = `/clientWaveConfigurations/search`;
1508
+ const { basePath, withCredentials } = this.configuration;
1509
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
1510
+ context: localVarHttpContext,
1511
+ params: localVarQueryParameters.toHttpParams(),
1512
+ responseType: responseType_,
1513
+ ...(withCredentials ? { withCredentials } : {}),
1514
+ headers: localVarHeaders,
1515
+ observe: observe,
1516
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
1517
+ reportProgress: reportProgress
1518
+ });
1519
+ }
1520
+ resequenceClientWaveConfigurations(resequenceClientWaveConfigurationsCommand, observe = 'body', reportProgress = false, options) {
1521
+ if (resequenceClientWaveConfigurationsCommand === null || resequenceClientWaveConfigurationsCommand === undefined) {
1522
+ throw new Error('Required parameter resequenceClientWaveConfigurationsCommand was null or undefined when calling resequenceClientWaveConfigurations.');
1523
+ }
1524
+ let localVarHeaders = this.defaultHeaders;
1525
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
1526
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1527
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
1528
+ }
1529
+ const localVarHttpContext = options?.context ?? new HttpContext();
1530
+ const localVarTransferCache = options?.transferCache ?? true;
1531
+ // to determine the Content-Type header
1532
+ const consumes = [
1533
+ 'application/json'
1534
+ ];
1535
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1536
+ if (httpContentTypeSelected !== undefined) {
1537
+ localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
1538
+ }
1539
+ let responseType_ = 'json';
1540
+ if (localVarHttpHeaderAcceptSelected) {
1541
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
1542
+ responseType_ = 'text';
1543
+ }
1544
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1545
+ responseType_ = 'json';
1546
+ }
1547
+ else {
1548
+ responseType_ = 'blob';
1549
+ }
1550
+ }
1551
+ let localVarPath = `/clientWaveConfigurations/re-sequence`;
1552
+ const { basePath, withCredentials } = this.configuration;
1553
+ return this.httpClient.request('put', `${basePath}${localVarPath}`, {
1554
+ context: localVarHttpContext,
1555
+ body: resequenceClientWaveConfigurationsCommand,
1556
+ responseType: responseType_,
1557
+ ...(withCredentials ? { withCredentials } : {}),
1558
+ headers: localVarHeaders,
1559
+ observe: observe,
1560
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
1561
+ reportProgress: reportProgress
1562
+ });
1563
+ }
1564
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClientWaveConfigurationsService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1565
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClientWaveConfigurationsService, providedIn: 'root' });
1566
+ }
1567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClientWaveConfigurationsService, decorators: [{
1568
+ type: Injectable,
1569
+ args: [{
1570
+ providedIn: 'root'
1571
+ }]
1572
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
1573
+ type: Optional
1574
+ }, {
1575
+ type: Inject,
1576
+ args: [BASE_PATH]
1577
+ }] }, { type: Configuration, decorators: [{
1578
+ type: Optional
1579
+ }] }] });
1580
+
1379
1581
  /**
1380
1582
  * Wms.API.Client
1381
1583
  *
@@ -7534,6 +7736,50 @@ class WaveHistoryService extends BaseService {
7534
7736
  reportProgress: reportProgress
7535
7737
  });
7536
7738
  }
7739
+ getWavesByHistoryTypeFromIndex(waveHistoryType, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
7740
+ if (waveHistoryType === null || waveHistoryType === undefined) {
7741
+ throw new Error('Required parameter waveHistoryType was null or undefined when calling getWavesByHistoryTypeFromIndex.');
7742
+ }
7743
+ let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
7744
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
7745
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
7746
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
7747
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
7748
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
7749
+ let localVarHeaders = this.defaultHeaders;
7750
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
7751
+ 'application/json'
7752
+ ]);
7753
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
7754
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
7755
+ }
7756
+ const localVarHttpContext = options?.context ?? new HttpContext();
7757
+ const localVarTransferCache = options?.transferCache ?? true;
7758
+ let responseType_ = 'json';
7759
+ if (localVarHttpHeaderAcceptSelected) {
7760
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
7761
+ responseType_ = 'text';
7762
+ }
7763
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
7764
+ responseType_ = 'json';
7765
+ }
7766
+ else {
7767
+ responseType_ = 'blob';
7768
+ }
7769
+ }
7770
+ let localVarPath = `/waveHistories/${this.configuration.encodeParam({ name: "waveHistoryType", value: waveHistoryType, in: "path", style: "simple", explode: false, dataType: "WaveHistoryTypes", dataFormat: undefined })}/search`;
7771
+ const { basePath, withCredentials } = this.configuration;
7772
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
7773
+ context: localVarHttpContext,
7774
+ params: localVarQueryParameters.toHttpParams(),
7775
+ responseType: responseType_,
7776
+ ...(withCredentials ? { withCredentials } : {}),
7777
+ headers: localVarHeaders,
7778
+ observe: observe,
7779
+ ...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
7780
+ reportProgress: reportProgress
7781
+ });
7782
+ }
7537
7783
  unlockWave(waveId, observe = 'body', reportProgress = false, options) {
7538
7784
  if (waveId === null || waveId === undefined) {
7539
7785
  throw new Error('Required parameter waveId was null or undefined when calling unlockWave.');
@@ -8070,7 +8316,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
8070
8316
  type: Optional
8071
8317
  }] }] });
8072
8318
 
8073
- const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
8319
+ const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WavesByPickReleaseIdService];
8320
+
8321
+ /**
8322
+ * Wms.API.Client
8323
+ *
8324
+ *
8325
+ *
8326
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8327
+ * https://openapi-generator.tech
8328
+ * Do not edit the class manually.
8329
+ */
8074
8330
 
8075
8331
  /**
8076
8332
  * Wms.API.Client
@@ -8961,6 +9217,16 @@ const UserCompanyType = {
8961
9217
  * Do not edit the class manually.
8962
9218
  */
8963
9219
 
9220
+ /**
9221
+ * Wms.API.Client
9222
+ *
9223
+ *
9224
+ *
9225
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9226
+ * https://openapi-generator.tech
9227
+ * Do not edit the class manually.
9228
+ */
9229
+
8964
9230
  /**
8965
9231
  * Wms.API.Client
8966
9232
  *
@@ -9124,5 +9390,5 @@ function provideApi(configOrBasePath) {
9124
9390
  * Generated bundle index. Do not edit.
9125
9391
  */
9126
9392
 
9127
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
9393
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
9128
9394
  //# sourceMappingURL=indigina-wms-api.mjs.map