falconhub-apilibrary 1.5.3-dev.134 → 1.6.0-dev.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/dist/index.d.mts +426 -1
- package/dist/index.mjs +483 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
interface ChangePasswordRequest {
|
|
2
2
|
email: string;
|
|
3
|
+
oldPassword: string;
|
|
3
4
|
newPassword: string;
|
|
4
5
|
}
|
|
5
6
|
|
|
@@ -154,6 +155,26 @@ interface AreaCodeUserProfile {
|
|
|
154
155
|
country: string;
|
|
155
156
|
}
|
|
156
157
|
|
|
158
|
+
interface PrintLocation {
|
|
159
|
+
printLocationId: number;
|
|
160
|
+
printLocation: string;
|
|
161
|
+
key: string;
|
|
162
|
+
description: string;
|
|
163
|
+
createdAt: string;
|
|
164
|
+
updatedAt: string | null;
|
|
165
|
+
deleted: boolean;
|
|
166
|
+
}
|
|
167
|
+
interface PrintLocationRequest {
|
|
168
|
+
printLocation: string;
|
|
169
|
+
key: string;
|
|
170
|
+
description: string;
|
|
171
|
+
}
|
|
172
|
+
interface PrintLocationFilter {
|
|
173
|
+
search?: string;
|
|
174
|
+
printLocation?: string;
|
|
175
|
+
description?: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
157
178
|
interface Location {
|
|
158
179
|
locationId: number;
|
|
159
180
|
locationName: string;
|
|
@@ -704,6 +725,338 @@ interface ProductStatusesFilter {
|
|
|
704
725
|
isSellable?: boolean;
|
|
705
726
|
}
|
|
706
727
|
|
|
728
|
+
interface ConsumableType {
|
|
729
|
+
consumableTypeId: number;
|
|
730
|
+
consumableType: string;
|
|
731
|
+
key: string;
|
|
732
|
+
description: string;
|
|
733
|
+
createdAt: string;
|
|
734
|
+
updatedAt: string | null;
|
|
735
|
+
deleted: boolean;
|
|
736
|
+
}
|
|
737
|
+
interface ConsumableTypeRequest {
|
|
738
|
+
consumableType: string;
|
|
739
|
+
key: string;
|
|
740
|
+
description: string;
|
|
741
|
+
}
|
|
742
|
+
interface ConsumableTypesFilter {
|
|
743
|
+
search?: string;
|
|
744
|
+
consumableType?: string;
|
|
745
|
+
key?: string;
|
|
746
|
+
description?: string;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
interface Consumable {
|
|
750
|
+
consumableId: number;
|
|
751
|
+
consumable: string;
|
|
752
|
+
sku: string;
|
|
753
|
+
dimensions: string;
|
|
754
|
+
unitCost: number;
|
|
755
|
+
minimumStock: number;
|
|
756
|
+
image: string;
|
|
757
|
+
media: string;
|
|
758
|
+
consumableTypeId: number;
|
|
759
|
+
providerId: number;
|
|
760
|
+
materialId: number;
|
|
761
|
+
createdAt: string;
|
|
762
|
+
updatedAt: string | null;
|
|
763
|
+
deleted: boolean;
|
|
764
|
+
consumableType?: ConsumableType | null;
|
|
765
|
+
provider?: Provider | null;
|
|
766
|
+
material?: Material | null;
|
|
767
|
+
}
|
|
768
|
+
interface ConsumableRequest {
|
|
769
|
+
consumable: string;
|
|
770
|
+
sku: string;
|
|
771
|
+
dimensions: string;
|
|
772
|
+
unitCost: number;
|
|
773
|
+
minimumStock: number;
|
|
774
|
+
image?: string;
|
|
775
|
+
media?: string;
|
|
776
|
+
consumableTypeId: number;
|
|
777
|
+
providerId: number;
|
|
778
|
+
materialId: number;
|
|
779
|
+
}
|
|
780
|
+
interface ConsumablesFilter {
|
|
781
|
+
search?: string;
|
|
782
|
+
consumable?: string;
|
|
783
|
+
sku?: string;
|
|
784
|
+
consumableTypeId?: number;
|
|
785
|
+
providerId?: number;
|
|
786
|
+
materialId?: number;
|
|
787
|
+
}
|
|
788
|
+
interface ConsumablesBulkItem {
|
|
789
|
+
consumableId: string;
|
|
790
|
+
consumable: string;
|
|
791
|
+
sku: string;
|
|
792
|
+
dimensions: string;
|
|
793
|
+
unitCost: string;
|
|
794
|
+
minimumStock: string;
|
|
795
|
+
consumableTypeId: string;
|
|
796
|
+
providerId: string;
|
|
797
|
+
materialId: string;
|
|
798
|
+
}
|
|
799
|
+
declare const CONSUMABLES_BULK_COLUMN_MAP: Record<string, keyof ConsumablesBulkItem>;
|
|
800
|
+
declare const CONSUMABLES_BULK_HEADERS: string[];
|
|
801
|
+
declare const CONSUMABLES_LAYOUT_COLUMN_MAP: Record<string, keyof ConsumablesBulkItem>;
|
|
802
|
+
declare const CONSUMABLES_LAYOUT_HEADERS: string[];
|
|
803
|
+
|
|
804
|
+
interface Collection {
|
|
805
|
+
collectionId: number;
|
|
806
|
+
collection: string;
|
|
807
|
+
sku: string;
|
|
808
|
+
licenseId: number;
|
|
809
|
+
consumableId: number;
|
|
810
|
+
createdAt: string;
|
|
811
|
+
updatedAt: string | null;
|
|
812
|
+
deleted: boolean;
|
|
813
|
+
license?: License | null;
|
|
814
|
+
consumable?: Consumable | null;
|
|
815
|
+
}
|
|
816
|
+
interface CollectionRequest {
|
|
817
|
+
collection: string;
|
|
818
|
+
sku: string;
|
|
819
|
+
licenseId: number;
|
|
820
|
+
consumableId: number;
|
|
821
|
+
}
|
|
822
|
+
interface CollectionsFilter {
|
|
823
|
+
search?: string;
|
|
824
|
+
sku?: string;
|
|
825
|
+
licenseId?: number;
|
|
826
|
+
consumableId?: number;
|
|
827
|
+
}
|
|
828
|
+
interface CollectionsBulkItem {
|
|
829
|
+
collectionId: string;
|
|
830
|
+
collection: string;
|
|
831
|
+
sku: string;
|
|
832
|
+
license: string;
|
|
833
|
+
consumable: string;
|
|
834
|
+
}
|
|
835
|
+
declare const COLLECTIONS_BULK_COLUMN_MAP: Record<string, keyof CollectionsBulkItem>;
|
|
836
|
+
declare const COLLECTIONS_BULK_HEADERS: string[];
|
|
837
|
+
declare const COLLECTIONS_LAYOUT_COLUMN_MAP: Record<string, keyof CollectionsBulkItem>;
|
|
838
|
+
declare const COLLECTIONS_LAYOUT_HEADERS: string[];
|
|
839
|
+
|
|
840
|
+
interface ProductDimensionsRequest {
|
|
841
|
+
length: number;
|
|
842
|
+
width: number;
|
|
843
|
+
height: number;
|
|
844
|
+
weight: number;
|
|
845
|
+
}
|
|
846
|
+
interface ProductBundleItemsRequest {
|
|
847
|
+
sku: string;
|
|
848
|
+
quantity: number;
|
|
849
|
+
}
|
|
850
|
+
interface Product {
|
|
851
|
+
productId: number;
|
|
852
|
+
product: string;
|
|
853
|
+
sku: string;
|
|
854
|
+
skUs: string;
|
|
855
|
+
upc: string;
|
|
856
|
+
cost: number;
|
|
857
|
+
tax: number;
|
|
858
|
+
image: string;
|
|
859
|
+
model: string;
|
|
860
|
+
target: string;
|
|
861
|
+
description: string;
|
|
862
|
+
includeBundles: boolean;
|
|
863
|
+
includePODDetails: boolean;
|
|
864
|
+
productTypeId: number;
|
|
865
|
+
productCategoryId: number;
|
|
866
|
+
licenseId: number;
|
|
867
|
+
providerId: number;
|
|
868
|
+
packingId: number;
|
|
869
|
+
productStatusId: number;
|
|
870
|
+
colorId: number;
|
|
871
|
+
materialId: number;
|
|
872
|
+
createdAt: string;
|
|
873
|
+
updatedAt: string | null;
|
|
874
|
+
deleted: boolean;
|
|
875
|
+
productType?: ProductType | null;
|
|
876
|
+
productCategory?: ProductCategory | null;
|
|
877
|
+
license?: License | null;
|
|
878
|
+
provider?: Provider | null;
|
|
879
|
+
packing?: Packing | null;
|
|
880
|
+
productStatus?: ProductStatus | null;
|
|
881
|
+
color?: Color | null;
|
|
882
|
+
material?: Material | null;
|
|
883
|
+
}
|
|
884
|
+
interface ProductRequest {
|
|
885
|
+
product: string;
|
|
886
|
+
sku: string;
|
|
887
|
+
skUs?: string[];
|
|
888
|
+
upc: string;
|
|
889
|
+
cost: number;
|
|
890
|
+
tax: number;
|
|
891
|
+
image: string;
|
|
892
|
+
model: string;
|
|
893
|
+
target: string;
|
|
894
|
+
description: string;
|
|
895
|
+
dimensions?: ProductDimensionsRequest | null;
|
|
896
|
+
includeBundles: boolean;
|
|
897
|
+
bundles?: ProductBundleItemsRequest[] | null;
|
|
898
|
+
includePODDetails: boolean;
|
|
899
|
+
productTypeId: string;
|
|
900
|
+
productCategoryId: string;
|
|
901
|
+
licenseId: string;
|
|
902
|
+
providerId: string;
|
|
903
|
+
packingId: string;
|
|
904
|
+
productStatusId: string;
|
|
905
|
+
colorId: string;
|
|
906
|
+
materialId: string;
|
|
907
|
+
}
|
|
908
|
+
interface ProductsFilter {
|
|
909
|
+
search?: string;
|
|
910
|
+
product?: string;
|
|
911
|
+
sku?: string;
|
|
912
|
+
upc?: string;
|
|
913
|
+
costMin?: number;
|
|
914
|
+
costMax?: number;
|
|
915
|
+
model?: string;
|
|
916
|
+
target?: string;
|
|
917
|
+
description?: string;
|
|
918
|
+
productTypeId?: number;
|
|
919
|
+
productCategoryId?: number;
|
|
920
|
+
licenseId?: number;
|
|
921
|
+
providerId?: number;
|
|
922
|
+
packingId?: number;
|
|
923
|
+
productStatusId?: number;
|
|
924
|
+
colorId?: number;
|
|
925
|
+
materialId?: number;
|
|
926
|
+
includeBundles?: boolean;
|
|
927
|
+
includePODDetails?: boolean;
|
|
928
|
+
}
|
|
929
|
+
interface ProductsBulkItem {
|
|
930
|
+
productId: string;
|
|
931
|
+
product: string;
|
|
932
|
+
sku: string;
|
|
933
|
+
skUs: string;
|
|
934
|
+
upc: string;
|
|
935
|
+
cost: string;
|
|
936
|
+
tax: string;
|
|
937
|
+
image: string;
|
|
938
|
+
model: string;
|
|
939
|
+
target: string;
|
|
940
|
+
description: string;
|
|
941
|
+
length: string;
|
|
942
|
+
width: string;
|
|
943
|
+
height: string;
|
|
944
|
+
weight: string;
|
|
945
|
+
includeBundles: string;
|
|
946
|
+
includePODDetails: string;
|
|
947
|
+
productTypeId: string;
|
|
948
|
+
productCategoryId: string;
|
|
949
|
+
licenseId: string;
|
|
950
|
+
providerId: string;
|
|
951
|
+
packingId: string;
|
|
952
|
+
productStatusId: string;
|
|
953
|
+
colorId: string;
|
|
954
|
+
materialId: string;
|
|
955
|
+
}
|
|
956
|
+
declare const PRODUCTS_BULK_COLUMN_MAP: Record<string, keyof ProductsBulkItem>;
|
|
957
|
+
declare const PRODUCTS_BULK_HEADERS: string[];
|
|
958
|
+
declare const PRODUCTS_LAYOUT_COLUMN_MAP: Record<string, keyof ProductsBulkItem>;
|
|
959
|
+
declare const PRODUCTS_LAYOUT_HEADERS: string[];
|
|
960
|
+
|
|
961
|
+
interface Artwork {
|
|
962
|
+
artworkId: number;
|
|
963
|
+
artwork: string;
|
|
964
|
+
sku: string;
|
|
965
|
+
mockup: string;
|
|
966
|
+
frontPrint: string;
|
|
967
|
+
backPrint: string;
|
|
968
|
+
neckLabel: string;
|
|
969
|
+
collectionId: number;
|
|
970
|
+
blankId: number;
|
|
971
|
+
printLocationId: number;
|
|
972
|
+
createdAt: string;
|
|
973
|
+
updatedAt: string | null;
|
|
974
|
+
deleted: boolean;
|
|
975
|
+
collection?: Collection | null;
|
|
976
|
+
blank?: Blank | null;
|
|
977
|
+
printLocation?: PrintLocation | null;
|
|
978
|
+
}
|
|
979
|
+
interface ArtworkRequest {
|
|
980
|
+
artwork: string;
|
|
981
|
+
sku: string;
|
|
982
|
+
mockup?: string;
|
|
983
|
+
frontPrint?: string;
|
|
984
|
+
backPrint?: string;
|
|
985
|
+
neckLabel?: string;
|
|
986
|
+
collectionId: number;
|
|
987
|
+
blankId: number;
|
|
988
|
+
printLocationId: number;
|
|
989
|
+
}
|
|
990
|
+
interface ArtworksFilter {
|
|
991
|
+
search?: string;
|
|
992
|
+
sku?: string;
|
|
993
|
+
collectionId?: number;
|
|
994
|
+
blankId?: number;
|
|
995
|
+
printLocationId?: number;
|
|
996
|
+
}
|
|
997
|
+
interface ArtworksBulkItem {
|
|
998
|
+
artworkId: string;
|
|
999
|
+
artwork: string;
|
|
1000
|
+
sku: string;
|
|
1001
|
+
neckLabel: string;
|
|
1002
|
+
collection: string;
|
|
1003
|
+
blank: string;
|
|
1004
|
+
printLocation: string;
|
|
1005
|
+
}
|
|
1006
|
+
declare const ARTWORKS_BULK_COLUMN_MAP: Record<string, keyof ArtworksBulkItem>;
|
|
1007
|
+
declare const ARTWORKS_BULK_HEADERS: string[];
|
|
1008
|
+
declare const ARTWORKS_LAYOUT_COLUMN_MAP: Record<string, keyof ArtworksBulkItem>;
|
|
1009
|
+
declare const ARTWORKS_LAYOUT_HEADERS: string[];
|
|
1010
|
+
|
|
1011
|
+
interface POD {
|
|
1012
|
+
podId: number;
|
|
1013
|
+
productId: number;
|
|
1014
|
+
artworkId: number;
|
|
1015
|
+
createdAt: string;
|
|
1016
|
+
updatedAt: string | null;
|
|
1017
|
+
deleted: boolean;
|
|
1018
|
+
product?: Product | null;
|
|
1019
|
+
artwork?: Artwork | null;
|
|
1020
|
+
}
|
|
1021
|
+
interface PODRequest {
|
|
1022
|
+
productId: number;
|
|
1023
|
+
artworkId: number;
|
|
1024
|
+
}
|
|
1025
|
+
interface PODFilter {
|
|
1026
|
+
productId?: number;
|
|
1027
|
+
artworkId?: number;
|
|
1028
|
+
}
|
|
1029
|
+
interface PODBulkItem {
|
|
1030
|
+
podId: string;
|
|
1031
|
+
product: string;
|
|
1032
|
+
artwork: string;
|
|
1033
|
+
}
|
|
1034
|
+
declare const POD_BULK_COLUMN_MAP: Record<string, keyof PODBulkItem>;
|
|
1035
|
+
declare const POD_BULK_HEADERS: string[];
|
|
1036
|
+
declare const POD_LAYOUT_COLUMN_MAP: Record<string, keyof PODBulkItem>;
|
|
1037
|
+
declare const POD_LAYOUT_HEADERS: string[];
|
|
1038
|
+
|
|
1039
|
+
interface ArtworkConsumable {
|
|
1040
|
+
artworkConsumableId: number;
|
|
1041
|
+
quantity: number;
|
|
1042
|
+
artworkId: number;
|
|
1043
|
+
consumableId: number;
|
|
1044
|
+
createdAt: string;
|
|
1045
|
+
updatedAt: string | null;
|
|
1046
|
+
deleted: boolean;
|
|
1047
|
+
artwork?: Artwork | null;
|
|
1048
|
+
consumable?: Consumable | null;
|
|
1049
|
+
}
|
|
1050
|
+
interface ArtworkConsumableRequest {
|
|
1051
|
+
artworkId: number;
|
|
1052
|
+
consumableId: number;
|
|
1053
|
+
quantity: number;
|
|
1054
|
+
}
|
|
1055
|
+
interface ArtworkConsumablesFilter {
|
|
1056
|
+
artworkId?: number;
|
|
1057
|
+
consumableId?: number;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
707
1060
|
/**
|
|
708
1061
|
* Interfaz que representa un módulo del sistema.
|
|
709
1062
|
*/
|
|
@@ -1081,6 +1434,8 @@ interface SiteConfigCatalogsResponse {
|
|
|
1081
1434
|
productStatuses: ProductStatus[];
|
|
1082
1435
|
studios: Studio[];
|
|
1083
1436
|
licenses: License[];
|
|
1437
|
+
consumableTypes: ConsumableType[];
|
|
1438
|
+
printLocations: PrintLocation[];
|
|
1084
1439
|
}
|
|
1085
1440
|
/**
|
|
1086
1441
|
* Interfaz que representa la respuesta de la configuración del sitio.
|
|
@@ -1317,6 +1672,11 @@ declare class TokenManager {
|
|
|
1317
1672
|
private stopAutoRefreshTimer;
|
|
1318
1673
|
}
|
|
1319
1674
|
|
|
1675
|
+
interface RecoveryPasswordRequest {
|
|
1676
|
+
email: string;
|
|
1677
|
+
newPassword: string;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1320
1680
|
declare class AuthService {
|
|
1321
1681
|
private api;
|
|
1322
1682
|
private crytpoService;
|
|
@@ -1371,6 +1731,7 @@ declare class AuthService {
|
|
|
1371
1731
|
* @param request - Email, contraseña actual y nueva contraseña
|
|
1372
1732
|
*/
|
|
1373
1733
|
changePassword(request: ChangePasswordRequest): Promise<ResponseModel>;
|
|
1734
|
+
recoveryPassword(request: RecoveryPasswordRequest): Promise<ResponseModel>;
|
|
1374
1735
|
/**
|
|
1375
1736
|
* Verifica si el usuario está autenticado
|
|
1376
1737
|
*/
|
|
@@ -2042,6 +2403,70 @@ declare class ProductService {
|
|
|
2042
2403
|
* Elimina un estatus de producto.
|
|
2043
2404
|
*/
|
|
2044
2405
|
deleteProductStatus(id: number): Promise<ResponseModel<void>>;
|
|
2406
|
+
getPrintLocations(filter?: PrintLocationFilter): Promise<ResponseModel<PrintLocation[]>>;
|
|
2407
|
+
getPrintLocationsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2408
|
+
getPrintLocationById(id: number): Promise<ResponseModel<PrintLocation>>;
|
|
2409
|
+
createPrintLocation(request: PrintLocationRequest): Promise<ResponseModel<PrintLocation>>;
|
|
2410
|
+
updatePrintLocation(id: number, request: PrintLocationRequest): Promise<ResponseModel<PrintLocation>>;
|
|
2411
|
+
deletePrintLocation(id: number): Promise<ResponseModel<void>>;
|
|
2412
|
+
getConsumableTypes(filter?: ConsumableTypesFilter): Promise<ResponseModel<ConsumableType[]>>;
|
|
2413
|
+
getConsumableTypesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2414
|
+
getConsumableTypeById(id: number): Promise<ResponseModel<ConsumableType>>;
|
|
2415
|
+
createConsumableType(request: ConsumableTypeRequest): Promise<ResponseModel<ConsumableType>>;
|
|
2416
|
+
updateConsumableType(id: number, request: ConsumableTypeRequest): Promise<ResponseModel<ConsumableType>>;
|
|
2417
|
+
deleteConsumableType(id: number): Promise<ResponseModel<void>>;
|
|
2418
|
+
getConsumables(filter?: ConsumablesFilter): Promise<ResponseModel<Consumable[]>>;
|
|
2419
|
+
getConsumablesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2420
|
+
getConsumableById(id: number): Promise<ResponseModel<Consumable>>;
|
|
2421
|
+
createConsumable(request: ConsumableRequest): Promise<ResponseModel<Consumable>>;
|
|
2422
|
+
updateConsumable(id: number, request: ConsumableRequest): Promise<ResponseModel<Consumable>>;
|
|
2423
|
+
deleteConsumable(id: number): Promise<ResponseModel<void>>;
|
|
2424
|
+
getConsumablesBulkTemplate(): Promise<ResponseModel<Blob>>;
|
|
2425
|
+
getConsumablesBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
|
|
2426
|
+
bulkUpsertConsumables(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
|
|
2427
|
+
getCollections(filter?: CollectionsFilter): Promise<ResponseModel<Collection[]>>;
|
|
2428
|
+
getCollectionsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2429
|
+
getCollectionById(id: number): Promise<ResponseModel<Collection>>;
|
|
2430
|
+
createCollection(request: CollectionRequest): Promise<ResponseModel<Collection>>;
|
|
2431
|
+
updateCollection(id: number, request: CollectionRequest): Promise<ResponseModel<Collection>>;
|
|
2432
|
+
deleteCollection(id: number): Promise<ResponseModel<void>>;
|
|
2433
|
+
getCollectionsBulkTemplate(): Promise<ResponseModel<Blob>>;
|
|
2434
|
+
getCollectionsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
|
|
2435
|
+
bulkUpsertCollections(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
|
|
2436
|
+
getProducts(filter?: ProductsFilter): Promise<ResponseModel<Product[]>>;
|
|
2437
|
+
getProductsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2438
|
+
getProductDetails(id: number): Promise<ResponseModel<Product>>;
|
|
2439
|
+
getProductById(id: number): Promise<ResponseModel<Product>>;
|
|
2440
|
+
createProduct(request: ProductRequest): Promise<ResponseModel<Product>>;
|
|
2441
|
+
updateProduct(id: number, request: ProductRequest): Promise<ResponseModel<Product>>;
|
|
2442
|
+
deleteProduct(id: number): Promise<ResponseModel<void>>;
|
|
2443
|
+
getProductsBulkTemplate(): Promise<ResponseModel<Blob>>;
|
|
2444
|
+
getProductsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
|
|
2445
|
+
bulkUpsertProducts(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
|
|
2446
|
+
getPODs(filter?: PODFilter): Promise<ResponseModel<POD[]>>;
|
|
2447
|
+
getPODFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2448
|
+
getPODById(id: number): Promise<ResponseModel<POD>>;
|
|
2449
|
+
createPOD(request: PODRequest): Promise<ResponseModel<POD>>;
|
|
2450
|
+
updatePOD(id: number, request: PODRequest): Promise<ResponseModel<POD>>;
|
|
2451
|
+
deletePOD(id: number): Promise<ResponseModel<void>>;
|
|
2452
|
+
getPODsBulkTemplate(): Promise<ResponseModel<Blob>>;
|
|
2453
|
+
getPODsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
|
|
2454
|
+
bulkUpsertPODs(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
|
|
2455
|
+
getArtworks(filter?: ArtworksFilter): Promise<ResponseModel<Artwork[]>>;
|
|
2456
|
+
getArtworksFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2457
|
+
getArtworkById(id: number): Promise<ResponseModel<Artwork>>;
|
|
2458
|
+
createArtwork(request: ArtworkRequest): Promise<ResponseModel<Artwork>>;
|
|
2459
|
+
updateArtwork(id: number, request: ArtworkRequest): Promise<ResponseModel<Artwork>>;
|
|
2460
|
+
deleteArtwork(id: number): Promise<ResponseModel<void>>;
|
|
2461
|
+
getArtworksBulkTemplate(): Promise<ResponseModel<Blob>>;
|
|
2462
|
+
getArtworksBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
|
|
2463
|
+
bulkUpsertArtworks(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
|
|
2464
|
+
getArtworkConsumables(filter?: ArtworkConsumablesFilter): Promise<ResponseModel<ArtworkConsumable[]>>;
|
|
2465
|
+
getArtworkConsumablesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
|
|
2466
|
+
getArtworkConsumableById(id: number): Promise<ResponseModel<ArtworkConsumable>>;
|
|
2467
|
+
createArtworkConsumable(request: ArtworkConsumableRequest): Promise<ResponseModel<ArtworkConsumable>>;
|
|
2468
|
+
updateArtworkConsumable(id: number, request: ArtworkConsumableRequest): Promise<ResponseModel<ArtworkConsumable>>;
|
|
2469
|
+
deleteArtworkConsumable(id: number): Promise<ResponseModel<void>>;
|
|
2045
2470
|
}
|
|
2046
2471
|
|
|
2047
2472
|
/**
|
|
@@ -2362,4 +2787,4 @@ declare class FalconHUBSDK {
|
|
|
2362
2787
|
|
|
2363
2788
|
declare function decrypt(encryptedBase64: string, secret: string, timestamp: string): string;
|
|
2364
2789
|
|
|
2365
|
-
export { API, type AdminAuthentication, type AdminUser, type AreaCode, type AreaCodeRequest, type AreaCodeUserProfile, type AreaCodesFilter, AuthInterceptor, type AuthInterceptorConfig, AuthService, BLANKS_BULK_COLUMN_MAP, BLANKS_BULK_SPANISH_HEADERS, type Blank, type BlankRequest, type BlanksBulkItem, type BlanksFilter, type BulkResult, type BulkRowError, type BulkUploadRequest, COLORS_BULK_COLUMN_MAP, COLORS_BULK_HEADERS, COLORS_LAYOUT_COLUMN_MAP, COLORS_LAYOUT_HEADERS, CatalogService, type ChangePasswordAdminRequest, type ChangePasswordRequest, type ChangePasswordUserRequest, type Color, type ColorRequest, type ColorsBulkItem, type ColorsFilter, type ConfirmEmailRequest, CryptoService, type Endpoint, type EndpointRequest, type EndpointsFilter, ErrorResponse, FalconHUBSDK, FilterBuilder, type FilterFieldMetadata, type FilterGroup, type FilterGroupOption, type FilterGroupsModel, type FilterMetadataModel, type FilterModel, type Gender, type GenderRequest, type GenderUserProfile, type GendersFilter, type GetSecretKeyRequest, type GetSecretKeyResponse, type HttpMethodType, type InterceptorContext, InventoryService, type InventoryStatus, type InventoryStatusRequest, type InventoryStatusesFilter, LAYOUT_MARKER, type License, type LicenseRequest, type LicensesFilter, type Location, type LocationsFilter, type LocationsRequest, type LoginRequest, type LoginResponse, MATERIALS_BULK_COLUMN_MAP, MATERIALS_BULK_HEADERS, MATERIALS_LAYOUT_COLUMN_MAP, MATERIALS_LAYOUT_HEADERS, type Material, type MaterialRequest, type MaterialsBulkItem, type MaterialsFilter, type MethodTypes, type Module, type ModuleRequest, type ModulesFilter, PRODUCT_TYPES_BULK_COLUMN_MAP, PRODUCT_TYPES_BULK_HEADERS, PRODUCT_TYPES_LAYOUT_COLUMN_MAP, PRODUCT_TYPES_LAYOUT_HEADERS, type Packing, type PackingRequest, type PackingsFilter, type ProductCategoriesBulkItem, type ProductCategoriesFilter, type ProductCategory, type ProductCategoryRequest, ProductService, type ProductStatus, type ProductStatusRequest, type ProductStatusesFilter, type ProductType, type ProductTypeRequest, type ProductTypesBulkItem, type ProductTypesFilter, type Provider, type ProviderRequest, type ProvidersFilter, type RefreshTokenRequest, type RefreshTokenResponse, type RequestConfig, type RequestInterceptor, type RequestOptions, type ResponseModel, type Role, type RoleRequest, type RoleUserProfile, type RolesFilter, type SendOtpRequest, type ServiceProperties, type SiteConfigCatalogsResponse, type SiteConfigResponse, type Size, type SizeGroup, type SizeGroupRequest, type SizeGroupsFilter, type SizeRequest, type SizesFilter, type Studio, type StudioRequest, type StudiosFilter, SystemService, type TokenData, TokenManager, type UIRoute, type UIRouteRequest, type UIRoutesFilter, type UserAdminFilter, type UserAdminRequest, type UserAdminUpdateRequest, type UserAuthAdminRequest, type UserAuthUpdateRequest, type UserBasicResponse, type UserDataUpdateRequest, type UserProfileResponse, type Role as UserRole, UserService, type UserType, type UserTypeRequest, type UserTypeUserProfile, type UserTypesFilter, type ValidateOtpRequest, type ValidateSessionRenewedResponse, type ValidateSessionResponse, decrypt };
|
|
2790
|
+
export { API, ARTWORKS_BULK_COLUMN_MAP, ARTWORKS_BULK_HEADERS, ARTWORKS_LAYOUT_COLUMN_MAP, ARTWORKS_LAYOUT_HEADERS, type AdminAuthentication, type AdminUser, type AreaCode, type AreaCodeRequest, type AreaCodeUserProfile, type AreaCodesFilter, type Artwork, type ArtworkConsumable, type ArtworkConsumableRequest, type ArtworkConsumablesFilter, type ArtworkRequest, type ArtworksBulkItem, type ArtworksFilter, AuthInterceptor, type AuthInterceptorConfig, AuthService, BLANKS_BULK_COLUMN_MAP, BLANKS_BULK_SPANISH_HEADERS, type Blank, type BlankRequest, type BlanksBulkItem, type BlanksFilter, type BulkResult, type BulkRowError, type BulkUploadRequest, COLLECTIONS_BULK_COLUMN_MAP, COLLECTIONS_BULK_HEADERS, COLLECTIONS_LAYOUT_COLUMN_MAP, COLLECTIONS_LAYOUT_HEADERS, COLORS_BULK_COLUMN_MAP, COLORS_BULK_HEADERS, COLORS_LAYOUT_COLUMN_MAP, COLORS_LAYOUT_HEADERS, CONSUMABLES_BULK_COLUMN_MAP, CONSUMABLES_BULK_HEADERS, CONSUMABLES_LAYOUT_COLUMN_MAP, CONSUMABLES_LAYOUT_HEADERS, CatalogService, type ChangePasswordAdminRequest, type ChangePasswordRequest, type ChangePasswordUserRequest, type Collection, type CollectionRequest, type CollectionsBulkItem, type CollectionsFilter, type Color, type ColorRequest, type ColorsBulkItem, type ColorsFilter, type ConfirmEmailRequest, type Consumable, type ConsumableRequest, type ConsumableType, type ConsumableTypeRequest, type ConsumableTypesFilter, type ConsumablesBulkItem, type ConsumablesFilter, CryptoService, type Endpoint, type EndpointRequest, type EndpointsFilter, ErrorResponse, FalconHUBSDK, FilterBuilder, type FilterFieldMetadata, type FilterGroup, type FilterGroupOption, type FilterGroupsModel, type FilterMetadataModel, type FilterModel, type Gender, type GenderRequest, type GenderUserProfile, type GendersFilter, type GetSecretKeyRequest, type GetSecretKeyResponse, type HttpMethodType, type InterceptorContext, InventoryService, type InventoryStatus, type InventoryStatusRequest, type InventoryStatusesFilter, LAYOUT_MARKER, type License, type LicenseRequest, type LicensesFilter, type Location, type LocationsFilter, type LocationsRequest, type LoginRequest, type LoginResponse, MATERIALS_BULK_COLUMN_MAP, MATERIALS_BULK_HEADERS, MATERIALS_LAYOUT_COLUMN_MAP, MATERIALS_LAYOUT_HEADERS, type Material, type MaterialRequest, type MaterialsBulkItem, type MaterialsFilter, type MethodTypes, type Module, type ModuleRequest, type ModulesFilter, type POD, type PODBulkItem, type PODFilter, type PODRequest, POD_BULK_COLUMN_MAP, POD_BULK_HEADERS, POD_LAYOUT_COLUMN_MAP, POD_LAYOUT_HEADERS, PRODUCTS_BULK_COLUMN_MAP, PRODUCTS_BULK_HEADERS, PRODUCTS_LAYOUT_COLUMN_MAP, PRODUCTS_LAYOUT_HEADERS, PRODUCT_TYPES_BULK_COLUMN_MAP, PRODUCT_TYPES_BULK_HEADERS, PRODUCT_TYPES_LAYOUT_COLUMN_MAP, PRODUCT_TYPES_LAYOUT_HEADERS, type Packing, type PackingRequest, type PackingsFilter, type PrintLocation, type PrintLocationFilter, type PrintLocationRequest, type Product, type ProductBundleItemsRequest, type ProductCategoriesBulkItem, type ProductCategoriesFilter, type ProductCategory, type ProductCategoryRequest, type ProductDimensionsRequest, type ProductRequest, ProductService, type ProductStatus, type ProductStatusRequest, type ProductStatusesFilter, type ProductType, type ProductTypeRequest, type ProductTypesBulkItem, type ProductTypesFilter, type ProductsBulkItem, type ProductsFilter, type Provider, type ProviderRequest, type ProvidersFilter, type RefreshTokenRequest, type RefreshTokenResponse, type RequestConfig, type RequestInterceptor, type RequestOptions, type ResponseModel, type Role, type RoleRequest, type RoleUserProfile, type RolesFilter, type SendOtpRequest, type ServiceProperties, type SiteConfigCatalogsResponse, type SiteConfigResponse, type Size, type SizeGroup, type SizeGroupRequest, type SizeGroupsFilter, type SizeRequest, type SizesFilter, type Studio, type StudioRequest, type StudiosFilter, SystemService, type TokenData, TokenManager, type UIRoute, type UIRouteRequest, type UIRoutesFilter, type UserAdminFilter, type UserAdminRequest, type UserAdminUpdateRequest, type UserAuthAdminRequest, type UserAuthUpdateRequest, type UserBasicResponse, type UserDataUpdateRequest, type UserProfileResponse, type Role as UserRole, UserService, type UserType, type UserTypeRequest, type UserTypeUserProfile, type UserTypesFilter, type ValidateOtpRequest, type ValidateSessionRenewedResponse, type ValidateSessionResponse, decrypt };
|