@erp-galoper/types 1.0.666 → 1.0.667
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 +25 -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 90237414-b8e6-4764-8911-22e569c46bb8
|
|
27548
27549
|
*/
|
|
27549
27550
|
id: string;
|
|
27550
27551
|
/**
|
|
@@ -44429,6 +44430,10 @@ export interface components {
|
|
|
44429
44430
|
total: string;
|
|
44430
44431
|
/** Unitprice */
|
|
44431
44432
|
unitPrice: string;
|
|
44433
|
+
/** Quantity */
|
|
44434
|
+
quantity: number;
|
|
44435
|
+
/** Unitpackage */
|
|
44436
|
+
unitPackage?: number | null;
|
|
44432
44437
|
/**
|
|
44433
44438
|
* Discount
|
|
44434
44439
|
* @description The discount percentage applied to the sales invoice.
|
|
@@ -45087,6 +45092,8 @@ export interface components {
|
|
|
45087
45092
|
returnInvoice: string | null;
|
|
45088
45093
|
/** Downpaymentitem */
|
|
45089
45094
|
downPaymentItem: string | null;
|
|
45095
|
+
/** Returnreturnablepackage */
|
|
45096
|
+
returnReturnablePackage: string | null;
|
|
45090
45097
|
/** Amount */
|
|
45091
45098
|
amount: string;
|
|
45092
45099
|
/**
|
|
@@ -45161,15 +45168,29 @@ export interface components {
|
|
|
45161
45168
|
/**
|
|
45162
45169
|
* Returninvoice
|
|
45163
45170
|
* Format: uuid
|
|
45164
|
-
* @description
|
|
45171
|
+
* @description
|
|
45172
|
+
* - return invoice id
|
|
45173
|
+
* - down payment item, return invoice or return returnable package is required per row
|
|
45174
|
+
*
|
|
45165
45175
|
*/
|
|
45166
45176
|
returnInvoice?: string;
|
|
45167
45177
|
/**
|
|
45168
45178
|
* Downpaymentitem
|
|
45169
45179
|
* Format: uuid
|
|
45170
|
-
* @description
|
|
45180
|
+
* @description
|
|
45181
|
+
* - down payment id
|
|
45182
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45183
|
+
*
|
|
45171
45184
|
*/
|
|
45172
45185
|
downPaymentItem?: string;
|
|
45186
|
+
/**
|
|
45187
|
+
* Returnreturnablepackage
|
|
45188
|
+
* Format: uuid
|
|
45189
|
+
* @description
|
|
45190
|
+
* - return returnable package id
|
|
45191
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45192
|
+
*/
|
|
45193
|
+
returnReturnablePackage?: string;
|
|
45173
45194
|
};
|
|
45174
45195
|
/** DownPaymentDetailInRefundVoucher */
|
|
45175
45196
|
DownPaymentDetailInRefundVoucher: {
|