@erp-galoper/types 1.0.1465 → 1.0.1466
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 -27
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -25330,8 +25330,8 @@ export interface components {
|
|
|
25330
25330
|
cityId: components["schemas"]["RetrieveCity"];
|
|
25331
25331
|
/** Address */
|
|
25332
25332
|
address: string;
|
|
25333
|
-
/**
|
|
25334
|
-
|
|
25333
|
+
/** Assignedusers */
|
|
25334
|
+
assignedUsers?: components["schemas"]["UserSharedSchema"][];
|
|
25335
25335
|
/** Islocal */
|
|
25336
25336
|
isLocal: boolean;
|
|
25337
25337
|
region: components["schemas"]["RegionCommonSchema"];
|
|
@@ -25353,20 +25353,16 @@ export interface components {
|
|
|
25353
25353
|
name: string;
|
|
25354
25354
|
region: components["schemas"]["RegionSharedSchema"];
|
|
25355
25355
|
};
|
|
25356
|
-
/**
|
|
25357
|
-
|
|
25356
|
+
/** UserSharedSchema */
|
|
25357
|
+
UserSharedSchema: {
|
|
25358
25358
|
/** Id */
|
|
25359
25359
|
id: number;
|
|
25360
|
-
/** Username */
|
|
25361
|
-
username: string;
|
|
25362
|
-
/** Email */
|
|
25363
|
-
email: string;
|
|
25364
25360
|
/** Firstname */
|
|
25365
25361
|
firstName: string;
|
|
25366
25362
|
/** Lastname */
|
|
25367
25363
|
lastName: string;
|
|
25368
|
-
/**
|
|
25369
|
-
|
|
25364
|
+
/** Username */
|
|
25365
|
+
username: string;
|
|
25370
25366
|
};
|
|
25371
25367
|
/** MessageWithCode */
|
|
25372
25368
|
MessageWithCode: {
|
|
@@ -25878,17 +25874,6 @@ export interface components {
|
|
|
25878
25874
|
user: components["schemas"]["UserSharedSchema"];
|
|
25879
25875
|
dateFiltration: components["schemas"]["DateFiltration"] | null;
|
|
25880
25876
|
};
|
|
25881
|
-
/** UserSharedSchema */
|
|
25882
|
-
UserSharedSchema: {
|
|
25883
|
-
/** Id */
|
|
25884
|
-
id: number;
|
|
25885
|
-
/** Firstname */
|
|
25886
|
-
firstName: string;
|
|
25887
|
-
/** Lastname */
|
|
25888
|
-
lastName: string;
|
|
25889
|
-
/** Username */
|
|
25890
|
-
username: string;
|
|
25891
|
-
};
|
|
25892
25877
|
/** ItemsDataToPrint */
|
|
25893
25878
|
ItemsDataToPrint: {
|
|
25894
25879
|
/** Item */
|
|
@@ -28259,10 +28244,10 @@ export interface components {
|
|
|
28259
28244
|
/** Address */
|
|
28260
28245
|
address: string;
|
|
28261
28246
|
/**
|
|
28262
|
-
*
|
|
28263
|
-
* @
|
|
28247
|
+
* Assignedusersids
|
|
28248
|
+
* @description - List all active users, use route: api/v1/auth/users/ and filter by isActive=True
|
|
28264
28249
|
*/
|
|
28265
|
-
|
|
28250
|
+
assignedUsersIds?: number[];
|
|
28266
28251
|
};
|
|
28267
28252
|
/** UpdateBranch */
|
|
28268
28253
|
UpdateBranch: {
|
|
@@ -28284,10 +28269,10 @@ export interface components {
|
|
|
28284
28269
|
/** Address */
|
|
28285
28270
|
address?: string;
|
|
28286
28271
|
/**
|
|
28287
|
-
*
|
|
28288
|
-
* @
|
|
28272
|
+
* Assignedusersids
|
|
28273
|
+
* @description -List all active users, use route: api/v1/auth/users/ and filter by isActive=True
|
|
28289
28274
|
*/
|
|
28290
|
-
|
|
28275
|
+
assignedUsersIds?: number[];
|
|
28291
28276
|
};
|
|
28292
28277
|
/** AccountSummaryInfo */
|
|
28293
28278
|
AccountSummaryInfo: {
|
|
@@ -29314,6 +29299,21 @@ export interface components {
|
|
|
29314
29299
|
*/
|
|
29315
29300
|
approvers: components["schemas"]["DocumentTrackPerLevelUserResponse"][];
|
|
29316
29301
|
};
|
|
29302
|
+
/** userCommon */
|
|
29303
|
+
userCommon: {
|
|
29304
|
+
/** Id */
|
|
29305
|
+
id: number;
|
|
29306
|
+
/** Username */
|
|
29307
|
+
username: string;
|
|
29308
|
+
/** Email */
|
|
29309
|
+
email: string;
|
|
29310
|
+
/** Firstname */
|
|
29311
|
+
firstName: string;
|
|
29312
|
+
/** Lastname */
|
|
29313
|
+
lastName: string;
|
|
29314
|
+
/** Role */
|
|
29315
|
+
role: components["schemas"]["RolesSchema"][];
|
|
29316
|
+
};
|
|
29317
29317
|
/** DocumentsToApprove */
|
|
29318
29318
|
DocumentsToApprove: {
|
|
29319
29319
|
/**
|