@erp-galoper/types 1.0.650 → 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.
- package/openapi.ts +11 -11
- 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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
32775
|
+
bankName?: string | null;
|
|
32776
32776
|
/** Amount */
|
|
32777
32777
|
amount?: number;
|
|
32778
32778
|
/** Companyamount */
|
|
@@ -35117,7 +35117,7 @@ export interface components {
|
|
|
35117
35117
|
/** Description */
|
|
35118
35118
|
description: string | null;
|
|
35119
35119
|
/** Notes */
|
|
35120
|
-
notes?: string;
|
|
35120
|
+
notes?: string | null;
|
|
35121
35121
|
/**
|
|
35122
35122
|
* Supplier
|
|
35123
35123
|
* @description supplier id, To get suppliers use route /suppliers/?type=children and filter by isActive equals to true
|
|
@@ -35425,7 +35425,7 @@ export interface components {
|
|
|
35425
35425
|
/** Description */
|
|
35426
35426
|
description: string | null;
|
|
35427
35427
|
/** Notes */
|
|
35428
|
-
notes?: string;
|
|
35428
|
+
notes?: string | null;
|
|
35429
35429
|
/**
|
|
35430
35430
|
* Supplier
|
|
35431
35431
|
* @description To get suppliers use route /suppliers/?type=children and filter by isActive equals to true
|