@erp-galoper/types 1.0.664 → 1.0.665
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 +21 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16834,6 +16834,7 @@ export interface paths {
|
|
|
16834
16834
|
* - success
|
|
16835
16835
|
* - 400:
|
|
16836
16836
|
* - customerDoesNotExist
|
|
16837
|
+
* - downPayment,ReturnInvoice,OrReturnPackageIsRequired
|
|
16837
16838
|
* - 500:
|
|
16838
16839
|
* - internalServerError
|
|
16839
16840
|
*/
|
|
@@ -16963,7 +16964,7 @@ export interface paths {
|
|
|
16963
16964
|
* - returnInvoiceTaxShouldBePosted
|
|
16964
16965
|
* - returnInvoiceTaxDoesNotBelongToCustomer
|
|
16965
16966
|
* - taxDoesNotBelongToReturnInvoiceItem
|
|
16966
|
-
* -
|
|
16967
|
+
* - salesRefundVoucherShouldBeDraft
|
|
16967
16968
|
* - 404:
|
|
16968
16969
|
* - salesRefundVoucherDoesNotExist
|
|
16969
16970
|
* - 500:
|
|
@@ -27544,7 +27545,7 @@ export interface components {
|
|
|
27544
27545
|
/**
|
|
27545
27546
|
* Id
|
|
27546
27547
|
* Format: uuid
|
|
27547
|
-
* @example
|
|
27548
|
+
* @example ff7bcfbf-dd09-4a5f-a8ab-5b05d287551d
|
|
27548
27549
|
*/
|
|
27549
27550
|
id: string;
|
|
27550
27551
|
/**
|
|
@@ -45087,6 +45088,8 @@ export interface components {
|
|
|
45087
45088
|
returnInvoice: string | null;
|
|
45088
45089
|
/** Downpaymentitem */
|
|
45089
45090
|
downPaymentItem: string | null;
|
|
45091
|
+
/** Returnreturnablepackage */
|
|
45092
|
+
returnReturnablePackage: string | null;
|
|
45090
45093
|
/** Amount */
|
|
45091
45094
|
amount: string;
|
|
45092
45095
|
/**
|
|
@@ -45161,15 +45164,29 @@ export interface components {
|
|
|
45161
45164
|
/**
|
|
45162
45165
|
* Returninvoice
|
|
45163
45166
|
* Format: uuid
|
|
45164
|
-
* @description
|
|
45167
|
+
* @description
|
|
45168
|
+
* - return invoice id
|
|
45169
|
+
* - down payment item, return invoice or return returnable package is required per row
|
|
45170
|
+
*
|
|
45165
45171
|
*/
|
|
45166
45172
|
returnInvoice?: string;
|
|
45167
45173
|
/**
|
|
45168
45174
|
* Downpaymentitem
|
|
45169
45175
|
* Format: uuid
|
|
45170
|
-
* @description
|
|
45176
|
+
* @description
|
|
45177
|
+
* - down payment id
|
|
45178
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45179
|
+
*
|
|
45171
45180
|
*/
|
|
45172
45181
|
downPaymentItem?: string;
|
|
45182
|
+
/**
|
|
45183
|
+
* Returnreturnablepackage
|
|
45184
|
+
* Format: uuid
|
|
45185
|
+
* @description
|
|
45186
|
+
* - return returnable package id
|
|
45187
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45188
|
+
*/
|
|
45189
|
+
returnReturnablePackage?: string;
|
|
45173
45190
|
};
|
|
45174
45191
|
/** DownPaymentDetailInRefundVoucher */
|
|
45175
45192
|
DownPaymentDetailInRefundVoucher: {
|