Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
16
frontend/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Normal file
16
frontend/node_modules/ajv/dist/vocabularies/validation/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import type { ErrorObject, Vocabulary } from "../../types";
|
||||
import { LimitNumberError } from "./limitNumber";
|
||||
import { MultipleOfError } from "./multipleOf";
|
||||
import { PatternError } from "./pattern";
|
||||
import { RequiredError } from "./required";
|
||||
import { UniqueItemsError } from "./uniqueItems";
|
||||
import { ConstError } from "./const";
|
||||
import { EnumError } from "./enum";
|
||||
declare const validation: Vocabulary;
|
||||
export default validation;
|
||||
type LimitError = ErrorObject<"maxItems" | "minItems" | "minProperties" | "maxProperties" | "minLength" | "maxLength", {
|
||||
limit: number;
|
||||
}, number | {
|
||||
$data: string;
|
||||
}>;
|
||||
export type ValidationKeywordError = LimitError | LimitNumberError | MultipleOfError | PatternError | RequiredError | UniqueItemsError | ConstError | EnumError;
|
||||
Loading…
Add table
Add a link
Reference in a new issue