Skip to content

Commit

Permalink
feat: support shield js client (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
Praveen Yadav authored Aug 2, 2023
1 parent 8246d5c commit d160f9f
Show file tree
Hide file tree
Showing 13 changed files with 3,820 additions and 122 deletions.
2,478 changes: 2,478 additions & 0 deletions sdks/js/packages/core/client/V1Beta1.ts

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions sdks/js/packages/core/client/WellKnown.ts
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
});
}
Loading

0 comments on commit d160f9f

Please sign in to comment.