Skip to content

Commit 8939145

Browse files
nicky1038smorimoto
authored andcommitted
update test snapshots
1 parent b5d077f commit 8939145

File tree

2 files changed

+2
-48
lines changed

2 files changed

+2
-48
lines changed

tests/spec/defaultAsSuccess/__snapshots__/basic.test.ts.snap

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff 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

tests/spec/extractRequestParams/__snapshots__/basic.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)