@erp-galoper/types 1.0.651 → 1.0.653
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 +10 -9
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -14572,6 +14572,7 @@ export interface paths {
|
|
|
14572
14572
|
* - taxDoesNotBelongToReturnInvoiceItem
|
|
14573
14573
|
* - refundReturnInvoiceTaxShouldBeLessThanReturnInvoiceTax
|
|
14574
14574
|
* - returnInvoiceShouldBeSubmittedOrPostedOrSent
|
|
14575
|
+
* - purchaseRefundVoucherShouldBeDraft
|
|
14575
14576
|
* - 404:
|
|
14576
14577
|
* - refundVoucherDoesNotExist
|
|
14577
14578
|
* - 500:
|
|
@@ -27598,7 +27599,7 @@ export interface components {
|
|
|
27598
27599
|
/**
|
|
27599
27600
|
* Id
|
|
27600
27601
|
* Format: uuid
|
|
27601
|
-
* @example
|
|
27602
|
+
* @example 687c41b4-0e3e-4a81-bd6d-901ce3cbc621
|
|
27602
27603
|
*/
|
|
27603
27604
|
id: string;
|
|
27604
27605
|
/**
|
|
@@ -32603,22 +32604,22 @@ export interface components {
|
|
|
32603
32604
|
* Supplierbankaccount
|
|
32604
32605
|
* @description This field is required and visible if payment method is Bank Transfer, to get supplier banks use route /suppliers/{supplier_id}/
|
|
32605
32606
|
*/
|
|
32606
|
-
supplierBankAccount
|
|
32607
|
+
supplierBankAccount?: number | null;
|
|
32607
32608
|
/**
|
|
32608
32609
|
* Duedate
|
|
32609
32610
|
* @description This Field is visible and required if payment method is Cheque
|
|
32610
32611
|
*/
|
|
32611
|
-
dueDate
|
|
32612
|
+
dueDate?: string | null;
|
|
32612
32613
|
/**
|
|
32613
32614
|
* Chequenumber
|
|
32614
32615
|
* @description This field is required and visible if payment method is Cheque
|
|
32615
32616
|
*/
|
|
32616
|
-
chequeNumber
|
|
32617
|
+
chequeNumber?: string | null;
|
|
32617
32618
|
/**
|
|
32618
32619
|
* Bankname
|
|
32619
32620
|
* @description THis field is required and visible if payment method is Cheque
|
|
32620
32621
|
*/
|
|
32621
|
-
bankName
|
|
32622
|
+
bankName?: string | null;
|
|
32622
32623
|
/** Amount */
|
|
32623
32624
|
amount?: number;
|
|
32624
32625
|
/** Companyamount */
|
|
@@ -32757,22 +32758,22 @@ export interface components {
|
|
|
32757
32758
|
* Supplierbankaccount
|
|
32758
32759
|
* @description This field is required and visible if payment method is Bank Transfer, to get supplier banks use route /suppliers/{supplier_id}/
|
|
32759
32760
|
*/
|
|
32760
|
-
supplierBankAccount
|
|
32761
|
+
supplierBankAccount?: number | null;
|
|
32761
32762
|
/**
|
|
32762
32763
|
* Duedate
|
|
32763
32764
|
* @description This Field is visible and required if payment method is Cheque
|
|
32764
32765
|
*/
|
|
32765
|
-
dueDate
|
|
32766
|
+
dueDate?: string | null;
|
|
32766
32767
|
/**
|
|
32767
32768
|
* Chequenumber
|
|
32768
32769
|
* @description This field is required and visible if payment method is Cheque
|
|
32769
32770
|
*/
|
|
32770
|
-
chequeNumber
|
|
32771
|
+
chequeNumber?: string | null;
|
|
32771
32772
|
/**
|
|
32772
32773
|
* Bankname
|
|
32773
32774
|
* @description THis field is required and visible if payment method is Cheque
|
|
32774
32775
|
*/
|
|
32775
|
-
bankName
|
|
32776
|
+
bankName?: string | null;
|
|
32776
32777
|
/** Amount */
|
|
32777
32778
|
amount?: number;
|
|
32778
32779
|
/** Companyamount */
|