File tree Expand file tree Collapse file tree 2 files changed +2
-48
lines changed
defaultAsSuccess/__snapshots__ Expand file tree Collapse file tree 2 files changed +2
-48
lines changed Original file line number Diff line number Diff line change @@ -442,52 +442,6 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
442442 ...params,
443443 }),
444444 };
445- iKey = {
446- /**
447- * @description Get public details of an Authentiq ID.
448- *
449- * @tags key, get
450- * @name IKeyDetail
451- * @request GET:/i_key/{i_PK}
452- */
453- iKeyDetail : (iPk : string , params : RequestParams = {}) =>
454- this .request <
455- {
456- /** @format date-time */
457- since?: string;
458- status?: string;
459- /** base64safe encoded public signing key */
460- sub?: string;
461- },
462- Error
463- > ({
464- path: ` /i_key/${iPk }` ,
465- method: " GET" ,
466- format: " json" ,
467- ... params ,
468- }),
469-
470- /**
471- * @description Get public details of an Authentiq ID.
472- *
473- * @tags key, get
474- * @name UnderlinesDetail
475- * @request GET:/i_key/underlines/{i__UK}
476- */
477- underlinesDetail : (iUk : string , params : RequestParams = {}) =>
478- this .request <
479- {
480- /** base64safe encoded public signing key */
481- sub?: string;
482- },
483- Error
484- > ({
485- path: ` /i_key/underlines/${iUk }` ,
486- method: " GET" ,
487- format: " json" ,
488- ... params ,
489- }),
490- } ;
491445 login = {
492446 /**
493447 * @description push sign-in request See: https://github.com/skion/authentiq/wiki/JWT-Examples
Original file line number Diff line number Diff line change @@ -495,7 +495,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
495495 },
496496 Error
497497 > ({
498- path: ` /i_key/${iPk }` ,
498+ path: \ ` /i_key/\ ${ iPk } \ ` ,
499499 method: "GET",
500500 format: "json",
501501 ...params,
@@ -516,7 +516,7 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
516516 } ,
517517 Error
518518 >({
519- path: ` /i_key/underlines/${iUk }` ,
519+ path : \ ` /i_key/underlines/\ ${ iUk } \ ` ,
520520 method: "GET",
521521 format: "json",
522522 ...params,
You can’t perform that action at this time.
0 commit comments