@simpleapps-com/augur-api 0.2.5 → 0.2.7

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.
Files changed (45) hide show
  1. package/API-DISCOVERY.md +132 -0
  2. package/AUTHENTICATION.md +371 -0
  3. package/QUICKSTART.md +255 -0
  4. package/README.md +125 -91
  5. package/dist/cjs/client.d.ts +36 -1
  6. package/dist/cjs/client.d.ts.map +1 -1
  7. package/dist/cjs/client.js +54 -1
  8. package/dist/cjs/client.js.map +1 -1
  9. package/dist/cjs/core/config.d.ts +24 -0
  10. package/dist/cjs/core/config.d.ts.map +1 -1
  11. package/dist/cjs/core/config.js +12 -1
  12. package/dist/cjs/core/config.js.map +1 -1
  13. package/dist/cjs/index.d.ts +2 -2
  14. package/dist/cjs/index.d.ts.map +1 -1
  15. package/dist/cjs/index.js +5 -2
  16. package/dist/cjs/index.js.map +1 -1
  17. package/dist/cjs/services/vmi/client.d.ts +501 -1
  18. package/dist/cjs/services/vmi/client.d.ts.map +1 -1
  19. package/dist/cjs/services/vmi/client.js +408 -0
  20. package/dist/cjs/services/vmi/client.js.map +1 -1
  21. package/dist/esm/client.d.ts +36 -1
  22. package/dist/esm/client.d.ts.map +1 -1
  23. package/dist/esm/client.js +52 -0
  24. package/dist/esm/client.js.map +1 -1
  25. package/dist/esm/core/config.d.ts +24 -0
  26. package/dist/esm/core/config.d.ts.map +1 -1
  27. package/dist/esm/core/config.js +10 -0
  28. package/dist/esm/core/config.js.map +1 -1
  29. package/dist/esm/index.d.ts +2 -2
  30. package/dist/esm/index.d.ts.map +1 -1
  31. package/dist/esm/index.js +3 -1
  32. package/dist/esm/index.js.map +1 -1
  33. package/dist/esm/services/vmi/client.d.ts +501 -1
  34. package/dist/esm/services/vmi/client.d.ts.map +1 -1
  35. package/dist/esm/services/vmi/client.js +408 -0
  36. package/dist/esm/services/vmi/client.js.map +1 -1
  37. package/dist/types/client.d.ts +36 -1
  38. package/dist/types/client.d.ts.map +1 -1
  39. package/dist/types/core/config.d.ts +24 -0
  40. package/dist/types/core/config.d.ts.map +1 -1
  41. package/dist/types/index.d.ts +2 -2
  42. package/dist/types/index.d.ts.map +1 -1
  43. package/dist/types/services/vmi/client.d.ts +501 -1
  44. package/dist/types/services/vmi/client.d.ts.map +1 -1
  45. package/package.json +5 -2
@@ -1,7 +1,7 @@
1
1
  import { BaseServiceClient } from '../../core/base-client';
2
2
  import type { HTTPClient } from '../../core/client';
3
3
  import type { BaseResponse } from '../../core/base-client';
4
- import { Warehouse, EnableWarehouseRequest, InventoryAvailability, InventoryAvailabilityParams, InventoryAdjustRequest, InventoryReceiveRequest, ReplenishmentInfo, ReplenishmentParams, ReplenishRequest, TransferRequest, UsageRequest, Distributor, EnableDistributorRequest, Product, ProductFindItem, ProductFindParams, CreateProductRequest, EnableProductRequest, InvProfileLine, InvProfileLineListParams, CreateInvProfileLineRequest, UpdateInvProfileLineRequest, Section, EnableSectionRequest, WarehouseUserListParams, CreateWarehouseUserRequest } from './schemas';
4
+ import { Warehouse, WarehouseListParams, CreateWarehouseRequest, UpdateWarehouseRequest, EnableWarehouseRequest, InventoryAvailability, InventoryAvailabilityParams, InventoryAdjustRequest, InventoryReceiveRequest, ReplenishmentInfo, ReplenishmentParams, ReplenishRequest, TransferRequest, UsageRequest, Distributor, DistributorListParams, CreateDistributorRequest, UpdateDistributorRequest, EnableDistributorRequest, Product, ProductFindItem, ProductListParams, ProductFindParams, CreateProductRequest, EnableProductRequest, InvProfileLine, InvProfileLineListParams, CreateInvProfileLineRequest, UpdateInvProfileLineRequest, Section, EnableSectionRequest, WarehouseUserListParams, CreateWarehouseUserRequest } from './schemas';
5
5
  /**
6
6
  * VMI (Vendor Managed Inventory) API Client
7
7
  * @description Client for interacting with VMI microservice API endpoints for warehouse and inventory management
@@ -277,6 +277,170 @@ export declare class VMIClient extends BaseServiceClient {
277
277
  * ```
278
278
  */
279
279
  enable: (warehouseUid: number, request: EnableWarehouseRequest) => Promise<BaseResponse<Warehouse>>;
280
+ /**
281
+ * List warehouses (data only)
282
+ * @fullPath api.vmi.warehouses.listData
283
+ * @service vmi
284
+ * @domain warehouse-management
285
+ * @dataMethod Standard method: warehouses.list
286
+ * @discoverable true
287
+ * @searchTerms ["warehouses", "facilities", "locations", "storage", "inventory-locations"]
288
+ * @relatedEndpoints ["api.items.invLoc.list", "api.nexus.transfers.list", "api.legacy.inventory.list"]
289
+ * @commonPatterns ["Get all warehouses", "List facilities", "Find storage locations"]
290
+ * @workflow ["warehouse-setup", "inventory-management", "location-management"]
291
+ * @prerequisites ["Valid authentication token", "Customer ID available"]
292
+ * @nextSteps ["api.vmi.warehouse.get for details", "api.vmi.inventory.checkAvailability for stock levels"]
293
+ * @businessRules ["Returns only warehouses accessible to authenticated user", "Supports customer-specific filtering"]
294
+ * @functionalArea "warehouse-and-inventory-management"
295
+ * @caching "Cache for 10 minutes, invalidate on warehouse changes"
296
+ * @performance "Supports pagination, use limit parameter for large datasets"
297
+ * @description Returns only the data array from warehouses response
298
+ * @param params Optional filtering and pagination parameters
299
+ * @returns Array of warehouses (data only)
300
+ * @throws ValidationError When parameters are invalid or response is malformed
301
+ * @example
302
+ * ```typescript
303
+ * const warehouses = await client.warehouses.listData({ customerId: 12345 });
304
+ * console.log(warehouses); // Direct array access
305
+ * ```
306
+ */
307
+ listData: (params?: WarehouseListParams) => Promise<{
308
+ customer_id: number;
309
+ status_cd: number;
310
+ warehouse_uid: number;
311
+ warehouse_name: string;
312
+ create_cd: string;
313
+ update_cd: string;
314
+ warehouse_desc?: string | undefined;
315
+ inv_profile_hdr_uid?: number | undefined;
316
+ }[]>;
317
+ /**
318
+ * Get warehouse details (data only)
319
+ * @fullPath api.vmi.warehouses.getData
320
+ * @service vmi
321
+ * @domain warehouse-management
322
+ * @dataMethod Standard method: warehouses.get
323
+ * @discoverable true
324
+ * @searchTerms ["warehouse", "facility", "location", "storage-details"]
325
+ * @relatedEndpoints ["api.vmi.inventory.checkAvailability", "api.vmi.userAccess.listWarehouseUsers"]
326
+ * @commonPatterns ["Get warehouse info", "View facility details"]
327
+ * @description Returns only the data from warehouse details response
328
+ * @param warehouseUid Warehouse unique identifier
329
+ * @returns Warehouse details (data only)
330
+ * @throws ValidationError When response is malformed
331
+ * @example
332
+ * ```typescript
333
+ * const warehouse = await client.warehouses.getData(123);
334
+ * console.log(warehouse.warehouse_name); // Direct object access
335
+ * ```
336
+ */
337
+ getData: (warehouseUid: number) => Promise<{
338
+ customer_id: number;
339
+ status_cd: number;
340
+ warehouse_uid: number;
341
+ warehouse_name: string;
342
+ create_cd: string;
343
+ update_cd: string;
344
+ warehouse_desc?: string | undefined;
345
+ inv_profile_hdr_uid?: number | undefined;
346
+ }>;
347
+ /**
348
+ * Create warehouse (data only)
349
+ * @fullPath api.vmi.warehouses.createData
350
+ * @service vmi
351
+ * @domain warehouse-management
352
+ * @dataMethod Standard method: warehouses.create
353
+ * @discoverable true
354
+ * @searchTerms ["create", "new-warehouse", "facility-setup"]
355
+ * @relatedEndpoints ["api.vmi.inventoryProfiles.headers.create", "api.vmi.sections.create"]
356
+ * @commonPatterns ["Setup new warehouse", "Add facility"]
357
+ * @description Returns only the data from warehouse creation response
358
+ * @param request Warehouse creation data
359
+ * @returns Created warehouse information (data only)
360
+ * @throws ValidationError When request is invalid or response is malformed
361
+ * @example
362
+ * ```typescript
363
+ * const warehouse = await client.warehouses.createData({
364
+ * warehouse_name: 'New Facility',
365
+ * customer_id: 12345
366
+ * });
367
+ * console.log(warehouse.warehouse_uid); // Direct access to created ID
368
+ * ```
369
+ */
370
+ createData: (request: CreateWarehouseRequest) => Promise<{
371
+ customer_id: number;
372
+ status_cd: number;
373
+ warehouse_uid: number;
374
+ warehouse_name: string;
375
+ create_cd: string;
376
+ update_cd: string;
377
+ warehouse_desc?: string | undefined;
378
+ inv_profile_hdr_uid?: number | undefined;
379
+ }>;
380
+ /**
381
+ * Update warehouse (data only)
382
+ * @fullPath api.vmi.warehouses.updateData
383
+ * @service vmi
384
+ * @domain warehouse-management
385
+ * @dataMethod Standard method: warehouses.update
386
+ * @discoverable true
387
+ * @searchTerms ["update", "modify-warehouse", "edit-facility"]
388
+ * @relatedEndpoints ["api.vmi.warehouses.get", "api.vmi.warehouses.enable"]
389
+ * @commonPatterns ["Update warehouse info", "Modify facility details"]
390
+ * @description Returns only the data from warehouse update response
391
+ * @param warehouseUid Warehouse unique identifier
392
+ * @param request Warehouse update data
393
+ * @returns Updated warehouse information (data only)
394
+ * @throws ValidationError When request is invalid or response is malformed
395
+ * @example
396
+ * ```typescript
397
+ * const warehouse = await client.warehouses.updateData(123, {
398
+ * warehouse_desc: 'Updated description'
399
+ * });
400
+ * console.log(warehouse.date_last_modified); // Direct access to updated fields
401
+ * ```
402
+ */
403
+ updateData: (warehouseUid: number, request: UpdateWarehouseRequest) => Promise<{
404
+ customer_id: number;
405
+ status_cd: number;
406
+ warehouse_uid: number;
407
+ warehouse_name: string;
408
+ create_cd: string;
409
+ update_cd: string;
410
+ warehouse_desc?: string | undefined;
411
+ inv_profile_hdr_uid?: number | undefined;
412
+ }>;
413
+ /**
414
+ * Enable/disable warehouse (data only)
415
+ * @fullPath api.vmi.warehouses.enableData
416
+ * @service vmi
417
+ * @domain warehouse-management
418
+ * @dataMethod Standard method: warehouses.enable
419
+ * @discoverable true
420
+ * @searchTerms ["enable", "disable", "warehouse-status", "activate-facility"]
421
+ * @relatedEndpoints ["api.vmi.warehouses.get", "api.vmi.warehouses.update"]
422
+ * @commonPatterns ["Activate warehouse", "Disable facility", "Change warehouse status"]
423
+ * @description Returns only the data from warehouse status change response
424
+ * @param warehouseUid Warehouse unique identifier
425
+ * @param request Status change request
426
+ * @returns Updated warehouse information (data only)
427
+ * @throws ValidationError When request is invalid or response is malformed
428
+ * @example
429
+ * ```typescript
430
+ * const warehouse = await client.warehouses.enableData(123, { status_cd: 704 });
431
+ * console.log(warehouse.status_cd); // Direct access to updated status
432
+ * ```
433
+ */
434
+ enableData: (warehouseUid: number, request: EnableWarehouseRequest) => Promise<{
435
+ customer_id: number;
436
+ status_cd: number;
437
+ warehouse_uid: number;
438
+ warehouse_name: string;
439
+ create_cd: string;
440
+ update_cd: string;
441
+ warehouse_desc?: string | undefined;
442
+ inv_profile_hdr_uid?: number | undefined;
443
+ }>;
280
444
  };
281
445
  /**
282
446
  * Inventory operation endpoints
@@ -438,6 +602,84 @@ export declare class VMIClient extends BaseServiceClient {
438
602
  * ```
439
603
  */
440
604
  recordUsage: (warehouseUid: number, request: UsageRequest) => Promise<boolean>;
605
+ /**
606
+ * Check inventory availability (data only)
607
+ * @fullPath api.vmi.inventory.checkAvailabilityData
608
+ * @service vmi
609
+ * @domain inventory-management
610
+ * @dataMethod Standard method: inventory.checkAvailability
611
+ * @discoverable true
612
+ * @searchTerms ["inventory", "availability", "stock-check", "item-search"]
613
+ * @relatedEndpoints ["api.items.products.list", "api.legacy.inventory.list", "api.vmi.inventory.adjust"]
614
+ * @commonPatterns ["Check stock levels", "Search inventory", "Find available items"]
615
+ * @workflow ["inventory-lookup", "stock-verification", "item-availability-check"]
616
+ * @prerequisites ["Valid authentication token", "Warehouse access permissions"]
617
+ * @nextSteps ["api.vmi.inventory.adjust for quantity changes", "api.vmi.inventory.recordUsage for consumption"]
618
+ * @businessRules ["Returns only items matching search query", "Requires warehouse access permissions"]
619
+ * @functionalArea "inventory-and-stock-management"
620
+ * @caching "Real-time data, do not cache"
621
+ * @performance "Use specific search terms to limit results"
622
+ * @description Returns only the data array from inventory availability response
623
+ * @param warehouseUid Warehouse unique identifier
624
+ * @param params Search parameters including query string
625
+ * @returns Array of available inventory items (data only)
626
+ * @throws ValidationError When parameters are invalid or response is malformed
627
+ * @example
628
+ * ```typescript
629
+ * const items = await client.inventory.checkAvailabilityData(123, { q: 'wire' });
630
+ * console.log(items); // Direct array access
631
+ * ```
632
+ */
633
+ checkAvailabilityData: (warehouseUid: number, params: InventoryAvailabilityParams) => Promise<{
634
+ type: "prophet21" | "products";
635
+ description: string;
636
+ inv_mast_uid: number;
637
+ item_id: string;
638
+ qty_on_hand: number;
639
+ default_selling_unit: string;
640
+ }[]>;
641
+ /**
642
+ * Get replenishment information (data only)
643
+ * @fullPath api.vmi.inventory.getReplenishmentInfoData
644
+ * @service vmi
645
+ * @domain inventory-management
646
+ * @dataMethod Standard method: inventory.getReplenishmentInfo
647
+ * @discoverable true
648
+ * @searchTerms ["replenishment", "restock", "min-max", "reorder-points"]
649
+ * @relatedEndpoints ["api.vmi.inventory.replenish", "api.vmi.inventoryProfiles.lines.list"]
650
+ * @commonPatterns ["Check restock needs", "Get replenishment suggestions", "Find low inventory"]
651
+ * @workflow ["replenishment-planning", "inventory-optimization", "stock-level-monitoring"]
652
+ * @prerequisites ["Valid authentication token", "Warehouse access permissions", "Inventory profiles configured"]
653
+ * @nextSteps ["api.vmi.inventory.replenish to execute restocking", "api.vmi.inventory.adjust for manual corrections"]
654
+ * @businessRules ["Based on min/max quantities from inventory profiles", "Considers current stock levels and demand"]
655
+ * @functionalArea "inventory-and-replenishment-management"
656
+ * @caching "Cache for 5 minutes, invalidate on inventory changes"
657
+ * @performance "May be slow for large inventories, consider filtering by distributor"
658
+ * @description Returns only the data from replenishment information response
659
+ * @param warehouseUid Warehouse unique identifier
660
+ * @param params Optional filtering by distributor
661
+ * @returns Replenishment information with suggested quantities (data only)
662
+ * @throws ValidationError When parameters are invalid or response is malformed
663
+ * @example
664
+ * ```typescript
665
+ * const replenish = await client.inventory.getReplenishmentInfoData(123);
666
+ * console.log(replenish.replenishment_items); // Direct access to restock suggestions
667
+ * ```
668
+ */
669
+ getReplenishmentInfoData: (warehouseUid: number, params?: ReplenishmentParams) => Promise<{
670
+ warehouse_uid: number;
671
+ replenishment_items: {
672
+ description: string;
673
+ inv_mast_uid: number;
674
+ item_id: string;
675
+ qty_on_hand: number;
676
+ min_qty: number;
677
+ max_qty: number;
678
+ reorder_qty: number;
679
+ suggested_order_qty: number;
680
+ distributor_uid: number;
681
+ }[];
682
+ }>;
441
683
  };
442
684
  /**
443
685
  * Distributor management endpoints
@@ -625,6 +867,175 @@ export declare class VMIClient extends BaseServiceClient {
625
867
  * ```
626
868
  */
627
869
  enable: (distributorsUid: number, request: EnableDistributorRequest) => Promise<BaseResponse<Distributor>>;
870
+ /**
871
+ * List distributors (data only)
872
+ * @fullPath api.vmi.distributors.listData
873
+ * @service vmi
874
+ * @domain supplier-management
875
+ * @dataMethod Standard method: distributors.list
876
+ * @discoverable true
877
+ * @searchTerms ["distributors", "suppliers", "vendors", "partners"]
878
+ * @relatedEndpoints ["api.vmi.products.list", "api.vmi.inventory.replenish", "api.vmi.restocking.list"]
879
+ * @commonPatterns ["Get all suppliers", "List vendors", "Find distributors"]
880
+ * @workflow ["supplier-management", "vendor-setup", "distributor-onboarding"]
881
+ * @prerequisites ["Valid authentication token", "Customer ID available"]
882
+ * @nextSteps ["api.vmi.distributors.get for details", "api.vmi.products.list for distributor products"]
883
+ * @businessRules ["Returns only distributors associated with customer", "Supports status filtering"]
884
+ * @functionalArea "supplier-and-vendor-management"
885
+ * @caching "Cache for 15 minutes, invalidate on distributor changes"
886
+ * @performance "Supports pagination for large distributor lists"
887
+ * @description Returns only the data array from distributors response
888
+ * @param params Filtering and pagination parameters
889
+ * @returns Array of distributors (data only)
890
+ * @throws ValidationError When parameters are invalid or response is malformed
891
+ * @example
892
+ * ```typescript
893
+ * const distributors = await client.distributors.listData({ customerId: 12345 });
894
+ * console.log(distributors); // Direct array access
895
+ * ```
896
+ */
897
+ listData: (params?: DistributorListParams) => Promise<{
898
+ customer_id: number;
899
+ status_cd: number;
900
+ create_cd: string;
901
+ update_cd: string;
902
+ distributors_uid: number;
903
+ distributor_name: string;
904
+ distributor_desc?: string | undefined;
905
+ contact_email?: string | undefined;
906
+ contact_phone?: string | undefined;
907
+ }[]>;
908
+ /**
909
+ * Get distributor details (data only)
910
+ * @fullPath api.vmi.distributors.getData
911
+ * @service vmi
912
+ * @domain supplier-management
913
+ * @dataMethod Standard method: distributors.get
914
+ * @discoverable true
915
+ * @searchTerms ["distributor", "supplier", "vendor", "partner-details"]
916
+ * @relatedEndpoints ["api.vmi.products.list", "api.vmi.inventory.getReplenishmentInfo"]
917
+ * @commonPatterns ["Get supplier info", "View distributor details"]
918
+ * @description Returns only the data from distributor details response
919
+ * @param distributorsUid Distributor unique identifier
920
+ * @returns Distributor details (data only)
921
+ * @throws ValidationError When response is malformed
922
+ * @example
923
+ * ```typescript
924
+ * const distributor = await client.distributors.getData(789);
925
+ * console.log(distributor.distributors_name); // Direct object access
926
+ * ```
927
+ */
928
+ getData: (distributorsUid: number) => Promise<{
929
+ customer_id: number;
930
+ status_cd: number;
931
+ create_cd: string;
932
+ update_cd: string;
933
+ distributors_uid: number;
934
+ distributor_name: string;
935
+ distributor_desc?: string | undefined;
936
+ contact_email?: string | undefined;
937
+ contact_phone?: string | undefined;
938
+ }>;
939
+ /**
940
+ * Create distributor (data only)
941
+ * @fullPath api.vmi.distributors.createData
942
+ * @service vmi
943
+ * @domain supplier-management
944
+ * @dataMethod Standard method: distributors.create
945
+ * @discoverable true
946
+ * @searchTerms ["create", "new-distributor", "add-supplier"]
947
+ * @relatedEndpoints ["api.vmi.products.createForDistributor", "api.vmi.restocking.create"]
948
+ * @commonPatterns ["Add new supplier", "Setup distributor"]
949
+ * @description Returns only the data from distributor creation response
950
+ * @param request Distributor creation data
951
+ * @returns Created distributor information (data only)
952
+ * @throws ValidationError When request is invalid or response is malformed
953
+ * @example
954
+ * ```typescript
955
+ * const distributor = await client.distributors.createData({
956
+ * distributors_name: 'ABC Supply Co',
957
+ * customer_id: 12345
958
+ * });
959
+ * console.log(distributor.distributors_uid); // Direct access to created ID
960
+ * ```
961
+ */
962
+ createData: (request: CreateDistributorRequest) => Promise<{
963
+ customer_id: number;
964
+ status_cd: number;
965
+ create_cd: string;
966
+ update_cd: string;
967
+ distributors_uid: number;
968
+ distributor_name: string;
969
+ distributor_desc?: string | undefined;
970
+ contact_email?: string | undefined;
971
+ contact_phone?: string | undefined;
972
+ }>;
973
+ /**
974
+ * Update distributor (data only)
975
+ * @fullPath api.vmi.distributors.updateData
976
+ * @service vmi
977
+ * @domain supplier-management
978
+ * @dataMethod Standard method: distributors.update
979
+ * @discoverable true
980
+ * @searchTerms ["update", "modify-distributor", "edit-supplier"]
981
+ * @relatedEndpoints ["api.vmi.distributors.get", "api.vmi.distributors.enable"]
982
+ * @commonPatterns ["Update supplier info", "Modify distributor details"]
983
+ * @description Returns only the data from distributor update response
984
+ * @param distributorsUid Distributor unique identifier
985
+ * @param request Distributor update data
986
+ * @returns Updated distributor information (data only)
987
+ * @throws ValidationError When request is invalid or response is malformed
988
+ * @example
989
+ * ```typescript
990
+ * const distributor = await client.distributors.updateData(789, {
991
+ * distributors_email: 'new@email.com'
992
+ * });
993
+ * console.log(distributor.date_last_modified); // Direct access to updated fields
994
+ * ```
995
+ */
996
+ updateData: (distributorsUid: number, request: UpdateDistributorRequest) => Promise<{
997
+ customer_id: number;
998
+ status_cd: number;
999
+ create_cd: string;
1000
+ update_cd: string;
1001
+ distributors_uid: number;
1002
+ distributor_name: string;
1003
+ distributor_desc?: string | undefined;
1004
+ contact_email?: string | undefined;
1005
+ contact_phone?: string | undefined;
1006
+ }>;
1007
+ /**
1008
+ * Enable/disable distributor (data only)
1009
+ * @fullPath api.vmi.distributors.enableData
1010
+ * @service vmi
1011
+ * @domain supplier-management
1012
+ * @dataMethod Standard method: distributors.enable
1013
+ * @discoverable true
1014
+ * @searchTerms ["enable", "disable", "distributor-status", "activate-supplier"]
1015
+ * @relatedEndpoints ["api.vmi.distributors.get", "api.vmi.distributors.update"]
1016
+ * @commonPatterns ["Activate distributor", "Disable supplier", "Change distributor status"]
1017
+ * @description Returns only the data from distributor status change response
1018
+ * @param distributorsUid Distributor unique identifier
1019
+ * @param request Status change request
1020
+ * @returns Updated distributor information (data only)
1021
+ * @throws ValidationError When request is invalid or response is malformed
1022
+ * @example
1023
+ * ```typescript
1024
+ * const distributor = await client.distributors.enableData(789, { status_cd: 704 });
1025
+ * console.log(distributor.status_cd); // Direct access to updated status
1026
+ * ```
1027
+ */
1028
+ enableData: (distributorsUid: number, request: EnableDistributorRequest) => Promise<{
1029
+ customer_id: number;
1030
+ status_cd: number;
1031
+ create_cd: string;
1032
+ update_cd: string;
1033
+ distributors_uid: number;
1034
+ distributor_name: string;
1035
+ distributor_desc?: string | undefined;
1036
+ contact_email?: string | undefined;
1037
+ contact_phone?: string | undefined;
1038
+ }>;
628
1039
  };
629
1040
  /**
630
1041
  * Product management endpoints
@@ -810,6 +1221,95 @@ export declare class VMIClient extends BaseServiceClient {
810
1221
  * ```
811
1222
  */
812
1223
  createForDistributor: (distributorsUid: number, request: CreateProductRequest) => Promise<BaseResponse<Product>>;
1224
+ /**
1225
+ * List products (data only)
1226
+ * @fullPath api.vmi.products.listData
1227
+ * @service vmi
1228
+ * @domain product-management
1229
+ * @dataMethod Standard method: products.list
1230
+ * @discoverable true
1231
+ * @searchTerms ["products", "items", "catalog", "inventory-items"]
1232
+ * @relatedEndpoints ["api.items.products.list", "api.vmi.inventory.checkAvailability"]
1233
+ * @commonPatterns ["Get all products", "List catalog items", "Browse inventory products"]
1234
+ * @description Returns only the data array from products response
1235
+ * @param params Filtering and pagination parameters
1236
+ * @returns Array of products (data only)
1237
+ * @throws ValidationError When parameters are invalid or response is malformed
1238
+ * @example
1239
+ * ```typescript
1240
+ * const products = await client.products.listData({ customerId: 12345, distributorsUid: 789 });
1241
+ * console.log(products); // Direct array access
1242
+ * ```
1243
+ */
1244
+ listData: (params?: ProductListParams) => Promise<{
1245
+ customer_id: number;
1246
+ status_cd: number;
1247
+ create_cd: string;
1248
+ update_cd: string;
1249
+ distributors_uid: number;
1250
+ products_uid: number;
1251
+ product_id: string;
1252
+ product_name: string;
1253
+ product_desc?: string | undefined;
1254
+ }[]>;
1255
+ /**
1256
+ * Find products and items (data only)
1257
+ * @fullPath api.vmi.products.findData
1258
+ * @service vmi
1259
+ * @domain product-management
1260
+ * @dataMethod Standard method: products.find
1261
+ * @discoverable true
1262
+ * @searchTerms ["search", "find-products", "item-lookup", "product-search"]
1263
+ * @relatedEndpoints ["api.vmi.products.list", "api.items.products.list"]
1264
+ * @commonPatterns ["Search products", "Find items", "Product lookup"]
1265
+ * @description Returns only the data array from product search response
1266
+ * @param params Search parameters
1267
+ * @returns Array of found items (data only)
1268
+ * @throws ValidationError When parameters are invalid or response is malformed
1269
+ * @example
1270
+ * ```typescript
1271
+ * const items = await client.products.findData({ customerId: 12345, prefix: 'WIRE' });
1272
+ * console.log(items); // Direct array access
1273
+ * ```
1274
+ */
1275
+ findData: (params: ProductFindParams) => Promise<{
1276
+ type: "prophet21" | "products";
1277
+ description: string;
1278
+ inv_mast_uid: number;
1279
+ item_id: string;
1280
+ default_selling_unit: string;
1281
+ }[]>;
1282
+ /**
1283
+ * Get product details (data only)
1284
+ * @fullPath api.vmi.products.getData
1285
+ * @service vmi
1286
+ * @domain product-management
1287
+ * @dataMethod Standard method: products.get
1288
+ * @discoverable true
1289
+ * @searchTerms ["product", "item-details", "product-info"]
1290
+ * @relatedEndpoints ["api.vmi.products.list", "api.vmi.inventory.checkAvailability"]
1291
+ * @commonPatterns ["Get product info", "View item details"]
1292
+ * @description Returns only the data from product details response
1293
+ * @param productsUid Product unique identifier
1294
+ * @returns Product details (data only)
1295
+ * @throws ValidationError When response is malformed
1296
+ * @example
1297
+ * ```typescript
1298
+ * const product = await client.products.getData(456);
1299
+ * console.log(product.products_name); // Direct object access
1300
+ * ```
1301
+ */
1302
+ getData: (productsUid: number) => Promise<{
1303
+ customer_id: number;
1304
+ status_cd: number;
1305
+ create_cd: string;
1306
+ update_cd: string;
1307
+ distributors_uid: number;
1308
+ products_uid: number;
1309
+ product_id: string;
1310
+ product_name: string;
1311
+ product_desc?: string | undefined;
1312
+ }>;
813
1313
  };
814
1314
  /**
815
1315
  * Inventory Profile management endpoints
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/services/vmi/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/services/vmi/client.ts"],"names":[],"mappings":"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"}