@indigina/wms-api 0.0.183 → 0.0.184
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.
|
|
1
|
+
# @indigina/wms-api@0.0.184
|
|
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.
|
|
27
|
+
npm install @indigina/wms-api@0.0.184 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -1001,6 +1001,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
1001
1001
|
type: Optional
|
|
1002
1002
|
}] }] });
|
|
1003
1003
|
|
|
1004
|
+
/**
|
|
1005
|
+
* Wms.API.Client
|
|
1006
|
+
*
|
|
1007
|
+
*
|
|
1008
|
+
*
|
|
1009
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1010
|
+
* https://openapi-generator.tech
|
|
1011
|
+
* Do not edit the class manually.
|
|
1012
|
+
*/
|
|
1013
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
1014
|
+
class CarrierServiceTypesService extends BaseService {
|
|
1015
|
+
httpClient;
|
|
1016
|
+
constructor(httpClient, basePath, configuration) {
|
|
1017
|
+
super(basePath, configuration);
|
|
1018
|
+
this.httpClient = httpClient;
|
|
1019
|
+
}
|
|
1020
|
+
getCarrierServiceTypes(carrierId, observe = 'body', reportProgress = false, options) {
|
|
1021
|
+
if (carrierId === null || carrierId === undefined) {
|
|
1022
|
+
throw new Error('Required parameter carrierId was null or undefined when calling getCarrierServiceTypes.');
|
|
1023
|
+
}
|
|
1024
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1025
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1026
|
+
'application/json'
|
|
1027
|
+
]);
|
|
1028
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1029
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1030
|
+
}
|
|
1031
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1032
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1033
|
+
let responseType_ = 'json';
|
|
1034
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1035
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1036
|
+
responseType_ = 'text';
|
|
1037
|
+
}
|
|
1038
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1039
|
+
responseType_ = 'json';
|
|
1040
|
+
}
|
|
1041
|
+
else {
|
|
1042
|
+
responseType_ = 'blob';
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
let localVarPath = `/carrierServiceTypes/${this.configuration.encodeParam({ name: "carrierId", value: carrierId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}`;
|
|
1046
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1047
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1048
|
+
context: localVarHttpContext,
|
|
1049
|
+
responseType: responseType_,
|
|
1050
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1051
|
+
headers: localVarHeaders,
|
|
1052
|
+
observe: observe,
|
|
1053
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1054
|
+
reportProgress: reportProgress
|
|
1055
|
+
});
|
|
1056
|
+
}
|
|
1057
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CarrierServiceTypesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1058
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CarrierServiceTypesService, providedIn: 'root' });
|
|
1059
|
+
}
|
|
1060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: CarrierServiceTypesService, decorators: [{
|
|
1061
|
+
type: Injectable,
|
|
1062
|
+
args: [{
|
|
1063
|
+
providedIn: 'root'
|
|
1064
|
+
}]
|
|
1065
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1066
|
+
type: Optional
|
|
1067
|
+
}, {
|
|
1068
|
+
type: Inject,
|
|
1069
|
+
args: [BASE_PATH]
|
|
1070
|
+
}] }, { type: Configuration, decorators: [{
|
|
1071
|
+
type: Optional
|
|
1072
|
+
}] }] });
|
|
1073
|
+
|
|
1004
1074
|
/**
|
|
1005
1075
|
* Wms.API.Client
|
|
1006
1076
|
*
|
|
@@ -10994,7 +11064,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
10994
11064
|
type: Optional
|
|
10995
11065
|
}] }] });
|
|
10996
11066
|
|
|
10997
|
-
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountContinuousInventoryService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PackageTypesService, 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];
|
|
11067
|
+
const APIS = [AddressesService, AnalyticsService, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, ContactsService, CountContinuousInventoryService, CountRecordsService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PackageTypesService, 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];
|
|
10998
11068
|
|
|
10999
11069
|
/**
|
|
11000
11070
|
* Wms.API.Client
|
|
@@ -12458,5 +12528,5 @@ function provideApi(configOrBasePath) {
|
|
|
12458
12528
|
* Generated bundle index. Do not edit.
|
|
12459
12529
|
*/
|
|
12460
12530
|
|
|
12461
|
-
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, CountContinuousInventoryService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, 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, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
12531
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordsService, CountStatusGroup, CountStatuses, CountType, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackageTypesService, 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, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
12462
12532
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|