@indigina/wms-api 0.0.121 → 0.0.122

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.121",
3
+ "version": "0.0.122",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -3528,6 +3528,92 @@ declare class PermissionsService extends BaseService {
3528
3528
  static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
3529
3529
  }
3530
3530
 
3531
+ /**
3532
+ * Wms.API.Client
3533
+ *
3534
+ *
3535
+ *
3536
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3537
+ * https://openapi-generator.tech
3538
+ * Do not edit the class manually.
3539
+ */
3540
+ declare const PrintTypes: {
3541
+ readonly Label: "Label";
3542
+ readonly Document: "Document";
3543
+ readonly GiftMessageCard: "GiftMessageCard";
3544
+ readonly MultiTray: "MultiTray";
3545
+ };
3546
+ type PrintTypes = typeof PrintTypes[keyof typeof PrintTypes];
3547
+
3548
+ /**
3549
+ * Wms.API.Client
3550
+ *
3551
+ *
3552
+ *
3553
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3554
+ * https://openapi-generator.tech
3555
+ * Do not edit the class manually.
3556
+ */
3557
+
3558
+ interface PrinterView {
3559
+ id: number;
3560
+ printerName: string;
3561
+ printerDescription: string;
3562
+ printType: PrintTypes;
3563
+ sequence?: number | null;
3564
+ }
3565
+ declare namespace PrinterView {
3566
+ }
3567
+
3568
+ /**
3569
+ * Wms.API.Client
3570
+ *
3571
+ *
3572
+ *
3573
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3574
+ * https://openapi-generator.tech
3575
+ * Do not edit the class manually.
3576
+ */
3577
+
3578
+ interface Printers {
3579
+ total: number;
3580
+ data: Array<PrinterView>;
3581
+ }
3582
+
3583
+ declare class PrintersService extends BaseService {
3584
+ protected httpClient: HttpClient;
3585
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3586
+ /**
3587
+ * Getting printers
3588
+ * @endpoint get /printers
3589
+ * @param $skip
3590
+ * @param $top
3591
+ * @param $orderby
3592
+ * @param $filter
3593
+ * @param $search
3594
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3595
+ * @param reportProgress flag to report request and response progress.
3596
+ * @param options additional options
3597
+ */
3598
+ getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3599
+ httpHeaderAccept?: 'application/json';
3600
+ context?: HttpContext;
3601
+ transferCache?: boolean;
3602
+ }): Observable<Printers>;
3603
+ getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3604
+ httpHeaderAccept?: 'application/json';
3605
+ context?: HttpContext;
3606
+ transferCache?: boolean;
3607
+ }): Observable<HttpResponse<Printers>>;
3608
+ getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3609
+ httpHeaderAccept?: 'application/json';
3610
+ context?: HttpContext;
3611
+ transferCache?: boolean;
3612
+ }): Observable<HttpEvent<Printers>>;
3613
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, [null, { optional: true; }, { optional: true; }]>;
3614
+ static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
3615
+ }
3616
+
3531
3617
  /**
3532
3618
  * Wms.API.Client
3533
3619
  *
@@ -5463,6 +5549,105 @@ declare class UserService extends BaseService {
5463
5549
  static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
5464
5550
  }
5465
5551
 
5552
+ /**
5553
+ * Wms.API.Client
5554
+ *
5555
+ *
5556
+ *
5557
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5558
+ * https://openapi-generator.tech
5559
+ * Do not edit the class manually.
5560
+ */
5561
+
5562
+ interface Printer {
5563
+ id: number;
5564
+ dcId: string;
5565
+ printType: PrintTypes;
5566
+ printerName: string;
5567
+ printerDescription: string;
5568
+ printReverseOrder: boolean;
5569
+ }
5570
+ declare namespace Printer {
5571
+ }
5572
+
5573
+ /**
5574
+ * Wms.API.Client
5575
+ *
5576
+ *
5577
+ *
5578
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5579
+ * https://openapi-generator.tech
5580
+ * Do not edit the class manually.
5581
+ */
5582
+
5583
+ interface UserPrinter {
5584
+ id: number;
5585
+ userId: string;
5586
+ printerId: number;
5587
+ sequence: number;
5588
+ printType: PrintTypes;
5589
+ printer: Printer;
5590
+ }
5591
+ declare namespace UserPrinter {
5592
+ }
5593
+
5594
+ declare class UserPrintersService extends BaseService {
5595
+ protected httpClient: HttpClient;
5596
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
5597
+ /**
5598
+ * Getting user printers
5599
+ * @endpoint get /userPrinters
5600
+ * @param $skip
5601
+ * @param $top
5602
+ * @param $orderby
5603
+ * @param $filter
5604
+ * @param $search
5605
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5606
+ * @param reportProgress flag to report request and response progress.
5607
+ * @param options additional options
5608
+ */
5609
+ getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
5610
+ httpHeaderAccept?: 'application/json';
5611
+ context?: HttpContext;
5612
+ transferCache?: boolean;
5613
+ }): Observable<Printers>;
5614
+ getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
5615
+ httpHeaderAccept?: 'application/json';
5616
+ context?: HttpContext;
5617
+ transferCache?: boolean;
5618
+ }): Observable<HttpResponse<Printers>>;
5619
+ getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
5620
+ httpHeaderAccept?: 'application/json';
5621
+ context?: HttpContext;
5622
+ transferCache?: boolean;
5623
+ }): Observable<HttpEvent<Printers>>;
5624
+ /**
5625
+ * Update user printers
5626
+ * @endpoint put /userPrinters
5627
+ * @param userPrinter
5628
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
5629
+ * @param reportProgress flag to report request and response progress.
5630
+ * @param options additional options
5631
+ */
5632
+ updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'body', reportProgress?: boolean, options?: {
5633
+ httpHeaderAccept?: undefined;
5634
+ context?: HttpContext;
5635
+ transferCache?: boolean;
5636
+ }): Observable<any>;
5637
+ updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'response', reportProgress?: boolean, options?: {
5638
+ httpHeaderAccept?: undefined;
5639
+ context?: HttpContext;
5640
+ transferCache?: boolean;
5641
+ }): Observable<HttpResponse<any>>;
5642
+ updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'events', reportProgress?: boolean, options?: {
5643
+ httpHeaderAccept?: undefined;
5644
+ context?: HttpContext;
5645
+ transferCache?: boolean;
5646
+ }): Observable<HttpEvent<any>>;
5647
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserPrintersService, [null, { optional: true; }, { optional: true; }]>;
5648
+ static ɵprov: i0.ɵɵInjectableDeclaration<UserPrintersService>;
5649
+ }
5650
+
5466
5651
  /**
5467
5652
  * Wms.API.Client
5468
5653
  *
@@ -5800,7 +5985,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5800
5985
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5801
5986
  }
5802
5987
 
5803
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5988
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5804
5989
 
5805
5990
  /**
5806
5991
  * Wms.API.Client
@@ -5985,5 +6170,5 @@ declare class ApiModule {
5985
6170
 
5986
6171
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5987
6172
 
5988
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5989
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
6173
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
6174
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };