@erp-galoper/main-package 1.0.272 → 1.0.274
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 +34 -18
- 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
|
@@ -3032,6 +3035,7 @@ export interface paths {
|
|
3032
3035
|
* - attributeConflict
|
3033
3036
|
* - noChangesDetected
|
3034
3037
|
* - variationHasRelatedRecords
|
3038
|
+
* - variationDetailRequired
|
3035
3039
|
* - 403:
|
3036
3040
|
* - permissionDenied
|
3037
3041
|
* - 404:
|
@@ -4657,6 +4661,7 @@ export interface paths {
|
|
4657
4661
|
* - "AccountShouldBeCompanyCurrency"
|
4658
4662
|
* - cityMismatchWithCountry
|
4659
4663
|
* - CityDoesNotBelongToSelectedRegion
|
4664
|
+
* - "cannotRemoveCurrency"
|
4660
4665
|
* - 403: "permissionDenied"
|
4661
4666
|
* - 404: "customerDoesNotExist"
|
4662
4667
|
* - 500: "serverError"
|
@@ -4699,6 +4704,7 @@ export interface paths {
|
|
4699
4704
|
* - "cityDoesNotExist"
|
4700
4705
|
* - cityMismatchWithCountry
|
4701
4706
|
* - CityDoesNotBelongToSelectedRegion
|
4707
|
+
* - "cannotRemoveCurrency"
|
4702
4708
|
* - 403: "permissionDenied"
|
4703
4709
|
* - 404: "customerDoesNotExist"
|
4704
4710
|
* - 500: "serverError"
|
@@ -4897,8 +4903,9 @@ export interface paths {
|
|
4897
4903
|
* - "currencyIdDoesNotExist"
|
4898
4904
|
* - "priceListDoesNotExist
|
4899
4905
|
* - "cityDoesNotExist"
|
4900
|
-
* -
|
4901
|
-
* -
|
4906
|
+
* - regionDoesNotBelongToSelectedCountry
|
4907
|
+
* - cityDoesNotBelongToSelectedRegion
|
4908
|
+
* - cannotRemoveCurrency
|
4902
4909
|
* - 403: "permissionDenied"
|
4903
4910
|
* - 404: "supplierDoesNotExist"
|
4904
4911
|
* - 500: "serverError"
|
@@ -9089,7 +9096,18 @@ export interface components {
|
|
9089
9096
|
* @default []
|
9090
9097
|
*/
|
9091
9098
|
supplierpricelist: components["schemas"]["BasePermissionsSchema_Purchase_SupplierpricelistEnum"][];
|
9099
|
+
/**
|
9100
|
+
* Purchasehistoryprice
|
9101
|
+
* @description purchasehistoryprice actions
|
9102
|
+
* @default []
|
9103
|
+
*/
|
9104
|
+
purchasehistoryprice: components["schemas"]["BasePermissionsSchema_Purchase_PurchasehistorypriceEnum"][];
|
9092
9105
|
};
|
9106
|
+
/**
|
9107
|
+
* BasePermissionsSchema_Purchase_PurchasehistorypriceEnum
|
9108
|
+
* @constant
|
9109
|
+
*/
|
9110
|
+
BasePermissionsSchema_Purchase_PurchasehistorypriceEnum: "view";
|
9093
9111
|
/**
|
9094
9112
|
* BasePermissionsSchema_Purchase_SupplierpricelistEnum
|
9095
9113
|
* @enum {string}
|
@@ -9102,11 +9120,6 @@ export interface components {
|
|
9102
9120
|
* @default []
|
9103
9121
|
*/
|
9104
9122
|
accounting: components["schemas"]["BasePermissionsSchema_Report_Accounting"];
|
9105
|
-
/**
|
9106
|
-
* @description inventory actions
|
9107
|
-
* @default []
|
9108
|
-
*/
|
9109
|
-
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
9110
9123
|
/**
|
9111
9124
|
* @description supplier actions
|
9112
9125
|
* @default []
|
@@ -9127,6 +9140,11 @@ export interface components {
|
|
9127
9140
|
* @default []
|
9128
9141
|
*/
|
9129
9142
|
project: components["schemas"]["BasePermissionsSchema_Report_Project"];
|
9143
|
+
/**
|
9144
|
+
* @description inventory actions
|
9145
|
+
* @default []
|
9146
|
+
*/
|
9147
|
+
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
9130
9148
|
};
|
9131
9149
|
/** BasePermissionsSchema_Report_Accounting */
|
9132
9150
|
BasePermissionsSchema_Report_Accounting: {
|
@@ -9238,13 +9256,8 @@ export interface components {
|
|
9238
9256
|
* @description stockreport actions
|
9239
9257
|
* @default []
|
9240
9258
|
*/
|
9241
|
-
stockreport:
|
9259
|
+
stockreport: string[];
|
9242
9260
|
};
|
9243
|
-
/**
|
9244
|
-
* BasePermissionsSchema_Report_Inventory_StockreportEnum
|
9245
|
-
* @constant
|
9246
|
-
*/
|
9247
|
-
BasePermissionsSchema_Report_Inventory_StockreportEnum: "view";
|
9248
9261
|
/** BasePermissionsSchema_Report_Project */
|
9249
9262
|
BasePermissionsSchema_Report_Project: {
|
9250
9263
|
/**
|
@@ -10313,7 +10326,7 @@ export interface components {
|
|
10313
10326
|
* GetCostStrategy
|
10314
10327
|
* @enum {string}
|
10315
10328
|
*/
|
10316
|
-
GetCostStrategy: "firstInFirstOut" | "lastInFirstOut" | "weightedAverageCost" | "simpleAverageCost" | "
|
10329
|
+
GetCostStrategy: "firstInFirstOut" | "lastInFirstOut" | "weightedAverageCost" | "simpleAverageCost" | "marketCost";
|
10317
10330
|
/** IdAndName */
|
10318
10331
|
IdAndName: {
|
10319
10332
|
/** Id */
|
@@ -15959,7 +15972,7 @@ export interface components {
|
|
15959
15972
|
/**
|
15960
15973
|
* Id
|
15961
15974
|
* Format: uuid
|
15962
|
-
* @example
|
15975
|
+
* @example 28941735-71a4-4e95-9127-8119f160e279
|
15963
15976
|
*/
|
15964
15977
|
id: string;
|
15965
15978
|
/**
|
@@ -19221,7 +19234,10 @@ export interface operations {
|
|
19221
19234
|
};
|
19222
19235
|
authentication_views_get_user_info: {
|
19223
19236
|
parameters: {
|
19224
|
-
query?:
|
19237
|
+
query?: {
|
19238
|
+
/** @description for local branch */
|
19239
|
+
search?: string;
|
19240
|
+
};
|
19225
19241
|
header?: never;
|
19226
19242
|
path?: never;
|
19227
19243
|
cookie?: never;
|
@@ -19779,11 +19795,11 @@ export interface operations {
|
|
19779
19795
|
page?: number;
|
19780
19796
|
/** @description Page size */
|
19781
19797
|
pageSize?: number;
|
19782
|
-
/** @description Filter description */
|
19783
|
-
filters?: string;
|
19784
19798
|
viewType?: "flat" | "tree";
|
19785
19799
|
itemQuantity?: boolean;
|
19786
19800
|
branchId?: number;
|
19801
|
+
/** @description search by item name , sku code or barcode */
|
19802
|
+
search?: string;
|
19787
19803
|
};
|
19788
19804
|
header?: never;
|
19789
19805
|
path?: never;
|
package/package.json
CHANGED