randmar-api-client 1.210.0 → 1.212.0
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/store/randmarApi.d.ts +21 -3
- package/package.json +1 -1
|
@@ -3436,37 +3436,53 @@ export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdShipmentsApiA
|
|
|
3436
3436
|
warehouseId: string;
|
|
3437
3437
|
};
|
|
3438
3438
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrdersApiResponse =
|
|
3439
|
-
/** status 200
|
|
3439
|
+
/** status 200 A list of purchase orders. */ PurchaseOrder[];
|
|
3440
3440
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrdersApiArg = {
|
|
3441
|
+
/** The application ID of the partner making the request. */
|
|
3441
3442
|
routeApplicationId: string;
|
|
3443
|
+
/** The ID of the warehouse. */
|
|
3442
3444
|
warehouseId: string;
|
|
3443
3445
|
};
|
|
3444
3446
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrderPoNumberApiResponse =
|
|
3445
|
-
/** status 200
|
|
3447
|
+
/** status 200 The purchase order details. */ PurchaseOrderDetail[];
|
|
3446
3448
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrderPoNumberApiArg = {
|
|
3449
|
+
/** The application ID of the partner making the request. */
|
|
3447
3450
|
routeApplicationId: string;
|
|
3451
|
+
/** The ID of the warehouse. */
|
|
3448
3452
|
warehouseId: string;
|
|
3453
|
+
/** The purchase order number. */
|
|
3449
3454
|
poNumber: string;
|
|
3450
3455
|
};
|
|
3451
3456
|
export type PutV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrderPoNumberReceiveApiResponse = unknown;
|
|
3452
3457
|
export type PutV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdPurchaseOrderPoNumberReceiveApiArg = {
|
|
3458
|
+
/** The application ID of the partner making the request. */
|
|
3453
3459
|
routeApplicationId: string;
|
|
3460
|
+
/** The target warehouse ID. */
|
|
3454
3461
|
warehouseId: string;
|
|
3462
|
+
/** The purchase order number to receive. */
|
|
3455
3463
|
poNumber: string;
|
|
3464
|
+
/** The payload containing the packing slip link and part quantities received. */
|
|
3456
3465
|
randmarApiControllersV4PartnerWarehouseControllerReceptionInput: RandmarApiControllersV4PartnerWarehouseControllerReceptionInput;
|
|
3457
3466
|
};
|
|
3458
3467
|
export type PutV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdReceiptRcpNumberUploadPackingSlipApiResponse = unknown;
|
|
3459
3468
|
export type PutV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdReceiptRcpNumberUploadPackingSlipApiArg = {
|
|
3469
|
+
/** The application ID of the partner making the request. */
|
|
3460
3470
|
routeApplicationId: string;
|
|
3471
|
+
/** The ID of the warehouse. */
|
|
3461
3472
|
warehouseId: string;
|
|
3473
|
+
/** The generated RCP (receipt) number. */
|
|
3462
3474
|
rcpNumber: string;
|
|
3475
|
+
/** The URL of the packing slip to attach (passed via query/form string). */
|
|
3463
3476
|
packingSlipUrl?: string;
|
|
3464
3477
|
};
|
|
3465
3478
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdReceiptRcpNumberApiResponse =
|
|
3466
|
-
/** status 200
|
|
3479
|
+
/** status 200 The line items included on this receipt. */ ReceiptDetail[];
|
|
3467
3480
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdReceiptRcpNumberApiArg = {
|
|
3481
|
+
/** The application ID of the partner making the request. */
|
|
3468
3482
|
routeApplicationId: string;
|
|
3483
|
+
/** The ID of the warehouse. */
|
|
3469
3484
|
warehouseId: string;
|
|
3485
|
+
/** The receipt document number. */
|
|
3470
3486
|
rcpNumber: string;
|
|
3471
3487
|
};
|
|
3472
3488
|
export type GetV4PartnerByRouteApplicationIdWarehouseAndWarehouseIdStocktransfersApiResponse =
|
|
@@ -6141,7 +6157,9 @@ export type ReceivedPartNumbers = {
|
|
|
6141
6157
|
QuantityReceived?: number;
|
|
6142
6158
|
};
|
|
6143
6159
|
export type RandmarApiControllersV4PartnerWarehouseControllerReceptionInput = {
|
|
6160
|
+
/** The direct public URL or accessible link to the packing slip document. */
|
|
6144
6161
|
PackingSlipURL?: string | null;
|
|
6162
|
+
/** A detailed list of the part numbers and their specific quantities being received. */
|
|
6145
6163
|
PartNumbers?: ReceivedPartNumbers[] | null;
|
|
6146
6164
|
};
|
|
6147
6165
|
export type ReceiptDetail = {
|