@indigina/wms-api 0.0.87 → 0.0.89
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/index.d.ts
CHANGED
|
@@ -1375,6 +1375,7 @@ interface DeliveryItemView {
|
|
|
1375
1375
|
grnQuantity: number;
|
|
1376
1376
|
putAway: boolean;
|
|
1377
1377
|
returnReason: string;
|
|
1378
|
+
reasonDescription: string;
|
|
1378
1379
|
qcPercentage: number | null;
|
|
1379
1380
|
qcControlled: boolean;
|
|
1380
1381
|
bestBeforeDate: string | null;
|
|
@@ -2260,6 +2261,33 @@ declare class NotesService extends BaseService {
|
|
|
2260
2261
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
2261
2262
|
}
|
|
2262
2263
|
|
|
2264
|
+
declare class PendoService extends BaseService {
|
|
2265
|
+
protected httpClient: HttpClient;
|
|
2266
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2267
|
+
/**
|
|
2268
|
+
* Retrieve the Pendo API key
|
|
2269
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2270
|
+
* @param reportProgress flag to report request and response progress.
|
|
2271
|
+
*/
|
|
2272
|
+
getPendoApiKey(observe?: 'body', reportProgress?: boolean, options?: {
|
|
2273
|
+
httpHeaderAccept?: 'application/json';
|
|
2274
|
+
context?: HttpContext;
|
|
2275
|
+
transferCache?: boolean;
|
|
2276
|
+
}): Observable<string>;
|
|
2277
|
+
getPendoApiKey(observe?: 'response', reportProgress?: boolean, options?: {
|
|
2278
|
+
httpHeaderAccept?: 'application/json';
|
|
2279
|
+
context?: HttpContext;
|
|
2280
|
+
transferCache?: boolean;
|
|
2281
|
+
}): Observable<HttpResponse<string>>;
|
|
2282
|
+
getPendoApiKey(observe?: 'events', reportProgress?: boolean, options?: {
|
|
2283
|
+
httpHeaderAccept?: 'application/json';
|
|
2284
|
+
context?: HttpContext;
|
|
2285
|
+
transferCache?: boolean;
|
|
2286
|
+
}): Observable<HttpEvent<string>>;
|
|
2287
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PendoService, [null, { optional: true; }, { optional: true; }]>;
|
|
2288
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PendoService>;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2263
2291
|
/**
|
|
2264
2292
|
* Wms.API.Client
|
|
2265
2293
|
*
|
|
@@ -3764,7 +3792,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
3764
3792
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
3765
3793
|
}
|
|
3766
3794
|
|
|
3767
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
3795
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
|
|
3768
3796
|
|
|
3769
3797
|
/**
|
|
3770
3798
|
* Wms.API.Client
|
|
@@ -3896,5 +3924,5 @@ declare class ApiModule {
|
|
|
3896
3924
|
|
|
3897
3925
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
3898
3926
|
|
|
3899
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, CurrentUser, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
3927
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, CurrentUser, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
|
|
3900
3928
|
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
|