@erp-galoper/types 1.0.1365 → 1.0.1366
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 +48 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -39465,6 +39465,12 @@ export interface components {
|
|
|
39465
39465
|
* - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
|
|
39466
39466
|
*/
|
|
39467
39467
|
taxes?: number[] | null;
|
|
39468
|
+
/**
|
|
39469
|
+
* Includetaxinunitprice
|
|
39470
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
39471
|
+
* @default false
|
|
39472
|
+
*/
|
|
39473
|
+
includeTaxInUnitPrice: boolean;
|
|
39468
39474
|
};
|
|
39469
39475
|
/** CreatePurchaseQuotationSchema */
|
|
39470
39476
|
CreatePurchaseQuotationSchema: {
|
|
@@ -39710,6 +39716,12 @@ export interface components {
|
|
|
39710
39716
|
* @default []
|
|
39711
39717
|
*/
|
|
39712
39718
|
taxes: number[];
|
|
39719
|
+
/**
|
|
39720
|
+
* Includetaxinunitprice
|
|
39721
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
39722
|
+
* @default false
|
|
39723
|
+
*/
|
|
39724
|
+
includeTaxInUnitPrice: boolean;
|
|
39713
39725
|
};
|
|
39714
39726
|
/** TotalCalculationRequest */
|
|
39715
39727
|
TotalCalculationRequest: {
|
|
@@ -40029,6 +40041,12 @@ export interface components {
|
|
|
40029
40041
|
* - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
|
|
40030
40042
|
*/
|
|
40031
40043
|
taxes?: number[] | null;
|
|
40044
|
+
/**
|
|
40045
|
+
* Includetaxinunitprice
|
|
40046
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
40047
|
+
* @default false
|
|
40048
|
+
*/
|
|
40049
|
+
includeTaxInUnitPrice: boolean;
|
|
40032
40050
|
};
|
|
40033
40051
|
/** CreatePurchaseOrderSchema */
|
|
40034
40052
|
CreatePurchaseOrderSchema: {
|
|
@@ -41143,6 +41161,12 @@ export interface components {
|
|
|
41143
41161
|
* - get default value(s) from /api/v1/inventory/items/{id}/ and filter by type equals purchase
|
|
41144
41162
|
*/
|
|
41145
41163
|
taxes: number[];
|
|
41164
|
+
/**
|
|
41165
|
+
* Includetaxinunitprice
|
|
41166
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
41167
|
+
* @default false
|
|
41168
|
+
*/
|
|
41169
|
+
includeTaxInUnitPrice: boolean;
|
|
41146
41170
|
};
|
|
41147
41171
|
/** PurchaseInvoiceItemsUpdateSchema */
|
|
41148
41172
|
PurchaseInvoiceItemsUpdateSchema: {
|
|
@@ -45934,6 +45958,12 @@ export interface components {
|
|
|
45934
45958
|
* @default []
|
|
45935
45959
|
*/
|
|
45936
45960
|
taxes: number[];
|
|
45961
|
+
/**
|
|
45962
|
+
* Includetaxinunitprice
|
|
45963
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
45964
|
+
* @default false
|
|
45965
|
+
*/
|
|
45966
|
+
includeTaxInUnitPrice: boolean;
|
|
45937
45967
|
};
|
|
45938
45968
|
/** SalesTotalCalculationRequest */
|
|
45939
45969
|
SalesTotalCalculationRequest: {
|
|
@@ -46392,6 +46422,12 @@ export interface components {
|
|
|
46392
46422
|
* @default []
|
|
46393
46423
|
*/
|
|
46394
46424
|
taxes: number[];
|
|
46425
|
+
/**
|
|
46426
|
+
* Includetaxinunitprice
|
|
46427
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
46428
|
+
* @default false
|
|
46429
|
+
*/
|
|
46430
|
+
includeTaxInUnitPrice: boolean;
|
|
46395
46431
|
};
|
|
46396
46432
|
/** CreateUpdateSalesQuotationSchema */
|
|
46397
46433
|
CreateUpdateSalesQuotationSchema: {
|
|
@@ -48587,6 +48623,12 @@ export interface components {
|
|
|
48587
48623
|
* @default []
|
|
48588
48624
|
*/
|
|
48589
48625
|
taxes: number[];
|
|
48626
|
+
/**
|
|
48627
|
+
* Includetaxinunitprice
|
|
48628
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
48629
|
+
* @default false
|
|
48630
|
+
*/
|
|
48631
|
+
includeTaxInUnitPrice: boolean;
|
|
48590
48632
|
};
|
|
48591
48633
|
/** CreateUpdateSalesOrderSchema */
|
|
48592
48634
|
CreateUpdateSalesOrderSchema: {
|
|
@@ -50237,6 +50279,12 @@ export interface components {
|
|
|
50237
50279
|
* @default []
|
|
50238
50280
|
*/
|
|
50239
50281
|
taxes: number[];
|
|
50282
|
+
/**
|
|
50283
|
+
* Includetaxinunitprice
|
|
50284
|
+
* @description If true, the unit price includes tax and will be extracted to calculate the base price
|
|
50285
|
+
* @default false
|
|
50286
|
+
*/
|
|
50287
|
+
includeTaxInUnitPrice: boolean;
|
|
50240
50288
|
};
|
|
50241
50289
|
/** CreateUpdateSalesInvoiceSchema */
|
|
50242
50290
|
CreateUpdateSalesInvoiceSchema: {
|