rule book ui

This commit is contained in:
Sirttas
2026-05-24 13:39:35 +02:00
parent a1dbe41b6c
commit 4b39d491d2
15 changed files with 524 additions and 17 deletions
+3 -3
View File
@@ -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);