@erp-galoper/types 1.0.211 → 1.0.213
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 +17 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26504,7 +26504,7 @@ export interface components {
|
|
|
26504
26504
|
/**
|
|
26505
26505
|
* Id
|
|
26506
26506
|
* Format: uuid
|
|
26507
|
-
* @example
|
|
26507
|
+
* @example d2b92c5b-ea41-45a4-a56b-3c1c4659aeef
|
|
26508
26508
|
*/
|
|
26509
26509
|
id: string;
|
|
26510
26510
|
/**
|
|
@@ -42312,6 +42312,21 @@ export interface components {
|
|
|
42312
42312
|
*/
|
|
42313
42313
|
downPaymentItem?: string;
|
|
42314
42314
|
};
|
|
42315
|
+
/** DownPaymentDetailInRefundVoucher */
|
|
42316
|
+
DownPaymentDetailInRefundVoucher: {
|
|
42317
|
+
/**
|
|
42318
|
+
* Id
|
|
42319
|
+
* Format: uuid
|
|
42320
|
+
*/
|
|
42321
|
+
id: string;
|
|
42322
|
+
/** Serialnumber */
|
|
42323
|
+
serialNumber: string;
|
|
42324
|
+
/**
|
|
42325
|
+
* Downpaymentitem
|
|
42326
|
+
* Format: uuid
|
|
42327
|
+
*/
|
|
42328
|
+
downPaymentItem: string;
|
|
42329
|
+
};
|
|
42315
42330
|
/** SalesRefundVoucherDetailWithItemSchema */
|
|
42316
42331
|
SalesRefundVoucherDetailWithItemSchema: {
|
|
42317
42332
|
/**
|
|
@@ -42406,7 +42421,7 @@ export interface components {
|
|
|
42406
42421
|
* @description this field is number
|
|
42407
42422
|
*/
|
|
42408
42423
|
secondaryRate: string;
|
|
42409
|
-
|
|
42424
|
+
downPayment: components["schemas"]["DownPaymentDetailInRefundVoucher"] | null;
|
|
42410
42425
|
refundReturnInvoice: components["schemas"]["DocumentCommonSchema"] | null;
|
|
42411
42426
|
returnReturnablePackage: components["schemas"]["DocumentCommonSchema"] | null;
|
|
42412
42427
|
};
|