@indigina/wms-api 0.0.87 → 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/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
  *
@@ -3764,7 +3791,7 @@ declare class UsersInternalService extends BaseService {
3764
3791
  static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
3765
3792
  }
3766
3793
 
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)[];
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)[];
3768
3795
 
3769
3796
  /**
3770
3797
  * Wms.API.Client
@@ -3896,5 +3923,5 @@ declare class ApiModule {
3896
3923
 
3897
3924
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
3898
3925
 
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 };
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 };
3900
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.87",
3
+ "version": "0.0.88",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {