@erp-galoper/types 1.0.1516 → 1.0.1518
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 +72 -10
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -55109,14 +55109,23 @@ export interface components {
|
|
|
55109
55109
|
/** @description Total sales before discounts */
|
|
55110
55110
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55111
55111
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55112
|
-
/** @description Sales after discounts */
|
|
55113
|
-
|
|
55112
|
+
/** @description Sales after discounts, before returns */
|
|
55113
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55114
55114
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55115
|
-
/** @description
|
|
55115
|
+
/** @description Total sales + tax */
|
|
55116
55116
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55117
|
+
/**
|
|
55118
|
+
* Quantityreturned
|
|
55119
|
+
* @description Total quantity returned
|
|
55120
|
+
*/
|
|
55121
|
+
quantityReturned: number;
|
|
55122
|
+
/** @description Total return amount */
|
|
55123
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55124
|
+
/** @description Total sales minus returns */
|
|
55125
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55117
55126
|
/** @description Cost of goods sold (COGS) */
|
|
55118
55127
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
55119
|
-
/** @description
|
|
55128
|
+
/** @description Total sales - COGS */
|
|
55120
55129
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55121
55130
|
/**
|
|
55122
55131
|
* Profitmargin
|
|
@@ -55133,9 +55142,19 @@ export interface components {
|
|
|
55133
55142
|
totalQuantitySold: number;
|
|
55134
55143
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55135
55144
|
totalDiscounts: components["schemas"]["CurrencyAmountSchema"];
|
|
55136
|
-
|
|
55145
|
+
/** @description Sales after discounts, before returns */
|
|
55146
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55137
55147
|
totalTaxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55138
55148
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55149
|
+
/**
|
|
55150
|
+
* Totalquantityreturned
|
|
55151
|
+
* @description Total quantity returned
|
|
55152
|
+
*/
|
|
55153
|
+
totalQuantityReturned: number;
|
|
55154
|
+
/** @description Total return amount */
|
|
55155
|
+
totalReturnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55156
|
+
/** @description Total sales minus returns */
|
|
55157
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55139
55158
|
totalCost: components["schemas"]["CurrencyAmountSchema"];
|
|
55140
55159
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55141
55160
|
/** Profitmargin */
|
|
@@ -55158,9 +55177,18 @@ export interface components {
|
|
|
55158
55177
|
quantitySold: number;
|
|
55159
55178
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55160
55179
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55161
|
-
|
|
55180
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55162
55181
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55163
55182
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55183
|
+
/**
|
|
55184
|
+
* Quantityreturned
|
|
55185
|
+
* @description Total quantity returned
|
|
55186
|
+
*/
|
|
55187
|
+
quantityReturned: number;
|
|
55188
|
+
/** @description Total return amount */
|
|
55189
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55190
|
+
/** @description Total sales minus returns */
|
|
55191
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55164
55192
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
55165
55193
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55166
55194
|
/** Profitmargin */
|
|
@@ -55188,9 +55216,18 @@ export interface components {
|
|
|
55188
55216
|
quantitySold: number;
|
|
55189
55217
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55190
55218
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55191
|
-
|
|
55219
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55192
55220
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55193
55221
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55222
|
+
/**
|
|
55223
|
+
* Quantityreturned
|
|
55224
|
+
* @description Total quantity returned
|
|
55225
|
+
*/
|
|
55226
|
+
quantityReturned: number;
|
|
55227
|
+
/** @description Total return amount */
|
|
55228
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55229
|
+
/** @description Total sales minus returns */
|
|
55230
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55194
55231
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
55195
55232
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55196
55233
|
/** Profitmargin */
|
|
@@ -55224,9 +55261,18 @@ export interface components {
|
|
|
55224
55261
|
quantitySold: number;
|
|
55225
55262
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55226
55263
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55227
|
-
|
|
55264
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55228
55265
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55229
55266
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55267
|
+
/**
|
|
55268
|
+
* Quantityreturned
|
|
55269
|
+
* @description Total quantity returned
|
|
55270
|
+
*/
|
|
55271
|
+
quantityReturned: number;
|
|
55272
|
+
/** @description Total return amount */
|
|
55273
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55274
|
+
/** @description Total sales minus returns */
|
|
55275
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55230
55276
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
55231
55277
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55232
55278
|
/** Profitmargin */
|
|
@@ -55251,7 +55297,7 @@ export interface components {
|
|
|
55251
55297
|
quantitySold: number;
|
|
55252
55298
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55253
55299
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55254
|
-
|
|
55300
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55255
55301
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55256
55302
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55257
55303
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
@@ -55295,9 +55341,18 @@ export interface components {
|
|
|
55295
55341
|
quantitySold: number;
|
|
55296
55342
|
grossSalesAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55297
55343
|
discountAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55298
|
-
|
|
55344
|
+
totalSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55299
55345
|
taxAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55300
55346
|
totalAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55347
|
+
/**
|
|
55348
|
+
* Quantityreturned
|
|
55349
|
+
* @description Total quantity returned
|
|
55350
|
+
*/
|
|
55351
|
+
quantityReturned: number;
|
|
55352
|
+
/** @description Total return amount */
|
|
55353
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55354
|
+
/** @description Total sales minus returns */
|
|
55355
|
+
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55301
55356
|
cost: components["schemas"]["CurrencyAmountSchema"];
|
|
55302
55357
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55303
55358
|
/** Profitmargin */
|
|
@@ -55336,6 +55391,13 @@ export interface components {
|
|
|
55336
55391
|
netSales: components["schemas"]["CurrencyAmountSchema"];
|
|
55337
55392
|
totalTax: components["schemas"]["CurrencyAmountSchema"];
|
|
55338
55393
|
totalRevenue: components["schemas"]["CurrencyAmountSchema"];
|
|
55394
|
+
/**
|
|
55395
|
+
* Totalitemsreturned
|
|
55396
|
+
* @description Total items returned
|
|
55397
|
+
*/
|
|
55398
|
+
totalItemsReturned: number;
|
|
55399
|
+
/** @description Total return amount */
|
|
55400
|
+
returnAmount: components["schemas"]["CurrencyAmountSchema"];
|
|
55339
55401
|
costOfGoodsSold: components["schemas"]["CurrencyAmountSchema"];
|
|
55340
55402
|
grossProfit: components["schemas"]["CurrencyAmountSchema"];
|
|
55341
55403
|
/** Grossmarginpercentage */
|