orgnote-api 0.41.11 → 0.41.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,6 +30,7 @@ export declare const ORG_NOTE_CONFIG_SCHEMA: import("valibot").SchemaWithPipe<re
|
|
|
30
30
|
readonly lightThemeName: import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").StringSchema<undefined>, import("valibot").LiteralSchema<any, undefined>], undefined>, undefined>;
|
|
31
31
|
readonly enableAnimations: import("valibot").BooleanSchema<undefined>;
|
|
32
32
|
readonly notificationTimeout: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
33
|
+
readonly tooltipDelay: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|
|
33
34
|
readonly minNotificationLevel: import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"error", undefined>, import("valibot").LiteralSchema<"warn", undefined>, import("valibot").LiteralSchema<"info", undefined>, import("valibot").LiteralSchema<"debug", undefined>, import("valibot").LiteralSchema<"trace", undefined>], undefined>, undefined>;
|
|
34
35
|
readonly persistantPanes: import("valibot").OptionalSchema<import("valibot").BooleanSchema<undefined>, undefined>;
|
|
35
36
|
readonly persistantPanesSaveDelay: import("valibot").NumberSchema<undefined>;
|
package/models/orgnote-config.js
CHANGED
|
@@ -32,6 +32,7 @@ export const ORG_NOTE_CONFIG_SCHEMA = pipe(objectWithRest({
|
|
|
32
32
|
lightThemeName: optional(union([string(), literal(null)])),
|
|
33
33
|
enableAnimations: boolean(),
|
|
34
34
|
notificationTimeout: optional(number()),
|
|
35
|
+
tooltipDelay: optional(number()),
|
|
35
36
|
minNotificationLevel: optional(LOG_LEVEL_SCHEMA),
|
|
36
37
|
persistantPanes: optional(boolean()),
|
|
37
38
|
persistantPanesSaveDelay: number(),
|