@erp-galoper/types 1.0.1752 → 1.0.1753
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 +69 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -17502,6 +17502,7 @@ export interface paths {
|
|
|
17502
17502
|
* - customerShouldBeSameAsDownPaymentCustomer
|
|
17503
17503
|
* - salesPersonIsNotActive
|
|
17504
17504
|
* - invoiceShouldBeLinkedToQuotationOrOrder
|
|
17505
|
+
* - downPaymentAmountExceedsRemainingBalance
|
|
17505
17506
|
*
|
|
17506
17507
|
* - 403: "noModuleAccess"
|
|
17507
17508
|
* - "permissionDenied"
|
|
@@ -17575,6 +17576,7 @@ export interface paths {
|
|
|
17575
17576
|
* - salesInvoiceItemCannotBeDeleted
|
|
17576
17577
|
* - salesPersonIsNotActive
|
|
17577
17578
|
* - invoiceShouldBeLinkedToQuotationOrOrder
|
|
17579
|
+
* - downPaymentAmountExceedsRemainingBalance
|
|
17578
17580
|
*
|
|
17579
17581
|
* - 403: "noModuleAccess"
|
|
17580
17582
|
* - "permissionDenied"
|
|
@@ -50503,6 +50505,21 @@ export interface components {
|
|
|
50503
50505
|
* @description this field is number
|
|
50504
50506
|
*/
|
|
50505
50507
|
usdTotal: string | null;
|
|
50508
|
+
/**
|
|
50509
|
+
* Remaining
|
|
50510
|
+
* @description Remaining balance in customer currency
|
|
50511
|
+
*/
|
|
50512
|
+
remaining?: string | null;
|
|
50513
|
+
/**
|
|
50514
|
+
* Primaryremaining
|
|
50515
|
+
* @description Remaining balance in primary currency
|
|
50516
|
+
*/
|
|
50517
|
+
primaryRemaining?: string | null;
|
|
50518
|
+
/**
|
|
50519
|
+
* Secondaryremaining
|
|
50520
|
+
* @description Remaining balance in secondary currency
|
|
50521
|
+
*/
|
|
50522
|
+
secondaryRemaining?: string | null;
|
|
50506
50523
|
/** Candelete */
|
|
50507
50524
|
canDelete: boolean;
|
|
50508
50525
|
/** @description visible when project module is active */
|
|
@@ -50690,6 +50707,21 @@ export interface components {
|
|
|
50690
50707
|
* @description this field is number
|
|
50691
50708
|
*/
|
|
50692
50709
|
usdTotal: string | null;
|
|
50710
|
+
/**
|
|
50711
|
+
* Remaining
|
|
50712
|
+
* @description Remaining balance in customer currency
|
|
50713
|
+
*/
|
|
50714
|
+
remaining?: string | null;
|
|
50715
|
+
/**
|
|
50716
|
+
* Primaryremaining
|
|
50717
|
+
* @description Remaining balance in primary currency
|
|
50718
|
+
*/
|
|
50719
|
+
primaryRemaining?: string | null;
|
|
50720
|
+
/**
|
|
50721
|
+
* Secondaryremaining
|
|
50722
|
+
* @description Remaining balance in secondary currency
|
|
50723
|
+
*/
|
|
50724
|
+
secondaryRemaining?: string | null;
|
|
50693
50725
|
/** Candelete */
|
|
50694
50726
|
canDelete: boolean;
|
|
50695
50727
|
/** @description visible when project module is active */
|
|
@@ -50881,6 +50913,21 @@ export interface components {
|
|
|
50881
50913
|
* @description this field is number
|
|
50882
50914
|
*/
|
|
50883
50915
|
usdTotal: string | null;
|
|
50916
|
+
/**
|
|
50917
|
+
* Remaining
|
|
50918
|
+
* @description Remaining balance in customer currency
|
|
50919
|
+
*/
|
|
50920
|
+
remaining?: string | null;
|
|
50921
|
+
/**
|
|
50922
|
+
* Primaryremaining
|
|
50923
|
+
* @description Remaining balance in primary currency
|
|
50924
|
+
*/
|
|
50925
|
+
primaryRemaining?: string | null;
|
|
50926
|
+
/**
|
|
50927
|
+
* Secondaryremaining
|
|
50928
|
+
* @description Remaining balance in secondary currency
|
|
50929
|
+
*/
|
|
50930
|
+
secondaryRemaining?: string | null;
|
|
50884
50931
|
/** Candelete */
|
|
50885
50932
|
canDelete: boolean;
|
|
50886
50933
|
/** @description visible when project module is active */
|
|
@@ -53153,6 +53200,11 @@ export interface components {
|
|
|
53153
53200
|
deliveryStatus: components["schemas"]["DeliveryStatusValueChoices"];
|
|
53154
53201
|
/** @description The down payment linked to this invoice, if applicable. */
|
|
53155
53202
|
downPayment: components["schemas"]["DocumentCommonSchema"] | null;
|
|
53203
|
+
/**
|
|
53204
|
+
* Downpaymentamount
|
|
53205
|
+
* @description Amount of down payment applied to this invoice.
|
|
53206
|
+
*/
|
|
53207
|
+
downPaymentAmount?: string | null;
|
|
53156
53208
|
/** @description The payment status of the sales invoice. */
|
|
53157
53209
|
paymentStatus: components["schemas"]["PaymentStatusValueChoices"];
|
|
53158
53210
|
/** @description The price list associated with the sales invoice. */
|
|
@@ -53545,6 +53597,13 @@ export interface components {
|
|
|
53545
53597
|
* @description get down payments use route /api/v1/sales/down-payments/?type=salesInvoice&customer={customer-id}/
|
|
53546
53598
|
*/
|
|
53547
53599
|
downPayment?: string;
|
|
53600
|
+
/**
|
|
53601
|
+
* Downpaymentamount
|
|
53602
|
+
* @description - Amount of down payment to apply to this invoice.
|
|
53603
|
+
* - Visible and Required when downPayment is set.
|
|
53604
|
+
* - Must not exceed the remaining available down payment balance.
|
|
53605
|
+
*/
|
|
53606
|
+
downPaymentAmount?: number;
|
|
53548
53607
|
/**
|
|
53549
53608
|
* Salesperson
|
|
53550
53609
|
* Format: uuid
|
|
@@ -53752,6 +53811,11 @@ export interface components {
|
|
|
53752
53811
|
deliveryStatus: components["schemas"]["DeliveryStatusValueChoices"];
|
|
53753
53812
|
/** @description The down payment linked to this invoice, if applicable. */
|
|
53754
53813
|
downPayment: components["schemas"]["DocumentCommonSchema"] | null;
|
|
53814
|
+
/**
|
|
53815
|
+
* Downpaymentamount
|
|
53816
|
+
* @description Amount of down payment applied to this invoice.
|
|
53817
|
+
*/
|
|
53818
|
+
downPaymentAmount?: string | null;
|
|
53755
53819
|
/** @description The payment status of the sales invoice. */
|
|
53756
53820
|
paymentStatus: components["schemas"]["PaymentStatusValueChoices"];
|
|
53757
53821
|
/** @description The price list associated with the sales invoice. */
|
|
@@ -54020,6 +54084,11 @@ export interface components {
|
|
|
54020
54084
|
deliveryStatus: components["schemas"]["DeliveryStatusValueChoices"];
|
|
54021
54085
|
/** @description The down payment linked to this invoice, if applicable. */
|
|
54022
54086
|
downPayment: components["schemas"]["DocumentCommonSchema"] | null;
|
|
54087
|
+
/**
|
|
54088
|
+
* Downpaymentamount
|
|
54089
|
+
* @description Amount of down payment applied to this invoice.
|
|
54090
|
+
*/
|
|
54091
|
+
downPaymentAmount?: string | null;
|
|
54023
54092
|
/** @description The payment status of the sales invoice. */
|
|
54024
54093
|
paymentStatus: components["schemas"]["PaymentStatusValueChoices"];
|
|
54025
54094
|
/** @description The price list associated with the sales invoice. */
|