@erp-galoper/types 1.0.1662 → 1.0.1664
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/openapi.ts +7 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -31789,6 +31789,11 @@ export interface components {
|
|
|
31789
31789
|
*/
|
|
31790
31790
|
details: components["schemas"]["UpdateInternalTransferItemSchema"][];
|
|
31791
31791
|
};
|
|
31792
|
+
/**
|
|
31793
|
+
* FulfillmentStageEnum
|
|
31794
|
+
* @enum {string}
|
|
31795
|
+
*/
|
|
31796
|
+
FulfillmentStageEnum: "notApplicable" | "pendingFulfillment" | "inTransit" | "partiallyReceived" | "received";
|
|
31792
31797
|
/** ReasonSummaryInfo */
|
|
31793
31798
|
ReasonSummaryInfo: {
|
|
31794
31799
|
/** Id */
|
|
@@ -31839,6 +31844,7 @@ export interface components {
|
|
|
31839
31844
|
destinationWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
|
|
31840
31845
|
sourceWarehouseResponse: components["schemas"]["SourceWarehouseResponseEnum"] | null;
|
|
31841
31846
|
rejectionReason: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
31847
|
+
fulfillmentStage: components["schemas"]["FulfillmentStageEnum"];
|
|
31842
31848
|
/** Candelete */
|
|
31843
31849
|
canDelete: boolean;
|
|
31844
31850
|
/** Linkeddocuments */
|
|
@@ -31996,6 +32002,7 @@ export interface components {
|
|
|
31996
32002
|
destinationWarehouse: components["schemas"]["RetrieveWarehouseForOpeningQuantity"];
|
|
31997
32003
|
sourceWarehouseResponse: components["schemas"]["SourceWarehouseResponseEnum"] | null;
|
|
31998
32004
|
rejectionReason: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
32005
|
+
fulfillmentStage: components["schemas"]["FulfillmentStageEnum"];
|
|
31999
32006
|
/** Candelete */
|
|
32000
32007
|
canDelete: boolean;
|
|
32001
32008
|
};
|