@teemill/pickfaces 0.15.2 → 0.15.4

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/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Use this API to access your pickfaces. You must have the warehouse module installed to access this API. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.15.2
5
+ * The version of the OpenAPI document: 0.15.4
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@ export interface ApiError {
33
33
  'message': string;
34
34
  }
35
35
  /**
36
- *
36
+ * The factory container the pickface is within
37
37
  * @export
38
38
  * @interface ContainerModel
39
39
  */
@@ -606,6 +606,23 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
606
606
  * @throws {RequiredError}
607
607
  */
608
608
  createPickface: (project: string, createPickfaceRequest: CreatePickfaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
609
+ /**
610
+ * Delete a Pickface
611
+ * @summary Delete Pickface
612
+ * @param {string} project What project it is
613
+ * @param {string} pickfaceId Unique identifier of a pickface
614
+ * @param {*} [options] Override http request option.
615
+ * @throws {RequiredError}
616
+ */
617
+ deletePickface: (project: string, pickfaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
618
+ /**
619
+ * Export pickfaces as a CSV file
620
+ * @summary Export pickfaces
621
+ * @param {string} project What project it is
622
+ * @param {*} [options] Override http request option.
623
+ * @throws {RequiredError}
624
+ */
625
+ exportPickfaces: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
609
626
  /**
610
627
  * Get a pickface
611
628
  * @summary Get pickface
@@ -615,6 +632,14 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
615
632
  * @throws {RequiredError}
616
633
  */
617
634
  getPickface: (project: string, pickfaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
635
+ /**
636
+ * Lists pickface container models
637
+ * @summary Get pickface container models
638
+ * @param {string} project What project it is
639
+ * @param {*} [options] Override http request option.
640
+ * @throws {RequiredError}
641
+ */
642
+ getPickfaceContainerModels: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
618
643
  /**
619
644
  * Lists all available pickfaces paginated into chunks
620
645
  * @summary List pickfaces
@@ -627,6 +652,98 @@ export declare const PickfacesApiAxiosParamCreator: (configuration?: Configurati
627
652
  * @throws {RequiredError}
628
653
  */
629
654
  getPickfaces: (project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<GetPickfacesSortByEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
655
+ /**
656
+ * Issue an empty pickface
657
+ * @summary Issue empty pickface
658
+ * @param {string} project What project it is
659
+ * @param {string} pickfaceId Unique identifier of a pickface
660
+ * @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
661
+ * @param {*} [options] Override http request option.
662
+ * @throws {RequiredError}
663
+ */
664
+ issueEmptyPickface: (project: string, pickfaceId: string, issueEmptyPickfaceRequest: IssueEmptyPickfaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
665
+ /**
666
+ * Issue a pickface with wrong contents
667
+ * @summary Issue wrong contents pickface
668
+ * @param {string} project What project it is
669
+ * @param {string} pickfaceId Unique identifier of a pickface
670
+ * @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
671
+ * @param {*} [options] Override http request option.
672
+ * @throws {RequiredError}
673
+ */
674
+ issueWrongContentsPickface: (project: string, pickfaceId: string, issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
675
+ /**
676
+ * Get a list of pickface logs
677
+ * @summary Get pickface logs
678
+ * @param {string} project What project it is
679
+ * @param {string} pickfaceId Unique identifier of a pickface
680
+ * @param {number} [pageToken] Page reference token
681
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
682
+ * @param {*} [options] Override http request option.
683
+ * @throws {RequiredError}
684
+ */
685
+ listPickfaceLogs: (project: string, pickfaceId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
686
+ /**
687
+ * Move stock from one pickface to another in a single transaction
688
+ * @summary Move stock
689
+ * @param {string} project What project it is
690
+ * @param {string} pickfaceId Unique identifier of a pickface
691
+ * @param {MoveStockRequest} moveStockRequest Move stock from one pickface to another
692
+ * @param {*} [options] Override http request option.
693
+ * @throws {RequiredError}
694
+ */
695
+ moveStock: (project: string, pickfaceId: string, moveStockRequest: MoveStockRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
696
+ /**
697
+ * Print a pickface label
698
+ * @summary Print pickface label
699
+ * @param {string} project What project it is
700
+ * @param {string} pickfaceId Unique identifier of a pickface
701
+ * @param {string} deviceRef Unique identifier of a warehouse device
702
+ * @param {*} [options] Override http request option.
703
+ * @throws {RequiredError}
704
+ */
705
+ printPickfaceLabel: (project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
706
+ /**
707
+ * Print pickface labels
708
+ * @summary Print pickface Labels
709
+ * @param {string} project What project it is
710
+ * @param {string} deviceRef Unique identifier of a warehouse device
711
+ * @param {Array<string>} ids List of pickface ids
712
+ * @param {*} [options] Override http request option.
713
+ * @throws {RequiredError}
714
+ */
715
+ printPickfaceLabels: (project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
716
+ /**
717
+ * Resolves an issue on a pickface
718
+ * @summary Resolve pickface issue
719
+ * @param {string} project What project it is
720
+ * @param {string} pickfaceId Unique identifier of a pickface
721
+ * @param {*} [options] Override http request option.
722
+ * @throws {RequiredError}
723
+ */
724
+ resolvePickfaceIssue: (project: string, pickfaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
725
+ /**
726
+ * Suggest pickfaces for putting away stock
727
+ * @summary Suggest pickfaces
728
+ * @param {string} project What project it is
729
+ * @param {string} variantRef Unique identifier of a warehouse variant
730
+ * @param {number} quantity Number of variants
731
+ * @param {number} [pageToken] Page reference token
732
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
733
+ * @param {*} [options] Override http request option.
734
+ * @throws {RequiredError}
735
+ */
736
+ suggestPickfaces: (project: string, variantRef: string, quantity: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
737
+ /**
738
+ * Update a Pickface
739
+ * @summary Update Pickface
740
+ * @param {string} project What project it is
741
+ * @param {string} pickfaceId Unique identifier of a pickface
742
+ * @param {UpdatePickfaceRequest} updatePickfaceRequest Update pickface schema
743
+ * @param {*} [options] Override http request option.
744
+ * @throws {RequiredError}
745
+ */
746
+ updatePickface: (project: string, pickfaceId: string, updatePickfaceRequest: UpdatePickfaceRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
630
747
  };
631
748
  /**
632
749
  * PickfacesApi - functional programming interface
@@ -642,6 +759,23 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
642
759
  * @throws {RequiredError}
643
760
  */
644
761
  createPickface(project: string, createPickfaceRequest: CreatePickfaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
762
+ /**
763
+ * Delete a Pickface
764
+ * @summary Delete Pickface
765
+ * @param {string} project What project it is
766
+ * @param {string} pickfaceId Unique identifier of a pickface
767
+ * @param {*} [options] Override http request option.
768
+ * @throws {RequiredError}
769
+ */
770
+ deletePickface(project: string, pickfaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
771
+ /**
772
+ * Export pickfaces as a CSV file
773
+ * @summary Export pickfaces
774
+ * @param {string} project What project it is
775
+ * @param {*} [options] Override http request option.
776
+ * @throws {RequiredError}
777
+ */
778
+ exportPickfaces(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
645
779
  /**
646
780
  * Get a pickface
647
781
  * @summary Get pickface
@@ -651,6 +785,14 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
651
785
  * @throws {RequiredError}
652
786
  */
653
787
  getPickface(project: string, pickfaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
788
+ /**
789
+ * Lists pickface container models
790
+ * @summary Get pickface container models
791
+ * @param {string} project What project it is
792
+ * @param {*} [options] Override http request option.
793
+ * @throws {RequiredError}
794
+ */
795
+ getPickfaceContainerModels(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContainerModels>>;
654
796
  /**
655
797
  * Lists all available pickfaces paginated into chunks
656
798
  * @summary List pickfaces
@@ -663,6 +805,98 @@ export declare const PickfacesApiFp: (configuration?: Configuration) => {
663
805
  * @throws {RequiredError}
664
806
  */
665
807
  getPickfaces(project: string, search?: string, pageToken?: number, pageSize?: number, sortBy?: Array<GetPickfacesSortByEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPickfaces200Response>>;
808
+ /**
809
+ * Issue an empty pickface
810
+ * @summary Issue empty pickface
811
+ * @param {string} project What project it is
812
+ * @param {string} pickfaceId Unique identifier of a pickface
813
+ * @param {IssueEmptyPickfaceRequest} issueEmptyPickfaceRequest pickface issue schema
814
+ * @param {*} [options] Override http request option.
815
+ * @throws {RequiredError}
816
+ */
817
+ issueEmptyPickface(project: string, pickfaceId: string, issueEmptyPickfaceRequest: IssueEmptyPickfaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
818
+ /**
819
+ * Issue a pickface with wrong contents
820
+ * @summary Issue wrong contents pickface
821
+ * @param {string} project What project it is
822
+ * @param {string} pickfaceId Unique identifier of a pickface
823
+ * @param {IssueWrongContentsPickfaceRequest} issueWrongContentsPickfaceRequest pickface issue schema
824
+ * @param {*} [options] Override http request option.
825
+ * @throws {RequiredError}
826
+ */
827
+ issueWrongContentsPickface(project: string, pickfaceId: string, issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
828
+ /**
829
+ * Get a list of pickface logs
830
+ * @summary Get pickface logs
831
+ * @param {string} project What project it is
832
+ * @param {string} pickfaceId Unique identifier of a pickface
833
+ * @param {number} [pageToken] Page reference token
834
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
835
+ * @param {*} [options] Override http request option.
836
+ * @throws {RequiredError}
837
+ */
838
+ listPickfaceLogs(project: string, pickfaceId: string, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPickfaceLogs200Response>>;
839
+ /**
840
+ * Move stock from one pickface to another in a single transaction
841
+ * @summary Move stock
842
+ * @param {string} project What project it is
843
+ * @param {string} pickfaceId Unique identifier of a pickface
844
+ * @param {MoveStockRequest} moveStockRequest Move stock from one pickface to another
845
+ * @param {*} [options] Override http request option.
846
+ * @throws {RequiredError}
847
+ */
848
+ moveStock(project: string, pickfaceId: string, moveStockRequest: MoveStockRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
849
+ /**
850
+ * Print a pickface label
851
+ * @summary Print pickface label
852
+ * @param {string} project What project it is
853
+ * @param {string} pickfaceId Unique identifier of a pickface
854
+ * @param {string} deviceRef Unique identifier of a warehouse device
855
+ * @param {*} [options] Override http request option.
856
+ * @throws {RequiredError}
857
+ */
858
+ printPickfaceLabel(project: string, pickfaceId: string, deviceRef: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
859
+ /**
860
+ * Print pickface labels
861
+ * @summary Print pickface Labels
862
+ * @param {string} project What project it is
863
+ * @param {string} deviceRef Unique identifier of a warehouse device
864
+ * @param {Array<string>} ids List of pickface ids
865
+ * @param {*} [options] Override http request option.
866
+ * @throws {RequiredError}
867
+ */
868
+ printPickfaceLabels(project: string, deviceRef: string, ids: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
869
+ /**
870
+ * Resolves an issue on a pickface
871
+ * @summary Resolve pickface issue
872
+ * @param {string} project What project it is
873
+ * @param {string} pickfaceId Unique identifier of a pickface
874
+ * @param {*} [options] Override http request option.
875
+ * @throws {RequiredError}
876
+ */
877
+ resolvePickfaceIssue(project: string, pickfaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
878
+ /**
879
+ * Suggest pickfaces for putting away stock
880
+ * @summary Suggest pickfaces
881
+ * @param {string} project What project it is
882
+ * @param {string} variantRef Unique identifier of a warehouse variant
883
+ * @param {number} quantity Number of variants
884
+ * @param {number} [pageToken] Page reference token
885
+ * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
886
+ * @param {*} [options] Override http request option.
887
+ * @throws {RequiredError}
888
+ */
889
+ suggestPickfaces(project: string, variantRef: string, quantity: number, pageToken?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPickfaces200Response>>;
890
+ /**
891
+ * Update a Pickface
892
+ * @summary Update Pickface
893
+ * @param {string} project What project it is
894
+ * @param {string} pickfaceId Unique identifier of a pickface
895
+ * @param {UpdatePickfaceRequest} updatePickfaceRequest Update pickface schema
896
+ * @param {*} [options] Override http request option.
897
+ * @throws {RequiredError}
898
+ */
899
+ updatePickface(project: string, pickfaceId: string, updatePickfaceRequest: UpdatePickfaceRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pickface>>;
666
900
  };
667
901
  /**
668
902
  * PickfacesApi - factory interface
@@ -677,6 +911,22 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
677
911
  * @throws {RequiredError}
678
912
  */
679
913
  createPickface(requestParameters: PickfacesApiCreatePickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
914
+ /**
915
+ * Delete a Pickface
916
+ * @summary Delete Pickface
917
+ * @param {PickfacesApiDeletePickfaceRequest} requestParameters Request parameters.
918
+ * @param {*} [options] Override http request option.
919
+ * @throws {RequiredError}
920
+ */
921
+ deletePickface(requestParameters: PickfacesApiDeletePickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
922
+ /**
923
+ * Export pickfaces as a CSV file
924
+ * @summary Export pickfaces
925
+ * @param {PickfacesApiExportPickfacesRequest} requestParameters Request parameters.
926
+ * @param {*} [options] Override http request option.
927
+ * @throws {RequiredError}
928
+ */
929
+ exportPickfaces(requestParameters: PickfacesApiExportPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<File>;
680
930
  /**
681
931
  * Get a pickface
682
932
  * @summary Get pickface
@@ -685,6 +935,14 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
685
935
  * @throws {RequiredError}
686
936
  */
687
937
  getPickface(requestParameters: PickfacesApiGetPickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
938
+ /**
939
+ * Lists pickface container models
940
+ * @summary Get pickface container models
941
+ * @param {PickfacesApiGetPickfaceContainerModelsRequest} requestParameters Request parameters.
942
+ * @param {*} [options] Override http request option.
943
+ * @throws {RequiredError}
944
+ */
945
+ getPickfaceContainerModels(requestParameters: PickfacesApiGetPickfaceContainerModelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ContainerModels>;
688
946
  /**
689
947
  * Lists all available pickfaces paginated into chunks
690
948
  * @summary List pickfaces
@@ -693,6 +951,78 @@ export declare const PickfacesApiFactory: (configuration?: Configuration, basePa
693
951
  * @throws {RequiredError}
694
952
  */
695
953
  getPickfaces(requestParameters: PickfacesApiGetPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPickfaces200Response>;
954
+ /**
955
+ * Issue an empty pickface
956
+ * @summary Issue empty pickface
957
+ * @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
958
+ * @param {*} [options] Override http request option.
959
+ * @throws {RequiredError}
960
+ */
961
+ issueEmptyPickface(requestParameters: PickfacesApiIssueEmptyPickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
962
+ /**
963
+ * Issue a pickface with wrong contents
964
+ * @summary Issue wrong contents pickface
965
+ * @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
966
+ * @param {*} [options] Override http request option.
967
+ * @throws {RequiredError}
968
+ */
969
+ issueWrongContentsPickface(requestParameters: PickfacesApiIssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
970
+ /**
971
+ * Get a list of pickface logs
972
+ * @summary Get pickface logs
973
+ * @param {PickfacesApiListPickfaceLogsRequest} requestParameters Request parameters.
974
+ * @param {*} [options] Override http request option.
975
+ * @throws {RequiredError}
976
+ */
977
+ listPickfaceLogs(requestParameters: PickfacesApiListPickfaceLogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListPickfaceLogs200Response>;
978
+ /**
979
+ * Move stock from one pickface to another in a single transaction
980
+ * @summary Move stock
981
+ * @param {PickfacesApiMoveStockRequest} requestParameters Request parameters.
982
+ * @param {*} [options] Override http request option.
983
+ * @throws {RequiredError}
984
+ */
985
+ moveStock(requestParameters: PickfacesApiMoveStockRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
986
+ /**
987
+ * Print a pickface label
988
+ * @summary Print pickface label
989
+ * @param {PickfacesApiPrintPickfaceLabelRequest} requestParameters Request parameters.
990
+ * @param {*} [options] Override http request option.
991
+ * @throws {RequiredError}
992
+ */
993
+ printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
994
+ /**
995
+ * Print pickface labels
996
+ * @summary Print pickface Labels
997
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
998
+ * @param {*} [options] Override http request option.
999
+ * @throws {RequiredError}
1000
+ */
1001
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
1002
+ /**
1003
+ * Resolves an issue on a pickface
1004
+ * @summary Resolve pickface issue
1005
+ * @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
1006
+ * @param {*} [options] Override http request option.
1007
+ * @throws {RequiredError}
1008
+ */
1009
+ resolvePickfaceIssue(requestParameters: PickfacesApiResolvePickfaceIssueRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
1010
+ /**
1011
+ * Suggest pickfaces for putting away stock
1012
+ * @summary Suggest pickfaces
1013
+ * @param {PickfacesApiSuggestPickfacesRequest} requestParameters Request parameters.
1014
+ * @param {*} [options] Override http request option.
1015
+ * @throws {RequiredError}
1016
+ */
1017
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetPickfaces200Response>;
1018
+ /**
1019
+ * Update a Pickface
1020
+ * @summary Update Pickface
1021
+ * @param {PickfacesApiUpdatePickfaceRequest} requestParameters Request parameters.
1022
+ * @param {*} [options] Override http request option.
1023
+ * @throws {RequiredError}
1024
+ */
1025
+ updatePickface(requestParameters: PickfacesApiUpdatePickfaceRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pickface>;
696
1026
  };
697
1027
  /**
698
1028
  * Request parameters for createPickface operation in PickfacesApi.
@@ -713,6 +1043,38 @@ export interface PickfacesApiCreatePickfaceRequest {
713
1043
  */
714
1044
  readonly createPickfaceRequest: CreatePickfaceRequest;
715
1045
  }
1046
+ /**
1047
+ * Request parameters for deletePickface operation in PickfacesApi.
1048
+ * @export
1049
+ * @interface PickfacesApiDeletePickfaceRequest
1050
+ */
1051
+ export interface PickfacesApiDeletePickfaceRequest {
1052
+ /**
1053
+ * What project it is
1054
+ * @type {string}
1055
+ * @memberof PickfacesApiDeletePickface
1056
+ */
1057
+ readonly project: string;
1058
+ /**
1059
+ * Unique identifier of a pickface
1060
+ * @type {string}
1061
+ * @memberof PickfacesApiDeletePickface
1062
+ */
1063
+ readonly pickfaceId: string;
1064
+ }
1065
+ /**
1066
+ * Request parameters for exportPickfaces operation in PickfacesApi.
1067
+ * @export
1068
+ * @interface PickfacesApiExportPickfacesRequest
1069
+ */
1070
+ export interface PickfacesApiExportPickfacesRequest {
1071
+ /**
1072
+ * What project it is
1073
+ * @type {string}
1074
+ * @memberof PickfacesApiExportPickfaces
1075
+ */
1076
+ readonly project: string;
1077
+ }
716
1078
  /**
717
1079
  * Request parameters for getPickface operation in PickfacesApi.
718
1080
  * @export
@@ -732,6 +1094,19 @@ export interface PickfacesApiGetPickfaceRequest {
732
1094
  */
733
1095
  readonly pickfaceId: string;
734
1096
  }
1097
+ /**
1098
+ * Request parameters for getPickfaceContainerModels operation in PickfacesApi.
1099
+ * @export
1100
+ * @interface PickfacesApiGetPickfaceContainerModelsRequest
1101
+ */
1102
+ export interface PickfacesApiGetPickfaceContainerModelsRequest {
1103
+ /**
1104
+ * What project it is
1105
+ * @type {string}
1106
+ * @memberof PickfacesApiGetPickfaceContainerModels
1107
+ */
1108
+ readonly project: string;
1109
+ }
735
1110
  /**
736
1111
  * Request parameters for getPickfaces operation in PickfacesApi.
737
1112
  * @export
@@ -769,6 +1144,243 @@ export interface PickfacesApiGetPickfacesRequest {
769
1144
  */
770
1145
  readonly sortBy?: Array<GetPickfacesSortByEnum>;
771
1146
  }
1147
+ /**
1148
+ * Request parameters for issueEmptyPickface operation in PickfacesApi.
1149
+ * @export
1150
+ * @interface PickfacesApiIssueEmptyPickfaceRequest
1151
+ */
1152
+ export interface PickfacesApiIssueEmptyPickfaceRequest {
1153
+ /**
1154
+ * What project it is
1155
+ * @type {string}
1156
+ * @memberof PickfacesApiIssueEmptyPickface
1157
+ */
1158
+ readonly project: string;
1159
+ /**
1160
+ * Unique identifier of a pickface
1161
+ * @type {string}
1162
+ * @memberof PickfacesApiIssueEmptyPickface
1163
+ */
1164
+ readonly pickfaceId: string;
1165
+ /**
1166
+ * pickface issue schema
1167
+ * @type {IssueEmptyPickfaceRequest}
1168
+ * @memberof PickfacesApiIssueEmptyPickface
1169
+ */
1170
+ readonly issueEmptyPickfaceRequest: IssueEmptyPickfaceRequest;
1171
+ }
1172
+ /**
1173
+ * Request parameters for issueWrongContentsPickface operation in PickfacesApi.
1174
+ * @export
1175
+ * @interface PickfacesApiIssueWrongContentsPickfaceRequest
1176
+ */
1177
+ export interface PickfacesApiIssueWrongContentsPickfaceRequest {
1178
+ /**
1179
+ * What project it is
1180
+ * @type {string}
1181
+ * @memberof PickfacesApiIssueWrongContentsPickface
1182
+ */
1183
+ readonly project: string;
1184
+ /**
1185
+ * Unique identifier of a pickface
1186
+ * @type {string}
1187
+ * @memberof PickfacesApiIssueWrongContentsPickface
1188
+ */
1189
+ readonly pickfaceId: string;
1190
+ /**
1191
+ * pickface issue schema
1192
+ * @type {IssueWrongContentsPickfaceRequest}
1193
+ * @memberof PickfacesApiIssueWrongContentsPickface
1194
+ */
1195
+ readonly issueWrongContentsPickfaceRequest: IssueWrongContentsPickfaceRequest;
1196
+ }
1197
+ /**
1198
+ * Request parameters for listPickfaceLogs operation in PickfacesApi.
1199
+ * @export
1200
+ * @interface PickfacesApiListPickfaceLogsRequest
1201
+ */
1202
+ export interface PickfacesApiListPickfaceLogsRequest {
1203
+ /**
1204
+ * What project it is
1205
+ * @type {string}
1206
+ * @memberof PickfacesApiListPickfaceLogs
1207
+ */
1208
+ readonly project: string;
1209
+ /**
1210
+ * Unique identifier of a pickface
1211
+ * @type {string}
1212
+ * @memberof PickfacesApiListPickfaceLogs
1213
+ */
1214
+ readonly pickfaceId: string;
1215
+ /**
1216
+ * Page reference token
1217
+ * @type {number}
1218
+ * @memberof PickfacesApiListPickfaceLogs
1219
+ */
1220
+ readonly pageToken?: number;
1221
+ /**
1222
+ * Max page size. This is the maximum page size that will be returned, but it might be smaller.
1223
+ * @type {number}
1224
+ * @memberof PickfacesApiListPickfaceLogs
1225
+ */
1226
+ readonly pageSize?: number;
1227
+ }
1228
+ /**
1229
+ * Request parameters for moveStock operation in PickfacesApi.
1230
+ * @export
1231
+ * @interface PickfacesApiMoveStockRequest
1232
+ */
1233
+ export interface PickfacesApiMoveStockRequest {
1234
+ /**
1235
+ * What project it is
1236
+ * @type {string}
1237
+ * @memberof PickfacesApiMoveStock
1238
+ */
1239
+ readonly project: string;
1240
+ /**
1241
+ * Unique identifier of a pickface
1242
+ * @type {string}
1243
+ * @memberof PickfacesApiMoveStock
1244
+ */
1245
+ readonly pickfaceId: string;
1246
+ /**
1247
+ * Move stock from one pickface to another
1248
+ * @type {MoveStockRequest}
1249
+ * @memberof PickfacesApiMoveStock
1250
+ */
1251
+ readonly moveStockRequest: MoveStockRequest;
1252
+ }
1253
+ /**
1254
+ * Request parameters for printPickfaceLabel operation in PickfacesApi.
1255
+ * @export
1256
+ * @interface PickfacesApiPrintPickfaceLabelRequest
1257
+ */
1258
+ export interface PickfacesApiPrintPickfaceLabelRequest {
1259
+ /**
1260
+ * What project it is
1261
+ * @type {string}
1262
+ * @memberof PickfacesApiPrintPickfaceLabel
1263
+ */
1264
+ readonly project: string;
1265
+ /**
1266
+ * Unique identifier of a pickface
1267
+ * @type {string}
1268
+ * @memberof PickfacesApiPrintPickfaceLabel
1269
+ */
1270
+ readonly pickfaceId: string;
1271
+ /**
1272
+ * Unique identifier of a warehouse device
1273
+ * @type {string}
1274
+ * @memberof PickfacesApiPrintPickfaceLabel
1275
+ */
1276
+ readonly deviceRef: string;
1277
+ }
1278
+ /**
1279
+ * Request parameters for printPickfaceLabels operation in PickfacesApi.
1280
+ * @export
1281
+ * @interface PickfacesApiPrintPickfaceLabelsRequest
1282
+ */
1283
+ export interface PickfacesApiPrintPickfaceLabelsRequest {
1284
+ /**
1285
+ * What project it is
1286
+ * @type {string}
1287
+ * @memberof PickfacesApiPrintPickfaceLabels
1288
+ */
1289
+ readonly project: string;
1290
+ /**
1291
+ * Unique identifier of a warehouse device
1292
+ * @type {string}
1293
+ * @memberof PickfacesApiPrintPickfaceLabels
1294
+ */
1295
+ readonly deviceRef: string;
1296
+ /**
1297
+ * List of pickface ids
1298
+ * @type {Array<string>}
1299
+ * @memberof PickfacesApiPrintPickfaceLabels
1300
+ */
1301
+ readonly ids: Array<string>;
1302
+ }
1303
+ /**
1304
+ * Request parameters for resolvePickfaceIssue operation in PickfacesApi.
1305
+ * @export
1306
+ * @interface PickfacesApiResolvePickfaceIssueRequest
1307
+ */
1308
+ export interface PickfacesApiResolvePickfaceIssueRequest {
1309
+ /**
1310
+ * What project it is
1311
+ * @type {string}
1312
+ * @memberof PickfacesApiResolvePickfaceIssue
1313
+ */
1314
+ readonly project: string;
1315
+ /**
1316
+ * Unique identifier of a pickface
1317
+ * @type {string}
1318
+ * @memberof PickfacesApiResolvePickfaceIssue
1319
+ */
1320
+ readonly pickfaceId: string;
1321
+ }
1322
+ /**
1323
+ * Request parameters for suggestPickfaces operation in PickfacesApi.
1324
+ * @export
1325
+ * @interface PickfacesApiSuggestPickfacesRequest
1326
+ */
1327
+ export interface PickfacesApiSuggestPickfacesRequest {
1328
+ /**
1329
+ * What project it is
1330
+ * @type {string}
1331
+ * @memberof PickfacesApiSuggestPickfaces
1332
+ */
1333
+ readonly project: string;
1334
+ /**
1335
+ * Unique identifier of a warehouse variant
1336
+ * @type {string}
1337
+ * @memberof PickfacesApiSuggestPickfaces
1338
+ */
1339
+ readonly variantRef: string;
1340
+ /**
1341
+ * Number of variants
1342
+ * @type {number}
1343
+ * @memberof PickfacesApiSuggestPickfaces
1344
+ */
1345
+ readonly quantity: number;
1346
+ /**
1347
+ * Page reference token
1348
+ * @type {number}
1349
+ * @memberof PickfacesApiSuggestPickfaces
1350
+ */
1351
+ readonly pageToken?: number;
1352
+ /**
1353
+ * Max page size. This is the maximum page size that will be returned, but it might be smaller.
1354
+ * @type {number}
1355
+ * @memberof PickfacesApiSuggestPickfaces
1356
+ */
1357
+ readonly pageSize?: number;
1358
+ }
1359
+ /**
1360
+ * Request parameters for updatePickface operation in PickfacesApi.
1361
+ * @export
1362
+ * @interface PickfacesApiUpdatePickfaceRequest
1363
+ */
1364
+ export interface PickfacesApiUpdatePickfaceRequest {
1365
+ /**
1366
+ * What project it is
1367
+ * @type {string}
1368
+ * @memberof PickfacesApiUpdatePickface
1369
+ */
1370
+ readonly project: string;
1371
+ /**
1372
+ * Unique identifier of a pickface
1373
+ * @type {string}
1374
+ * @memberof PickfacesApiUpdatePickface
1375
+ */
1376
+ readonly pickfaceId: string;
1377
+ /**
1378
+ * Update pickface schema
1379
+ * @type {UpdatePickfaceRequest}
1380
+ * @memberof PickfacesApiUpdatePickface
1381
+ */
1382
+ readonly updatePickfaceRequest: UpdatePickfaceRequest;
1383
+ }
772
1384
  /**
773
1385
  * PickfacesApi - object-oriented interface
774
1386
  * @export
@@ -785,6 +1397,24 @@ export declare class PickfacesApi extends BaseAPI {
785
1397
  * @memberof PickfacesApi
786
1398
  */
787
1399
  createPickface(requestParameters: PickfacesApiCreatePickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1400
+ /**
1401
+ * Delete a Pickface
1402
+ * @summary Delete Pickface
1403
+ * @param {PickfacesApiDeletePickfaceRequest} requestParameters Request parameters.
1404
+ * @param {*} [options] Override http request option.
1405
+ * @throws {RequiredError}
1406
+ * @memberof PickfacesApi
1407
+ */
1408
+ deletePickface(requestParameters: PickfacesApiDeletePickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1409
+ /**
1410
+ * Export pickfaces as a CSV file
1411
+ * @summary Export pickfaces
1412
+ * @param {PickfacesApiExportPickfacesRequest} requestParameters Request parameters.
1413
+ * @param {*} [options] Override http request option.
1414
+ * @throws {RequiredError}
1415
+ * @memberof PickfacesApi
1416
+ */
1417
+ exportPickfaces(requestParameters: PickfacesApiExportPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
788
1418
  /**
789
1419
  * Get a pickface
790
1420
  * @summary Get pickface
@@ -794,6 +1424,15 @@ export declare class PickfacesApi extends BaseAPI {
794
1424
  * @memberof PickfacesApi
795
1425
  */
796
1426
  getPickface(requestParameters: PickfacesApiGetPickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1427
+ /**
1428
+ * Lists pickface container models
1429
+ * @summary Get pickface container models
1430
+ * @param {PickfacesApiGetPickfaceContainerModelsRequest} requestParameters Request parameters.
1431
+ * @param {*} [options] Override http request option.
1432
+ * @throws {RequiredError}
1433
+ * @memberof PickfacesApi
1434
+ */
1435
+ getPickfaceContainerModels(requestParameters: PickfacesApiGetPickfaceContainerModelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ContainerModels, any>>;
797
1436
  /**
798
1437
  * Lists all available pickfaces paginated into chunks
799
1438
  * @summary List pickfaces
@@ -803,6 +1442,87 @@ export declare class PickfacesApi extends BaseAPI {
803
1442
  * @memberof PickfacesApi
804
1443
  */
805
1444
  getPickfaces(requestParameters: PickfacesApiGetPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPickfaces200Response, any>>;
1445
+ /**
1446
+ * Issue an empty pickface
1447
+ * @summary Issue empty pickface
1448
+ * @param {PickfacesApiIssueEmptyPickfaceRequest} requestParameters Request parameters.
1449
+ * @param {*} [options] Override http request option.
1450
+ * @throws {RequiredError}
1451
+ * @memberof PickfacesApi
1452
+ */
1453
+ issueEmptyPickface(requestParameters: PickfacesApiIssueEmptyPickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1454
+ /**
1455
+ * Issue a pickface with wrong contents
1456
+ * @summary Issue wrong contents pickface
1457
+ * @param {PickfacesApiIssueWrongContentsPickfaceRequest} requestParameters Request parameters.
1458
+ * @param {*} [options] Override http request option.
1459
+ * @throws {RequiredError}
1460
+ * @memberof PickfacesApi
1461
+ */
1462
+ issueWrongContentsPickface(requestParameters: PickfacesApiIssueWrongContentsPickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1463
+ /**
1464
+ * Get a list of pickface logs
1465
+ * @summary Get pickface logs
1466
+ * @param {PickfacesApiListPickfaceLogsRequest} requestParameters Request parameters.
1467
+ * @param {*} [options] Override http request option.
1468
+ * @throws {RequiredError}
1469
+ * @memberof PickfacesApi
1470
+ */
1471
+ listPickfaceLogs(requestParameters: PickfacesApiListPickfaceLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPickfaceLogs200Response, any>>;
1472
+ /**
1473
+ * Move stock from one pickface to another in a single transaction
1474
+ * @summary Move stock
1475
+ * @param {PickfacesApiMoveStockRequest} requestParameters Request parameters.
1476
+ * @param {*} [options] Override http request option.
1477
+ * @throws {RequiredError}
1478
+ * @memberof PickfacesApi
1479
+ */
1480
+ moveStock(requestParameters: PickfacesApiMoveStockRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1481
+ /**
1482
+ * Print a pickface label
1483
+ * @summary Print pickface label
1484
+ * @param {PickfacesApiPrintPickfaceLabelRequest} requestParameters Request parameters.
1485
+ * @param {*} [options] Override http request option.
1486
+ * @throws {RequiredError}
1487
+ * @memberof PickfacesApi
1488
+ */
1489
+ printPickfaceLabel(requestParameters: PickfacesApiPrintPickfaceLabelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1490
+ /**
1491
+ * Print pickface labels
1492
+ * @summary Print pickface Labels
1493
+ * @param {PickfacesApiPrintPickfaceLabelsRequest} requestParameters Request parameters.
1494
+ * @param {*} [options] Override http request option.
1495
+ * @throws {RequiredError}
1496
+ * @memberof PickfacesApi
1497
+ */
1498
+ printPickfaceLabels(requestParameters: PickfacesApiPrintPickfaceLabelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
1499
+ /**
1500
+ * Resolves an issue on a pickface
1501
+ * @summary Resolve pickface issue
1502
+ * @param {PickfacesApiResolvePickfaceIssueRequest} requestParameters Request parameters.
1503
+ * @param {*} [options] Override http request option.
1504
+ * @throws {RequiredError}
1505
+ * @memberof PickfacesApi
1506
+ */
1507
+ resolvePickfaceIssue(requestParameters: PickfacesApiResolvePickfaceIssueRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
1508
+ /**
1509
+ * Suggest pickfaces for putting away stock
1510
+ * @summary Suggest pickfaces
1511
+ * @param {PickfacesApiSuggestPickfacesRequest} requestParameters Request parameters.
1512
+ * @param {*} [options] Override http request option.
1513
+ * @throws {RequiredError}
1514
+ * @memberof PickfacesApi
1515
+ */
1516
+ suggestPickfaces(requestParameters: PickfacesApiSuggestPickfacesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPickfaces200Response, any>>;
1517
+ /**
1518
+ * Update a Pickface
1519
+ * @summary Update Pickface
1520
+ * @param {PickfacesApiUpdatePickfaceRequest} requestParameters Request parameters.
1521
+ * @param {*} [options] Override http request option.
1522
+ * @throws {RequiredError}
1523
+ * @memberof PickfacesApi
1524
+ */
1525
+ updatePickface(requestParameters: PickfacesApiUpdatePickfaceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pickface, any>>;
806
1526
  }
807
1527
  /**
808
1528
  * @export