@@ -276,8 +276,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
276276
277277 headerParameters [ 'Content-Type' ] = 'application/json' ;
278278
279+
280+ let urlPath = `/1/account/username/check` ;
281+
279282 const response = await this . request ( {
280- path : `/1/account/username/check` ,
283+ path : urlPath ,
281284 method : 'POST' ,
282285 headers : headerParameters ,
283286 query : queryParameters ,
@@ -305,8 +308,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
305308
306309 headerParameters [ 'Content-Type' ] = 'application/json' ;
307310
311+
312+ let urlPath = `/1/account/login` ;
313+
308314 const response = await this . request ( {
309- path : `/1/account/login` ,
315+ path : urlPath ,
310316 method : 'POST' ,
311317 headers : headerParameters ,
312318 query : queryParameters ,
@@ -331,8 +337,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
331337
332338 const headerParameters : runtime . HTTPHeaders = { } ;
333339
340+
341+ let urlPath = `/1/account/logout` ;
342+
334343 const response = await this . request ( {
335- path : `/1/account/logout` ,
344+ path : urlPath ,
336345 method : 'POST' ,
337346 headers : headerParameters ,
338347 query : queryParameters ,
@@ -369,8 +378,13 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
369378
370379 const headerParameters : runtime . HTTPHeaders = { } ;
371380
381+
382+ let urlPath = `/1/account/recover/{passwordResetId}/{secret}` ;
383+ urlPath = urlPath . replace ( `{${ "passwordResetId" } }` , encodeURIComponent ( String ( requestParameters [ 'passwordResetId' ] ) ) ) ;
384+ urlPath = urlPath . replace ( `{${ "secret" } }` , encodeURIComponent ( String ( requestParameters [ 'secret' ] ) ) ) ;
385+
372386 const response = await this . request ( {
373- path : `/1/account/recover/{passwordResetId}/{secret}` . replace ( `{ ${ "passwordResetId" } }` , encodeURIComponent ( String ( requestParameters [ 'passwordResetId' ] ) ) ) . replace ( `{ ${ "secret" } }` , encodeURIComponent ( String ( requestParameters [ 'secret' ] ) ) ) ,
387+ path : urlPath ,
374388 method : 'HEAD' ,
375389 headers : headerParameters ,
376390 query : queryParameters ,
@@ -411,8 +425,13 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
411425
412426 headerParameters [ 'Content-Type' ] = 'application/json' ;
413427
428+
429+ let urlPath = `/1/account/recover/{passwordResetId}/{secret}` ;
430+ urlPath = urlPath . replace ( `{${ "passwordResetId" } }` , encodeURIComponent ( String ( requestParameters [ 'passwordResetId' ] ) ) ) ;
431+ urlPath = urlPath . replace ( `{${ "secret" } }` , encodeURIComponent ( String ( requestParameters [ 'secret' ] ) ) ) ;
432+
414433 const response = await this . request ( {
415- path : `/1/account/recover/{passwordResetId}/{secret}` . replace ( `{ ${ "passwordResetId" } }` , encodeURIComponent ( String ( requestParameters [ 'passwordResetId' ] ) ) ) . replace ( `{ ${ "secret" } }` , encodeURIComponent ( String ( requestParameters [ 'secret' ] ) ) ) ,
434+ path : urlPath ,
416435 method : 'POST' ,
417436 headers : headerParameters ,
418437 query : queryParameters ,
@@ -440,8 +459,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
440459
441460 headerParameters [ 'Content-Type' ] = 'application/json' ;
442461
462+
463+ let urlPath = `/1/account/reset` ;
464+
443465 const response = await this . request ( {
444- path : `/1/account/reset` ,
466+ path : urlPath ,
445467 method : 'POST' ,
446468 headers : headerParameters ,
447469 query : queryParameters ,
@@ -469,8 +491,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
469491
470492 headerParameters [ 'Content-Type' ] = 'application/json' ;
471493
494+
495+ let urlPath = `/1/account/signup` ;
496+
472497 const response = await this . request ( {
473- path : `/1/account/signup` ,
498+ path : urlPath ,
474499 method : 'POST' ,
475500 headers : headerParameters ,
476501 query : queryParameters ,
@@ -498,8 +523,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
498523
499524 headerParameters [ 'Content-Type' ] = 'application/json' ;
500525
526+
527+ let urlPath = `/1/account/email` ;
528+
501529 const response = await this . request ( {
502- path : `/1/account/email` ,
530+ path : urlPath ,
503531 method : 'POST' ,
504532 headers : headerParameters ,
505533 query : queryParameters ,
@@ -527,8 +555,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
527555
528556 headerParameters [ 'Content-Type' ] = 'application/json' ;
529557
558+
559+ let urlPath = `/1/account/password` ;
560+
530561 const response = await this . request ( {
531- path : `/1/account/password` ,
562+ path : urlPath ,
532563 method : 'POST' ,
533564 headers : headerParameters ,
534565 query : queryParameters ,
@@ -555,8 +586,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
555586
556587 headerParameters [ 'Content-Type' ] = 'application/json' ;
557588
589+
590+ let urlPath = `/1/account/username` ;
591+
558592 const response = await this . request ( {
559- path : `/1/account/username` ,
593+ path : urlPath ,
560594 method : 'POST' ,
561595 headers : headerParameters ,
562596 query : queryParameters ,
@@ -581,8 +615,11 @@ export class AccountApi extends runtime.BaseAPI implements AccountApiInterface {
581615
582616 const headerParameters : runtime . HTTPHeaders = { } ;
583617
618+
619+ let urlPath = `/1/account` ;
620+
584621 const response = await this . request ( {
585- path : `/1/account` ,
622+ path : urlPath ,
586623 method : 'DELETE' ,
587624 headers : headerParameters ,
588625 query : queryParameters ,
0 commit comments