@indigina/wms-api 0.0.86 → 0.0.88
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 +69 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +30 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.88
|
|
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.88 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -2553,6 +2553,73 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
2553
2553
|
type: Optional
|
|
2554
2554
|
}] }] });
|
|
2555
2555
|
|
|
2556
|
+
/**
|
|
2557
|
+
* Wms.API.Client
|
|
2558
|
+
*
|
|
2559
|
+
*
|
|
2560
|
+
*
|
|
2561
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2562
|
+
* https://openapi-generator.tech
|
|
2563
|
+
* Do not edit the class manually.
|
|
2564
|
+
*/
|
|
2565
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
2566
|
+
class PendoService extends BaseService {
|
|
2567
|
+
httpClient;
|
|
2568
|
+
constructor(httpClient, basePath, configuration) {
|
|
2569
|
+
super(basePath, configuration);
|
|
2570
|
+
this.httpClient = httpClient;
|
|
2571
|
+
}
|
|
2572
|
+
getPendoApiKey(observe = 'body', reportProgress = false, options) {
|
|
2573
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2574
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2575
|
+
'application/json'
|
|
2576
|
+
]);
|
|
2577
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2578
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2579
|
+
}
|
|
2580
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2581
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2582
|
+
let responseType_ = 'json';
|
|
2583
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2584
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2585
|
+
responseType_ = 'text';
|
|
2586
|
+
}
|
|
2587
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2588
|
+
responseType_ = 'json';
|
|
2589
|
+
}
|
|
2590
|
+
else {
|
|
2591
|
+
responseType_ = 'blob';
|
|
2592
|
+
}
|
|
2593
|
+
}
|
|
2594
|
+
let localVarPath = `/pendo/api-key`;
|
|
2595
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2596
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
2597
|
+
context: localVarHttpContext,
|
|
2598
|
+
responseType: responseType_,
|
|
2599
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2600
|
+
headers: localVarHeaders,
|
|
2601
|
+
observe: observe,
|
|
2602
|
+
transferCache: localVarTransferCache,
|
|
2603
|
+
reportProgress: reportProgress
|
|
2604
|
+
});
|
|
2605
|
+
}
|
|
2606
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: PendoService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2607
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: PendoService, providedIn: 'root' });
|
|
2608
|
+
}
|
|
2609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: PendoService, decorators: [{
|
|
2610
|
+
type: Injectable,
|
|
2611
|
+
args: [{
|
|
2612
|
+
providedIn: 'root'
|
|
2613
|
+
}]
|
|
2614
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2615
|
+
type: Optional
|
|
2616
|
+
}, {
|
|
2617
|
+
type: Inject,
|
|
2618
|
+
args: [BASE_PATH]
|
|
2619
|
+
}] }, { type: Configuration, decorators: [{
|
|
2620
|
+
type: Optional
|
|
2621
|
+
}] }] });
|
|
2622
|
+
|
|
2556
2623
|
/**
|
|
2557
2624
|
* Wms.API.Client
|
|
2558
2625
|
*
|
|
@@ -4549,7 +4616,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
4549
4616
|
type: Optional
|
|
4550
4617
|
}] }] });
|
|
4551
4618
|
|
|
4552
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CompaniesService, DcsService, DeliveriesService, DeliveryItemsService, DispatchItemsService, DispatchesService, HealthService, NotesService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService];
|
|
4619
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CompaniesService, DcsService, DeliveriesService, DeliveryItemsService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService];
|
|
4553
4620
|
|
|
4554
4621
|
/**
|
|
4555
4622
|
* Wms.API.Client
|
|
@@ -5088,5 +5155,5 @@ function provideApi(configOrBasePath) {
|
|
|
5088
5155
|
* Generated bundle index. Do not edit.
|
|
5089
5156
|
*/
|
|
5090
5157
|
|
|
5091
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
5158
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchItemsService, DispatchesService, HealthService, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
5092
5159
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|