orgnote-api 0.41.22 → 0.41.24
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.
package/models/panes-store.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface PaneStore {
|
|
|
9
9
|
activeTab: ComputedRef<Tab | undefined>;
|
|
10
10
|
activeRoute: ComputedRef<RouteLocationNormalizedLoaded | undefined>;
|
|
11
11
|
activeBufferUri: ComputedRef<string | undefined>;
|
|
12
|
+
activeTabTitle: ComputedRef<string>;
|
|
12
13
|
createPane: (params?: Partial<Pane>) => Promise<Pane>;
|
|
13
14
|
getPane: (id: string) => ShallowRef<Pane | undefined>;
|
|
14
15
|
closePane: (paneId: string) => void;
|
|
@@ -3,6 +3,7 @@ export declare const SyncProfileSchema: import("valibot").ObjectSchema<{
|
|
|
3
3
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
4
4
|
readonly clientAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
5
5
|
readonly remoteAddress: import("valibot").StringSchema<undefined>;
|
|
6
|
+
readonly wsAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
6
7
|
readonly token: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
7
8
|
readonly rootFolder: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
8
9
|
readonly logPath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "/tmp/log/orgnote">;
|
|
@@ -15,6 +16,7 @@ export declare const SyncProfileConfigSchema: import("valibot").ObjectSchema<{
|
|
|
15
16
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
16
17
|
readonly clientAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
17
18
|
readonly remoteAddress: import("valibot").StringSchema<undefined>;
|
|
19
|
+
readonly wsAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
18
20
|
readonly token: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
19
21
|
readonly rootFolder: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
20
22
|
readonly logPath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "/tmp/log/orgnote">;
|
|
@@ -26,6 +28,7 @@ export declare const SyncProfileConfigSchema: import("valibot").ObjectSchema<{
|
|
|
26
28
|
readonly name: import("valibot").StringSchema<undefined>;
|
|
27
29
|
readonly clientAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
28
30
|
readonly remoteAddress: import("valibot").StringSchema<undefined>;
|
|
31
|
+
readonly wsAddress: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
29
32
|
readonly token: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
30
33
|
readonly rootFolder: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "">;
|
|
31
34
|
readonly logPath: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, "/tmp/log/orgnote">;
|
|
@@ -3,6 +3,7 @@ export const SyncProfileSchema = object({
|
|
|
3
3
|
name: string(),
|
|
4
4
|
clientAddress: optional(string(), ''),
|
|
5
5
|
remoteAddress: string(),
|
|
6
|
+
wsAddress: optional(string(), ''),
|
|
6
7
|
token: optional(string(), ''),
|
|
7
8
|
rootFolder: optional(string(), ''),
|
|
8
9
|
logPath: optional(string(), '/tmp/log/orgnote'),
|