@indigina/wms-api 0.0.135 → 0.0.137

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.135",
3
+ "version": "0.0.137",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -3596,6 +3596,238 @@ declare const PrintTypes: {
3596
3596
  };
3597
3597
  type PrintTypes = typeof PrintTypes[keyof typeof PrintTypes];
3598
3598
 
3599
+ /**
3600
+ * Wms.API.Client
3601
+ *
3602
+ *
3603
+ *
3604
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3605
+ * https://openapi-generator.tech
3606
+ * Do not edit the class manually.
3607
+ */
3608
+
3609
+ interface PrintTypePrinterTray {
3610
+ printerId: number;
3611
+ printType: PrintTypes;
3612
+ inputTrayName: string;
3613
+ id: number;
3614
+ }
3615
+ declare namespace PrintTypePrinterTray {
3616
+ }
3617
+
3618
+ /**
3619
+ * Wms.API.Client
3620
+ *
3621
+ *
3622
+ *
3623
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3624
+ * https://openapi-generator.tech
3625
+ * Do not edit the class manually.
3626
+ */
3627
+
3628
+ interface PrintTypePrinterTrayCreateModel {
3629
+ printerId: number;
3630
+ printType: PrintTypes;
3631
+ inputTrayName: string;
3632
+ }
3633
+ declare namespace PrintTypePrinterTrayCreateModel {
3634
+ }
3635
+
3636
+ /**
3637
+ * Wms.API.Client
3638
+ *
3639
+ *
3640
+ *
3641
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3642
+ * https://openapi-generator.tech
3643
+ * Do not edit the class manually.
3644
+ */
3645
+
3646
+ interface PrintTypePrinterTrayUpdateModel {
3647
+ printerId: number;
3648
+ printType: PrintTypes;
3649
+ inputTrayName: string;
3650
+ id?: number;
3651
+ }
3652
+ declare namespace PrintTypePrinterTrayUpdateModel {
3653
+ }
3654
+
3655
+ /**
3656
+ * Wms.API.Client
3657
+ *
3658
+ *
3659
+ *
3660
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3661
+ * https://openapi-generator.tech
3662
+ * Do not edit the class manually.
3663
+ */
3664
+
3665
+ interface PrintTypePrinterTrays {
3666
+ total: number;
3667
+ data: Array<PrintTypePrinterTray>;
3668
+ }
3669
+
3670
+ /**
3671
+ * Wms.API.Client
3672
+ *
3673
+ *
3674
+ *
3675
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3676
+ * https://openapi-generator.tech
3677
+ * Do not edit the class manually.
3678
+ */
3679
+
3680
+ interface Printer {
3681
+ printType: PrintTypes;
3682
+ printerName: string;
3683
+ printerDescription: string;
3684
+ printReverseOrder: boolean;
3685
+ id: number;
3686
+ dcId: string;
3687
+ }
3688
+ declare namespace Printer {
3689
+ }
3690
+
3691
+ /**
3692
+ * Wms.API.Client
3693
+ *
3694
+ *
3695
+ *
3696
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3697
+ * https://openapi-generator.tech
3698
+ * Do not edit the class manually.
3699
+ */
3700
+
3701
+ interface PrinterCreateModel {
3702
+ printType: PrintTypes;
3703
+ printerName: string;
3704
+ printerDescription: string;
3705
+ printReverseOrder: boolean;
3706
+ }
3707
+ declare namespace PrinterCreateModel {
3708
+ }
3709
+
3710
+ /**
3711
+ * Wms.API.Client
3712
+ *
3713
+ *
3714
+ *
3715
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3716
+ * https://openapi-generator.tech
3717
+ * Do not edit the class manually.
3718
+ */
3719
+ declare const DocumentTypes: {
3720
+ readonly PickNote: "PickNote";
3721
+ readonly DispatchNote: "DispatchNote";
3722
+ readonly CarrierLabel: "CarrierLabel";
3723
+ readonly CommercialInvoice: "CommercialInvoice";
3724
+ readonly PackingList: "PackingList";
3725
+ readonly GiftMessageCard: "GiftMessageCard";
3726
+ readonly IntegratedDispatchNote: "IntegratedDispatchNote";
3727
+ readonly DangerousGoodsForm: "DangerousGoodsForm";
3728
+ readonly Cn22: "CN22";
3729
+ readonly Cn23: "CN23";
3730
+ readonly WaveSummarySheet: "WaveSummarySheet";
3731
+ readonly PlateLabel: "PlateLabel";
3732
+ readonly NonStandardRequirement: "NonStandardRequirement";
3733
+ readonly BoxLabel: "BoxLabel";
3734
+ readonly ProductLabel: "ProductLabel";
3735
+ readonly KitToOrder: "KitToOrder";
3736
+ readonly IntegratedEmptyDispatchNote: "IntegratedEmptyDispatchNote";
3737
+ readonly DeliveryPo: "DeliveryPO";
3738
+ };
3739
+ type DocumentTypes = typeof DocumentTypes[keyof typeof DocumentTypes];
3740
+
3741
+ /**
3742
+ * Wms.API.Client
3743
+ *
3744
+ *
3745
+ *
3746
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3747
+ * https://openapi-generator.tech
3748
+ * Do not edit the class manually.
3749
+ */
3750
+
3751
+ interface PrinterTray {
3752
+ printerId: number;
3753
+ documentType: DocumentTypes;
3754
+ inputTrayName: string;
3755
+ id: number;
3756
+ }
3757
+ declare namespace PrinterTray {
3758
+ }
3759
+
3760
+ /**
3761
+ * Wms.API.Client
3762
+ *
3763
+ *
3764
+ *
3765
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3766
+ * https://openapi-generator.tech
3767
+ * Do not edit the class manually.
3768
+ */
3769
+
3770
+ interface PrinterTrayCreateModel {
3771
+ printerId: number;
3772
+ documentType: DocumentTypes;
3773
+ inputTrayName: string;
3774
+ }
3775
+ declare namespace PrinterTrayCreateModel {
3776
+ }
3777
+
3778
+ /**
3779
+ * Wms.API.Client
3780
+ *
3781
+ *
3782
+ *
3783
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3784
+ * https://openapi-generator.tech
3785
+ * Do not edit the class manually.
3786
+ */
3787
+
3788
+ interface PrinterTrayUpdateModel {
3789
+ printerId: number;
3790
+ documentType: DocumentTypes;
3791
+ inputTrayName: string;
3792
+ id?: number;
3793
+ }
3794
+ declare namespace PrinterTrayUpdateModel {
3795
+ }
3796
+
3797
+ /**
3798
+ * Wms.API.Client
3799
+ *
3800
+ *
3801
+ *
3802
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3803
+ * https://openapi-generator.tech
3804
+ * Do not edit the class manually.
3805
+ */
3806
+
3807
+ interface PrinterTrays {
3808
+ total: number;
3809
+ data: Array<PrinterTray>;
3810
+ }
3811
+
3812
+ /**
3813
+ * Wms.API.Client
3814
+ *
3815
+ *
3816
+ *
3817
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3818
+ * https://openapi-generator.tech
3819
+ * Do not edit the class manually.
3820
+ */
3821
+
3822
+ interface PrinterUpdateModel {
3823
+ printType: PrintTypes;
3824
+ printerName: string;
3825
+ printerDescription: string;
3826
+ printReverseOrder: boolean;
3827
+ }
3828
+ declare namespace PrinterUpdateModel {
3829
+ }
3830
+
3599
3831
  /**
3600
3832
  * Wms.API.Client
3601
3833
  *
@@ -3611,6 +3843,8 @@ interface PrinterView {
3611
3843
  printerName: string;
3612
3844
  printerDescription: string;
3613
3845
  printType: PrintTypes;
3846
+ printReverseOrder?: boolean | null;
3847
+ createdDate?: string | null;
3614
3848
  sequence?: number | null;
3615
3849
  }
3616
3850
  declare namespace PrinterView {
@@ -3634,6 +3868,179 @@ interface Printers {
3634
3868
  declare class PrintersService extends BaseService {
3635
3869
  protected httpClient: HttpClient;
3636
3870
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3871
+ /**
3872
+ * Create a print type printer tray
3873
+ * @endpoint post /printers/{id}/printTypePrinterTrays
3874
+ * @param id
3875
+ * @param printTypePrinterTrayCreateModel
3876
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3877
+ * @param reportProgress flag to report request and response progress.
3878
+ * @param options additional options
3879
+ */
3880
+ createPrintTypePrinterTray(id: number, printTypePrinterTrayCreateModel: PrintTypePrinterTrayCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
3881
+ httpHeaderAccept?: 'application/json';
3882
+ context?: HttpContext;
3883
+ transferCache?: boolean;
3884
+ }): Observable<PrintTypePrinterTray>;
3885
+ createPrintTypePrinterTray(id: number, printTypePrinterTrayCreateModel: PrintTypePrinterTrayCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
3886
+ httpHeaderAccept?: 'application/json';
3887
+ context?: HttpContext;
3888
+ transferCache?: boolean;
3889
+ }): Observable<HttpResponse<PrintTypePrinterTray>>;
3890
+ createPrintTypePrinterTray(id: number, printTypePrinterTrayCreateModel: PrintTypePrinterTrayCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
3891
+ httpHeaderAccept?: 'application/json';
3892
+ context?: HttpContext;
3893
+ transferCache?: boolean;
3894
+ }): Observable<HttpEvent<PrintTypePrinterTray>>;
3895
+ /**
3896
+ * Create a printer
3897
+ * @endpoint post /printers
3898
+ * @param printerCreateModel
3899
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3900
+ * @param reportProgress flag to report request and response progress.
3901
+ * @param options additional options
3902
+ */
3903
+ createPrinter(printerCreateModel: PrinterCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
3904
+ httpHeaderAccept?: 'application/json';
3905
+ context?: HttpContext;
3906
+ transferCache?: boolean;
3907
+ }): Observable<Printer>;
3908
+ createPrinter(printerCreateModel: PrinterCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
3909
+ httpHeaderAccept?: 'application/json';
3910
+ context?: HttpContext;
3911
+ transferCache?: boolean;
3912
+ }): Observable<HttpResponse<Printer>>;
3913
+ createPrinter(printerCreateModel: PrinterCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
3914
+ httpHeaderAccept?: 'application/json';
3915
+ context?: HttpContext;
3916
+ transferCache?: boolean;
3917
+ }): Observable<HttpEvent<Printer>>;
3918
+ /**
3919
+ * Create a printer tray
3920
+ * @endpoint post /printers/{id}/printerTrays
3921
+ * @param id
3922
+ * @param printerTrayCreateModel
3923
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3924
+ * @param reportProgress flag to report request and response progress.
3925
+ * @param options additional options
3926
+ */
3927
+ createPrinterTray(id: number, printerTrayCreateModel: PrinterTrayCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
3928
+ httpHeaderAccept?: 'application/json';
3929
+ context?: HttpContext;
3930
+ transferCache?: boolean;
3931
+ }): Observable<PrinterTray>;
3932
+ createPrinterTray(id: number, printerTrayCreateModel: PrinterTrayCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
3933
+ httpHeaderAccept?: 'application/json';
3934
+ context?: HttpContext;
3935
+ transferCache?: boolean;
3936
+ }): Observable<HttpResponse<PrinterTray>>;
3937
+ createPrinterTray(id: number, printerTrayCreateModel: PrinterTrayCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
3938
+ httpHeaderAccept?: 'application/json';
3939
+ context?: HttpContext;
3940
+ transferCache?: boolean;
3941
+ }): Observable<HttpEvent<PrinterTray>>;
3942
+ /**
3943
+ * Delete a printer
3944
+ * @endpoint delete /printers/{id}
3945
+ * @param id
3946
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3947
+ * @param reportProgress flag to report request and response progress.
3948
+ * @param options additional options
3949
+ */
3950
+ deletePrinter(id: number, observe?: 'body', reportProgress?: boolean, options?: {
3951
+ httpHeaderAccept?: undefined;
3952
+ context?: HttpContext;
3953
+ transferCache?: boolean;
3954
+ }): Observable<any>;
3955
+ deletePrinter(id: number, observe?: 'response', reportProgress?: boolean, options?: {
3956
+ httpHeaderAccept?: undefined;
3957
+ context?: HttpContext;
3958
+ transferCache?: boolean;
3959
+ }): Observable<HttpResponse<any>>;
3960
+ deletePrinter(id: number, observe?: 'events', reportProgress?: boolean, options?: {
3961
+ httpHeaderAccept?: undefined;
3962
+ context?: HttpContext;
3963
+ transferCache?: boolean;
3964
+ }): Observable<HttpEvent<any>>;
3965
+ /**
3966
+ * Getting print type printer trays for a printer
3967
+ * @endpoint get /printers/{id}/printTypePrinterTrays
3968
+ * @param id
3969
+ * @param $skip
3970
+ * @param $top
3971
+ * @param $orderby
3972
+ * @param $filter
3973
+ * @param $search
3974
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3975
+ * @param reportProgress flag to report request and response progress.
3976
+ * @param options additional options
3977
+ */
3978
+ getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
3979
+ httpHeaderAccept?: 'application/json';
3980
+ context?: HttpContext;
3981
+ transferCache?: boolean;
3982
+ }): Observable<PrintTypePrinterTrays>;
3983
+ getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
3984
+ httpHeaderAccept?: 'application/json';
3985
+ context?: HttpContext;
3986
+ transferCache?: boolean;
3987
+ }): Observable<HttpResponse<PrintTypePrinterTrays>>;
3988
+ getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
3989
+ httpHeaderAccept?: 'application/json';
3990
+ context?: HttpContext;
3991
+ transferCache?: boolean;
3992
+ }): Observable<HttpEvent<PrintTypePrinterTrays>>;
3993
+ /**
3994
+ * Getting printer by id
3995
+ * @endpoint get /printers/{id}
3996
+ * @param id
3997
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3998
+ * @param reportProgress flag to report request and response progress.
3999
+ * @param options additional options
4000
+ */
4001
+ getPrinterById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
4002
+ httpHeaderAccept?: 'application/json';
4003
+ context?: HttpContext;
4004
+ transferCache?: boolean;
4005
+ }): Observable<Printer>;
4006
+ getPrinterById(id: number, observe?: 'response', reportProgress?: boolean, options?: {
4007
+ httpHeaderAccept?: 'application/json';
4008
+ context?: HttpContext;
4009
+ transferCache?: boolean;
4010
+ }): Observable<HttpResponse<Printer>>;
4011
+ getPrinterById(id: number, observe?: 'events', reportProgress?: boolean, options?: {
4012
+ httpHeaderAccept?: 'application/json';
4013
+ context?: HttpContext;
4014
+ transferCache?: boolean;
4015
+ }): Observable<HttpEvent<Printer>>;
4016
+ /**
4017
+ * Getting printer trays for a printer
4018
+ * @endpoint get /printers/{id}/printerTrays
4019
+ * @param id
4020
+ * @param $skip
4021
+ * @param $top
4022
+ * @param $orderby
4023
+ * @param $filter
4024
+ * @param $search
4025
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4026
+ * @param reportProgress flag to report request and response progress.
4027
+ * @param options additional options
4028
+ */
4029
+ getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
4030
+ httpHeaderAccept?: 'application/json';
4031
+ context?: HttpContext;
4032
+ transferCache?: boolean;
4033
+ }): Observable<PrinterTrays>;
4034
+ getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
4035
+ httpHeaderAccept?: 'application/json';
4036
+ context?: HttpContext;
4037
+ transferCache?: boolean;
4038
+ }): Observable<HttpResponse<PrinterTrays>>;
4039
+ getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
4040
+ httpHeaderAccept?: 'application/json';
4041
+ context?: HttpContext;
4042
+ transferCache?: boolean;
4043
+ }): Observable<HttpEvent<PrinterTrays>>;
3637
4044
  /**
3638
4045
  * Getting printers
3639
4046
  * @endpoint get /printers
@@ -3661,6 +4068,105 @@ declare class PrintersService extends BaseService {
3661
4068
  context?: HttpContext;
3662
4069
  transferCache?: boolean;
3663
4070
  }): Observable<HttpEvent<Printers>>;
4071
+ /**
4072
+ * Printers list
4073
+ * @endpoint get /printers/search
4074
+ * @param $skip
4075
+ * @param $top
4076
+ * @param $orderby
4077
+ * @param $filter
4078
+ * @param searchTerm
4079
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4080
+ * @param reportProgress flag to report request and response progress.
4081
+ * @param options additional options
4082
+ */
4083
+ getPrintersFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
4084
+ httpHeaderAccept?: 'application/json';
4085
+ context?: HttpContext;
4086
+ transferCache?: boolean;
4087
+ }): Observable<Printers>;
4088
+ getPrintersFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
4089
+ httpHeaderAccept?: 'application/json';
4090
+ context?: HttpContext;
4091
+ transferCache?: boolean;
4092
+ }): Observable<HttpResponse<Printers>>;
4093
+ getPrintersFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
4094
+ httpHeaderAccept?: 'application/json';
4095
+ context?: HttpContext;
4096
+ transferCache?: boolean;
4097
+ }): Observable<HttpEvent<Printers>>;
4098
+ /**
4099
+ * Update print type printer trays
4100
+ * @endpoint put /printers/{id}/printTypePrinterTrays
4101
+ * @param id
4102
+ * @param printTypePrinterTrayUpdateModel
4103
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4104
+ * @param reportProgress flag to report request and response progress.
4105
+ * @param options additional options
4106
+ */
4107
+ updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'body', reportProgress?: boolean, options?: {
4108
+ httpHeaderAccept?: 'application/json';
4109
+ context?: HttpContext;
4110
+ transferCache?: boolean;
4111
+ }): Observable<Array<PrintTypePrinterTray>>;
4112
+ updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'response', reportProgress?: boolean, options?: {
4113
+ httpHeaderAccept?: 'application/json';
4114
+ context?: HttpContext;
4115
+ transferCache?: boolean;
4116
+ }): Observable<HttpResponse<Array<PrintTypePrinterTray>>>;
4117
+ updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'events', reportProgress?: boolean, options?: {
4118
+ httpHeaderAccept?: 'application/json';
4119
+ context?: HttpContext;
4120
+ transferCache?: boolean;
4121
+ }): Observable<HttpEvent<Array<PrintTypePrinterTray>>>;
4122
+ /**
4123
+ * Update a printer
4124
+ * @endpoint put /printers/{id}
4125
+ * @param id
4126
+ * @param printerUpdateModel
4127
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4128
+ * @param reportProgress flag to report request and response progress.
4129
+ * @param options additional options
4130
+ */
4131
+ updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
4132
+ httpHeaderAccept?: 'application/json';
4133
+ context?: HttpContext;
4134
+ transferCache?: boolean;
4135
+ }): Observable<Printer>;
4136
+ updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
4137
+ httpHeaderAccept?: 'application/json';
4138
+ context?: HttpContext;
4139
+ transferCache?: boolean;
4140
+ }): Observable<HttpResponse<Printer>>;
4141
+ updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
4142
+ httpHeaderAccept?: 'application/json';
4143
+ context?: HttpContext;
4144
+ transferCache?: boolean;
4145
+ }): Observable<HttpEvent<Printer>>;
4146
+ /**
4147
+ * Update printer trays
4148
+ * @endpoint put /printers/{id}/printerTrays
4149
+ * @param id
4150
+ * @param printerTrayUpdateModel
4151
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4152
+ * @param reportProgress flag to report request and response progress.
4153
+ * @param options additional options
4154
+ */
4155
+ updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'body', reportProgress?: boolean, options?: {
4156
+ httpHeaderAccept?: 'application/json';
4157
+ context?: HttpContext;
4158
+ transferCache?: boolean;
4159
+ }): Observable<Array<PrinterTray>>;
4160
+ updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'response', reportProgress?: boolean, options?: {
4161
+ httpHeaderAccept?: 'application/json';
4162
+ context?: HttpContext;
4163
+ transferCache?: boolean;
4164
+ }): Observable<HttpResponse<Array<PrinterTray>>>;
4165
+ updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'events', reportProgress?: boolean, options?: {
4166
+ httpHeaderAccept?: 'application/json';
4167
+ context?: HttpContext;
4168
+ transferCache?: boolean;
4169
+ }): Observable<HttpEvent<Array<PrinterTray>>>;
3664
4170
  static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, [null, { optional: true; }, { optional: true; }]>;
3665
4171
  static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
3666
4172
  }
@@ -6427,6 +6933,61 @@ interface ModelError {
6427
6933
  } | null;
6428
6934
  }
6429
6935
 
6936
+ /**
6937
+ * Wms.API.Client
6938
+ *
6939
+ *
6940
+ *
6941
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6942
+ * https://openapi-generator.tech
6943
+ * Do not edit the class manually.
6944
+ */
6945
+
6946
+ interface PrintTypePrinterTrayDataModel {
6947
+ printerId: number;
6948
+ printType: PrintTypes;
6949
+ inputTrayName: string;
6950
+ }
6951
+ declare namespace PrintTypePrinterTrayDataModel {
6952
+ }
6953
+
6954
+ /**
6955
+ * Wms.API.Client
6956
+ *
6957
+ *
6958
+ *
6959
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6960
+ * https://openapi-generator.tech
6961
+ * Do not edit the class manually.
6962
+ */
6963
+
6964
+ interface PrinterDataModel {
6965
+ printType: PrintTypes;
6966
+ printerName: string;
6967
+ printerDescription: string;
6968
+ printReverseOrder: boolean;
6969
+ }
6970
+ declare namespace PrinterDataModel {
6971
+ }
6972
+
6973
+ /**
6974
+ * Wms.API.Client
6975
+ *
6976
+ *
6977
+ *
6978
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
6979
+ * https://openapi-generator.tech
6980
+ * Do not edit the class manually.
6981
+ */
6982
+
6983
+ interface PrinterTrayDataModel {
6984
+ printerId: number;
6985
+ documentType: DocumentTypes;
6986
+ inputTrayName: string;
6987
+ }
6988
+ declare namespace PrinterTrayDataModel {
6989
+ }
6990
+
6430
6991
  declare const BASE_PATH: InjectionToken<string>;
6431
6992
  declare const COLLECTION_FORMATS: {
6432
6993
  csv: string;
@@ -6445,5 +7006,5 @@ declare class ApiModule {
6445
7006
 
6446
7007
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
6447
7008
 
6448
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, 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, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
6449
- 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, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
7009
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
7010
+ 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, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };