@erp-galoper/types 1.0.651 → 1.0.652

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 +9 -9
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -27598,7 +27598,7 @@ export interface components {
27598
27598
  /**
27599
27599
  * Id
27600
27600
  * Format: uuid
27601
- * @example 71d71846-e0a6-4aac-a53d-dc5e692285b2
27601
+ * @example 260ab4e8-d073-496e-bce5-c9a7d5333175
27602
27602
  */
27603
27603
  id: string;
27604
27604
  /**
@@ -32603,22 +32603,22 @@ export interface components {
32603
32603
  * Supplierbankaccount
32604
32604
  * @description This field is required and visible if payment method is Bank Transfer, to get supplier banks use route /suppliers/{supplier_id}/
32605
32605
  */
32606
- supplierBankAccount: number | null;
32606
+ supplierBankAccount?: number | null;
32607
32607
  /**
32608
32608
  * Duedate
32609
32609
  * @description This Field is visible and required if payment method is Cheque
32610
32610
  */
32611
- dueDate: string | null;
32611
+ dueDate?: string | null;
32612
32612
  /**
32613
32613
  * Chequenumber
32614
32614
  * @description This field is required and visible if payment method is Cheque
32615
32615
  */
32616
- chequeNumber: string | null;
32616
+ chequeNumber?: string | null;
32617
32617
  /**
32618
32618
  * Bankname
32619
32619
  * @description THis field is required and visible if payment method is Cheque
32620
32620
  */
32621
- bankName: string | null;
32621
+ bankName?: string | null;
32622
32622
  /** Amount */
32623
32623
  amount?: number;
32624
32624
  /** Companyamount */
@@ -32757,22 +32757,22 @@ export interface components {
32757
32757
  * Supplierbankaccount
32758
32758
  * @description This field is required and visible if payment method is Bank Transfer, to get supplier banks use route /suppliers/{supplier_id}/
32759
32759
  */
32760
- supplierBankAccount: number | null;
32760
+ supplierBankAccount?: number | null;
32761
32761
  /**
32762
32762
  * Duedate
32763
32763
  * @description This Field is visible and required if payment method is Cheque
32764
32764
  */
32765
- dueDate: string | null;
32765
+ dueDate?: string | null;
32766
32766
  /**
32767
32767
  * Chequenumber
32768
32768
  * @description This field is required and visible if payment method is Cheque
32769
32769
  */
32770
- chequeNumber: string | null;
32770
+ chequeNumber?: string | null;
32771
32771
  /**
32772
32772
  * Bankname
32773
32773
  * @description THis field is required and visible if payment method is Cheque
32774
32774
  */
32775
- bankName: string | null;
32775
+ bankName?: string | null;
32776
32776
  /** Amount */
32777
32777
  amount?: number;
32778
32778
  /** Companyamount */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.651",
3
+ "version": "1.0.652",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],