@indigina/wms-api 0.0.178 → 0.0.180
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 +62 -38
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +76 -32
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.180
|
|
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.180 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -2250,10 +2250,7 @@ class CompaniesService extends BaseService {
|
|
|
2250
2250
|
reportProgress: reportProgress
|
|
2251
2251
|
});
|
|
2252
2252
|
}
|
|
2253
|
-
|
|
2254
|
-
if (companyType === null || companyType === undefined) {
|
|
2255
|
-
throw new Error('Required parameter companyType was null or undefined when calling getCompaniesByCompanyType.');
|
|
2256
|
-
}
|
|
2253
|
+
getShipToCompanies($skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
2257
2254
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2258
2255
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2259
2256
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
@@ -2280,7 +2277,7 @@ class CompaniesService extends BaseService {
|
|
|
2280
2277
|
responseType_ = 'blob';
|
|
2281
2278
|
}
|
|
2282
2279
|
}
|
|
2283
|
-
let localVarPath = `/companies
|
|
2280
|
+
let localVarPath = `/companies/ship-to`;
|
|
2284
2281
|
const { basePath, withCredentials } = this.configuration;
|
|
2285
2282
|
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2286
2283
|
context: localVarHttpContext,
|
|
@@ -2570,6 +2567,51 @@ class CountRecordsService extends BaseService {
|
|
|
2570
2567
|
reportProgress: reportProgress
|
|
2571
2568
|
});
|
|
2572
2569
|
}
|
|
2570
|
+
getCountRecordsFromIndex(statusGroup, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
2571
|
+
if (statusGroup === null || statusGroup === undefined) {
|
|
2572
|
+
throw new Error('Required parameter statusGroup was null or undefined when calling getCountRecordsFromIndex.');
|
|
2573
|
+
}
|
|
2574
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
2575
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
2576
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
2577
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
2578
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
2579
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
2580
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'statusGroup', statusGroup, QueryParamStyle.Form, true);
|
|
2581
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2582
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2583
|
+
'application/json'
|
|
2584
|
+
]);
|
|
2585
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2586
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2587
|
+
}
|
|
2588
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2589
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2590
|
+
let responseType_ = 'json';
|
|
2591
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2592
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2593
|
+
responseType_ = 'text';
|
|
2594
|
+
}
|
|
2595
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2596
|
+
responseType_ = 'json';
|
|
2597
|
+
}
|
|
2598
|
+
else {
|
|
2599
|
+
responseType_ = 'blob';
|
|
2600
|
+
}
|
|
2601
|
+
}
|
|
2602
|
+
let localVarPath = `/CountRecords/search`;
|
|
2603
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2604
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2605
|
+
context: localVarHttpContext,
|
|
2606
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
2607
|
+
responseType: responseType_,
|
|
2608
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2609
|
+
headers: localVarHeaders,
|
|
2610
|
+
observe: observe,
|
|
2611
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2612
|
+
reportProgress: reportProgress
|
|
2613
|
+
});
|
|
2614
|
+
}
|
|
2573
2615
|
getOperatorCounts(id, $skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
2574
2616
|
if (id === null || id === undefined) {
|
|
2575
2617
|
throw new Error('Required parameter id was null or undefined when calling getOperatorCounts.');
|
|
@@ -10420,38 +10462,6 @@ const ClusterPackWaveGridTypes = {
|
|
|
10420
10462
|
* Do not edit the class manually.
|
|
10421
10463
|
*/
|
|
10422
10464
|
|
|
10423
|
-
/**
|
|
10424
|
-
* Wms.API.Client
|
|
10425
|
-
*
|
|
10426
|
-
*
|
|
10427
|
-
*
|
|
10428
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10429
|
-
* https://openapi-generator.tech
|
|
10430
|
-
* Do not edit the class manually.
|
|
10431
|
-
*/
|
|
10432
|
-
const CompanyType = {
|
|
10433
|
-
Carrier: 'Carrier',
|
|
10434
|
-
TransportServices: 'TransportServices',
|
|
10435
|
-
Company: 'Company',
|
|
10436
|
-
Vendor: 'Vendor',
|
|
10437
|
-
Customer: 'Customer',
|
|
10438
|
-
ShippingAgent: 'ShippingAgent',
|
|
10439
|
-
ShipFrom: 'ShipFrom',
|
|
10440
|
-
OriginAgent: 'OriginAgent',
|
|
10441
|
-
ShipTo: 'ShipTo',
|
|
10442
|
-
BuyingAgent: 'BuyingAgent',
|
|
10443
|
-
Seller: 'Seller',
|
|
10444
|
-
DistributionCentre: 'DistributionCentre',
|
|
10445
|
-
Client: 'Client',
|
|
10446
|
-
SysAdmin: 'SysAdmin',
|
|
10447
|
-
LocalAgent: 'LocalAgent',
|
|
10448
|
-
CarrierProvider: 'CarrierProvider',
|
|
10449
|
-
WholesaleCustomer: 'WholesaleCustomer',
|
|
10450
|
-
WebCustomer: 'WebCustomer',
|
|
10451
|
-
DestinationAgent: 'DestinationAgent',
|
|
10452
|
-
ForwardingAgent: 'ForwardingAgent'
|
|
10453
|
-
};
|
|
10454
|
-
|
|
10455
10465
|
/**
|
|
10456
10466
|
* Wms.API.Client
|
|
10457
10467
|
*
|
|
@@ -11229,6 +11239,20 @@ const ReprintStatuses = {
|
|
|
11229
11239
|
* Do not edit the class manually.
|
|
11230
11240
|
*/
|
|
11231
11241
|
|
|
11242
|
+
/**
|
|
11243
|
+
* Wms.API.Client
|
|
11244
|
+
*
|
|
11245
|
+
*
|
|
11246
|
+
*
|
|
11247
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11248
|
+
* https://openapi-generator.tech
|
|
11249
|
+
* Do not edit the class manually.
|
|
11250
|
+
*/
|
|
11251
|
+
const ShipToSubtype = {
|
|
11252
|
+
Company: 'Company',
|
|
11253
|
+
Station: 'Station'
|
|
11254
|
+
};
|
|
11255
|
+
|
|
11232
11256
|
/**
|
|
11233
11257
|
* Wms.API.Client
|
|
11234
11258
|
*
|
|
@@ -11537,5 +11561,5 @@ function provideApi(configOrBasePath) {
|
|
|
11537
11561
|
* Generated bundle index. Do not edit.
|
|
11538
11562
|
*/
|
|
11539
11563
|
|
|
11540
|
-
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService,
|
|
11564
|
+
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, 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, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
11541
11565
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|