@dxos/plugin-settings 0.8.4-main.52d7546f51 → 0.8.4-main.7996785055
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/dist/lib/browser/{app-graph-builder-CCZGWQMT.mjs → app-graph-builder-JD5QCT54.mjs} +7 -7
- package/dist/lib/browser/app-graph-builder-JD5QCT54.mjs.map +7 -0
- package/dist/lib/browser/{chunk-ONAYSYBX.mjs → chunk-WV7AYROT.mjs} +6 -5
- package/dist/lib/browser/chunk-WV7AYROT.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +6 -6
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/open-MZAFK2IZ.mjs +28 -0
- package/dist/lib/browser/open-MZAFK2IZ.mjs.map +7 -0
- package/dist/lib/browser/open-plugin-registry-UGLESZTR.mjs +26 -0
- package/dist/lib/browser/open-plugin-registry-UGLESZTR.mjs.map +7 -0
- package/dist/lib/browser/operation-handler-FCI3F5DK.mjs +16 -0
- package/dist/lib/browser/operation-handler-FCI3F5DK.mjs.map +7 -0
- package/dist/lib/node-esm/{app-graph-builder-LZWJ45UQ.mjs → app-graph-builder-VM5CLJ4H.mjs} +7 -7
- package/dist/lib/node-esm/app-graph-builder-VM5CLJ4H.mjs.map +7 -0
- package/dist/lib/node-esm/{chunk-TSHGTOLF.mjs → chunk-D7CHCV5B.mjs} +6 -5
- package/dist/lib/node-esm/chunk-D7CHCV5B.mjs.map +7 -0
- package/dist/lib/node-esm/index.mjs +6 -6
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/lib/node-esm/open-QOPG73Y7.mjs +29 -0
- package/dist/lib/node-esm/open-QOPG73Y7.mjs.map +7 -0
- package/dist/lib/node-esm/open-plugin-registry-MD3Z3M2A.mjs +27 -0
- package/dist/lib/node-esm/open-plugin-registry-MD3Z3M2A.mjs.map +7 -0
- package/dist/lib/node-esm/operation-handler-AYVEPQZN.mjs +18 -0
- package/dist/lib/node-esm/operation-handler-AYVEPQZN.mjs.map +7 -0
- package/dist/types/src/actions.d.ts +5 -5
- package/dist/types/src/actions.d.ts.map +1 -1
- package/dist/types/src/capabilities/app-graph-builder/app-graph-builder.d.ts +1 -1
- package/dist/types/src/capabilities/index.d.ts +1 -1
- package/dist/types/src/capabilities/index.d.ts.map +1 -1
- package/dist/types/src/capabilities/operation-handler/index.d.ts +4 -0
- package/dist/types/src/capabilities/operation-handler/index.d.ts.map +1 -0
- package/dist/types/src/capabilities/operation-handler/operation-handler.d.ts +6 -0
- package/dist/types/src/capabilities/operation-handler/operation-handler.d.ts.map +1 -0
- package/dist/types/src/operations/index.d.ts +3 -0
- package/dist/types/src/operations/index.d.ts.map +1 -0
- package/dist/types/src/operations/open-plugin-registry.d.ts +5 -0
- package/dist/types/src/operations/open-plugin-registry.d.ts.map +1 -0
- package/dist/types/src/operations/open.d.ts +5 -0
- package/dist/types/src/operations/open.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/SettingsPlugin.ts +2 -2
- package/src/actions.ts +5 -3
- package/src/capabilities/app-graph-builder/app-graph-builder.ts +5 -5
- package/src/capabilities/index.ts +1 -1
- package/src/capabilities/operation-handler/index.ts +11 -0
- package/src/capabilities/operation-handler/operation-handler.ts +16 -0
- package/src/meta.ts +1 -1
- package/src/operations/index.ts +10 -0
- package/src/operations/open-plugin-registry.ts +28 -0
- package/src/operations/open.ts +29 -0
- package/dist/lib/browser/app-graph-builder-CCZGWQMT.mjs.map +0 -7
- package/dist/lib/browser/chunk-ONAYSYBX.mjs.map +0 -7
- package/dist/lib/browser/operation-resolver-IIUEJRBW.mjs +0 -54
- package/dist/lib/browser/operation-resolver-IIUEJRBW.mjs.map +0 -7
- package/dist/lib/node-esm/app-graph-builder-LZWJ45UQ.mjs.map +0 -7
- package/dist/lib/node-esm/chunk-TSHGTOLF.mjs.map +0 -7
- package/dist/lib/node-esm/operation-resolver-QRFPVUSP.mjs +0 -55
- package/dist/lib/node-esm/operation-resolver-QRFPVUSP.mjs.map +0 -7
- package/dist/types/src/capabilities/operation-resolver/index.d.ts +0 -3
- package/dist/types/src/capabilities/operation-resolver/index.d.ts.map +0 -1
- package/dist/types/src/capabilities/operation-resolver/operation-resolver.d.ts +0 -5
- package/dist/types/src/capabilities/operation-resolver/operation-resolver.d.ts.map +0 -1
- package/src/capabilities/operation-resolver/index.ts +0 -10
- package/src/capabilities/operation-resolver/operation-resolver.ts +0 -54
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
SETTINGS_ID,
|
|
4
|
+
SETTINGS_KEY
|
|
5
|
+
} from "./chunk-D7CHCV5B.mjs";
|
|
6
|
+
|
|
7
|
+
// src/operations/open.ts
|
|
8
|
+
import * as Effect from "effect/Effect";
|
|
9
|
+
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
10
|
+
import { LayoutOperation, SettingsOperation, getSpacePath } from "@dxos/app-toolkit";
|
|
11
|
+
import { Operation } from "@dxos/operation";
|
|
12
|
+
var handler = SettingsOperation.Open.pipe(Operation.withHandler((input) => Effect.gen(function* () {
|
|
13
|
+
const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);
|
|
14
|
+
yield* invoke(LayoutOperation.SwitchWorkspace, {
|
|
15
|
+
subject: getSpacePath(SETTINGS_ID)
|
|
16
|
+
});
|
|
17
|
+
if (input.plugin) {
|
|
18
|
+
yield* Effect.fork(invoke(LayoutOperation.Open, {
|
|
19
|
+
subject: [
|
|
20
|
+
`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:${input.plugin.replaceAll("/", ":")}`
|
|
21
|
+
]
|
|
22
|
+
}));
|
|
23
|
+
}
|
|
24
|
+
})));
|
|
25
|
+
var open_default = handler;
|
|
26
|
+
export {
|
|
27
|
+
open_default as default
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=open-QOPG73Y7.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/operations/open.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport { LayoutOperation, SettingsOperation, getSpacePath } from '@dxos/app-toolkit';\nimport { Operation } from '@dxos/operation';\n\nimport { SETTINGS_ID, SETTINGS_KEY } from '../actions';\n\nconst handler: Operation.WithHandler<typeof SettingsOperation.Open> = SettingsOperation.Open.pipe(\n Operation.withHandler((input) =>\n Effect.gen(function* () {\n const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);\n yield* invoke(LayoutOperation.SwitchWorkspace, { subject: getSpacePath(SETTINGS_ID) });\n if (input.plugin) {\n yield* Effect.fork(\n invoke(LayoutOperation.Open, {\n subject: [`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:${input.plugin.replaceAll('/', ':')}`],\n }),\n );\n }\n }),\n ),\n);\n\nexport default handler;\n"],
|
|
5
|
+
"mappings": ";;;;;;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;AACzC,SAASC,iBAAiBC,mBAAmBC,oBAAoB;AACjE,SAASC,iBAAiB;AAI1B,IAAMC,UAAgEC,kBAAkBC,KAAKC,KAC3FC,UAAUC,YAAY,CAACC,UACdC,WAAI,aAAA;AACT,QAAM,EAAEC,OAAM,IAAK,OAAOC,WAAWC,IAAIC,aAAaC,gBAAgB;AACtE,SAAOJ,OAAOK,gBAAgBC,iBAAiB;IAAEC,SAASC,aAAaC,WAAAA;EAAa,CAAA;AACpF,MAAIX,MAAMY,QAAQ;AAChB,WAAcC,YACZX,OAAOK,gBAAgBX,MAAM;MAC3Ba,SAAS;QAAC,GAAGC,aAAaC,WAAAA,CAAAA,IAAgBG,YAAAA,IAAgBd,MAAMY,OAAOG,WAAW,KAAK,GAAA,CAAA;;IACzF,CAAA,CAAA;EAEJ;AACF,CAAA,CAAA,CAAA;AAIJ,IAAA,eAAerB;",
|
|
6
|
+
"names": ["Effect", "Capabilities", "Capability", "LayoutOperation", "SettingsOperation", "getSpacePath", "Operation", "handler", "SettingsOperation", "Open", "pipe", "Operation", "withHandler", "input", "gen", "invoke", "Capability", "get", "Capabilities", "OperationInvoker", "LayoutOperation", "SwitchWorkspace", "subject", "getSpacePath", "SETTINGS_ID", "plugin", "fork", "SETTINGS_KEY", "replaceAll"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
SETTINGS_ID,
|
|
4
|
+
SETTINGS_KEY
|
|
5
|
+
} from "./chunk-D7CHCV5B.mjs";
|
|
6
|
+
|
|
7
|
+
// src/operations/open-plugin-registry.ts
|
|
8
|
+
import * as Effect from "effect/Effect";
|
|
9
|
+
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
10
|
+
import { LayoutOperation, SettingsOperation, getSpacePath } from "@dxos/app-toolkit";
|
|
11
|
+
import { Operation } from "@dxos/operation";
|
|
12
|
+
var handler = SettingsOperation.OpenPluginRegistry.pipe(Operation.withHandler(() => Effect.gen(function* () {
|
|
13
|
+
const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);
|
|
14
|
+
yield* invoke(LayoutOperation.SwitchWorkspace, {
|
|
15
|
+
subject: getSpacePath(SETTINGS_ID)
|
|
16
|
+
});
|
|
17
|
+
yield* Effect.fork(invoke(LayoutOperation.Open, {
|
|
18
|
+
subject: [
|
|
19
|
+
`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:plugins`
|
|
20
|
+
]
|
|
21
|
+
}));
|
|
22
|
+
})));
|
|
23
|
+
var open_plugin_registry_default = handler;
|
|
24
|
+
export {
|
|
25
|
+
open_plugin_registry_default as default
|
|
26
|
+
};
|
|
27
|
+
//# sourceMappingURL=open-plugin-registry-MD3Z3M2A.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/operations/open-plugin-registry.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport { LayoutOperation, SettingsOperation, getSpacePath } from '@dxos/app-toolkit';\nimport { Operation } from '@dxos/operation';\n\nimport { SETTINGS_ID, SETTINGS_KEY } from '../actions';\n\nconst handler: Operation.WithHandler<typeof SettingsOperation.OpenPluginRegistry> =\n SettingsOperation.OpenPluginRegistry.pipe(\n Operation.withHandler(() =>\n Effect.gen(function* () {\n const { invoke } = yield* Capability.get(Capabilities.OperationInvoker);\n yield* invoke(LayoutOperation.SwitchWorkspace, { subject: getSpacePath(SETTINGS_ID) });\n yield* Effect.fork(\n invoke(LayoutOperation.Open, {\n subject: [`${getSpacePath(SETTINGS_ID)}/${SETTINGS_KEY}:plugins`],\n }),\n );\n }),\n ),\n );\n\nexport default handler;\n"],
|
|
5
|
+
"mappings": ";;;;;;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;AACzC,SAASC,iBAAiBC,mBAAmBC,oBAAoB;AACjE,SAASC,iBAAiB;AAI1B,IAAMC,UACJC,kBAAkBC,mBAAmBC,KACnCC,UAAUC,YAAY,MACbC,WAAI,aAAA;AACT,QAAM,EAAEC,OAAM,IAAK,OAAOC,WAAWC,IAAIC,aAAaC,gBAAgB;AACtE,SAAOJ,OAAOK,gBAAgBC,iBAAiB;IAAEC,SAASC,aAAaC,WAAAA;EAAa,CAAA;AACpF,SAAcC,YACZV,OAAOK,gBAAgBM,MAAM;IAC3BJ,SAAS;MAAC,GAAGC,aAAaC,WAAAA,CAAAA,IAAgBG,YAAAA;;EAC5C,CAAA,CAAA;AAEJ,CAAA,CAAA,CAAA;AAIN,IAAA,+BAAenB;",
|
|
6
|
+
"names": ["Effect", "Capabilities", "Capability", "LayoutOperation", "SettingsOperation", "getSpacePath", "Operation", "handler", "SettingsOperation", "OpenPluginRegistry", "pipe", "Operation", "withHandler", "gen", "invoke", "Capability", "get", "Capabilities", "OperationInvoker", "LayoutOperation", "SwitchWorkspace", "subject", "getSpacePath", "SETTINGS_ID", "fork", "Open", "SETTINGS_KEY"]
|
|
7
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createRequire } from 'node:module';const require = createRequire(import.meta.url);
|
|
2
|
+
|
|
3
|
+
// src/capabilities/operation-handler/operation-handler.ts
|
|
4
|
+
import * as Effect from "effect/Effect";
|
|
5
|
+
import { Capabilities, Capability } from "@dxos/app-framework";
|
|
6
|
+
|
|
7
|
+
// src/operations/index.ts
|
|
8
|
+
import { OperationHandlerSet } from "@dxos/operation";
|
|
9
|
+
var SettingsOperationHandlerSet = OperationHandlerSet.lazy(() => import("./open-QOPG73Y7.mjs"), () => import("./open-plugin-registry-MD3Z3M2A.mjs"));
|
|
10
|
+
|
|
11
|
+
// src/capabilities/operation-handler/operation-handler.ts
|
|
12
|
+
var operation_handler_default = Capability.makeModule(Effect.fnUntraced(function* () {
|
|
13
|
+
return Capability.contributes(Capabilities.OperationHandler, SettingsOperationHandlerSet);
|
|
14
|
+
}));
|
|
15
|
+
export {
|
|
16
|
+
operation_handler_default as default
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=operation-handler-AYVEPQZN.mjs.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../../src/capabilities/operation-handler/operation-handler.ts", "../../../src/operations/index.ts"],
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2025 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\n\nimport { Capabilities, Capability } from '@dxos/app-framework';\nimport type { OperationHandlerSet } from '@dxos/operation';\n\nimport { SettingsOperationHandlerSet } from '../../operations';\n\nexport default Capability.makeModule<OperationHandlerSet.OperationHandlerSet>(\n Effect.fnUntraced(function* () {\n return Capability.contributes(Capabilities.OperationHandler, SettingsOperationHandlerSet);\n }),\n);\n", "//\n// Copyright 2025 DXOS.org\n//\n\nimport { OperationHandlerSet } from '@dxos/operation';\n\nexport const SettingsOperationHandlerSet = OperationHandlerSet.lazy(\n () => import('./open'),\n () => import('./open-plugin-registry'),\n);\n"],
|
|
5
|
+
"mappings": ";;;AAIA,YAAYA,YAAY;AAExB,SAASC,cAAcC,kBAAkB;;;ACFzC,SAASC,2BAA2B;AAE7B,IAAMC,8BAA8BC,oBAAoBC,KAC7D,MAAM,OAAO,qBAAA,GACb,MAAM,OAAO,qCAAA,CAAA;;;ADGf,IAAA,4BAAeC,WAAWC,WACjBC,kBAAW,aAAA;AAChB,SAAOF,WAAWG,YAAYC,aAAaC,kBAAkBC,2BAAAA;AAC/D,CAAA,CAAA;",
|
|
6
|
+
"names": ["Effect", "Capabilities", "Capability", "OperationHandlerSet", "SettingsOperationHandlerSet", "OperationHandlerSet", "lazy", "Capability", "makeModule", "fnUntraced", "contributes", "Capabilities", "OperationHandler", "SettingsOperationHandlerSet"]
|
|
7
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as Schema from 'effect/Schema';
|
|
2
|
-
export declare const SETTINGS_ID
|
|
2
|
+
export declare const SETTINGS_ID: string;
|
|
3
3
|
export declare const SETTINGS_KEY = "settings";
|
|
4
4
|
export declare namespace SettingsAction {
|
|
5
|
-
const Open_base: Schema.TaggedClass<Open, `${string}
|
|
6
|
-
readonly _tag: Schema.tag<`${string}
|
|
5
|
+
const Open_base: Schema.TaggedClass<Open, `${string}.open`, {
|
|
6
|
+
readonly _tag: Schema.tag<`${string}.open`>;
|
|
7
7
|
} & {
|
|
8
8
|
input: Schema.Struct<{
|
|
9
9
|
plugin: Schema.optional<typeof Schema.String>;
|
|
@@ -12,8 +12,8 @@ export declare namespace SettingsAction {
|
|
|
12
12
|
}>;
|
|
13
13
|
export class Open extends Open_base {
|
|
14
14
|
}
|
|
15
|
-
const OpenPluginRegistry_base: Schema.TaggedClass<OpenPluginRegistry, `${string}
|
|
16
|
-
readonly _tag: Schema.tag<`${string}
|
|
15
|
+
const OpenPluginRegistry_base: Schema.TaggedClass<OpenPluginRegistry, `${string}.open-plugin-registry`, {
|
|
16
|
+
readonly _tag: Schema.tag<`${string}.open-plugin-registry`>;
|
|
17
17
|
} & {
|
|
18
18
|
input: typeof Schema.Void;
|
|
19
19
|
output: typeof Schema.Void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/actions.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../../src/actions.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAMxC,eAAO,MAAM,WAAW,QAAqC,CAAC;AAC9D,eAAO,MAAM,YAAY,aAAa,CAAC;AAEvC,yBAAiB,cAAc,CAAC;;;;;;;;;IAC9B,MAAM,OAAO,IAAK,SAAQ,SAKxB;KAAG;;;;;;;IAEL,MAAM,OAAO,kBAAmB,SAAQ,uBAGtC;KAAG;;CACN"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Effect from 'effect/Effect';
|
|
2
2
|
import { Capability } from '@dxos/app-framework';
|
|
3
3
|
import { GraphBuilder } from '@dxos/app-graph';
|
|
4
|
-
declare const _default: (props
|
|
4
|
+
declare const _default: (props: void) => Effect.Effect<Capability.Capability<Capability.InterfaceDef<GraphBuilder.BuilderExtensions>>, never, Capability.Service>;
|
|
5
5
|
export default _default;
|
|
6
6
|
//# sourceMappingURL=app-graph-builder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAIA,cAAc,qBAAqB,CAAC;AACpC,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/capabilities/index.ts"],"names":[],"mappings":"AAIA,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Capability } from '@dxos/app-framework';
|
|
2
|
+
import { OperationHandlerSet } from '@dxos/operation';
|
|
3
|
+
export declare const OperationHandler: Capability.LazyCapability<OperationHandlerSet.OperationHandlerSet, Capability.ModuleReturn, Error>;
|
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/operation-handler/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AACjD,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAEtD,eAAO,MAAM,gBAAgB,oGAG5B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as Effect from 'effect/Effect';
|
|
2
|
+
import { Capability } from '@dxos/app-framework';
|
|
3
|
+
import type { OperationHandlerSet } from '@dxos/operation';
|
|
4
|
+
declare const _default: (props: OperationHandlerSet.OperationHandlerSet) => Effect.Effect<Capability.ModuleReturn, Error, Capability.Service>;
|
|
5
|
+
export default _default;
|
|
6
|
+
//# sourceMappingURL=operation-handler.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operation-handler.d.ts","sourceRoot":"","sources":["../../../../../src/capabilities/operation-handler/operation-handler.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAExC,OAAO,EAAgB,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;;AAI3D,wBAIE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/operations/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AAEtD,eAAO,MAAM,2BAA2B,yCAGvC,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SettingsOperation } from '@dxos/app-toolkit';
|
|
2
|
+
import { Operation } from '@dxos/operation';
|
|
3
|
+
declare const handler: Operation.WithHandler<typeof SettingsOperation.OpenPluginRegistry>;
|
|
4
|
+
export default handler;
|
|
5
|
+
//# sourceMappingURL=open-plugin-registry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"open-plugin-registry.d.ts","sourceRoot":"","sources":["../../../../src/operations/open-plugin-registry.ts"],"names":[],"mappings":"AAOA,OAAO,EAAmB,iBAAiB,EAAgB,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAI5C,QAAA,MAAM,OAAO,EAAE,SAAS,CAAC,WAAW,CAAC,OAAO,iBAAiB,CAAC,kBAAkB,CAa7E,CAAC;AAEJ,eAAe,OAAO,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"open.d.ts","sourceRoot":"","sources":["../../../../src/operations/open.ts"],"names":[],"mappings":"AAOA,OAAO,EAAmB,iBAAiB,EAAgB,MAAM,mBAAmB,CAAC;AACrF,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAI5C,QAAA,MAAM,OAAO,EAAE,SAAS,CAAC,WAAW,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAcjE,CAAC;AAEF,eAAe,OAAO,CAAC"}
|