@erp-galoper/types 1.0.1559 → 1.0.1561
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 +80 -25
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -23535,7 +23535,41 @@ export interface components {
|
|
|
23535
23535
|
* @default []
|
|
23536
23536
|
*/
|
|
23537
23537
|
warehouse: components["schemas"]["BasePermissionsSchema_Inventory_WarehouseEnum"][];
|
|
23538
|
+
/**
|
|
23539
|
+
* Price
|
|
23540
|
+
* @description price actions
|
|
23541
|
+
* @default []
|
|
23542
|
+
*/
|
|
23543
|
+
price: components["schemas"]["BasePermissionsSchema_Inventory_PriceEnum"][];
|
|
23544
|
+
/**
|
|
23545
|
+
* Discount
|
|
23546
|
+
* @description discount actions
|
|
23547
|
+
* @default []
|
|
23548
|
+
*/
|
|
23549
|
+
discount: components["schemas"]["BasePermissionsSchema_Inventory_DiscountEnum"][];
|
|
23550
|
+
/**
|
|
23551
|
+
* Profit
|
|
23552
|
+
* @description profit actions
|
|
23553
|
+
* @default []
|
|
23554
|
+
*/
|
|
23555
|
+
profit: components["schemas"]["BasePermissionsSchema_Inventory_ProfitEnum"][];
|
|
23556
|
+
/**
|
|
23557
|
+
* Cost
|
|
23558
|
+
* @description cost actions
|
|
23559
|
+
* @default []
|
|
23560
|
+
*/
|
|
23561
|
+
cost: components["schemas"]["BasePermissionsSchema_Inventory_CostEnum"][];
|
|
23538
23562
|
};
|
|
23563
|
+
/**
|
|
23564
|
+
* BasePermissionsSchema_Inventory_CostEnum
|
|
23565
|
+
* @constant
|
|
23566
|
+
*/
|
|
23567
|
+
BasePermissionsSchema_Inventory_CostEnum: "view";
|
|
23568
|
+
/**
|
|
23569
|
+
* BasePermissionsSchema_Inventory_DiscountEnum
|
|
23570
|
+
* @constant
|
|
23571
|
+
*/
|
|
23572
|
+
BasePermissionsSchema_Inventory_DiscountEnum: "add";
|
|
23539
23573
|
/**
|
|
23540
23574
|
* BasePermissionsSchema_Inventory_GoodsdeliverynoteEnum
|
|
23541
23575
|
* @enum {string}
|
|
@@ -23576,6 +23610,16 @@ export interface components {
|
|
|
23576
23610
|
* @enum {string}
|
|
23577
23611
|
*/
|
|
23578
23612
|
BasePermissionsSchema_Inventory_PackagetypeEnum: "add" | "change" | "delete" | "view";
|
|
23613
|
+
/**
|
|
23614
|
+
* BasePermissionsSchema_Inventory_PriceEnum
|
|
23615
|
+
* @constant
|
|
23616
|
+
*/
|
|
23617
|
+
BasePermissionsSchema_Inventory_PriceEnum: "change";
|
|
23618
|
+
/**
|
|
23619
|
+
* BasePermissionsSchema_Inventory_ProfitEnum
|
|
23620
|
+
* @constant
|
|
23621
|
+
*/
|
|
23622
|
+
BasePermissionsSchema_Inventory_ProfitEnum: "view";
|
|
23579
23623
|
/**
|
|
23580
23624
|
* BasePermissionsSchema_Inventory_ReturnablepackagereconciliationEnum
|
|
23581
23625
|
* @enum {string}
|
|
@@ -24091,6 +24135,12 @@ export interface components {
|
|
|
24091
24135
|
* @default []
|
|
24092
24136
|
*/
|
|
24093
24137
|
salesbysalespersonreport: components["schemas"]["BasePermissionsSchema_Report_Sales_SalesbysalespersonreportEnum"][];
|
|
24138
|
+
/**
|
|
24139
|
+
* Salesbywarehousereport
|
|
24140
|
+
* @description salesbywarehousereport actions
|
|
24141
|
+
* @default []
|
|
24142
|
+
*/
|
|
24143
|
+
salesbywarehousereport: components["schemas"]["BasePermissionsSchema_Report_Sales_SalesbywarehousereportEnum"][];
|
|
24094
24144
|
/**
|
|
24095
24145
|
* Salessummaryreport
|
|
24096
24146
|
* @description salessummaryreport actions
|
|
@@ -24129,6 +24179,11 @@ export interface components {
|
|
|
24129
24179
|
* @enum {string}
|
|
24130
24180
|
*/
|
|
24131
24181
|
BasePermissionsSchema_Report_Sales_SalesbysalespersonreportEnum: "export" | "view";
|
|
24182
|
+
/**
|
|
24183
|
+
* BasePermissionsSchema_Report_Sales_SalesbywarehousereportEnum
|
|
24184
|
+
* @enum {string}
|
|
24185
|
+
*/
|
|
24186
|
+
BasePermissionsSchema_Report_Sales_SalesbywarehousereportEnum: "export" | "view";
|
|
24132
24187
|
/**
|
|
24133
24188
|
* BasePermissionsSchema_Report_Sales_SalessummaryreportEnum
|
|
24134
24189
|
* @enum {string}
|
|
@@ -26152,28 +26207,28 @@ export interface components {
|
|
|
26152
26207
|
isExchangeable: boolean | null;
|
|
26153
26208
|
/**
|
|
26154
26209
|
* Availableinonlinestore
|
|
26155
|
-
* @description this field only appears if online store is enabled in
|
|
26210
|
+
* @description this field only appears if online store is enabled in galoper settings
|
|
26156
26211
|
* @default false
|
|
26157
26212
|
*/
|
|
26158
26213
|
availableInOnlineStore: boolean;
|
|
26159
26214
|
/**
|
|
26160
26215
|
* Onlineprice
|
|
26161
|
-
* @description Price for online store sales -
|
|
26216
|
+
* @description Price for online store sales - could be set even if available_in_online_store is false
|
|
26162
26217
|
*/
|
|
26163
26218
|
onlinePrice?: number | null;
|
|
26164
26219
|
/**
|
|
26165
26220
|
* Onlinepricebeforediscount
|
|
26166
|
-
* @description Original price before discount for online store -
|
|
26221
|
+
* @description Original price before discount for online store - could be set even if available_in_online_store is false
|
|
26167
26222
|
*/
|
|
26168
26223
|
onlinePriceBeforeDiscount?: number | null;
|
|
26169
26224
|
/**
|
|
26170
26225
|
* Seotitle
|
|
26171
|
-
* @description SEO page title for search engines (70 characters recommended) -
|
|
26226
|
+
* @description SEO page title for search engines (70 characters recommended) - could be set even if available_in_online_store is false
|
|
26172
26227
|
*/
|
|
26173
26228
|
seoTitle?: string | null;
|
|
26174
26229
|
/**
|
|
26175
26230
|
* Seodescription
|
|
26176
|
-
* @description SEO meta description for search engines (160 characters recommended) -
|
|
26231
|
+
* @description SEO meta description for search engines (160 characters recommended) - could be set even if available_in_online_store is false
|
|
26177
26232
|
*/
|
|
26178
26233
|
seoDescription?: string | null;
|
|
26179
26234
|
/**
|
|
@@ -26401,28 +26456,28 @@ export interface components {
|
|
|
26401
26456
|
isExchangeable: boolean | null;
|
|
26402
26457
|
/**
|
|
26403
26458
|
* Availableinonlinestore
|
|
26404
|
-
* @description this field only appears if online store is enabled in
|
|
26459
|
+
* @description this field only appears if online store is enabled in galoper settings
|
|
26405
26460
|
* @default false
|
|
26406
26461
|
*/
|
|
26407
26462
|
availableInOnlineStore: boolean;
|
|
26408
26463
|
/**
|
|
26409
26464
|
* Onlineprice
|
|
26410
|
-
* @description Price for online store sales -
|
|
26465
|
+
* @description Price for online store sales - could be set even if available_in_online_store is false
|
|
26411
26466
|
*/
|
|
26412
26467
|
onlinePrice?: number | null;
|
|
26413
26468
|
/**
|
|
26414
26469
|
* Onlinepricebeforediscount
|
|
26415
|
-
* @description Original price before discount for online store -
|
|
26470
|
+
* @description Original price before discount for online store - could be set even if available_in_online_store is false
|
|
26416
26471
|
*/
|
|
26417
26472
|
onlinePriceBeforeDiscount?: number | null;
|
|
26418
26473
|
/**
|
|
26419
26474
|
* Seotitle
|
|
26420
|
-
* @description SEO page title for search engines (70 characters recommended) -
|
|
26475
|
+
* @description SEO page title for search engines (70 characters recommended) - could be set even if available_in_online_store is false
|
|
26421
26476
|
*/
|
|
26422
26477
|
seoTitle?: string | null;
|
|
26423
26478
|
/**
|
|
26424
26479
|
* Seodescription
|
|
26425
|
-
* @description SEO meta description for search engines (160 characters recommended) -
|
|
26480
|
+
* @description SEO meta description for search engines (160 characters recommended) - could be set even if available_in_online_store is false
|
|
26426
26481
|
*/
|
|
26427
26482
|
seoDescription?: string | null;
|
|
26428
26483
|
/**
|
|
@@ -26963,28 +27018,28 @@ export interface components {
|
|
|
26963
27018
|
isExchangeable: boolean | null;
|
|
26964
27019
|
/**
|
|
26965
27020
|
* Availableinonlinestore
|
|
26966
|
-
* @description this field only appears if online store is enabled in
|
|
27021
|
+
* @description this field only appears if online store is enabled in galoper settings
|
|
26967
27022
|
* @default false
|
|
26968
27023
|
*/
|
|
26969
27024
|
availableInOnlineStore: boolean | null;
|
|
26970
27025
|
/**
|
|
26971
27026
|
* Onlineprice
|
|
26972
|
-
* @description Price for online store sales -
|
|
27027
|
+
* @description Price for online store sales - could be set even if available_in_online_store is false
|
|
26973
27028
|
*/
|
|
26974
27029
|
onlinePrice?: number | null;
|
|
26975
27030
|
/**
|
|
26976
27031
|
* Onlinepricebeforediscount
|
|
26977
|
-
* @description Original price before discount for online store -
|
|
27032
|
+
* @description Original price before discount for online store - could be set even if available_in_online_store is false
|
|
26978
27033
|
*/
|
|
26979
27034
|
onlinePriceBeforeDiscount?: number | null;
|
|
26980
27035
|
/**
|
|
26981
27036
|
* Seotitle
|
|
26982
|
-
* @description SEO page title for search engines (70 characters recommended) -
|
|
27037
|
+
* @description SEO page title for search engines (70 characters recommended) - could be set even if available_in_online_store is false
|
|
26983
27038
|
*/
|
|
26984
27039
|
seoTitle?: string | null;
|
|
26985
27040
|
/**
|
|
26986
27041
|
* Seodescription
|
|
26987
|
-
* @description SEO meta description for search engines (160 characters recommended) -
|
|
27042
|
+
* @description SEO meta description for search engines (160 characters recommended) - could be set even if available_in_online_store is false
|
|
26988
27043
|
*/
|
|
26989
27044
|
seoDescription?: string | null;
|
|
26990
27045
|
/**
|
|
@@ -27238,28 +27293,28 @@ export interface components {
|
|
|
27238
27293
|
isExchangeable: boolean | null;
|
|
27239
27294
|
/**
|
|
27240
27295
|
* Availableinonlinestore
|
|
27241
|
-
* @description this field only appears if online store is enabled in
|
|
27296
|
+
* @description this field only appears if online store is enabled in galoper settings
|
|
27242
27297
|
* @default false
|
|
27243
27298
|
*/
|
|
27244
27299
|
availableInOnlineStore: boolean;
|
|
27245
27300
|
/**
|
|
27246
27301
|
* Onlineprice
|
|
27247
|
-
* @description Price for online store sales -
|
|
27302
|
+
* @description Price for online store sales - could be set even if available_in_online_store is false
|
|
27248
27303
|
*/
|
|
27249
27304
|
onlinePrice?: number | null;
|
|
27250
27305
|
/**
|
|
27251
27306
|
* Onlinepricebeforediscount
|
|
27252
|
-
* @description Original price before discount for online store -
|
|
27307
|
+
* @description Original price before discount for online store - could be set even if available_in_online_store is false
|
|
27253
27308
|
*/
|
|
27254
27309
|
onlinePriceBeforeDiscount?: number | null;
|
|
27255
27310
|
/**
|
|
27256
27311
|
* Seotitle
|
|
27257
|
-
* @description SEO page title for search engines (70 characters recommended) -
|
|
27312
|
+
* @description SEO page title for search engines (70 characters recommended) - could be set even if available_in_online_store is false
|
|
27258
27313
|
*/
|
|
27259
27314
|
seoTitle?: string | null;
|
|
27260
27315
|
/**
|
|
27261
27316
|
* Seodescription
|
|
27262
|
-
* @description SEO meta description for search engines (160 characters recommended) -
|
|
27317
|
+
* @description SEO meta description for search engines (160 characters recommended) - could be set even if available_in_online_store is false
|
|
27263
27318
|
*/
|
|
27264
27319
|
seoDescription?: string | null;
|
|
27265
27320
|
/**
|
|
@@ -27586,27 +27641,27 @@ export interface components {
|
|
|
27586
27641
|
isExchangeable: boolean | null;
|
|
27587
27642
|
/**
|
|
27588
27643
|
* Availableinonlinestore
|
|
27589
|
-
* @description this field only appears if online store is enabled in
|
|
27644
|
+
* @description this field only appears if online store is enabled in galoper settings
|
|
27590
27645
|
*/
|
|
27591
27646
|
availableInOnlineStore?: boolean | null;
|
|
27592
27647
|
/**
|
|
27593
27648
|
* Onlineprice
|
|
27594
|
-
* @description Price for online store sales -
|
|
27649
|
+
* @description Price for online store sales - could be set even if available_in_online_store is false
|
|
27595
27650
|
*/
|
|
27596
27651
|
onlinePrice?: number | null;
|
|
27597
27652
|
/**
|
|
27598
27653
|
* Onlinepricebeforediscount
|
|
27599
|
-
* @description Original price before discount for online store -
|
|
27654
|
+
* @description Original price before discount for online store - could be set even if available_in_online_store is false
|
|
27600
27655
|
*/
|
|
27601
27656
|
onlinePriceBeforeDiscount?: number | null;
|
|
27602
27657
|
/**
|
|
27603
27658
|
* Seotitle
|
|
27604
|
-
* @description SEO page title for search engines (70 characters recommended) -
|
|
27659
|
+
* @description SEO page title for search engines (70 characters recommended) - could be set even if available_in_online_store is false
|
|
27605
27660
|
*/
|
|
27606
27661
|
seoTitle?: string | null;
|
|
27607
27662
|
/**
|
|
27608
27663
|
* Seodescription
|
|
27609
|
-
* @description SEO meta description for search engines (160 characters recommended) -
|
|
27664
|
+
* @description SEO meta description for search engines (160 characters recommended) - could be set even if available_in_online_store is false
|
|
27610
27665
|
*/
|
|
27611
27666
|
seoDescription?: string | null;
|
|
27612
27667
|
/** Allowsales */
|