@erp-galoper/types 1.0.955 → 1.0.956
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 +8 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -44949,6 +44949,10 @@ export interface components {
|
|
|
44949
44949
|
* Format: date
|
|
44950
44950
|
*/
|
|
44951
44951
|
date: string;
|
|
44952
|
+
/** Description */
|
|
44953
|
+
description: string | null;
|
|
44954
|
+
/** Notes */
|
|
44955
|
+
notes: string | null;
|
|
44952
44956
|
/** @description from api/v1/common/reasons/ filtered by document_type='sales_return_order' */
|
|
44953
44957
|
reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
44954
44958
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|
|
@@ -45141,6 +45145,10 @@ export interface components {
|
|
|
45141
45145
|
* Format: date
|
|
45142
45146
|
*/
|
|
45143
45147
|
date: string;
|
|
45148
|
+
/** Description */
|
|
45149
|
+
description: string | null;
|
|
45150
|
+
/** Notes */
|
|
45151
|
+
notes: string | null;
|
|
45144
45152
|
/** @description from api/v1/common/reasons/ filtered by document_type='sales_return_order' */
|
|
45145
45153
|
reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
45146
45154
|
approvalStatus: components["schemas"]["ApprovalValueChoices"];
|