@@ -11,32 +11,32 @@ export interface APIClientInterface {
1111 body : models . AuthForm , // Structure entity object that needs to be added
1212 } ,
1313 requestHttpOptions ?: HttpOptions
14- ) : Observable < any > ;
14+ ) : Observable < Object > ;
1515
1616 authRef (
1717 requestHttpOptions ?: HttpOptions
18- ) : Observable < any > ;
18+ ) : Observable < Object > ;
1919
2020 passwordRestoreRequest (
2121 args : {
2222 body : models . RestoreForm , // Structure entity object that needs to be added
2323 } ,
2424 requestHttpOptions ?: HttpOptions
25- ) : Observable < any > ;
25+ ) : Observable < Object > ;
2626
2727 passwordRestoreEmailRequest (
2828 args : {
2929 body : models . RestoreRequestForm , // Structure entity object that needs to be added
3030 } ,
3131 requestHttpOptions ?: HttpOptions
32- ) : Observable < any > ;
32+ ) : Observable < Object > ;
3333
3434 passwordRestoreCheckRestoreGuid (
3535 args : {
3636 restoreGuid : string , // RestoreGuid for check
3737 } ,
3838 requestHttpOptions ?: HttpOptions
39- ) : Observable < any > ;
39+ ) : Observable < Object > ;
4040
4141 getAclList (
4242 requestHttpOptions ?: HttpOptions
@@ -81,7 +81,7 @@ export interface APIClientInterface {
8181 order ?: models . Order , // (optional) - asc - desc
8282 } ,
8383 requestHttpOptions ?: HttpOptions
84- ) : Observable < any > ;
84+ ) : Observable < Object > ;
8585
8686 /**
8787 * [Screenshot from design](http://prntscr.com/hywkd5)
@@ -107,7 +107,7 @@ export interface APIClientInterface {
107107 order ?: models . Order , // (optional) - asc - desc
108108 } ,
109109 requestHttpOptions ?: HttpOptions
110- ) : Observable < any > ;
110+ ) : Observable < Object > ;
111111
112112 /**
113113 * [Screenshot from design](http://prntscr.com/i3ym4j)
@@ -130,7 +130,7 @@ export interface APIClientInterface {
130130 file : File , // file to upload
131131 } ,
132132 requestHttpOptions ?: HttpOptions
133- ) : Observable < any > ;
133+ ) : Observable < number > ;
134134
135135 /**
136136 * [Screenshot from design](http://prntscr.com/hy52hi)
@@ -187,7 +187,7 @@ export interface APIClientInterface {
187187 all ?: boolean , // (optional) Indicator of downloading data(all or errors only)
188188 } ,
189189 requestHttpOptions ?: HttpOptions
190- ) : Observable < any > ;
190+ ) : Observable < File > ;
191191
192192 /**
193193 * [Screenshot from design](http://prntscr.com/hy57nj)
@@ -209,7 +209,7 @@ export interface APIClientInterface {
209209 id : number , // Id of current import
210210 } ,
211211 requestHttpOptions ?: HttpOptions
212- ) : Observable < any > ;
212+ ) : Observable < File > ;
213213
214214 /**
215215 * [Screenshot from design](http://prntscr.com/hy5ae7)
@@ -220,7 +220,7 @@ export interface APIClientInterface {
220220 id : number , // Id of current import
221221 } ,
222222 requestHttpOptions ?: HttpOptions
223- ) : Observable < any > ;
223+ ) : Observable < File > ;
224224
225225 /**
226226 * [Screenshot from design](http://prntscr.com/hy5aqq)
@@ -271,7 +271,7 @@ export interface APIClientInterface {
271271 order ?: models . Order , // (optional) - asc - desc
272272 } ,
273273 requestHttpOptions ?: HttpOptions
274- ) : Observable < any > ;
274+ ) : Observable < Object > ;
275275
276276 /**
277277 * [Screenshot from design](http://prntscr.com/i4byyx)
@@ -287,7 +287,7 @@ export interface APIClientInterface {
287287 order ?: models . Order , // (optional) - asc - desc
288288 } ,
289289 requestHttpOptions ?: HttpOptions
290- ) : Observable < any > ;
290+ ) : Observable < Object > ;
291291
292292 getUsersList (
293293 args : {
@@ -301,7 +301,7 @@ export interface APIClientInterface {
301301 unassignedFromRole ?: number , // (optional) role id | [Screenshot from design](http://prntscr.com/ib9z16)
302302 } ,
303303 requestHttpOptions ?: HttpOptions
304- ) : Observable < any > ;
304+ ) : Observable < Object > ;
305305
306306 createUser (
307307 args : {
@@ -408,7 +408,7 @@ export interface APIClientInterface {
408408 order ?: models . Order , // (optional) - asc - desc
409409 } ,
410410 requestHttpOptions ?: HttpOptions
411- ) : Observable < any > ;
411+ ) : Observable < Object > ;
412412
413413 /**
414414 * [Screenshot from design](http://prntscr.com/ibac47) |
@@ -440,7 +440,7 @@ export interface APIClientInterface {
440440 order ?: models . Order , // (optional) - asc - desc
441441 } ,
442442 requestHttpOptions ?: HttpOptions
443- ) : Observable < any > ;
443+ ) : Observable < Object > ;
444444
445445 enableNotification (
446446 args : {
@@ -476,7 +476,7 @@ export interface APIClientInterface {
476476 body ?: models . NotificationEditable ,
477477 } ,
478478 requestHttpOptions ?: HttpOptions
479- ) : Observable < any > ;
479+ ) : Observable < number > ;
480480
481481 /**
482482 * [Screenshot from design](http://prntscr.com/ijzt2b)
0 commit comments