rule book ui
This commit is contained in:
@@ -83,8 +83,8 @@ export interface RuleBookResponse {
|
||||
}
|
||||
export interface RuleResponse {
|
||||
'rate': RuleResponseRateEnum;
|
||||
'fromLedgerId': string;
|
||||
'toLedgerId': string;
|
||||
'fromLedgerId'?: string;
|
||||
'toLedgerId'?: string;
|
||||
}
|
||||
|
||||
export const RuleResponseRateEnum = {
|
||||
@@ -736,7 +736,7 @@ export const RuleBookControllerApiAxiosParamCreator = function (configuration?:
|
||||
findByCharacterId: async (characterId: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
||||
// verify required parameter 'characterId' is not null or undefined
|
||||
assertParamExists('findByCharacterId', 'characterId', characterId)
|
||||
const localVarPath = `/rule-books/{characterId}`
|
||||
const localVarPath = `/characters/{characterId}/rule-book`
|
||||
.replace('{characterId}', encodeURIComponent(String(characterId)));
|
||||
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
||||
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
||||
|
||||
Reference in New Issue
Block a user