@erp-galoper/types 1.0.299 → 1.0.300

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 +10 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26631,7 +26631,7 @@ export interface components {
26631
26631
  /**
26632
26632
  * Id
26633
26633
  * Format: uuid
26634
- * @example 3dfe9e85-6f2f-4a1a-b65e-ad8ac03b003b
26634
+ * @example 9d7d7183-a046-44f8-bdfd-3b068b7354e3
26635
26635
  */
26636
26636
  id: string;
26637
26637
  /**
@@ -39280,6 +39280,11 @@ export interface components {
39280
39280
  */
39281
39281
  customerBankAccount?: number;
39282
39282
  };
39283
+ /**
39284
+ * DownPaymentTypeSchema
39285
+ * @enum {string}
39286
+ */
39287
+ DownPaymentTypeSchema: "default" | "salesInvoice";
39283
39288
  /** DownPaymentDetailSchema */
39284
39289
  DownPaymentDetailSchema: {
39285
39290
  /**
@@ -41428,7 +41433,7 @@ export interface components {
41428
41433
  /**
41429
41434
  * Downpayment
41430
41435
  * Format: uuid
41431
- * @description get down payments filtered by customer.id and status=approved or not_required
41436
+ * @description get down payments use route /api/v1/sales/down-payments/?type=salesInvoice&customer={customer-id}/
41432
41437
  */
41433
41438
  downPayment?: string;
41434
41439
  /**
@@ -74994,6 +74999,9 @@ export interface operations {
74994
74999
  endDate?: string | null;
74995
75000
  /** @description search by down payment number, down payment description, customer name, customer account number */
74996
75001
  search?: string;
75002
+ type?: "default" | "salesInvoice";
75003
+ /** @description customer id, required when type = salesInvoice */
75004
+ customer?: number;
74997
75005
  };
74998
75006
  header?: never;
74999
75007
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.299",
3
+ "version": "1.0.300",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],