@erp-galoper/main-package 1.0.273 → 1.0.275
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 +27 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -579,6 +579,8 @@ export interface paths {
|
|
579
579
|
* - variationsDoesNotExist
|
580
580
|
* - tagsDoesNotExist
|
581
581
|
* - variantSettingsDoesNotExist
|
582
|
+
* - invalidBarcode
|
583
|
+
* - errorGeneratingBarcode
|
582
584
|
*
|
583
585
|
* - 403:
|
584
586
|
* - permissionDenied
|
@@ -653,6 +655,7 @@ export interface paths {
|
|
653
655
|
* - tagsDoesNotExist
|
654
656
|
* - variantSettingsDoesNotExist
|
655
657
|
* - errorUpdatingVariants
|
658
|
+
* - itemPackageNotExist
|
656
659
|
*
|
657
660
|
* - 403:
|
658
661
|
* - permissionDenied
|
@@ -4658,6 +4661,7 @@ export interface paths {
|
|
4658
4661
|
* - "AccountShouldBeCompanyCurrency"
|
4659
4662
|
* - cityMismatchWithCountry
|
4660
4663
|
* - CityDoesNotBelongToSelectedRegion
|
4664
|
+
* - "cannotRemoveCurrency"
|
4661
4665
|
* - 403: "permissionDenied"
|
4662
4666
|
* - 404: "customerDoesNotExist"
|
4663
4667
|
* - 500: "serverError"
|
@@ -4700,6 +4704,7 @@ export interface paths {
|
|
4700
4704
|
* - "cityDoesNotExist"
|
4701
4705
|
* - cityMismatchWithCountry
|
4702
4706
|
* - CityDoesNotBelongToSelectedRegion
|
4707
|
+
* - "cannotRemoveCurrency"
|
4703
4708
|
* - 403: "permissionDenied"
|
4704
4709
|
* - 404: "customerDoesNotExist"
|
4705
4710
|
* - 500: "serverError"
|
@@ -4898,8 +4903,9 @@ export interface paths {
|
|
4898
4903
|
* - "currencyIdDoesNotExist"
|
4899
4904
|
* - "priceListDoesNotExist
|
4900
4905
|
* - "cityDoesNotExist"
|
4901
|
-
* -
|
4902
|
-
* -
|
4906
|
+
* - regionDoesNotBelongToSelectedCountry
|
4907
|
+
* - cityDoesNotBelongToSelectedRegion
|
4908
|
+
* - cannotRemoveCurrency
|
4903
4909
|
* - 403: "permissionDenied"
|
4904
4910
|
* - 404: "supplierDoesNotExist"
|
4905
4911
|
* - 500: "serverError"
|
@@ -9090,7 +9096,18 @@ export interface components {
|
|
9090
9096
|
* @default []
|
9091
9097
|
*/
|
9092
9098
|
supplierpricelist: components["schemas"]["BasePermissionsSchema_Purchase_SupplierpricelistEnum"][];
|
9099
|
+
/**
|
9100
|
+
* Purchasehistoryprice
|
9101
|
+
* @description purchasehistoryprice actions
|
9102
|
+
* @default []
|
9103
|
+
*/
|
9104
|
+
purchasehistoryprice: components["schemas"]["BasePermissionsSchema_Purchase_PurchasehistorypriceEnum"][];
|
9093
9105
|
};
|
9106
|
+
/**
|
9107
|
+
* BasePermissionsSchema_Purchase_PurchasehistorypriceEnum
|
9108
|
+
* @constant
|
9109
|
+
*/
|
9110
|
+
BasePermissionsSchema_Purchase_PurchasehistorypriceEnum: "view";
|
9094
9111
|
/**
|
9095
9112
|
* BasePermissionsSchema_Purchase_SupplierpricelistEnum
|
9096
9113
|
* @enum {string}
|
@@ -10314,7 +10331,7 @@ export interface components {
|
|
10314
10331
|
* GetCostStrategy
|
10315
10332
|
* @enum {string}
|
10316
10333
|
*/
|
10317
|
-
GetCostStrategy: "firstInFirstOut" | "lastInFirstOut" | "weightedAverageCost" | "simpleAverageCost" | "
|
10334
|
+
GetCostStrategy: "firstInFirstOut" | "lastInFirstOut" | "weightedAverageCost" | "simpleAverageCost" | "marketCost";
|
10318
10335
|
/** IdAndName */
|
10319
10336
|
IdAndName: {
|
10320
10337
|
/** Id */
|
@@ -15960,7 +15977,7 @@ export interface components {
|
|
15960
15977
|
/**
|
15961
15978
|
* Id
|
15962
15979
|
* Format: uuid
|
15963
|
-
* @example
|
15980
|
+
* @example aef82d08-3712-4373-a50f-430d0a74c9c2
|
15964
15981
|
*/
|
15965
15982
|
id: string;
|
15966
15983
|
/**
|
@@ -19222,7 +19239,10 @@ export interface operations {
|
|
19222
19239
|
};
|
19223
19240
|
authentication_views_get_user_info: {
|
19224
19241
|
parameters: {
|
19225
|
-
query?:
|
19242
|
+
query?: {
|
19243
|
+
/** @description for local branch */
|
19244
|
+
search?: string;
|
19245
|
+
};
|
19226
19246
|
header?: never;
|
19227
19247
|
path?: never;
|
19228
19248
|
cookie?: never;
|
@@ -19780,11 +19800,11 @@ export interface operations {
|
|
19780
19800
|
page?: number;
|
19781
19801
|
/** @description Page size */
|
19782
19802
|
pageSize?: number;
|
19783
|
-
/** @description Filter description */
|
19784
|
-
filters?: string;
|
19785
19803
|
viewType?: "flat" | "tree";
|
19786
19804
|
itemQuantity?: boolean;
|
19787
19805
|
branchId?: number;
|
19806
|
+
/** @description search by item name , sku code or barcode */
|
19807
|
+
search?: string;
|
19788
19808
|
};
|
19789
19809
|
header?: never;
|
19790
19810
|
path?: never;
|
package/package.json
CHANGED