falconhub-apilibrary 1.5.4-dev.135 → 1.6.1-dev.137

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -155,6 +155,26 @@ interface AreaCodeUserProfile {
155
155
  country: string;
156
156
  }
157
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
+
158
178
  interface Location {
159
179
  locationId: number;
160
180
  locationName: string;
@@ -705,6 +725,338 @@ interface ProductStatusesFilter {
705
725
  isSellable?: boolean;
706
726
  }
707
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
+
708
1060
  /**
709
1061
  * Interfaz que representa un módulo del sistema.
710
1062
  */
@@ -1082,6 +1434,8 @@ interface SiteConfigCatalogsResponse {
1082
1434
  productStatuses: ProductStatus[];
1083
1435
  studios: Studio[];
1084
1436
  licenses: License[];
1437
+ consumableTypes: ConsumableType[];
1438
+ printLocations: PrintLocation[];
1085
1439
  }
1086
1440
  /**
1087
1441
  * Interfaz que representa la respuesta de la configuración del sitio.
@@ -1771,6 +2125,10 @@ declare class InventoryService {
1771
2125
  declare class ProductService {
1772
2126
  private api;
1773
2127
  private readonly BASE_PATH;
2128
+ /**
2129
+ * Inicializa el servicio con la instancia de API.
2130
+ * @param api - Instancia de la clase API para realizar peticiones.
2131
+ */
1774
2132
  constructor(api: API);
1775
2133
  /**
1776
2134
  * Obtiene todos los colores con filtros opcionales.
@@ -2049,6 +2407,262 @@ declare class ProductService {
2049
2407
  * Elimina un estatus de producto.
2050
2408
  */
2051
2409
  deleteProductStatus(id: number): Promise<ResponseModel<void>>;
2410
+ /**
2411
+ * Obtiene todas las ubicaciones de impresión con filtros opcionales.
2412
+ */
2413
+ getPrintLocations(filter?: PrintLocationFilter): Promise<ResponseModel<PrintLocation[]>>;
2414
+ /**
2415
+ * Obtiene el modelo de filtros disponibles para ubicaciones de impresión.
2416
+ */
2417
+ getPrintLocationsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2418
+ /**
2419
+ * Obtiene una ubicación de impresión por su ID.
2420
+ */
2421
+ getPrintLocationById(id: number): Promise<ResponseModel<PrintLocation>>;
2422
+ /**
2423
+ * Crea una nueva ubicación de impresión.
2424
+ */
2425
+ createPrintLocation(request: PrintLocationRequest): Promise<ResponseModel<PrintLocation>>;
2426
+ /**
2427
+ * Actualiza una ubicación de impresión existente.
2428
+ */
2429
+ updatePrintLocation(id: number, request: PrintLocationRequest): Promise<ResponseModel<PrintLocation>>;
2430
+ /**
2431
+ * Elimina una ubicación de impresión.
2432
+ */
2433
+ deletePrintLocation(id: number): Promise<ResponseModel<void>>;
2434
+ /**
2435
+ * Obtiene todos los tipos de consumibles con filtros opcionales.
2436
+ */
2437
+ getConsumableTypes(filter?: ConsumableTypesFilter): Promise<ResponseModel<ConsumableType[]>>;
2438
+ /**
2439
+ * Obtiene el modelo de filtros disponibles para tipos de consumibles.
2440
+ */
2441
+ getConsumableTypesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2442
+ /**
2443
+ * Obtiene un tipo de consumible por su ID.
2444
+ */
2445
+ getConsumableTypeById(id: number): Promise<ResponseModel<ConsumableType>>;
2446
+ /**
2447
+ * Crea un nuevo tipo de consumible.
2448
+ */
2449
+ createConsumableType(request: ConsumableTypeRequest): Promise<ResponseModel<ConsumableType>>;
2450
+ /**
2451
+ * Actualiza un tipo de consumible existente.
2452
+ */
2453
+ updateConsumableType(id: number, request: ConsumableTypeRequest): Promise<ResponseModel<ConsumableType>>;
2454
+ /**
2455
+ * Elimina un tipo de consumible.
2456
+ */
2457
+ deleteConsumableType(id: number): Promise<ResponseModel<void>>;
2458
+ /**
2459
+ * Obtiene todos los consumibles con filtros opcionales.
2460
+ */
2461
+ getConsumables(filter?: ConsumablesFilter): Promise<ResponseModel<Consumable[]>>;
2462
+ /**
2463
+ * Obtiene el modelo de filtros disponibles para consumibles.
2464
+ */
2465
+ getConsumablesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2466
+ /**
2467
+ * Obtiene un consumible por su ID.
2468
+ */
2469
+ getConsumableById(id: number): Promise<ResponseModel<Consumable>>;
2470
+ /**
2471
+ * Crea un nuevo consumible.
2472
+ */
2473
+ createConsumable(request: ConsumableRequest): Promise<ResponseModel<Consumable>>;
2474
+ /**
2475
+ * Actualiza un consumible existente.
2476
+ */
2477
+ updateConsumable(id: number, request: ConsumableRequest): Promise<ResponseModel<Consumable>>;
2478
+ /**
2479
+ * Elimina un consumible.
2480
+ */
2481
+ deleteConsumable(id: number): Promise<ResponseModel<void>>;
2482
+ /**
2483
+ * Obtiene la plantilla para la carga masiva de consumibles.
2484
+ */
2485
+ getConsumablesBulkTemplate(): Promise<ResponseModel<Blob>>;
2486
+ /**
2487
+ * Obtiene el layout para la actualización masiva de consumibles.
2488
+ */
2489
+ getConsumablesBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
2490
+ /**
2491
+ * Realiza una carga masiva (upsert) de consumibles.
2492
+ */
2493
+ bulkUpsertConsumables(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
2494
+ /**
2495
+ * Obtiene todas las colecciones con filtros opcionales.
2496
+ */
2497
+ getCollections(filter?: CollectionsFilter): Promise<ResponseModel<Collection[]>>;
2498
+ /**
2499
+ * Obtiene el modelo de filtros disponibles para colecciones.
2500
+ */
2501
+ getCollectionsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2502
+ /**
2503
+ * Obtiene una colección por su ID.
2504
+ */
2505
+ getCollectionById(id: number): Promise<ResponseModel<Collection>>;
2506
+ /**
2507
+ * Crea una nueva colección.
2508
+ */
2509
+ createCollection(request: CollectionRequest): Promise<ResponseModel<Collection>>;
2510
+ /**
2511
+ * Actualiza una colección existente.
2512
+ */
2513
+ updateCollection(id: number, request: CollectionRequest): Promise<ResponseModel<Collection>>;
2514
+ /**
2515
+ * Elimina una colección.
2516
+ */
2517
+ deleteCollection(id: number): Promise<ResponseModel<void>>;
2518
+ /**
2519
+ * Obtiene la plantilla para la carga masiva de colecciones.
2520
+ */
2521
+ getCollectionsBulkTemplate(): Promise<ResponseModel<Blob>>;
2522
+ /**
2523
+ * Obtiene el layout para la actualización masiva de colecciones.
2524
+ */
2525
+ getCollectionsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
2526
+ /**
2527
+ * Realiza una carga masiva (upsert) de colecciones.
2528
+ */
2529
+ bulkUpsertCollections(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
2530
+ /**
2531
+ * Obtiene todos los productos con filtros opcionales.
2532
+ */
2533
+ getProducts(filter?: ProductsFilter): Promise<ResponseModel<Product[]>>;
2534
+ /**
2535
+ * Obtiene el modelo de filtros disponibles para productos.
2536
+ */
2537
+ getProductsFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2538
+ /**
2539
+ * Obtiene los detalles de un producto por su ID.
2540
+ */
2541
+ getProductDetails(id: number): Promise<ResponseModel<Product>>;
2542
+ /**
2543
+ * Obtiene un producto por su ID.
2544
+ */
2545
+ getProductById(id: number): Promise<ResponseModel<Product>>;
2546
+ /**
2547
+ * Crea un nuevo producto.
2548
+ */
2549
+ createProduct(request: ProductRequest): Promise<ResponseModel<Product>>;
2550
+ /**
2551
+ * Actualiza un producto existente.
2552
+ */
2553
+ updateProduct(id: number, request: ProductRequest): Promise<ResponseModel<Product>>;
2554
+ /**
2555
+ * Elimina un producto.
2556
+ */
2557
+ deleteProduct(id: number): Promise<ResponseModel<void>>;
2558
+ /**
2559
+ * Obtiene la plantilla para la carga masiva de productos.
2560
+ */
2561
+ getProductsBulkTemplate(): Promise<ResponseModel<Blob>>;
2562
+ /**
2563
+ * Obtiene el layout para la actualización masiva de productos.
2564
+ */
2565
+ getProductsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
2566
+ /**
2567
+ * Realiza una carga masiva (upsert) de productos.
2568
+ */
2569
+ bulkUpsertProducts(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
2570
+ /**
2571
+ * Obtiene todos los registros POD con filtros opcionales.
2572
+ */
2573
+ getPODs(filter?: PODFilter): Promise<ResponseModel<POD[]>>;
2574
+ /**
2575
+ * Obtiene el modelo de filtros disponibles para POD.
2576
+ */
2577
+ getPODFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2578
+ /**
2579
+ * Obtiene un registro POD por su ID.
2580
+ */
2581
+ getPODById(id: number): Promise<ResponseModel<POD>>;
2582
+ /**
2583
+ * Crea un nuevo registro POD.
2584
+ */
2585
+ createPOD(request: PODRequest): Promise<ResponseModel<POD>>;
2586
+ /**
2587
+ * Actualiza un registro POD existente.
2588
+ */
2589
+ updatePOD(id: number, request: PODRequest): Promise<ResponseModel<POD>>;
2590
+ /**
2591
+ * Elimina un registro POD.
2592
+ */
2593
+ deletePOD(id: number): Promise<ResponseModel<void>>;
2594
+ /**
2595
+ * Obtiene la plantilla para la carga masiva de PODs.
2596
+ */
2597
+ getPODsBulkTemplate(): Promise<ResponseModel<Blob>>;
2598
+ /**
2599
+ * Obtiene el layout para la actualización masiva de PODs.
2600
+ */
2601
+ getPODsBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
2602
+ /**
2603
+ * Realiza una carga masiva (upsert) de PODs.
2604
+ */
2605
+ bulkUpsertPODs(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
2606
+ /**
2607
+ * Obtiene todos los artes con filtros opcionales.
2608
+ */
2609
+ getArtworks(filter?: ArtworksFilter): Promise<ResponseModel<Artwork[]>>;
2610
+ /**
2611
+ * Obtiene el modelo de filtros disponibles para artes.
2612
+ */
2613
+ getArtworksFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2614
+ /**
2615
+ * Obtiene un arte por su ID.
2616
+ */
2617
+ getArtworkById(id: number): Promise<ResponseModel<Artwork>>;
2618
+ /**
2619
+ * Crea un nuevo arte.
2620
+ */
2621
+ createArtwork(request: ArtworkRequest): Promise<ResponseModel<Artwork>>;
2622
+ /**
2623
+ * Actualiza un arte existente.
2624
+ */
2625
+ updateArtwork(id: number, request: ArtworkRequest): Promise<ResponseModel<Artwork>>;
2626
+ /**
2627
+ * Elimina un arte.
2628
+ */
2629
+ deleteArtwork(id: number): Promise<ResponseModel<void>>;
2630
+ /**
2631
+ * Obtiene la plantilla para la carga masiva de artes.
2632
+ */
2633
+ getArtworksBulkTemplate(): Promise<ResponseModel<Blob>>;
2634
+ /**
2635
+ * Obtiene el layout para la actualización masiva de artes.
2636
+ */
2637
+ getArtworksBulkLayout(ids: number[]): Promise<ResponseModel<Blob>>;
2638
+ /**
2639
+ * Realiza una carga masiva (upsert) de artes.
2640
+ */
2641
+ bulkUpsertArtworks(request: BulkUploadRequest): Promise<ResponseModel<BulkResult>>;
2642
+ /**
2643
+ * Obtiene todos los consumibles de arte con filtros opcionales.
2644
+ */
2645
+ getArtworkConsumables(filter?: ArtworkConsumablesFilter): Promise<ResponseModel<ArtworkConsumable[]>>;
2646
+ /**
2647
+ * Obtiene el modelo de filtros disponibles para consumibles de arte.
2648
+ */
2649
+ getArtworkConsumablesFilters(): Promise<ResponseModel<FilterGroupsModel>>;
2650
+ /**
2651
+ * Obtiene un consumible de arte por su ID.
2652
+ */
2653
+ getArtworkConsumableById(id: number): Promise<ResponseModel<ArtworkConsumable>>;
2654
+ /**
2655
+ * Crea un nuevo consumible de arte.
2656
+ */
2657
+ createArtworkConsumable(request: ArtworkConsumableRequest): Promise<ResponseModel<ArtworkConsumable>>;
2658
+ /**
2659
+ * Actualiza un consumible de arte existente.
2660
+ */
2661
+ updateArtworkConsumable(id: number, request: ArtworkConsumableRequest): Promise<ResponseModel<ArtworkConsumable>>;
2662
+ /**
2663
+ * Elimina un consumible de arte.
2664
+ */
2665
+ deleteArtworkConsumable(id: number): Promise<ResponseModel<void>>;
2052
2666
  }
2053
2667
 
2054
2668
  /**
@@ -2369,4 +2983,4 @@ declare class FalconHUBSDK {
2369
2983
 
2370
2984
  declare function decrypt(encryptedBase64: string, secret: string, timestamp: string): string;
2371
2985
 
2372
- 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 };
2986
+ 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 };