@erp-galoper/types 1.0.663 → 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.
Files changed (2) hide show
  1. package/openapi.ts +21 -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 6aeb08e5-f83f-4d06-9cc5-759a2f52b130
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 return invoice id, if return invoice is undefined then down payment should be required
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 down payment id, if down payment is undefined then return invoice should be required
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: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.663",
3
+ "version": "1.0.665",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],