@erp-galoper/main-package 1.0.213 → 1.0.214
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 +37 -16
- package/package.json +1 -1
package/openapi.ts
CHANGED
@@ -970,6 +970,7 @@ export interface paths {
|
|
970
970
|
* - codeConflict
|
971
971
|
* - cityIdDoesNotExist
|
972
972
|
* - cityMismatchWithCountry
|
973
|
+
* - userDoesNotExist
|
973
974
|
* - 403:
|
974
975
|
* - permissionDenied
|
975
976
|
* - 404:
|
@@ -1023,6 +1024,8 @@ export interface paths {
|
|
1023
1024
|
* - cantChangeBranchCodeWhenTransactionsExist
|
1024
1025
|
* - branchDateShouldBeBetweenDateFoundedAndDateOfToday
|
1025
1026
|
* - cityMismatchWithCountry
|
1027
|
+
* - cantRemoveOwner
|
1028
|
+
* - userDoesNotExist
|
1026
1029
|
* - 403:
|
1027
1030
|
* - permissionDenied
|
1028
1031
|
* - 404:
|
@@ -9862,6 +9865,8 @@ export interface components {
|
|
9862
9865
|
cityId: components["schemas"]["RetrieveCity"];
|
9863
9866
|
/** Address */
|
9864
9867
|
address: string;
|
9868
|
+
/** Users */
|
9869
|
+
users: components["schemas"]["userCommon"][];
|
9865
9870
|
/** Islocal */
|
9866
9871
|
isLocal: boolean;
|
9867
9872
|
};
|
@@ -9882,6 +9887,21 @@ export interface components {
|
|
9882
9887
|
id: number;
|
9883
9888
|
country: components["schemas"]["CountryCodes"];
|
9884
9889
|
};
|
9890
|
+
/** userCommon */
|
9891
|
+
userCommon: {
|
9892
|
+
/** Id */
|
9893
|
+
id: number;
|
9894
|
+
/** Username */
|
9895
|
+
username: string;
|
9896
|
+
/** Email */
|
9897
|
+
email: string;
|
9898
|
+
/** Firstname */
|
9899
|
+
firstName: string;
|
9900
|
+
/** Lastname */
|
9901
|
+
lastName: string;
|
9902
|
+
/** Role */
|
9903
|
+
role: components["schemas"]["RolesSchema"][];
|
9904
|
+
};
|
9885
9905
|
/** MessageWithCode */
|
9886
9906
|
MessageWithCode: {
|
9887
9907
|
/** Id */
|
@@ -9948,6 +9968,8 @@ export interface components {
|
|
9948
9968
|
* @default []
|
9949
9969
|
*/
|
9950
9970
|
departments: components["schemas"]["DepartmentCommonSchema"][];
|
9971
|
+
/** Isowner */
|
9972
|
+
isOwner: boolean;
|
9951
9973
|
};
|
9952
9974
|
/** GetPinCode */
|
9953
9975
|
GetPinCode: {
|
@@ -10061,6 +10083,8 @@ export interface components {
|
|
10061
10083
|
* @default []
|
10062
10084
|
*/
|
10063
10085
|
departments: components["schemas"]["DepartmentCommonSchema"][];
|
10086
|
+
/** Isowner */
|
10087
|
+
isOwner: boolean;
|
10064
10088
|
};
|
10065
10089
|
/** WarehouseSummaryInfo */
|
10066
10090
|
WarehouseSummaryInfo: {
|
@@ -10127,6 +10151,8 @@ export interface components {
|
|
10127
10151
|
* @default []
|
10128
10152
|
*/
|
10129
10153
|
departments: components["schemas"]["DepartmentCommonSchema"][];
|
10154
|
+
/** Isowner */
|
10155
|
+
isOwner: boolean;
|
10130
10156
|
};
|
10131
10157
|
/** UpdateUser */
|
10132
10158
|
UpdateUser: {
|
@@ -11535,6 +11561,11 @@ export interface components {
|
|
11535
11561
|
cityId: number;
|
11536
11562
|
/** Address */
|
11537
11563
|
address: string;
|
11564
|
+
/**
|
11565
|
+
* Users
|
11566
|
+
* @default []
|
11567
|
+
*/
|
11568
|
+
users: number[];
|
11538
11569
|
};
|
11539
11570
|
/** UpdateBranch */
|
11540
11571
|
UpdateBranch: {
|
@@ -11555,6 +11586,11 @@ export interface components {
|
|
11555
11586
|
cityId?: number;
|
11556
11587
|
/** Address */
|
11557
11588
|
address?: string;
|
11589
|
+
/**
|
11590
|
+
* Users
|
11591
|
+
* @default []
|
11592
|
+
*/
|
11593
|
+
users: number[];
|
11558
11594
|
};
|
11559
11595
|
/** WarehouseSchema */
|
11560
11596
|
WarehouseSchema: {
|
@@ -12345,21 +12381,6 @@ export interface components {
|
|
12345
12381
|
*/
|
12346
12382
|
approvers: components["schemas"]["DocumentTrackPerLevelUserResponse"][];
|
12347
12383
|
};
|
12348
|
-
/** userCommon */
|
12349
|
-
userCommon: {
|
12350
|
-
/** Id */
|
12351
|
-
id: number;
|
12352
|
-
/** Username */
|
12353
|
-
username: string;
|
12354
|
-
/** Email */
|
12355
|
-
email: string;
|
12356
|
-
/** Firstname */
|
12357
|
-
firstName: string;
|
12358
|
-
/** Lastname */
|
12359
|
-
lastName: string;
|
12360
|
-
/** Role */
|
12361
|
-
role: components["schemas"]["RolesSchema"][];
|
12362
|
-
};
|
12363
12384
|
/** DocumentsToApprove */
|
12364
12385
|
DocumentsToApprove: {
|
12365
12386
|
/**
|
@@ -15897,7 +15918,7 @@ export interface components {
|
|
15897
15918
|
/**
|
15898
15919
|
* Id
|
15899
15920
|
* Format: uuid
|
15900
|
-
* @example
|
15921
|
+
* @example fe927de8-40b7-4653-a403-4c55e07d6142
|
15901
15922
|
*/
|
15902
15923
|
id: string;
|
15903
15924
|
/**
|
package/package.json
CHANGED