@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.
Files changed (2) hide show
  1. package/openapi.ts +25 -4
  2. 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
- * - refundReturnInvoiceTaxShouldBeLessThanReturnInvoiceTax
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 c9cce4b6-f0e8-4be6-ac7b-faae4b4d301a
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 return invoice id, if return invoice is undefined then down payment should be required
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 down payment id, if down payment is undefined then return invoice should be required
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.666",
3
+ "version": "1.0.667",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],