@erp-galoper/types 1.0.897 → 1.0.899
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 +14 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -34935,7 +34935,10 @@ export interface components {
|
|
|
34935
34935
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
34936
34936
|
/**
|
|
34937
34937
|
* Remaining
|
|
34938
|
-
* @description
|
|
34938
|
+
* @description
|
|
34939
|
+
* - this field is number
|
|
34940
|
+
* - if type is creditNote : the credited amount should not exceed the remaining amount
|
|
34941
|
+
*
|
|
34939
34942
|
*/
|
|
34940
34943
|
remaining?: string | null;
|
|
34941
34944
|
/** Linkeddocuments */
|
|
@@ -35127,7 +35130,10 @@ export interface components {
|
|
|
35127
35130
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
35128
35131
|
/**
|
|
35129
35132
|
* Remaining
|
|
35130
|
-
* @description
|
|
35133
|
+
* @description
|
|
35134
|
+
* - this field is number
|
|
35135
|
+
* - if type is creditNote : the credited amount should not exceed the remaining amount
|
|
35136
|
+
*
|
|
35131
35137
|
*/
|
|
35132
35138
|
remaining?: string | null;
|
|
35133
35139
|
/** Linkeddocuments */
|
|
@@ -36422,6 +36428,12 @@ export interface components {
|
|
|
36422
36428
|
* @default 0
|
|
36423
36429
|
*/
|
|
36424
36430
|
discount: number;
|
|
36431
|
+
/**
|
|
36432
|
+
* Taxes
|
|
36433
|
+
* @description this field is always disabled
|
|
36434
|
+
* @default []
|
|
36435
|
+
*/
|
|
36436
|
+
taxes: components["schemas"]["TaxSharedSchema"][];
|
|
36425
36437
|
};
|
|
36426
36438
|
/** ReturnPurchaseInvoiceTotalCalculationResponse */
|
|
36427
36439
|
ReturnPurchaseInvoiceTotalCalculationResponse: {
|