Switched kc_sdk to fetch
This commit is contained in:
62
backend/keycloak/kc-client/apis/RootApi.ts
Normal file
62
backend/keycloak/kc-client/apis/RootApi.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
/**
|
||||
* Keycloak Admin REST API
|
||||
* This is a REST API reference for the Keycloak Admin
|
||||
*
|
||||
* The version of the OpenAPI document: 1
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
import * as runtime from '../runtime';
|
||||
import {
|
||||
ServerInfoRepresentation,
|
||||
ServerInfoRepresentationFromJSON,
|
||||
ServerInfoRepresentationToJSON,
|
||||
} from '../models';
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
export class RootApi extends runtime.BaseAPI {
|
||||
|
||||
/**
|
||||
* Get themes, social providers, auth providers, and event listeners available on this server
|
||||
*/
|
||||
async rootGetRaw(): Promise<runtime.ApiResponse<ServerInfoRepresentation>> {
|
||||
const queryParameters: runtime.HTTPQuery = {};
|
||||
|
||||
const headerParameters: runtime.HTTPHeaders = {};
|
||||
|
||||
if (this.configuration && this.configuration.accessToken) {
|
||||
const token = this.configuration.accessToken;
|
||||
const tokenString = typeof token === 'function' ? token("access_token", []) : token;
|
||||
|
||||
if (tokenString) {
|
||||
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
||||
}
|
||||
}
|
||||
const response = await this.request({
|
||||
path: `/`,
|
||||
method: 'GET',
|
||||
headers: headerParameters,
|
||||
query: queryParameters,
|
||||
});
|
||||
|
||||
return new runtime.JSONApiResponse(response, (jsonValue) => ServerInfoRepresentationFromJSON(jsonValue));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get themes, social providers, auth providers, and event listeners available on this server
|
||||
*/
|
||||
async rootGet(): Promise<ServerInfoRepresentation> {
|
||||
const response = await this.rootGetRaw();
|
||||
return await response.value();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user