@erp-galoper/types 1.0.955 → 1.0.957
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 +16 -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"];
|
|
@@ -45405,6 +45413,10 @@ export interface components {
|
|
|
45405
45413
|
* Format: date
|
|
45406
45414
|
*/
|
|
45407
45415
|
date: string;
|
|
45416
|
+
/** Description */
|
|
45417
|
+
description: string | null;
|
|
45418
|
+
/** Notes */
|
|
45419
|
+
notes: string | null;
|
|
45408
45420
|
reasonForReturn: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
45409
45421
|
/** @description Linked return sales order, if applicable. */
|
|
45410
45422
|
salesReturnOrder: components["schemas"]["DocumentCommonSchema"] | null;
|
|
@@ -45605,6 +45617,10 @@ export interface components {
|
|
|
45605
45617
|
* Format: date
|
|
45606
45618
|
*/
|
|
45607
45619
|
date: string;
|
|
45620
|
+
/** Description */
|
|
45621
|
+
description: string | null;
|
|
45622
|
+
/** Notes */
|
|
45623
|
+
notes: string | null;
|
|
45608
45624
|
reasonForReturn: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
45609
45625
|
/** @description Linked return sales order, if applicable. */
|
|
45610
45626
|
salesReturnOrder: components["schemas"]["DocumentCommonSchema"] | null;
|