@indigina/wms-api 0.0.134 → 0.0.136
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 +480 -45
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +534 -26
package/package.json
CHANGED
|
@@ -3231,30 +3231,6 @@ declare class DispatchesService extends BaseService {
|
|
|
3231
3231
|
context?: HttpContext;
|
|
3232
3232
|
transferCache?: boolean;
|
|
3233
3233
|
}): Observable<HttpEvent<Dispatches>>;
|
|
3234
|
-
/**
|
|
3235
|
-
* Get owner company IDs without dispatches
|
|
3236
|
-
* @endpoint get /dispatches/owner-companies/without-dispatch
|
|
3237
|
-
* @param orderStatus
|
|
3238
|
-
* @param ownerCompanyIds
|
|
3239
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3240
|
-
* @param reportProgress flag to report request and response progress.
|
|
3241
|
-
* @param options additional options
|
|
3242
|
-
*/
|
|
3243
|
-
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3244
|
-
httpHeaderAccept?: 'application/json';
|
|
3245
|
-
context?: HttpContext;
|
|
3246
|
-
transferCache?: boolean;
|
|
3247
|
-
}): Observable<Array<string>>;
|
|
3248
|
-
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3249
|
-
httpHeaderAccept?: 'application/json';
|
|
3250
|
-
context?: HttpContext;
|
|
3251
|
-
transferCache?: boolean;
|
|
3252
|
-
}): Observable<HttpResponse<Array<string>>>;
|
|
3253
|
-
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3254
|
-
httpHeaderAccept?: 'application/json';
|
|
3255
|
-
context?: HttpContext;
|
|
3256
|
-
transferCache?: boolean;
|
|
3257
|
-
}): Observable<HttpEvent<Array<string>>>;
|
|
3258
3234
|
/**
|
|
3259
3235
|
* Getting dispatch print details by id
|
|
3260
3236
|
* @endpoint get /dispatches/{id}/print-details
|
|
@@ -3620,6 +3596,238 @@ declare const PrintTypes: {
|
|
|
3620
3596
|
};
|
|
3621
3597
|
type PrintTypes = typeof PrintTypes[keyof typeof PrintTypes];
|
|
3622
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
|
+
|
|
3623
3831
|
/**
|
|
3624
3832
|
* Wms.API.Client
|
|
3625
3833
|
*
|
|
@@ -3635,6 +3843,8 @@ interface PrinterView {
|
|
|
3635
3843
|
printerName: string;
|
|
3636
3844
|
printerDescription: string;
|
|
3637
3845
|
printType: PrintTypes;
|
|
3846
|
+
printReverseOrder?: boolean | null;
|
|
3847
|
+
createdDate?: string | null;
|
|
3638
3848
|
sequence?: number | null;
|
|
3639
3849
|
}
|
|
3640
3850
|
declare namespace PrinterView {
|
|
@@ -3658,6 +3868,177 @@ interface Printers {
|
|
|
3658
3868
|
declare class PrintersService extends BaseService {
|
|
3659
3869
|
protected httpClient: HttpClient;
|
|
3660
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 observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3974
|
+
* @param reportProgress flag to report request and response progress.
|
|
3975
|
+
* @param options additional options
|
|
3976
|
+
*/
|
|
3977
|
+
getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3978
|
+
httpHeaderAccept?: 'application/json';
|
|
3979
|
+
context?: HttpContext;
|
|
3980
|
+
transferCache?: boolean;
|
|
3981
|
+
}): Observable<PrintTypePrinterTrays>;
|
|
3982
|
+
getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3983
|
+
httpHeaderAccept?: 'application/json';
|
|
3984
|
+
context?: HttpContext;
|
|
3985
|
+
transferCache?: boolean;
|
|
3986
|
+
}): Observable<HttpResponse<PrintTypePrinterTrays>>;
|
|
3987
|
+
getPrintTypePrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3988
|
+
httpHeaderAccept?: 'application/json';
|
|
3989
|
+
context?: HttpContext;
|
|
3990
|
+
transferCache?: boolean;
|
|
3991
|
+
}): Observable<HttpEvent<PrintTypePrinterTrays>>;
|
|
3992
|
+
/**
|
|
3993
|
+
* Getting printer by id
|
|
3994
|
+
* @endpoint get /printers/{id}
|
|
3995
|
+
* @param id
|
|
3996
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3997
|
+
* @param reportProgress flag to report request and response progress.
|
|
3998
|
+
* @param options additional options
|
|
3999
|
+
*/
|
|
4000
|
+
getPrinterById(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4001
|
+
httpHeaderAccept?: 'application/json';
|
|
4002
|
+
context?: HttpContext;
|
|
4003
|
+
transferCache?: boolean;
|
|
4004
|
+
}): Observable<Printer>;
|
|
4005
|
+
getPrinterById(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4006
|
+
httpHeaderAccept?: 'application/json';
|
|
4007
|
+
context?: HttpContext;
|
|
4008
|
+
transferCache?: boolean;
|
|
4009
|
+
}): Observable<HttpResponse<Printer>>;
|
|
4010
|
+
getPrinterById(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4011
|
+
httpHeaderAccept?: 'application/json';
|
|
4012
|
+
context?: HttpContext;
|
|
4013
|
+
transferCache?: boolean;
|
|
4014
|
+
}): Observable<HttpEvent<Printer>>;
|
|
4015
|
+
/**
|
|
4016
|
+
* Getting printer trays for a printer
|
|
4017
|
+
* @endpoint get /printers/{id}/printerTrays
|
|
4018
|
+
* @param id
|
|
4019
|
+
* @param $skip
|
|
4020
|
+
* @param $top
|
|
4021
|
+
* @param $orderby
|
|
4022
|
+
* @param $filter
|
|
4023
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4024
|
+
* @param reportProgress flag to report request and response progress.
|
|
4025
|
+
* @param options additional options
|
|
4026
|
+
*/
|
|
4027
|
+
getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4028
|
+
httpHeaderAccept?: 'application/json';
|
|
4029
|
+
context?: HttpContext;
|
|
4030
|
+
transferCache?: boolean;
|
|
4031
|
+
}): Observable<PrinterTrays>;
|
|
4032
|
+
getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4033
|
+
httpHeaderAccept?: 'application/json';
|
|
4034
|
+
context?: HttpContext;
|
|
4035
|
+
transferCache?: boolean;
|
|
4036
|
+
}): Observable<HttpResponse<PrinterTrays>>;
|
|
4037
|
+
getPrinterTrays(id: number, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4038
|
+
httpHeaderAccept?: 'application/json';
|
|
4039
|
+
context?: HttpContext;
|
|
4040
|
+
transferCache?: boolean;
|
|
4041
|
+
}): Observable<HttpEvent<PrinterTrays>>;
|
|
3661
4042
|
/**
|
|
3662
4043
|
* Getting printers
|
|
3663
4044
|
* @endpoint get /printers
|
|
@@ -3685,6 +4066,78 @@ declare class PrintersService extends BaseService {
|
|
|
3685
4066
|
context?: HttpContext;
|
|
3686
4067
|
transferCache?: boolean;
|
|
3687
4068
|
}): Observable<HttpEvent<Printers>>;
|
|
4069
|
+
/**
|
|
4070
|
+
* Update print type printer trays
|
|
4071
|
+
* @endpoint put /printers/{id}/printTypePrinterTrays
|
|
4072
|
+
* @param id
|
|
4073
|
+
* @param printTypePrinterTrayUpdateModel
|
|
4074
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4075
|
+
* @param reportProgress flag to report request and response progress.
|
|
4076
|
+
* @param options additional options
|
|
4077
|
+
*/
|
|
4078
|
+
updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4079
|
+
httpHeaderAccept?: 'application/json';
|
|
4080
|
+
context?: HttpContext;
|
|
4081
|
+
transferCache?: boolean;
|
|
4082
|
+
}): Observable<Array<PrintTypePrinterTray>>;
|
|
4083
|
+
updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4084
|
+
httpHeaderAccept?: 'application/json';
|
|
4085
|
+
context?: HttpContext;
|
|
4086
|
+
transferCache?: boolean;
|
|
4087
|
+
}): Observable<HttpResponse<Array<PrintTypePrinterTray>>>;
|
|
4088
|
+
updatePrintTypePrinterTrays(id: number, printTypePrinterTrayUpdateModel: Array<PrintTypePrinterTrayUpdateModel>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4089
|
+
httpHeaderAccept?: 'application/json';
|
|
4090
|
+
context?: HttpContext;
|
|
4091
|
+
transferCache?: boolean;
|
|
4092
|
+
}): Observable<HttpEvent<Array<PrintTypePrinterTray>>>;
|
|
4093
|
+
/**
|
|
4094
|
+
* Update a printer
|
|
4095
|
+
* @endpoint put /printers/{id}
|
|
4096
|
+
* @param id
|
|
4097
|
+
* @param printerUpdateModel
|
|
4098
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4099
|
+
* @param reportProgress flag to report request and response progress.
|
|
4100
|
+
* @param options additional options
|
|
4101
|
+
*/
|
|
4102
|
+
updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4103
|
+
httpHeaderAccept?: 'application/json';
|
|
4104
|
+
context?: HttpContext;
|
|
4105
|
+
transferCache?: boolean;
|
|
4106
|
+
}): Observable<Printer>;
|
|
4107
|
+
updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4108
|
+
httpHeaderAccept?: 'application/json';
|
|
4109
|
+
context?: HttpContext;
|
|
4110
|
+
transferCache?: boolean;
|
|
4111
|
+
}): Observable<HttpResponse<Printer>>;
|
|
4112
|
+
updatePrinter(id: number, printerUpdateModel: PrinterUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4113
|
+
httpHeaderAccept?: 'application/json';
|
|
4114
|
+
context?: HttpContext;
|
|
4115
|
+
transferCache?: boolean;
|
|
4116
|
+
}): Observable<HttpEvent<Printer>>;
|
|
4117
|
+
/**
|
|
4118
|
+
* Update printer trays
|
|
4119
|
+
* @endpoint put /printers/{id}/printerTrays
|
|
4120
|
+
* @param id
|
|
4121
|
+
* @param printerTrayUpdateModel
|
|
4122
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4123
|
+
* @param reportProgress flag to report request and response progress.
|
|
4124
|
+
* @param options additional options
|
|
4125
|
+
*/
|
|
4126
|
+
updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4127
|
+
httpHeaderAccept?: 'application/json';
|
|
4128
|
+
context?: HttpContext;
|
|
4129
|
+
transferCache?: boolean;
|
|
4130
|
+
}): Observable<Array<PrinterTray>>;
|
|
4131
|
+
updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4132
|
+
httpHeaderAccept?: 'application/json';
|
|
4133
|
+
context?: HttpContext;
|
|
4134
|
+
transferCache?: boolean;
|
|
4135
|
+
}): Observable<HttpResponse<Array<PrinterTray>>>;
|
|
4136
|
+
updatePrinterTrays(id: number, printerTrayUpdateModel: Array<PrinterTrayUpdateModel>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4137
|
+
httpHeaderAccept?: 'application/json';
|
|
4138
|
+
context?: HttpContext;
|
|
4139
|
+
transferCache?: boolean;
|
|
4140
|
+
}): Observable<HttpEvent<Array<PrinterTray>>>;
|
|
3688
4141
|
static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, [null, { optional: true; }, { optional: true; }]>;
|
|
3689
4142
|
static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
|
|
3690
4143
|
}
|
|
@@ -6451,6 +6904,61 @@ interface ModelError {
|
|
|
6451
6904
|
} | null;
|
|
6452
6905
|
}
|
|
6453
6906
|
|
|
6907
|
+
/**
|
|
6908
|
+
* Wms.API.Client
|
|
6909
|
+
*
|
|
6910
|
+
*
|
|
6911
|
+
*
|
|
6912
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6913
|
+
* https://openapi-generator.tech
|
|
6914
|
+
* Do not edit the class manually.
|
|
6915
|
+
*/
|
|
6916
|
+
|
|
6917
|
+
interface PrintTypePrinterTrayDataModel {
|
|
6918
|
+
printerId: number;
|
|
6919
|
+
printType: PrintTypes;
|
|
6920
|
+
inputTrayName: string;
|
|
6921
|
+
}
|
|
6922
|
+
declare namespace PrintTypePrinterTrayDataModel {
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6925
|
+
/**
|
|
6926
|
+
* Wms.API.Client
|
|
6927
|
+
*
|
|
6928
|
+
*
|
|
6929
|
+
*
|
|
6930
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6931
|
+
* https://openapi-generator.tech
|
|
6932
|
+
* Do not edit the class manually.
|
|
6933
|
+
*/
|
|
6934
|
+
|
|
6935
|
+
interface PrinterDataModel {
|
|
6936
|
+
printType: PrintTypes;
|
|
6937
|
+
printerName: string;
|
|
6938
|
+
printerDescription: string;
|
|
6939
|
+
printReverseOrder: boolean;
|
|
6940
|
+
}
|
|
6941
|
+
declare namespace PrinterDataModel {
|
|
6942
|
+
}
|
|
6943
|
+
|
|
6944
|
+
/**
|
|
6945
|
+
* Wms.API.Client
|
|
6946
|
+
*
|
|
6947
|
+
*
|
|
6948
|
+
*
|
|
6949
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6950
|
+
* https://openapi-generator.tech
|
|
6951
|
+
* Do not edit the class manually.
|
|
6952
|
+
*/
|
|
6953
|
+
|
|
6954
|
+
interface PrinterTrayDataModel {
|
|
6955
|
+
printerId: number;
|
|
6956
|
+
documentType: DocumentTypes;
|
|
6957
|
+
inputTrayName: string;
|
|
6958
|
+
}
|
|
6959
|
+
declare namespace PrinterTrayDataModel {
|
|
6960
|
+
}
|
|
6961
|
+
|
|
6454
6962
|
declare const BASE_PATH: InjectionToken<string>;
|
|
6455
6963
|
declare const COLLECTION_FORMATS: {
|
|
6456
6964
|
csv: string;
|
|
@@ -6469,5 +6977,5 @@ declare class ApiModule {
|
|
|
6469
6977
|
|
|
6470
6978
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6471
6979
|
|
|
6472
|
-
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 };
|
|
6473
|
-
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 };
|
|
6980
|
+
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 };
|
|
6981
|
+
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 };
|