@indigina/wms-api 0.0.155 → 0.0.156

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.156
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.156 --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
  *
@@ -8070,7 +8272,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
8070
8272
  type: Optional
8071
8273
  }] }] });
8072
8274
 
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];
8275
+ 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];
8276
+
8277
+ /**
8278
+ * Wms.API.Client
8279
+ *
8280
+ *
8281
+ *
8282
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8283
+ * https://openapi-generator.tech
8284
+ * Do not edit the class manually.
8285
+ */
8074
8286
 
8075
8287
  /**
8076
8288
  * Wms.API.Client
@@ -8961,6 +9173,16 @@ const UserCompanyType = {
8961
9173
  * Do not edit the class manually.
8962
9174
  */
8963
9175
 
9176
+ /**
9177
+ * Wms.API.Client
9178
+ *
9179
+ *
9180
+ *
9181
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9182
+ * https://openapi-generator.tech
9183
+ * Do not edit the class manually.
9184
+ */
9185
+
8964
9186
  /**
8965
9187
  * Wms.API.Client
8966
9188
  *
@@ -9124,5 +9346,5 @@ function provideApi(configOrBasePath) {
9124
9346
  * Generated bundle index. Do not edit.
9125
9347
  */
9126
9348
 
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 };
9349
+ 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
9350
  //# sourceMappingURL=indigina-wms-api.mjs.map