@erp-galoper/types 1.0.762 → 1.0.764

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 +15 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -25458,7 +25458,7 @@ export interface components {
25458
25458
  * CustomerDocumentTypeEnum
25459
25459
  * @enum {string}
25460
25460
  */
25461
- CustomerDocumentTypeEnum: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment";
25461
+ CustomerDocumentTypeEnum: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment" | "goodsDeliveryNote";
25462
25462
  /**
25463
25463
  * typeCustomers
25464
25464
  * @enum {string}
@@ -26385,7 +26385,7 @@ export interface components {
26385
26385
  * DocumentTypeEnum
26386
26386
  * @enum {string}
26387
26387
  */
26388
- DocumentTypeEnum: "purchaseRefundVoucher" | "creditNote" | "advancePayment";
26388
+ DocumentTypeEnum: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote";
26389
26389
  /**
26390
26390
  * typeSuppliers
26391
26391
  * @enum {string}
@@ -36372,7 +36372,13 @@ export interface components {
36372
36372
  * Format: date
36373
36373
  */
36374
36374
  date: string;
36375
- /** Supplier */
36375
+ /**
36376
+ * Supplier
36377
+ * @description
36378
+ * if from invoice or order supplier should be the same
36379
+ * else suppliers should be filtered by document_type='goodsReceiptNote'
36380
+ *
36381
+ */
36376
36382
  supplier: number;
36377
36383
  /** Warehouse */
36378
36384
  warehouse: number;
@@ -46221,7 +46227,10 @@ export interface components {
46221
46227
  date: string;
46222
46228
  /**
46223
46229
  * Customer
46224
- * @description child customers only, if from invoice or order customer should be the same
46230
+ * @description
46231
+ * child customers only, if from invoice or order customer should be the same
46232
+ * else customers should be filtered by document_type='goodsDeliveryNote'
46233
+ *
46225
46234
  */
46226
46235
  customer: number;
46227
46236
  /**
@@ -57575,7 +57584,7 @@ export interface operations {
57575
57584
  /** @description Type of customer to get */
57576
57585
  type?: "parents" | "children";
57577
57586
  /** @description type of document for listing customers, example : receiptVoucher */
57578
- documentType?: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment";
57587
+ documentType?: "default" | "receiptVoucher" | "salesCreditNote" | "returnablePackageReconciliation" | "salesReturnPackage" | "salesRefundVoucher" | "downPayment" | "goodsDeliveryNote";
57579
57588
  search?: string | null;
57580
57589
  };
57581
57590
  header?: never;
@@ -58181,7 +58190,7 @@ export interface operations {
58181
58190
  /** @description Type of supplier to get */
58182
58191
  type?: "parents" | "children";
58183
58192
  /** @description type of document for listing suppliers, example : purchaseRefundVoucher */
58184
- documentType?: "purchaseRefundVoucher" | "creditNote" | "advancePayment";
58193
+ documentType?: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote";
58185
58194
  search?: string | null;
58186
58195
  /** @description Branch ID */
58187
58196
  branch?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.762",
3
+ "version": "1.0.764",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],