@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/index.d.ts
CHANGED
|
@@ -2260,6 +2260,33 @@ declare class NotesService extends BaseService {
|
|
|
2260
2260
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>;
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
|
+
declare class PendoService extends BaseService {
|
|
2264
|
+
protected httpClient: HttpClient;
|
|
2265
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2266
|
+
/**
|
|
2267
|
+
* Retrieve the Pendo API key
|
|
2268
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2269
|
+
* @param reportProgress flag to report request and response progress.
|
|
2270
|
+
*/
|
|
2271
|
+
getPendoApiKey(observe?: 'body', reportProgress?: boolean, options?: {
|
|
2272
|
+
httpHeaderAccept?: 'application/json';
|
|
2273
|
+
context?: HttpContext;
|
|
2274
|
+
transferCache?: boolean;
|
|
2275
|
+
}): Observable<string>;
|
|
2276
|
+
getPendoApiKey(observe?: 'response', reportProgress?: boolean, options?: {
|
|
2277
|
+
httpHeaderAccept?: 'application/json';
|
|
2278
|
+
context?: HttpContext;
|
|
2279
|
+
transferCache?: boolean;
|
|
2280
|
+
}): Observable<HttpResponse<string>>;
|
|
2281
|
+
getPendoApiKey(observe?: 'events', reportProgress?: boolean, options?: {
|
|
2282
|
+
httpHeaderAccept?: 'application/json';
|
|
2283
|
+
context?: HttpContext;
|
|
2284
|
+
transferCache?: boolean;
|
|
2285
|
+
}): Observable<HttpEvent<string>>;
|
|
2286
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PendoService, [null, { optional: true; }, { optional: true; }]>;
|
|
2287
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PendoService>;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2263
2290
|
/**
|
|
2264
2291
|
* Wms.API.Client
|
|
2265
2292
|
*
|
|
@@ -2271,6 +2298,7 @@ declare class NotesService extends BaseService {
|
|
|
2271
2298
|
*/
|
|
2272
2299
|
interface UserPermissions {
|
|
2273
2300
|
permissions: Array<string>;
|
|
2301
|
+
wms: Array<string>;
|
|
2274
2302
|
}
|
|
2275
2303
|
|
|
2276
2304
|
declare class PermissionsService extends BaseService {
|
|
@@ -3763,7 +3791,7 @@ declare class UsersInternalService extends BaseService {
|
|
|
3763
3791
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
|
|
3764
3792
|
}
|
|
3765
3793
|
|
|
3766
|
-
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)[];
|
|
3794
|
+
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)[];
|
|
3767
3795
|
|
|
3768
3796
|
/**
|
|
3769
3797
|
* Wms.API.Client
|
|
@@ -3895,5 +3923,5 @@ declare class ApiModule {
|
|
|
3895
3923
|
|
|
3896
3924
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
3897
3925
|
|
|
3898
|
-
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 };
|
|
3926
|
+
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 };
|
|
3899
3927
|
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 };
|