-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support shield js client (#288)
- Loading branch information
Praveen Yadav
authored
Aug 2, 2023
1 parent
8246d5c
commit d160f9f
Showing
13 changed files
with
3,820 additions
and
122 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* eslint-disable */ | ||
/* tslint:disable */ | ||
/* | ||
* --------------------------------------------------------------- | ||
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ## | ||
* ## ## | ||
* ## AUTHOR: acacode ## | ||
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ## | ||
* --------------------------------------------------------------- | ||
*/ | ||
|
||
import { RpcStatus, V1Beta1GetJWKsResponse } from './data-contracts'; | ||
import { HttpClient, RequestParams } from './http-client'; | ||
|
||
export class WellKnown<SecurityDataType = unknown> extends HttpClient<SecurityDataType> { | ||
/** | ||
* No description | ||
* | ||
* @tags Authz | ||
* @name FrontierServiceGetJwKs2 | ||
* @summary Get well known JWKs | ||
* @request GET:/.well-known/jwks.json | ||
* @secure | ||
*/ | ||
frontierServiceGetJwKs2 = (params: RequestParams = {}) => | ||
this.request<V1Beta1GetJWKsResponse, RpcStatus>({ | ||
path: `/.well-known/jwks.json`, | ||
method: 'GET', | ||
secure: true, | ||
format: 'json', | ||
...params | ||
}); | ||
} |
Oops, something went wrong.