@erp-galoper/main-package 1.0.211 → 1.0.213
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 +28 -10
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -3854,6 +3854,8 @@ export interface paths {
|
|
3854
3854
|
* - regionCreated
|
3855
3855
|
* - 400:
|
3856
3856
|
* - country+regionConflict
|
3857
|
+
* - citiesDoesNotExist
|
3858
|
+
* - cityCountriesMustMatchRegionCountry
|
3857
3859
|
* - 403:
|
3858
3860
|
* - permissionDenied
|
3859
3861
|
* - 500:
|
@@ -3912,6 +3914,8 @@ export interface paths {
|
|
3912
3914
|
* - 400:
|
3913
3915
|
* - noChangesDetected
|
3914
3916
|
* - country+regionConflict
|
3917
|
+
* - citiesDoesNotExist
|
3918
|
+
* - cityCountriesMustMatchRegionCountry
|
3915
3919
|
* - 403:
|
3916
3920
|
* - permissionDenied
|
3917
3921
|
* - 404:
|
@@ -4642,6 +4646,7 @@ export interface paths {
|
|
4642
4646
|
* - "walkInCustomerCurrencyCantBeChanged"
|
4643
4647
|
* - "AccountShouldBeCompanyCurrency"
|
4644
4648
|
* - cityMismatchWithCountry
|
4649
|
+
* - CityDoesNotBelongToSelectedRegion
|
4645
4650
|
* - 403: "permissionDenied"
|
4646
4651
|
* - 404: "customerDoesNotExist"
|
4647
4652
|
* - 500: "serverError"
|
@@ -4683,6 +4688,7 @@ export interface paths {
|
|
4683
4688
|
* - "priceListDoesNotExist
|
4684
4689
|
* - "cityDoesNotExist"
|
4685
4690
|
* - cityMismatchWithCountry
|
4691
|
+
* - CityDoesNotBelongToSelectedRegion
|
4686
4692
|
* - 403: "permissionDenied"
|
4687
4693
|
* - 404: "customerDoesNotExist"
|
4688
4694
|
* - 500: "serverError"
|
@@ -4711,6 +4717,7 @@ export interface paths {
|
|
4711
4717
|
* - "cityDoesNotExist"
|
4712
4718
|
* - "walkInCustomerExists"
|
4713
4719
|
* - cityMismatchWithCountry
|
4720
|
+
* - CityDoesNotBelongToSelectedRegion
|
4714
4721
|
* - 403: "permissionDenied"
|
4715
4722
|
* - 500: "serverError"
|
4716
4723
|
* # Note: if walk_in_pos is True, currency will be locked and company currency wil appear in the currency field
|
@@ -4743,6 +4750,7 @@ export interface paths {
|
|
4743
4750
|
* - "priceListDoesNotExist
|
4744
4751
|
* - "cityDoesNotExist"
|
4745
4752
|
* - cityMismatchWithCountry
|
4753
|
+
* - CityDoesNotBelongToSelectedRegion
|
4746
4754
|
* - 403: "permissionDenied"
|
4747
4755
|
* - 500: "serverError"
|
4748
4756
|
*/
|
@@ -4836,6 +4844,7 @@ export interface paths {
|
|
4836
4844
|
* - "currencyIdDoesNotExist"
|
4837
4845
|
* - "cityDoesNotExist"
|
4838
4846
|
* - cityMismatchWithCountry
|
4847
|
+
* - CityDoesNotBelongToSelectedRegion
|
4839
4848
|
* - 403: "permissionDenied"
|
4840
4849
|
* - 500: "serverError"
|
4841
4850
|
*/
|
@@ -4879,6 +4888,7 @@ export interface paths {
|
|
4879
4888
|
* - "priceListDoesNotExist
|
4880
4889
|
* - "cityDoesNotExist"
|
4881
4890
|
* - cityMismatchWithCountry
|
4891
|
+
* - CityDoesNotBelongToSelectedRegion
|
4882
4892
|
* - 403: "permissionDenied"
|
4883
4893
|
* - 404: "supplierDoesNotExist"
|
4884
4894
|
* - 500: "serverError"
|
@@ -12199,6 +12209,15 @@ export interface components {
|
|
12199
12209
|
status?: components["schemas"]["StatusChoicesInMutation"];
|
12200
12210
|
journalItems: components["schemas"]["UpdateJournalItemsSchema"];
|
12201
12211
|
};
|
12212
|
+
/** CommonCity */
|
12213
|
+
CommonCity: {
|
12214
|
+
/** Id */
|
12215
|
+
id: number;
|
12216
|
+
/** Name */
|
12217
|
+
name: string;
|
12218
|
+
/** Code */
|
12219
|
+
code?: string | null;
|
12220
|
+
};
|
12202
12221
|
/** ListRegions */
|
12203
12222
|
ListRegions: {
|
12204
12223
|
info: components["schemas"]["PageInfoSchema"];
|
@@ -12222,6 +12241,8 @@ export interface components {
|
|
12222
12241
|
region: string;
|
12223
12242
|
/** Country */
|
12224
12243
|
country: string;
|
12244
|
+
/** Cities */
|
12245
|
+
cities: components["schemas"]["CommonCity"][];
|
12225
12246
|
/** Candelete */
|
12226
12247
|
canDelete: boolean;
|
12227
12248
|
};
|
@@ -13415,6 +13436,8 @@ export interface components {
|
|
13415
13436
|
region: string;
|
13416
13437
|
/** Country */
|
13417
13438
|
country: string;
|
13439
|
+
/** Cities */
|
13440
|
+
cities: number[];
|
13418
13441
|
};
|
13419
13442
|
/** UpdateRegion */
|
13420
13443
|
UpdateRegion: {
|
@@ -13422,6 +13445,8 @@ export interface components {
|
|
13422
13445
|
region?: string | null;
|
13423
13446
|
/** Country */
|
13424
13447
|
country?: string | null;
|
13448
|
+
/** Cities */
|
13449
|
+
cities: number[];
|
13425
13450
|
};
|
13426
13451
|
/** RetrieveRegion */
|
13427
13452
|
RetrieveRegion: {
|
@@ -13440,6 +13465,8 @@ export interface components {
|
|
13440
13465
|
region: string;
|
13441
13466
|
/** Country */
|
13442
13467
|
country: string;
|
13468
|
+
/** Cities */
|
13469
|
+
cities: components["schemas"]["CommonCity"][];
|
13443
13470
|
};
|
13444
13471
|
/** profitAndLossSchema */
|
13445
13472
|
profitAndLossSchema: {
|
@@ -14006,15 +14033,6 @@ export interface components {
|
|
14006
14033
|
/** Type */
|
14007
14034
|
type: string;
|
14008
14035
|
};
|
14009
|
-
/** CommonCity */
|
14010
|
-
CommonCity: {
|
14011
|
-
/** Id */
|
14012
|
-
id: number;
|
14013
|
-
/** Name */
|
14014
|
-
name: string;
|
14015
|
-
/** Code */
|
14016
|
-
code?: string | null;
|
14017
|
-
};
|
14018
14036
|
/** CommonCurrency */
|
14019
14037
|
CommonCurrency: {
|
14020
14038
|
/** Id */
|
@@ -15879,7 +15897,7 @@ export interface components {
|
|
15879
15897
|
/**
|
15880
15898
|
* Id
|
15881
15899
|
* Format: uuid
|
15882
|
-
* @example
|
15900
|
+
* @example 7626cc12-a1a1-4799-8ace-af6127f0368b
|
15883
15901
|
*/
|
15884
15902
|
id: string;
|
15885
15903
|
/**
|
package/package.json
CHANGED