@dxos/functions 0.6.11-staging.30cf5ba → 0.6.11-staging.66fb9aa
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/{chunk-XOBJR3A6.mjs → chunk-2I75VGHZ.mjs} +2 -3
- package/dist/lib/browser/{chunk-XOBJR3A6.mjs.map → chunk-2I75VGHZ.mjs.map} +1 -1
- package/dist/lib/browser/{chunk-IBJYIBKT.mjs → chunk-CRAAIWU6.mjs} +20 -11
- package/dist/lib/browser/{chunk-IBJYIBKT.mjs.map → chunk-CRAAIWU6.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +2 -2
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +2 -2
- package/dist/lib/browser/types.mjs +1 -1
- package/dist/lib/node/{chunk-GGTHSME4.cjs → chunk-JV3VNH5X.cjs} +5 -6
- package/dist/lib/node/{chunk-GGTHSME4.cjs.map → chunk-JV3VNH5X.cjs.map} +1 -1
- package/dist/lib/node/{chunk-V7JNSENS.cjs → chunk-OGLDVNFE.cjs} +33 -24
- package/dist/lib/node/{chunk-V7JNSENS.cjs.map → chunk-OGLDVNFE.cjs.map} +2 -2
- package/dist/lib/node/index.cjs +11 -11
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +10 -10
- package/dist/lib/node/types.cjs +5 -5
- package/dist/lib/node/types.cjs.map +1 -1
- package/dist/types/src/trigger/trigger-registry.d.ts.map +1 -1
- package/package.json +14 -14
- package/src/trigger/trigger-registry.test.ts +2 -1
- package/src/trigger/trigger-registry.ts +1 -0
|
@@ -26,16 +26,16 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
mod
|
|
27
27
|
));
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var
|
|
30
|
-
__export(
|
|
29
|
+
var chunk_OGLDVNFE_exports = {};
|
|
30
|
+
__export(chunk_OGLDVNFE_exports, {
|
|
31
31
|
FunctionRegistry: () => FunctionRegistry,
|
|
32
32
|
TriggerRegistry: () => TriggerRegistry,
|
|
33
33
|
createSubscriptionTrigger: () => createSubscriptionTrigger,
|
|
34
34
|
createTimerTrigger: () => createTimerTrigger,
|
|
35
35
|
createWebsocketTrigger: () => createWebsocketTrigger
|
|
36
36
|
});
|
|
37
|
-
module.exports = __toCommonJS(
|
|
38
|
-
var
|
|
37
|
+
module.exports = __toCommonJS(chunk_OGLDVNFE_exports);
|
|
38
|
+
var import_chunk_JV3VNH5X = require("./chunk-JV3VNH5X.cjs");
|
|
39
39
|
var import_async = require("@dxos/async");
|
|
40
40
|
var import_echo = require("@dxos/client/echo");
|
|
41
41
|
var import_context = require("@dxos/context");
|
|
@@ -99,14 +99,14 @@ var FunctionRegistry = class extends import_context.Resource {
|
|
|
99
99
|
if (!functions?.length) {
|
|
100
100
|
return;
|
|
101
101
|
}
|
|
102
|
-
if (!space.db.graph.schemaRegistry.hasSchema(
|
|
102
|
+
if (!space.db.graph.schemaRegistry.hasSchema(import_chunk_JV3VNH5X.FunctionDef)) {
|
|
103
103
|
space.db.graph.schemaRegistry.addSchema([
|
|
104
|
-
|
|
104
|
+
import_chunk_JV3VNH5X.FunctionDef
|
|
105
105
|
]);
|
|
106
106
|
}
|
|
107
|
-
const { objects: existing } = await space.db.query(import_echo.Filter.schema(
|
|
107
|
+
const { objects: existing } = await space.db.query(import_echo.Filter.schema(import_chunk_JV3VNH5X.FunctionDef)).run();
|
|
108
108
|
const { added } = (0, import_util.diff)(existing, functions, (a, b) => a.uri === b.uri);
|
|
109
|
-
added.forEach((def) => space.db.add((0, import_echo.create)(
|
|
109
|
+
added.forEach((def) => space.db.add((0, import_echo.create)(import_chunk_JV3VNH5X.FunctionDef, def)));
|
|
110
110
|
if (added.length > 0) {
|
|
111
111
|
await space.db.flush({
|
|
112
112
|
indexes: true,
|
|
@@ -132,7 +132,7 @@ var FunctionRegistry = class extends import_context.Resource {
|
|
|
132
132
|
if (this._ctx.disposed) {
|
|
133
133
|
break;
|
|
134
134
|
}
|
|
135
|
-
this._ctx.onDispose(space.db.query(import_echo.Filter.schema(
|
|
135
|
+
this._ctx.onDispose(space.db.query(import_echo.Filter.schema(import_chunk_JV3VNH5X.FunctionDef)).subscribe(({ objects }) => {
|
|
136
136
|
const { added } = (0, import_util.diff)(registered, objects, (a, b) => a.uri === b.uri);
|
|
137
137
|
if (added.length > 0) {
|
|
138
138
|
registered.push(...added);
|
|
@@ -423,6 +423,15 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
423
423
|
try {
|
|
424
424
|
const options = this._options?.[trigger.spec.type];
|
|
425
425
|
const createTrigger = triggerFactory[trigger.spec.type];
|
|
426
|
+
(0, import_invariant.invariant)(createTrigger, `Trigger factory not found: ${trigger.spec.type}`, {
|
|
427
|
+
F: __dxlog_file5,
|
|
428
|
+
L: 89,
|
|
429
|
+
S: this,
|
|
430
|
+
A: [
|
|
431
|
+
"createTrigger",
|
|
432
|
+
"`Trigger factory not found: ${trigger.spec.type}`"
|
|
433
|
+
]
|
|
434
|
+
});
|
|
426
435
|
await createTrigger(activationCtx, space, trigger.spec, callback, options);
|
|
427
436
|
} catch (err) {
|
|
428
437
|
delete registeredTrigger.activationCtx;
|
|
@@ -437,16 +446,16 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
437
446
|
space: space.key
|
|
438
447
|
}, {
|
|
439
448
|
F: __dxlog_file5,
|
|
440
|
-
L:
|
|
449
|
+
L: 101,
|
|
441
450
|
S: this,
|
|
442
451
|
C: (f, a) => f(...a)
|
|
443
452
|
});
|
|
444
453
|
if (!manifest.triggers?.length) {
|
|
445
454
|
return;
|
|
446
455
|
}
|
|
447
|
-
if (!space.db.graph.schemaRegistry.hasSchema(
|
|
456
|
+
if (!space.db.graph.schemaRegistry.hasSchema(import_chunk_JV3VNH5X.FunctionTrigger)) {
|
|
448
457
|
space.db.graph.schemaRegistry.addSchema([
|
|
449
|
-
|
|
458
|
+
import_chunk_JV3VNH5X.FunctionTrigger
|
|
450
459
|
]);
|
|
451
460
|
}
|
|
452
461
|
const manifestTriggers = manifest.triggers.map((trigger) => {
|
|
@@ -460,11 +469,11 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
460
469
|
].join(":"))
|
|
461
470
|
];
|
|
462
471
|
}
|
|
463
|
-
return (0, import_echo3.create)(
|
|
472
|
+
return (0, import_echo3.create)(import_chunk_JV3VNH5X.FunctionTrigger, trigger, {
|
|
464
473
|
keys
|
|
465
474
|
});
|
|
466
475
|
});
|
|
467
|
-
const { objects: existing } = await space.db.query(import_echo3.Filter.schema(
|
|
476
|
+
const { objects: existing } = await space.db.query(import_echo3.Filter.schema(import_chunk_JV3VNH5X.FunctionTrigger)).run();
|
|
468
477
|
const { added } = (0, import_util2.diff)(existing, manifestTriggers, import_echo_schema.compareForeignKeys);
|
|
469
478
|
added.forEach((trigger) => {
|
|
470
479
|
space.db.add(trigger);
|
|
@@ -472,7 +481,7 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
472
481
|
meta: (0, import_echo3.getMeta)(trigger)
|
|
473
482
|
}, {
|
|
474
483
|
F: __dxlog_file5,
|
|
475
|
-
L:
|
|
484
|
+
L: 128,
|
|
476
485
|
S: this,
|
|
477
486
|
C: (f, a) => f(...a)
|
|
478
487
|
});
|
|
@@ -484,7 +493,7 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
484
493
|
async _open() {
|
|
485
494
|
import_log5.log.info("open...", void 0, {
|
|
486
495
|
F: __dxlog_file5,
|
|
487
|
-
L:
|
|
496
|
+
L: 137,
|
|
488
497
|
S: this,
|
|
489
498
|
C: (f, a) => f(...a)
|
|
490
499
|
});
|
|
@@ -499,14 +508,14 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
499
508
|
if (this._ctx.disposed) {
|
|
500
509
|
break;
|
|
501
510
|
}
|
|
502
|
-
this._ctx.onDispose(space.db.query(import_echo3.Filter.schema(
|
|
511
|
+
this._ctx.onDispose(space.db.query(import_echo3.Filter.schema(import_chunk_JV3VNH5X.FunctionTrigger)).subscribe(async ({ objects: current }) => {
|
|
503
512
|
import_log5.log.info("update", {
|
|
504
513
|
space: space.key,
|
|
505
514
|
registered: registered.length,
|
|
506
515
|
current: current.length
|
|
507
516
|
}, {
|
|
508
517
|
F: __dxlog_file5,
|
|
509
|
-
L:
|
|
518
|
+
L: 154,
|
|
510
519
|
S: this,
|
|
511
520
|
C: (f, a) => f(...a)
|
|
512
521
|
});
|
|
@@ -518,7 +527,7 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
518
527
|
this._ctx.onDispose(() => spaceListSubscription.unsubscribe());
|
|
519
528
|
import_log5.log.info("opened", void 0, {
|
|
520
529
|
F: __dxlog_file5,
|
|
521
|
-
L:
|
|
530
|
+
L: 163,
|
|
522
531
|
S: this,
|
|
523
532
|
C: (f, a) => f(...a)
|
|
524
533
|
});
|
|
@@ -526,14 +535,14 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
526
535
|
async _close(_) {
|
|
527
536
|
import_log5.log.info("close...", void 0, {
|
|
528
537
|
F: __dxlog_file5,
|
|
529
|
-
L:
|
|
538
|
+
L: 167,
|
|
530
539
|
S: this,
|
|
531
540
|
C: (f, a) => f(...a)
|
|
532
541
|
});
|
|
533
542
|
this._triggersBySpaceKey.clear();
|
|
534
543
|
import_log5.log.info("closed", void 0, {
|
|
535
544
|
F: __dxlog_file5,
|
|
536
|
-
L:
|
|
545
|
+
L: 169,
|
|
537
546
|
S: this,
|
|
538
547
|
C: (f, a) => f(...a)
|
|
539
548
|
});
|
|
@@ -552,7 +561,7 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
552
561
|
triggers: added.map((trigger) => trigger.function)
|
|
553
562
|
}), {
|
|
554
563
|
F: __dxlog_file5,
|
|
555
|
-
L:
|
|
564
|
+
L: 180,
|
|
556
565
|
S: this,
|
|
557
566
|
C: (f, a) => f(...a)
|
|
558
567
|
});
|
|
@@ -578,7 +587,7 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
578
587
|
triggers: removed.map((trigger) => trigger.function)
|
|
579
588
|
}), {
|
|
580
589
|
F: __dxlog_file5,
|
|
581
|
-
L:
|
|
590
|
+
L: 206,
|
|
582
591
|
S: this,
|
|
583
592
|
C: (f, a) => f(...a)
|
|
584
593
|
});
|
|
@@ -601,4 +610,4 @@ var TriggerRegistry = class extends import_context2.Resource {
|
|
|
601
610
|
createTimerTrigger,
|
|
602
611
|
createWebsocketTrigger
|
|
603
612
|
});
|
|
604
|
-
//# sourceMappingURL=chunk-
|
|
613
|
+
//# sourceMappingURL=chunk-OGLDVNFE.cjs.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/function/function-registry.ts", "../../../src/trigger/type/subscription-trigger.ts", "../../../src/trigger/type/timer-trigger.ts", "../../../src/trigger/type/websocket-trigger.ts", "../../../src/trigger/trigger-registry.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2024 DXOS.org\n//\n\nimport { Event } from '@dxos/async';\nimport { type Client } from '@dxos/client';\nimport { create, Filter, type Space } from '@dxos/client/echo';\nimport { type Context, Resource } from '@dxos/context';\nimport { PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { ComplexMap, diff } from '@dxos/util';\n\nimport { FunctionDef, type FunctionManifest } from '../types';\n\nexport type FunctionsRegisteredEvent = {\n space: Space;\n added: FunctionDef[];\n};\n\nexport class FunctionRegistry extends Resource {\n private readonly _functionBySpaceKey = new ComplexMap<PublicKey, FunctionDef[]>(PublicKey.hash);\n\n public readonly registered = new Event<FunctionsRegisteredEvent>();\n\n constructor(private readonly _client: Client) {\n super();\n }\n\n public getFunctions(space: Space): FunctionDef[] {\n return this._functionBySpaceKey.get(space.key) ?? [];\n }\n\n public getUniqueByUri(): FunctionDef[] {\n const uniqueByUri = [...this._functionBySpaceKey.values()]\n .flatMap((defs) => defs)\n .reduce((acc, v) => {\n acc.set(v.uri, v);\n return acc;\n }, new Map<string, FunctionDef>());\n return [...uniqueByUri.values()];\n }\n\n /**\n * Loads function definitions from the manifest into the space.\n * We first load all the definitions from the space to deduplicate by functionId.\n */\n public async register(space: Space, functions: FunctionManifest['functions']): Promise<void> {\n log('register', { space: space.key, functions: functions?.length ?? 0 });\n if (!functions?.length) {\n return;\n }\n if (!space.db.graph.schemaRegistry.hasSchema(FunctionDef)) {\n space.db.graph.schemaRegistry.addSchema([FunctionDef]);\n }\n\n // Sync definitions.\n const { objects: existing } = await space.db.query(Filter.schema(FunctionDef)).run();\n const { added } = diff(existing, functions, (a, b) => a.uri === b.uri);\n // TODO(burdon): Update existing templates.\n added.forEach((def) => space.db.add(create(FunctionDef, def)));\n\n if (added.length > 0) {\n await space.db.flush({ indexes: true, updates: true });\n }\n }\n\n protected override async _open(): Promise<void> {\n log.info('opening...');\n const spacesSubscription = this._client.spaces.subscribe(async (spaces) => {\n for (const space of spaces) {\n if (this._functionBySpaceKey.has(space.key)) {\n continue;\n }\n\n const registered: FunctionDef[] = [];\n this._functionBySpaceKey.set(space.key, registered);\n await space.waitUntilReady();\n if (this._ctx.disposed) {\n break;\n }\n\n // Subscribe to updates.\n this._ctx.onDispose(\n space.db.query(Filter.schema(FunctionDef)).subscribe(({ objects }) => {\n const { added } = diff(registered, objects, (a, b) => a.uri === b.uri);\n // TODO(burdon): Update and remove.\n if (added.length > 0) {\n registered.push(...added);\n this.registered.emit({ space, added });\n }\n }),\n );\n }\n });\n\n // TODO(burdon): API: Normalize unsubscribe methods.\n this._ctx.onDispose(() => spacesSubscription.unsubscribe());\n }\n\n protected override async _close(_: Context): Promise<void> {\n log.info('closing...');\n this._functionBySpaceKey.clear();\n }\n}\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { debounce, UpdateScheduler } from '@dxos/async';\nimport { Filter, type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { createSubscription, type Query } from '@dxos/echo-db';\nimport { log } from '@dxos/log';\n\nimport type { SubscriptionTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\nexport const createSubscriptionTrigger: TriggerFactory<SubscriptionTrigger> = async (\n ctx: Context,\n space: Space,\n spec: SubscriptionTrigger,\n callback: TriggerCallback,\n) => {\n const objectIds = new Set<string>();\n const task = new UpdateScheduler(\n ctx,\n async () => {\n if (objectIds.size > 0) {\n const objects = Array.from(objectIds);\n objectIds.clear();\n await callback({ objects });\n }\n },\n { maxFrequency: 4 },\n );\n\n // TODO(burdon): Factor out diff.\n // TODO(burdon): Don't fire initially?\n // TODO(burdon): Create queue. Only allow one invocation per trigger at a time?\n const subscriptions: (() => void)[] = [];\n const subscription = createSubscription(({ added, updated }) => {\n const sizeBefore = objectIds.size;\n for (const object of added) {\n objectIds.add(object.id);\n }\n for (const object of updated) {\n objectIds.add(object.id);\n }\n if (objectIds.size > sizeBefore) {\n log.info('updated', { added: added.length, updated: updated.length });\n task.trigger();\n }\n });\n\n subscriptions.push(() => subscription.unsubscribe());\n\n // TODO(burdon): Disable trigger if keeps failing.\n const { filter, options: { deep, delay } = {} } = spec;\n const update = ({ objects }: Query) => {\n log.info('update', { objects: objects.length });\n subscription.update(objects);\n\n // TODO(burdon): Hack to monitor changes to Document's text object.\n if (deep) {\n // TODO(dmaretskyi): Removed to not have dependency on markdown-plugin.\n // for (const object of objects) {\n // const content = object.content;\n // if (content instanceof TextType) {\n // subscriptions.push(getObjectCore(content).updates.on(debounce(() => subscription.update([object]), 1_000)));\n // }\n // }\n }\n };\n\n // TODO(burdon): OR not working.\n // TODO(burdon): [Bug]: all callbacks are fired on the first mutation.\n // TODO(burdon): [Bug]: not updated when document is deleted (either top or hierarchically).\n log.info('subscription', { filter });\n // const query = triggerCtx.space.db.query(Filter.or(filter.map(({ type, props }) => Filter.typename(type, props))));\n if (filter) {\n const query = space.db.query(Filter.typename(filter[0].type, filter[0].props));\n subscriptions.push(query.subscribe(delay ? debounce(update, delay) : update));\n }\n\n ctx.onDispose(() => {\n subscriptions.forEach((unsubscribe) => unsubscribe());\n });\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { CronJob } from 'cron';\n\nimport { DeferredTask } from '@dxos/async';\nimport { type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { log } from '@dxos/log';\n\nimport type { TimerTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\nexport const createTimerTrigger: TriggerFactory<TimerTrigger> = async (\n ctx: Context,\n space: Space,\n spec: TimerTrigger,\n callback: TriggerCallback,\n) => {\n const task = new DeferredTask(ctx, async () => {\n await callback({});\n });\n\n let last = 0;\n let run = 0;\n // https://www.npmjs.com/package/cron#constructor\n const job = CronJob.from({\n cronTime: spec.cron,\n runOnInit: false,\n onTick: () => {\n // TODO(burdon): Check greater than 30s (use cron-parser).\n const now = Date.now();\n const delta = last ? now - last : 0;\n last = now;\n\n run++;\n log.info('tick', { space: space.key.truncate(), count: run, delta });\n task.schedule();\n },\n });\n\n job.start();\n ctx.onDispose(() => job.stop());\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport WebSocket from 'ws';\n\nimport { sleep, Trigger } from '@dxos/async';\nimport { type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { log } from '@dxos/log';\n\nimport { type WebsocketTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\ninterface WebsocketTriggerOptions {\n retryDelay: number;\n maxAttempts: number;\n}\n\n/**\n * Websocket.\n * NOTE: The port must be unique, so the same hook cannot be used for multiple spaces.\n */\nexport const createWebsocketTrigger: TriggerFactory<WebsocketTrigger, WebsocketTriggerOptions> = async (\n ctx: Context,\n space: Space,\n spec: WebsocketTrigger,\n callback: TriggerCallback,\n options: WebsocketTriggerOptions = { retryDelay: 2, maxAttempts: 5 },\n) => {\n const { url, init } = spec;\n\n let wasOpen = false;\n let ws: WebSocket;\n for (let attempt = 1; attempt <= options.maxAttempts; attempt++) {\n const open = new Trigger<boolean>();\n\n ws = new WebSocket(url);\n Object.assign(ws, {\n onopen: () => {\n log.info('opened', { url });\n if (spec.init) {\n ws.send(new TextEncoder().encode(JSON.stringify(init)));\n }\n\n open.wake(true);\n },\n\n onclose: (event) => {\n log.info('closed', { url, code: event.code });\n // Reconnect if server closes (e.g., CF restart).\n // https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent/code\n if (event.code === 1006 && wasOpen && !ctx.disposed) {\n setTimeout(async () => {\n log.info(`reconnecting in ${options.retryDelay}s...`, { url });\n await createWebsocketTrigger(ctx, space, spec, callback, options);\n }, options.retryDelay * 1_000);\n }\n open.wake(false);\n },\n\n onerror: (event) => {\n log.catch(event.error, { url });\n open.wake(false);\n },\n\n onmessage: async (event) => {\n try {\n log.info('message');\n const data = JSON.parse(new TextDecoder().decode(event.data as Uint8Array));\n await callback({ data });\n } catch (err) {\n log.catch(err, { url });\n }\n },\n } satisfies Partial<WebSocket>);\n\n const isOpen = await open.wait();\n if (ctx.disposed) {\n break;\n }\n if (isOpen) {\n wasOpen = true;\n break;\n }\n const wait = Math.pow(attempt, 2) * options.retryDelay;\n if (attempt < options.maxAttempts) {\n log.warn(`failed to connect; trying again in ${wait}s`, { attempt });\n await sleep(wait * 1_000);\n }\n }\n\n ctx.onDispose(() => {\n ws?.close();\n });\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { Event } from '@dxos/async';\nimport { type Client } from '@dxos/client';\nimport { create, Filter, getMeta, type Space } from '@dxos/client/echo';\nimport { Context, Resource } from '@dxos/context';\nimport { compareForeignKeys, ECHO_ATTR_META, foreignKey } from '@dxos/echo-schema';\nimport { invariant } from '@dxos/invariant';\nimport { PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { ComplexMap, diff } from '@dxos/util';\n\nimport { createSubscriptionTrigger, createTimerTrigger, createWebsocketTrigger } from './type';\nimport { type FunctionManifest, FunctionTrigger, type FunctionTriggerType, type TriggerSpec } from '../types';\n\ntype ResponseCode = number;\n\nexport type TriggerCallback = (args: object) => Promise<ResponseCode>;\n\n// TODO(burdon): Make object?\nexport type TriggerFactory<Spec extends TriggerSpec, Options = any> = (\n ctx: Context,\n space: Space,\n spec: Spec,\n callback: TriggerCallback,\n options?: Options,\n) => Promise<void>;\n\nexport type TriggerFactoryMap = Record<FunctionTriggerType, TriggerFactory<any>>;\n\nconst triggerFactory: TriggerFactoryMap = {\n subscription: createSubscriptionTrigger,\n timer: createTimerTrigger,\n // TODO(burdon): Cannot use in browser.\n // webhook: createWebhookTrigger,\n webhook: null as any,\n websocket: createWebsocketTrigger,\n};\n\nexport type TriggerEvent = {\n space: Space;\n triggers: FunctionTrigger[];\n};\n\ntype RegisteredTrigger = {\n activationCtx?: Context;\n trigger: FunctionTrigger;\n};\n\nexport class TriggerRegistry extends Resource {\n private readonly _triggersBySpaceKey = new ComplexMap<PublicKey, RegisteredTrigger[]>(PublicKey.hash);\n\n public readonly registered = new Event<TriggerEvent>();\n public readonly removed = new Event<TriggerEvent>();\n\n constructor(\n private readonly _client: Client,\n private readonly _options?: TriggerFactoryMap,\n ) {\n super();\n }\n\n public getActiveTriggers(space: Space): FunctionTrigger[] {\n return this._getTriggers(space, (t) => t.activationCtx != null);\n }\n\n public getInactiveTriggers(space: Space): FunctionTrigger[] {\n return this._getTriggers(space, (t) => t.activationCtx == null);\n }\n\n /**\n * Set callback for trigger.\n */\n public async activate(space: Space, trigger: FunctionTrigger, callback: TriggerCallback): Promise<void> {\n log('activate', { space: space.key, trigger });\n\n const activationCtx = new Context({ name: `FunctionTrigger-${trigger.function}` });\n this._ctx.onDispose(() => activationCtx.dispose());\n const registeredTrigger = this._triggersBySpaceKey.get(space.key)?.find((reg) => reg.trigger.id === trigger.id);\n invariant(registeredTrigger, `Trigger is not registered: ${trigger.function}`);\n registeredTrigger.activationCtx = activationCtx;\n\n try {\n // Create trigger.\n const options = this._options?.[trigger.spec.type];\n const createTrigger = triggerFactory[trigger.spec.type];\n await createTrigger(activationCtx, space, trigger.spec, callback, options);\n } catch (err) {\n delete registeredTrigger.activationCtx;\n throw err;\n }\n }\n\n /**\n * Loads triggers from the manifest into the space.\n */\n public async register(space: Space, manifest: FunctionManifest): Promise<void> {\n log('register', { space: space.key });\n if (!manifest.triggers?.length) {\n return;\n }\n\n if (!space.db.graph.schemaRegistry.hasSchema(FunctionTrigger)) {\n space.db.graph.schemaRegistry.addSchema([FunctionTrigger]);\n }\n\n // Create FK to enable syncing if none are set (NOTE: Possible collision).\n const manifestTriggers = manifest.triggers.map((trigger) => {\n let keys = trigger[ECHO_ATTR_META]?.keys;\n delete trigger[ECHO_ATTR_META];\n if (!keys?.length) {\n keys = [foreignKey('manifest', [trigger.function, trigger.spec.type].join(':'))];\n }\n\n return create(FunctionTrigger, trigger, { keys });\n });\n\n // Sync triggers.\n const { objects: existing } = await space.db.query(Filter.schema(FunctionTrigger)).run();\n const { added } = diff(existing, manifestTriggers, compareForeignKeys);\n\n // TODO(burdon): Update existing.\n added.forEach((trigger) => {\n space.db.add(trigger);\n log.info('added', { meta: getMeta(trigger) });\n });\n\n if (added.length > 0) {\n await space.db.flush();\n }\n }\n\n protected override async _open(): Promise<void> {\n log.info('open...');\n const spaceListSubscription = this._client.spaces.subscribe(async (spaces) => {\n for (const space of spaces) {\n if (this._triggersBySpaceKey.has(space.key)) {\n continue;\n }\n\n const registered: RegisteredTrigger[] = [];\n this._triggersBySpaceKey.set(space.key, registered);\n await space.waitUntilReady();\n if (this._ctx.disposed) {\n break;\n }\n\n // Subscribe to updates.\n this._ctx.onDispose(\n space.db.query(Filter.schema(FunctionTrigger)).subscribe(async ({ objects: current }) => {\n log.info('update', { space: space.key, registered: registered.length, current: current.length });\n await this._handleRemovedTriggers(space, current, registered);\n this._handleNewTriggers(space, current, registered);\n }),\n );\n }\n });\n\n this._ctx.onDispose(() => spaceListSubscription.unsubscribe());\n log.info('opened');\n }\n\n protected override async _close(_: Context): Promise<void> {\n log.info('close...');\n this._triggersBySpaceKey.clear();\n log.info('closed');\n }\n\n private _handleNewTriggers(space: Space, current: FunctionTrigger[], registered: RegisteredTrigger[]) {\n const added = current.filter((candidate) => {\n return candidate.enabled && registered.find((reg) => reg.trigger.id === candidate.id) == null;\n });\n\n if (added.length > 0) {\n const newRegisteredTriggers: RegisteredTrigger[] = added.map((trigger) => ({ trigger }));\n registered.push(...newRegisteredTriggers);\n log.info('added', () => ({\n spaceKey: space.key,\n triggers: added.map((trigger) => trigger.function),\n }));\n\n this.registered.emit({ space, triggers: added });\n }\n }\n\n private async _handleRemovedTriggers(\n space: Space,\n current: FunctionTrigger[],\n registered: RegisteredTrigger[],\n ): Promise<void> {\n const removed: FunctionTrigger[] = [];\n for (let i = registered.length - 1; i >= 0; i--) {\n const wasRemoved =\n current.filter((trigger) => trigger.enabled).find((trigger) => trigger.id === registered[i].trigger.id) == null;\n if (wasRemoved) {\n const unregistered = registered.splice(i, 1)[0];\n await unregistered.activationCtx?.dispose();\n removed.push(unregistered.trigger);\n }\n }\n\n if (removed.length > 0) {\n log.info('removed', () => ({\n spaceKey: space.key,\n triggers: removed.map((trigger) => trigger.function),\n }));\n\n this.removed.emit({ space, triggers: removed });\n }\n }\n\n private _getTriggers(space: Space, predicate: (trigger: RegisteredTrigger) => boolean): FunctionTrigger[] {\n const allSpaceTriggers = this._triggersBySpaceKey.get(space.key) ?? [];\n return allSpaceTriggers.filter(predicate).map((trigger) => trigger.trigger);\n }\n}\n"],
|
|
5
|
-
"mappings": "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",
|
|
4
|
+
"sourcesContent": ["//\n// Copyright 2024 DXOS.org\n//\n\nimport { Event } from '@dxos/async';\nimport { type Client } from '@dxos/client';\nimport { create, Filter, type Space } from '@dxos/client/echo';\nimport { type Context, Resource } from '@dxos/context';\nimport { PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { ComplexMap, diff } from '@dxos/util';\n\nimport { FunctionDef, type FunctionManifest } from '../types';\n\nexport type FunctionsRegisteredEvent = {\n space: Space;\n added: FunctionDef[];\n};\n\nexport class FunctionRegistry extends Resource {\n private readonly _functionBySpaceKey = new ComplexMap<PublicKey, FunctionDef[]>(PublicKey.hash);\n\n public readonly registered = new Event<FunctionsRegisteredEvent>();\n\n constructor(private readonly _client: Client) {\n super();\n }\n\n public getFunctions(space: Space): FunctionDef[] {\n return this._functionBySpaceKey.get(space.key) ?? [];\n }\n\n public getUniqueByUri(): FunctionDef[] {\n const uniqueByUri = [...this._functionBySpaceKey.values()]\n .flatMap((defs) => defs)\n .reduce((acc, v) => {\n acc.set(v.uri, v);\n return acc;\n }, new Map<string, FunctionDef>());\n return [...uniqueByUri.values()];\n }\n\n /**\n * Loads function definitions from the manifest into the space.\n * We first load all the definitions from the space to deduplicate by functionId.\n */\n public async register(space: Space, functions: FunctionManifest['functions']): Promise<void> {\n log('register', { space: space.key, functions: functions?.length ?? 0 });\n if (!functions?.length) {\n return;\n }\n if (!space.db.graph.schemaRegistry.hasSchema(FunctionDef)) {\n space.db.graph.schemaRegistry.addSchema([FunctionDef]);\n }\n\n // Sync definitions.\n const { objects: existing } = await space.db.query(Filter.schema(FunctionDef)).run();\n const { added } = diff(existing, functions, (a, b) => a.uri === b.uri);\n // TODO(burdon): Update existing templates.\n added.forEach((def) => space.db.add(create(FunctionDef, def)));\n\n if (added.length > 0) {\n await space.db.flush({ indexes: true, updates: true });\n }\n }\n\n protected override async _open(): Promise<void> {\n log.info('opening...');\n const spacesSubscription = this._client.spaces.subscribe(async (spaces) => {\n for (const space of spaces) {\n if (this._functionBySpaceKey.has(space.key)) {\n continue;\n }\n\n const registered: FunctionDef[] = [];\n this._functionBySpaceKey.set(space.key, registered);\n await space.waitUntilReady();\n if (this._ctx.disposed) {\n break;\n }\n\n // Subscribe to updates.\n this._ctx.onDispose(\n space.db.query(Filter.schema(FunctionDef)).subscribe(({ objects }) => {\n const { added } = diff(registered, objects, (a, b) => a.uri === b.uri);\n // TODO(burdon): Update and remove.\n if (added.length > 0) {\n registered.push(...added);\n this.registered.emit({ space, added });\n }\n }),\n );\n }\n });\n\n // TODO(burdon): API: Normalize unsubscribe methods.\n this._ctx.onDispose(() => spacesSubscription.unsubscribe());\n }\n\n protected override async _close(_: Context): Promise<void> {\n log.info('closing...');\n this._functionBySpaceKey.clear();\n }\n}\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { debounce, UpdateScheduler } from '@dxos/async';\nimport { Filter, type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { createSubscription, type Query } from '@dxos/echo-db';\nimport { log } from '@dxos/log';\n\nimport type { SubscriptionTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\nexport const createSubscriptionTrigger: TriggerFactory<SubscriptionTrigger> = async (\n ctx: Context,\n space: Space,\n spec: SubscriptionTrigger,\n callback: TriggerCallback,\n) => {\n const objectIds = new Set<string>();\n const task = new UpdateScheduler(\n ctx,\n async () => {\n if (objectIds.size > 0) {\n const objects = Array.from(objectIds);\n objectIds.clear();\n await callback({ objects });\n }\n },\n { maxFrequency: 4 },\n );\n\n // TODO(burdon): Factor out diff.\n // TODO(burdon): Don't fire initially?\n // TODO(burdon): Create queue. Only allow one invocation per trigger at a time?\n const subscriptions: (() => void)[] = [];\n const subscription = createSubscription(({ added, updated }) => {\n const sizeBefore = objectIds.size;\n for (const object of added) {\n objectIds.add(object.id);\n }\n for (const object of updated) {\n objectIds.add(object.id);\n }\n if (objectIds.size > sizeBefore) {\n log.info('updated', { added: added.length, updated: updated.length });\n task.trigger();\n }\n });\n\n subscriptions.push(() => subscription.unsubscribe());\n\n // TODO(burdon): Disable trigger if keeps failing.\n const { filter, options: { deep, delay } = {} } = spec;\n const update = ({ objects }: Query) => {\n log.info('update', { objects: objects.length });\n subscription.update(objects);\n\n // TODO(burdon): Hack to monitor changes to Document's text object.\n if (deep) {\n // TODO(dmaretskyi): Removed to not have dependency on markdown-plugin.\n // for (const object of objects) {\n // const content = object.content;\n // if (content instanceof TextType) {\n // subscriptions.push(getObjectCore(content).updates.on(debounce(() => subscription.update([object]), 1_000)));\n // }\n // }\n }\n };\n\n // TODO(burdon): OR not working.\n // TODO(burdon): [Bug]: all callbacks are fired on the first mutation.\n // TODO(burdon): [Bug]: not updated when document is deleted (either top or hierarchically).\n log.info('subscription', { filter });\n // const query = triggerCtx.space.db.query(Filter.or(filter.map(({ type, props }) => Filter.typename(type, props))));\n if (filter) {\n const query = space.db.query(Filter.typename(filter[0].type, filter[0].props));\n subscriptions.push(query.subscribe(delay ? debounce(update, delay) : update));\n }\n\n ctx.onDispose(() => {\n subscriptions.forEach((unsubscribe) => unsubscribe());\n });\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { CronJob } from 'cron';\n\nimport { DeferredTask } from '@dxos/async';\nimport { type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { log } from '@dxos/log';\n\nimport type { TimerTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\nexport const createTimerTrigger: TriggerFactory<TimerTrigger> = async (\n ctx: Context,\n space: Space,\n spec: TimerTrigger,\n callback: TriggerCallback,\n) => {\n const task = new DeferredTask(ctx, async () => {\n await callback({});\n });\n\n let last = 0;\n let run = 0;\n // https://www.npmjs.com/package/cron#constructor\n const job = CronJob.from({\n cronTime: spec.cron,\n runOnInit: false,\n onTick: () => {\n // TODO(burdon): Check greater than 30s (use cron-parser).\n const now = Date.now();\n const delta = last ? now - last : 0;\n last = now;\n\n run++;\n log.info('tick', { space: space.key.truncate(), count: run, delta });\n task.schedule();\n },\n });\n\n job.start();\n ctx.onDispose(() => job.stop());\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport WebSocket from 'ws';\n\nimport { sleep, Trigger } from '@dxos/async';\nimport { type Space } from '@dxos/client/echo';\nimport { type Context } from '@dxos/context';\nimport { log } from '@dxos/log';\n\nimport { type WebsocketTrigger } from '../../types';\nimport { type TriggerCallback, type TriggerFactory } from '../trigger-registry';\n\ninterface WebsocketTriggerOptions {\n retryDelay: number;\n maxAttempts: number;\n}\n\n/**\n * Websocket.\n * NOTE: The port must be unique, so the same hook cannot be used for multiple spaces.\n */\nexport const createWebsocketTrigger: TriggerFactory<WebsocketTrigger, WebsocketTriggerOptions> = async (\n ctx: Context,\n space: Space,\n spec: WebsocketTrigger,\n callback: TriggerCallback,\n options: WebsocketTriggerOptions = { retryDelay: 2, maxAttempts: 5 },\n) => {\n const { url, init } = spec;\n\n let wasOpen = false;\n let ws: WebSocket;\n for (let attempt = 1; attempt <= options.maxAttempts; attempt++) {\n const open = new Trigger<boolean>();\n\n ws = new WebSocket(url);\n Object.assign(ws, {\n onopen: () => {\n log.info('opened', { url });\n if (spec.init) {\n ws.send(new TextEncoder().encode(JSON.stringify(init)));\n }\n\n open.wake(true);\n },\n\n onclose: (event) => {\n log.info('closed', { url, code: event.code });\n // Reconnect if server closes (e.g., CF restart).\n // https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent/code\n if (event.code === 1006 && wasOpen && !ctx.disposed) {\n setTimeout(async () => {\n log.info(`reconnecting in ${options.retryDelay}s...`, { url });\n await createWebsocketTrigger(ctx, space, spec, callback, options);\n }, options.retryDelay * 1_000);\n }\n open.wake(false);\n },\n\n onerror: (event) => {\n log.catch(event.error, { url });\n open.wake(false);\n },\n\n onmessage: async (event) => {\n try {\n log.info('message');\n const data = JSON.parse(new TextDecoder().decode(event.data as Uint8Array));\n await callback({ data });\n } catch (err) {\n log.catch(err, { url });\n }\n },\n } satisfies Partial<WebSocket>);\n\n const isOpen = await open.wait();\n if (ctx.disposed) {\n break;\n }\n if (isOpen) {\n wasOpen = true;\n break;\n }\n const wait = Math.pow(attempt, 2) * options.retryDelay;\n if (attempt < options.maxAttempts) {\n log.warn(`failed to connect; trying again in ${wait}s`, { attempt });\n await sleep(wait * 1_000);\n }\n }\n\n ctx.onDispose(() => {\n ws?.close();\n });\n};\n", "//\n// Copyright 2024 DXOS.org\n//\n\nimport { Event } from '@dxos/async';\nimport { type Client } from '@dxos/client';\nimport { create, Filter, getMeta, type Space } from '@dxos/client/echo';\nimport { Context, Resource } from '@dxos/context';\nimport { compareForeignKeys, ECHO_ATTR_META, foreignKey } from '@dxos/echo-schema';\nimport { invariant } from '@dxos/invariant';\nimport { PublicKey } from '@dxos/keys';\nimport { log } from '@dxos/log';\nimport { ComplexMap, diff } from '@dxos/util';\n\nimport { createSubscriptionTrigger, createTimerTrigger, createWebsocketTrigger } from './type';\nimport { type FunctionManifest, FunctionTrigger, type FunctionTriggerType, type TriggerSpec } from '../types';\n\ntype ResponseCode = number;\n\nexport type TriggerCallback = (args: object) => Promise<ResponseCode>;\n\n// TODO(burdon): Make object?\nexport type TriggerFactory<Spec extends TriggerSpec, Options = any> = (\n ctx: Context,\n space: Space,\n spec: Spec,\n callback: TriggerCallback,\n options?: Options,\n) => Promise<void>;\n\nexport type TriggerFactoryMap = Record<FunctionTriggerType, TriggerFactory<any>>;\n\nconst triggerFactory: TriggerFactoryMap = {\n subscription: createSubscriptionTrigger,\n timer: createTimerTrigger,\n // TODO(burdon): Cannot use in browser.\n // webhook: createWebhookTrigger,\n webhook: null as any,\n websocket: createWebsocketTrigger,\n};\n\nexport type TriggerEvent = {\n space: Space;\n triggers: FunctionTrigger[];\n};\n\ntype RegisteredTrigger = {\n activationCtx?: Context;\n trigger: FunctionTrigger;\n};\n\nexport class TriggerRegistry extends Resource {\n private readonly _triggersBySpaceKey = new ComplexMap<PublicKey, RegisteredTrigger[]>(PublicKey.hash);\n\n public readonly registered = new Event<TriggerEvent>();\n public readonly removed = new Event<TriggerEvent>();\n\n constructor(\n private readonly _client: Client,\n private readonly _options?: TriggerFactoryMap,\n ) {\n super();\n }\n\n public getActiveTriggers(space: Space): FunctionTrigger[] {\n return this._getTriggers(space, (t) => t.activationCtx != null);\n }\n\n public getInactiveTriggers(space: Space): FunctionTrigger[] {\n return this._getTriggers(space, (t) => t.activationCtx == null);\n }\n\n /**\n * Set callback for trigger.\n */\n public async activate(space: Space, trigger: FunctionTrigger, callback: TriggerCallback): Promise<void> {\n log('activate', { space: space.key, trigger });\n\n const activationCtx = new Context({ name: `FunctionTrigger-${trigger.function}` });\n this._ctx.onDispose(() => activationCtx.dispose());\n const registeredTrigger = this._triggersBySpaceKey.get(space.key)?.find((reg) => reg.trigger.id === trigger.id);\n invariant(registeredTrigger, `Trigger is not registered: ${trigger.function}`);\n registeredTrigger.activationCtx = activationCtx;\n\n try {\n // Create trigger.\n const options = this._options?.[trigger.spec.type];\n const createTrigger = triggerFactory[trigger.spec.type];\n invariant(createTrigger, `Trigger factory not found: ${trigger.spec.type}`);\n await createTrigger(activationCtx, space, trigger.spec, callback, options);\n } catch (err) {\n delete registeredTrigger.activationCtx;\n throw err;\n }\n }\n\n /**\n * Loads triggers from the manifest into the space.\n */\n public async register(space: Space, manifest: FunctionManifest): Promise<void> {\n log('register', { space: space.key });\n if (!manifest.triggers?.length) {\n return;\n }\n\n if (!space.db.graph.schemaRegistry.hasSchema(FunctionTrigger)) {\n space.db.graph.schemaRegistry.addSchema([FunctionTrigger]);\n }\n\n // Create FK to enable syncing if none are set (NOTE: Possible collision).\n const manifestTriggers = manifest.triggers.map((trigger) => {\n let keys = trigger[ECHO_ATTR_META]?.keys;\n delete trigger[ECHO_ATTR_META];\n if (!keys?.length) {\n keys = [foreignKey('manifest', [trigger.function, trigger.spec.type].join(':'))];\n }\n\n return create(FunctionTrigger, trigger, { keys });\n });\n\n // Sync triggers.\n const { objects: existing } = await space.db.query(Filter.schema(FunctionTrigger)).run();\n const { added } = diff(existing, manifestTriggers, compareForeignKeys);\n\n // TODO(burdon): Update existing.\n added.forEach((trigger) => {\n space.db.add(trigger);\n log.info('added', { meta: getMeta(trigger) });\n });\n\n if (added.length > 0) {\n await space.db.flush();\n }\n }\n\n protected override async _open(): Promise<void> {\n log.info('open...');\n const spaceListSubscription = this._client.spaces.subscribe(async (spaces) => {\n for (const space of spaces) {\n if (this._triggersBySpaceKey.has(space.key)) {\n continue;\n }\n\n const registered: RegisteredTrigger[] = [];\n this._triggersBySpaceKey.set(space.key, registered);\n await space.waitUntilReady();\n if (this._ctx.disposed) {\n break;\n }\n\n // Subscribe to updates.\n this._ctx.onDispose(\n space.db.query(Filter.schema(FunctionTrigger)).subscribe(async ({ objects: current }) => {\n log.info('update', { space: space.key, registered: registered.length, current: current.length });\n await this._handleRemovedTriggers(space, current, registered);\n this._handleNewTriggers(space, current, registered);\n }),\n );\n }\n });\n\n this._ctx.onDispose(() => spaceListSubscription.unsubscribe());\n log.info('opened');\n }\n\n protected override async _close(_: Context): Promise<void> {\n log.info('close...');\n this._triggersBySpaceKey.clear();\n log.info('closed');\n }\n\n private _handleNewTriggers(space: Space, current: FunctionTrigger[], registered: RegisteredTrigger[]) {\n const added = current.filter((candidate) => {\n return candidate.enabled && registered.find((reg) => reg.trigger.id === candidate.id) == null;\n });\n\n if (added.length > 0) {\n const newRegisteredTriggers: RegisteredTrigger[] = added.map((trigger) => ({ trigger }));\n registered.push(...newRegisteredTriggers);\n log.info('added', () => ({\n spaceKey: space.key,\n triggers: added.map((trigger) => trigger.function),\n }));\n\n this.registered.emit({ space, triggers: added });\n }\n }\n\n private async _handleRemovedTriggers(\n space: Space,\n current: FunctionTrigger[],\n registered: RegisteredTrigger[],\n ): Promise<void> {\n const removed: FunctionTrigger[] = [];\n for (let i = registered.length - 1; i >= 0; i--) {\n const wasRemoved =\n current.filter((trigger) => trigger.enabled).find((trigger) => trigger.id === registered[i].trigger.id) == null;\n if (wasRemoved) {\n const unregistered = registered.splice(i, 1)[0];\n await unregistered.activationCtx?.dispose();\n removed.push(unregistered.trigger);\n }\n }\n\n if (removed.length > 0) {\n log.info('removed', () => ({\n spaceKey: space.key,\n triggers: removed.map((trigger) => trigger.function),\n }));\n\n this.removed.emit({ space, triggers: removed });\n }\n }\n\n private _getTriggers(space: Space, predicate: (trigger: RegisteredTrigger) => boolean): FunctionTrigger[] {\n const allSpaceTriggers = this._triggersBySpaceKey.get(space.key) ?? [];\n return allSpaceTriggers.filter(predicate).map((trigger) => trigger.trigger);\n }\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": ["import_async", "import_echo", "import_log", "import_context", "import_keys", "import_util", "FunctionRegistry", "Resource", "constructor", "_client", "_functionBySpaceKey", "ComplexMap", "PublicKey", "hash", "registered", "Event", "getFunctions", "space", "get", "key", "getUniqueByUri", "uniqueByUri", "values", "flatMap", "defs", "reduce", "acc", "v", "set", "uri", "Map", "register", "functions", "log", "length", "db", "graph", "schemaRegistry", "hasSchema", "FunctionDef", "addSchema", "objects", "existing", "query", "Filter", "schema", "run", "added", "diff", "a", "b", "forEach", "def", "add", "create", "flush", "indexes", "updates", "_open", "info", "spacesSubscription", "spaces", "subscribe", "has", "waitUntilReady", "_ctx", "disposed", "onDispose", "push", "emit", "unsubscribe", "_close", "_", "clear", "createSubscriptionTrigger", "ctx", "spec", "callback", "objectIds", "Set", "task", "UpdateScheduler", "size", "Array", "from", "maxFrequency", "subscriptions", "subscription", "createSubscription", "updated", "sizeBefore", "object", "id", "trigger", "filter", "options", "deep", "delay", "update", "typename", "type", "props", "debounce", "createTimerTrigger", "DeferredTask", "last", "job", "CronJob", "cronTime", "cron", "runOnInit", "onTick", "now", "Date", "delta", "truncate", "count", "schedule", "start", "stop", "createWebsocketTrigger", "retryDelay", "maxAttempts", "url", "init", "wasOpen", "ws", "attempt", "open", "Trigger", "WebSocket", "Object", "assign", "onopen", "send", "TextEncoder", "encode", "JSON", "stringify", "wake", "onclose", "event", "code", "setTimeout", "onerror", "catch", "error", "onmessage", "data", "parse", "TextDecoder", "decode", "err", "isOpen", "wait", "Math", "pow", "warn", "sleep", "close", "triggerFactory", "timer", "webhook", "websocket", "TriggerRegistry", "_options", "_triggersBySpaceKey", "removed", "getActiveTriggers", "_getTriggers", "t", "activationCtx", "getInactiveTriggers", "activate", "Context", "name", "function", "dispose", "registeredTrigger", "find", "reg", "invariant", "createTrigger", "manifest", "triggers", "FunctionTrigger", "manifestTriggers", "map", "keys", "ECHO_ATTR_META", "foreignKey", "join", "compareForeignKeys", "meta", "getMeta", "spaceListSubscription", "current", "_handleRemovedTriggers", "_handleNewTriggers", "candidate", "enabled", "newRegisteredTriggers", "spaceKey", "i", "wasRemoved", "unregistered", "splice", "predicate", "allSpaceTriggers"]
|
|
7
7
|
}
|
package/dist/lib/node/index.cjs
CHANGED
|
@@ -18,20 +18,20 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
var node_exports = {};
|
|
20
20
|
__export(node_exports, {
|
|
21
|
-
FUNCTION_SCHEMA: () =>
|
|
22
|
-
FunctionDef: () =>
|
|
23
|
-
FunctionManifestSchema: () =>
|
|
24
|
-
FunctionRegistry: () =>
|
|
25
|
-
FunctionTrigger: () =>
|
|
26
|
-
TriggerRegistry: () =>
|
|
27
|
-
createSubscriptionTrigger: () =>
|
|
28
|
-
createTimerTrigger: () =>
|
|
29
|
-
createWebsocketTrigger: () =>
|
|
21
|
+
FUNCTION_SCHEMA: () => import_chunk_JV3VNH5X.FUNCTION_SCHEMA,
|
|
22
|
+
FunctionDef: () => import_chunk_JV3VNH5X.FunctionDef,
|
|
23
|
+
FunctionManifestSchema: () => import_chunk_JV3VNH5X.FunctionManifestSchema,
|
|
24
|
+
FunctionRegistry: () => import_chunk_OGLDVNFE.FunctionRegistry,
|
|
25
|
+
FunctionTrigger: () => import_chunk_JV3VNH5X.FunctionTrigger,
|
|
26
|
+
TriggerRegistry: () => import_chunk_OGLDVNFE.TriggerRegistry,
|
|
27
|
+
createSubscriptionTrigger: () => import_chunk_OGLDVNFE.createSubscriptionTrigger,
|
|
28
|
+
createTimerTrigger: () => import_chunk_OGLDVNFE.createTimerTrigger,
|
|
29
|
+
createWebsocketTrigger: () => import_chunk_OGLDVNFE.createWebsocketTrigger,
|
|
30
30
|
subscriptionHandler: () => subscriptionHandler
|
|
31
31
|
});
|
|
32
32
|
module.exports = __toCommonJS(node_exports);
|
|
33
|
-
var
|
|
34
|
-
var
|
|
33
|
+
var import_chunk_OGLDVNFE = require("./chunk-OGLDVNFE.cjs");
|
|
34
|
+
var import_chunk_JV3VNH5X = require("./chunk-JV3VNH5X.cjs");
|
|
35
35
|
var import_client = require("@dxos/client");
|
|
36
36
|
var import_log = require("@dxos/log");
|
|
37
37
|
var import_util = require("@dxos/util");
|
package/dist/lib/node/meta.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"packages/core/functions/src/types.ts":{"bytes":9947,"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/function/function-registry.ts":{"bytes":13004,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/function/index.ts":{"bytes":529,"imports":[{"path":"packages/core/functions/src/function/function-registry.ts","kind":"import-statement","original":"./function-registry"}],"format":"esm"},"packages/core/functions/src/handler.ts":{"bytes":10606,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/subscription-trigger.ts":{"bytes":10343,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/timer-trigger.ts":{"bytes":4173,"imports":[{"path":"cron","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/websocket-trigger.ts":{"bytes":11002,"imports":[{"path":"ws","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/index.ts":{"bytes":864,"imports":[{"path":"packages/core/functions/src/trigger/type/subscription-trigger.ts","kind":"import-statement","original":"./subscription-trigger"},{"path":"packages/core/functions/src/trigger/type/timer-trigger.ts","kind":"import-statement","original":"./timer-trigger"},{"path":"packages/core/functions/src/trigger/type/websocket-trigger.ts","kind":"import-statement","original":"./websocket-trigger"}],"format":"esm"},"packages/core/functions/src/trigger/trigger-registry.ts":{"bytes":27890,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/trigger/type/index.ts","kind":"import-statement","original":"./type"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/trigger/index.ts":{"bytes":603,"imports":[{"path":"packages/core/functions/src/trigger/trigger-registry.ts","kind":"import-statement","original":"./trigger-registry"},{"path":"packages/core/functions/src/trigger/type/index.ts","kind":"import-statement","original":"./type"}],"format":"esm"},"packages/core/functions/src/index.ts":{"bytes":840,"imports":[{"path":"packages/core/functions/src/function/index.ts","kind":"import-statement","original":"./function"},{"path":"packages/core/functions/src/handler.ts","kind":"import-statement","original":"./handler"},{"path":"packages/core/functions/src/trigger/index.ts","kind":"import-statement","original":"./trigger"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"./types"}],"format":"esm"},"packages/core/functions/src/testing/types.ts":{"bytes":1131,"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/dev-server.ts":{"bytes":28958,"imports":[{"path":"express","kind":"import-statement","external":true},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/scheduler.ts":{"bytes":21084,"imports":[{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/index.ts":{"bytes":598,"imports":[{"path":"packages/core/functions/src/runtime/dev-server.ts","kind":"import-statement","original":"./dev-server"},{"path":"packages/core/functions/src/runtime/scheduler.ts","kind":"import-statement","original":"./scheduler"}],"format":"esm"},"packages/core/functions/src/testing/setup.ts":{"bytes":12671,"imports":[{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/testing/types.ts","kind":"import-statement","original":"./types"},{"path":"packages/core/functions/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"packages/core/functions/src/runtime/index.ts","kind":"import-statement","original":"../runtime"},{"path":"packages/core/functions/src/trigger/index.ts","kind":"import-statement","original":"../trigger"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/testing/util.ts":{"bytes":4292,"imports":[{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/client/testing","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/testing/manifest.ts":{"bytes":1139,"imports":[],"format":"esm"},"packages/core/functions/src/testing/index.ts":{"bytes":749,"imports":[{"path":"packages/core/functions/src/testing/setup.ts","kind":"import-statement","original":"./setup"},{"path":"packages/core/functions/src/testing/types.ts","kind":"import-statement","original":"./types"},{"path":"packages/core/functions/src/testing/util.ts","kind":"import-statement","original":"./util"},{"path":"packages/core/functions/src/testing/manifest.ts","kind":"import-statement","original":"./manifest"}],"format":"esm"}},"outputs":{"packages/core/functions/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5745},"packages/core/functions/dist/lib/node/index.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-V7JNSENS.cjs","kind":"import-statement"},{"path":"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs","kind":"import-statement"},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionRegistry","FunctionTrigger","TriggerRegistry","createSubscriptionTrigger","createTimerTrigger","createWebsocketTrigger","subscriptionHandler"],"entryPoint":"packages/core/functions/src/index.ts","inputs":{"packages/core/functions/src/index.ts":{"bytesInOutput":0},"packages/core/functions/src/handler.ts":{"bytesInOutput":1624}},"bytes":2204},"packages/core/functions/dist/lib/node/testing/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":32212},"packages/core/functions/dist/lib/node/testing/index.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-V7JNSENS.cjs","kind":"import-statement"},{"path":"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs","kind":"import-statement"},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"express","kind":"import-statement","external":true},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/client/testing","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}],"exports":["TestType","createFunctionRuntime","createInitializedClients","inviteMember","startFunctionsHost","testFunctionManifest","triggerWebhook"],"entryPoint":"packages/core/functions/src/testing/index.ts","inputs":{"packages/core/functions/src/testing/setup.ts":{"bytesInOutput":2783},"packages/core/functions/src/testing/types.ts":{"bytesInOutput":182},"packages/core/functions/src/runtime/dev-server.ts":{"bytesInOutput":7860},"packages/core/functions/src/runtime/index.ts":{"bytesInOutput":0},"packages/core/functions/src/runtime/scheduler.ts":{"bytesInOutput":5330},"packages/core/functions/src/testing/index.ts":{"bytesInOutput":0},"packages/core/functions/src/testing/util.ts":{"bytesInOutput":1051},"packages/core/functions/src/testing/manifest.ts":{"bytesInOutput":146}},"bytes":18063},"packages/core/functions/dist/lib/node/chunk-V7JNSENS.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":31732},"packages/core/functions/dist/lib/node/chunk-V7JNSENS.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs","kind":"import-statement"},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"cron","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"ws","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["FunctionRegistry","TriggerRegistry","createSubscriptionTrigger","createTimerTrigger","createWebsocketTrigger"],"inputs":{"packages/core/functions/src/function/function-registry.ts":{"bytesInOutput":3046},"packages/core/functions/src/function/index.ts":{"bytesInOutput":0},"packages/core/functions/src/trigger/type/subscription-trigger.ts":{"bytesInOutput":2008},"packages/core/functions/src/trigger/type/timer-trigger.ts":{"bytesInOutput":898},"packages/core/functions/src/trigger/type/websocket-trigger.ts":{"bytesInOutput":2929},"packages/core/functions/src/trigger/trigger-registry.ts":{"bytesInOutput":7157},"packages/core/functions/src/trigger/type/index.ts":{"bytesInOutput":0},"packages/core/functions/src/trigger/index.ts":{"bytesInOutput":0}},"bytes":16602},"packages/core/functions/dist/lib/node/types.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/core/functions/dist/lib/node/types.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs","kind":"import-statement"}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionTrigger"],"entryPoint":"packages/core/functions/src/types.ts","inputs":{},"bytes":243},"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5515},"packages/core/functions/dist/lib/node/chunk-GGTHSME4.cjs":{"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionTrigger","__require"],"inputs":{"packages/core/functions/src/types.ts":{"bytesInOutput":1898}},"bytes":2456}}}
|
|
1
|
+
{"inputs":{"packages/core/functions/src/types.ts":{"bytes":9947,"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/function/function-registry.ts":{"bytes":13004,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/function/index.ts":{"bytes":529,"imports":[{"path":"packages/core/functions/src/function/function-registry.ts","kind":"import-statement","original":"./function-registry"}],"format":"esm"},"packages/core/functions/src/handler.ts":{"bytes":10606,"imports":[{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/subscription-trigger.ts":{"bytes":10343,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/timer-trigger.ts":{"bytes":4173,"imports":[{"path":"cron","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/websocket-trigger.ts":{"bytes":11002,"imports":[{"path":"ws","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/trigger/type/index.ts":{"bytes":864,"imports":[{"path":"packages/core/functions/src/trigger/type/subscription-trigger.ts","kind":"import-statement","original":"./subscription-trigger"},{"path":"packages/core/functions/src/trigger/type/timer-trigger.ts","kind":"import-statement","original":"./timer-trigger"},{"path":"packages/core/functions/src/trigger/type/websocket-trigger.ts","kind":"import-statement","original":"./websocket-trigger"}],"format":"esm"},"packages/core/functions/src/trigger/trigger-registry.ts":{"bytes":28453,"imports":[{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/trigger/type/index.ts","kind":"import-statement","original":"./type"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/trigger/index.ts":{"bytes":603,"imports":[{"path":"packages/core/functions/src/trigger/trigger-registry.ts","kind":"import-statement","original":"./trigger-registry"},{"path":"packages/core/functions/src/trigger/type/index.ts","kind":"import-statement","original":"./type"}],"format":"esm"},"packages/core/functions/src/index.ts":{"bytes":840,"imports":[{"path":"packages/core/functions/src/function/index.ts","kind":"import-statement","original":"./function"},{"path":"packages/core/functions/src/handler.ts","kind":"import-statement","original":"./handler"},{"path":"packages/core/functions/src/trigger/index.ts","kind":"import-statement","original":"./trigger"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"./types"}],"format":"esm"},"packages/core/functions/src/testing/types.ts":{"bytes":1131,"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/dev-server.ts":{"bytes":28958,"imports":[{"path":"express","kind":"import-statement","external":true},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/scheduler.ts":{"bytes":21084,"imports":[{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"packages/core/functions/src/runtime/index.ts":{"bytes":598,"imports":[{"path":"packages/core/functions/src/runtime/dev-server.ts","kind":"import-statement","original":"./dev-server"},{"path":"packages/core/functions/src/runtime/scheduler.ts","kind":"import-statement","original":"./scheduler"}],"format":"esm"},"packages/core/functions/src/testing/setup.ts":{"bytes":12671,"imports":[{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"packages/core/functions/src/testing/types.ts","kind":"import-statement","original":"./types"},{"path":"packages/core/functions/src/function/index.ts","kind":"import-statement","original":"../function"},{"path":"packages/core/functions/src/runtime/index.ts","kind":"import-statement","original":"../runtime"},{"path":"packages/core/functions/src/trigger/index.ts","kind":"import-statement","original":"../trigger"},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/testing/util.ts":{"bytes":4292,"imports":[{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/client/testing","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true},{"path":"packages/core/functions/src/types.ts","kind":"import-statement","original":"../types"}],"format":"esm"},"packages/core/functions/src/testing/manifest.ts":{"bytes":1139,"imports":[],"format":"esm"},"packages/core/functions/src/testing/index.ts":{"bytes":749,"imports":[{"path":"packages/core/functions/src/testing/setup.ts","kind":"import-statement","original":"./setup"},{"path":"packages/core/functions/src/testing/types.ts","kind":"import-statement","original":"./types"},{"path":"packages/core/functions/src/testing/util.ts","kind":"import-statement","original":"./util"},{"path":"packages/core/functions/src/testing/manifest.ts","kind":"import-statement","original":"./manifest"}],"format":"esm"}},"outputs":{"packages/core/functions/dist/lib/node/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5745},"packages/core/functions/dist/lib/node/index.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-OGLDVNFE.cjs","kind":"import-statement"},{"path":"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs","kind":"import-statement"},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionRegistry","FunctionTrigger","TriggerRegistry","createSubscriptionTrigger","createTimerTrigger","createWebsocketTrigger","subscriptionHandler"],"entryPoint":"packages/core/functions/src/index.ts","inputs":{"packages/core/functions/src/index.ts":{"bytesInOutput":0},"packages/core/functions/src/handler.ts":{"bytesInOutput":1624}},"bytes":2204},"packages/core/functions/dist/lib/node/testing/index.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":32212},"packages/core/functions/dist/lib/node/testing/index.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-OGLDVNFE.cjs","kind":"import-statement"},{"path":"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs","kind":"import-statement"},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"express","kind":"import-statement","external":true},{"path":"get-port-please","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"node:path","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/client/testing","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/protocols/proto/dxos/client/services","kind":"import-statement","external":true}],"exports":["TestType","createFunctionRuntime","createInitializedClients","inviteMember","startFunctionsHost","testFunctionManifest","triggerWebhook"],"entryPoint":"packages/core/functions/src/testing/index.ts","inputs":{"packages/core/functions/src/testing/setup.ts":{"bytesInOutput":2783},"packages/core/functions/src/testing/types.ts":{"bytesInOutput":182},"packages/core/functions/src/runtime/dev-server.ts":{"bytesInOutput":7860},"packages/core/functions/src/runtime/index.ts":{"bytesInOutput":0},"packages/core/functions/src/runtime/scheduler.ts":{"bytesInOutput":5330},"packages/core/functions/src/testing/index.ts":{"bytesInOutput":0},"packages/core/functions/src/testing/util.ts":{"bytesInOutput":1051},"packages/core/functions/src/testing/manifest.ts":{"bytesInOutput":146}},"bytes":18063},"packages/core/functions/dist/lib/node/chunk-OGLDVNFE.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":31875},"packages/core/functions/dist/lib/node/chunk-OGLDVNFE.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs","kind":"import-statement"},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"cron","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"ws","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/async","kind":"import-statement","external":true},{"path":"@dxos/client/echo","kind":"import-statement","external":true},{"path":"@dxos/context","kind":"import-statement","external":true},{"path":"@dxos/echo-schema","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["FunctionRegistry","TriggerRegistry","createSubscriptionTrigger","createTimerTrigger","createWebsocketTrigger"],"inputs":{"packages/core/functions/src/function/function-registry.ts":{"bytesInOutput":3046},"packages/core/functions/src/function/index.ts":{"bytesInOutput":0},"packages/core/functions/src/trigger/type/subscription-trigger.ts":{"bytesInOutput":2008},"packages/core/functions/src/trigger/type/timer-trigger.ts":{"bytesInOutput":898},"packages/core/functions/src/trigger/type/websocket-trigger.ts":{"bytesInOutput":2929},"packages/core/functions/src/trigger/trigger-registry.ts":{"bytesInOutput":7421},"packages/core/functions/src/trigger/type/index.ts":{"bytesInOutput":0},"packages/core/functions/src/trigger/index.ts":{"bytesInOutput":0}},"bytes":16866},"packages/core/functions/dist/lib/node/types.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":93},"packages/core/functions/dist/lib/node/types.cjs":{"imports":[{"path":"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs","kind":"import-statement"}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionTrigger"],"entryPoint":"packages/core/functions/src/types.ts","inputs":{},"bytes":243},"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5514},"packages/core/functions/dist/lib/node/chunk-JV3VNH5X.cjs":{"imports":[{"path":"@dxos/echo-schema","kind":"import-statement","external":true}],"exports":["FUNCTION_SCHEMA","FunctionDef","FunctionManifestSchema","FunctionTrigger","__require"],"inputs":{"packages/core/functions/src/types.ts":{"bytesInOutput":1898}},"bytes":2452}}}
|
|
@@ -37,8 +37,8 @@ __export(testing_exports, {
|
|
|
37
37
|
triggerWebhook: () => triggerWebhook
|
|
38
38
|
});
|
|
39
39
|
module.exports = __toCommonJS(testing_exports);
|
|
40
|
-
var
|
|
41
|
-
var
|
|
40
|
+
var import_chunk_OGLDVNFE = require("../chunk-OGLDVNFE.cjs");
|
|
41
|
+
var import_chunk_JV3VNH5X = require("../chunk-JV3VNH5X.cjs");
|
|
42
42
|
var import_get_port_please = require("get-port-please");
|
|
43
43
|
var import_node_path = __toESM(require("node:path"));
|
|
44
44
|
var import_async = require("@dxos/async");
|
|
@@ -276,11 +276,11 @@ var DevServer = class {
|
|
|
276
276
|
C: (f, a) => f(...a)
|
|
277
277
|
});
|
|
278
278
|
if (force) {
|
|
279
|
-
Object.keys(
|
|
280
|
-
delete
|
|
279
|
+
Object.keys(import_chunk_JV3VNH5X.__require.cache).filter((key) => key.startsWith(filePath)).forEach((key) => {
|
|
280
|
+
delete import_chunk_JV3VNH5X.__require.cache[key];
|
|
281
281
|
});
|
|
282
282
|
}
|
|
283
|
-
const module2 = (0,
|
|
283
|
+
const module2 = (0, import_chunk_JV3VNH5X.__require)(filePath);
|
|
284
284
|
if (typeof module2.default !== "function") {
|
|
285
285
|
throw new Error(`Handler must export default function: ${uri}`);
|
|
286
286
|
}
|
|
@@ -577,8 +577,8 @@ var createInitializedClients = async (testBuilder, count = 1, config) => {
|
|
|
577
577
|
});
|
|
578
578
|
await client.spaces.isReady.wait();
|
|
579
579
|
client.addTypes([
|
|
580
|
-
|
|
581
|
-
|
|
580
|
+
import_chunk_JV3VNH5X.FunctionDef,
|
|
581
|
+
import_chunk_JV3VNH5X.FunctionTrigger,
|
|
582
582
|
TestType
|
|
583
583
|
]);
|
|
584
584
|
return client;
|
|
@@ -607,7 +607,7 @@ var createFunctionRuntime = async (testBuilder, pluginInitializer) => {
|
|
|
607
607
|
};
|
|
608
608
|
var startFunctionsHost = async (testBuilder, pluginInitializer, options) => {
|
|
609
609
|
const functionRuntime = await createFunctionRuntime(testBuilder, pluginInitializer);
|
|
610
|
-
const functionsRegistry = new
|
|
610
|
+
const functionsRegistry = new import_chunk_OGLDVNFE.FunctionRegistry(functionRuntime);
|
|
611
611
|
const devServer = await startDevServer(testBuilder, functionRuntime, functionsRegistry, options);
|
|
612
612
|
const scheduler = await startScheduler(testBuilder, functionRuntime, devServer, functionsRegistry);
|
|
613
613
|
return {
|
|
@@ -621,7 +621,7 @@ var startFunctionsHost = async (testBuilder, pluginInitializer, options) => {
|
|
|
621
621
|
};
|
|
622
622
|
};
|
|
623
623
|
var startScheduler = async (testBuilder, client, devServer, functionRegistry) => {
|
|
624
|
-
const triggerRegistry = new
|
|
624
|
+
const triggerRegistry = new import_chunk_OGLDVNFE.TriggerRegistry(client);
|
|
625
625
|
const scheduler = new Scheduler(functionRegistry, triggerRegistry, {
|
|
626
626
|
endpoint: devServer.endpoint
|
|
627
627
|
});
|
|
@@ -641,7 +641,7 @@ var startDevServer = async (testBuilder, client, functionRegistry, options) => {
|
|
|
641
641
|
};
|
|
642
642
|
var __dxlog_file3 = "/home/runner/work/dxos/dxos/packages/core/functions/src/testing/util.ts";
|
|
643
643
|
var triggerWebhook = async (space, uri) => {
|
|
644
|
-
const trigger = (await space.db.query(import_echo2.Filter.schema(
|
|
644
|
+
const trigger = (await space.db.query(import_echo2.Filter.schema(import_chunk_JV3VNH5X.FunctionTrigger, (t) => t.function === uri)).run()).objects[0];
|
|
645
645
|
(0, import_invariant2.invariant)(trigger.spec.type === "webhook", void 0, {
|
|
646
646
|
F: __dxlog_file3,
|
|
647
647
|
L: 17,
|
package/dist/lib/node/types.cjs
CHANGED
|
@@ -18,13 +18,13 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
var types_exports = {};
|
|
20
20
|
__export(types_exports, {
|
|
21
|
-
FUNCTION_SCHEMA: () =>
|
|
22
|
-
FunctionDef: () =>
|
|
23
|
-
FunctionManifestSchema: () =>
|
|
24
|
-
FunctionTrigger: () =>
|
|
21
|
+
FUNCTION_SCHEMA: () => import_chunk_JV3VNH5X.FUNCTION_SCHEMA,
|
|
22
|
+
FunctionDef: () => import_chunk_JV3VNH5X.FunctionDef,
|
|
23
|
+
FunctionManifestSchema: () => import_chunk_JV3VNH5X.FunctionManifestSchema,
|
|
24
|
+
FunctionTrigger: () => import_chunk_JV3VNH5X.FunctionTrigger
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(types_exports);
|
|
27
|
-
var
|
|
27
|
+
var import_chunk_JV3VNH5X = require("./chunk-JV3VNH5X.cjs");
|
|
28
28
|
// Annotate the CommonJS export names for ESM import in node:
|
|
29
29
|
0 && (module.exports = {
|
|
30
30
|
FUNCTION_SCHEMA,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["types.cjs"],
|
|
4
|
-
"sourcesContent": ["import {\n FUNCTION_SCHEMA,\n FunctionDef,\n FunctionManifestSchema,\n FunctionTrigger\n} from \"./chunk-
|
|
4
|
+
"sourcesContent": ["import {\n FUNCTION_SCHEMA,\n FunctionDef,\n FunctionManifestSchema,\n FunctionTrigger\n} from \"./chunk-JV3VNH5X.cjs\";\nexport {\n FUNCTION_SCHEMA,\n FunctionDef,\n FunctionManifestSchema,\n FunctionTrigger\n};\n//# sourceMappingURL=types.cjs.map\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4BAKO;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"trigger-registry.d.ts","sourceRoot":"","sources":["../../../../src/trigger/trigger-registry.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAA2B,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAQlD,OAAO,EAAE,KAAK,gBAAgB,EAAE,eAAe,EAAE,KAAK,mBAAmB,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AAE9G,KAAK,YAAY,GAAG,MAAM,CAAC;AAE3B,MAAM,MAAM,eAAe,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,YAAY,CAAC,CAAC;AAGtE,MAAM,MAAM,cAAc,CAAC,IAAI,SAAS,WAAW,EAAE,OAAO,GAAG,GAAG,IAAI,CACpE,GAAG,EAAE,OAAO,EACZ,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,eAAe,EACzB,OAAO,CAAC,EAAE,OAAO,KACd,OAAO,CAAC,IAAI,CAAC,CAAC;AAEnB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,mBAAmB,EAAE,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AAWjF,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE,eAAe,EAAE,CAAC;CAC7B,CAAC;AAOF,qBAAa,eAAgB,SAAQ,QAAQ;IAOzC,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IAP5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAkE;IAEtG,SAAgB,UAAU,sBAA6B;IACvD,SAAgB,OAAO,sBAA6B;gBAGjC,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,iBAAiB,YAAA;IAKxC,iBAAiB,CAAC,KAAK,EAAE,KAAK,GAAG,eAAe,EAAE;IAIlD,mBAAmB,CAAC,KAAK,EAAE,KAAK,GAAG,eAAe,EAAE;IAI3D;;OAEG;IACU,QAAQ,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"trigger-registry.d.ts","sourceRoot":"","sources":["../../../../src/trigger/trigger-registry.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,cAAc,CAAC;AAC3C,OAAO,EAA2B,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACxE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAQlD,OAAO,EAAE,KAAK,gBAAgB,EAAE,eAAe,EAAE,KAAK,mBAAmB,EAAE,KAAK,WAAW,EAAE,MAAM,UAAU,CAAC;AAE9G,KAAK,YAAY,GAAG,MAAM,CAAC;AAE3B,MAAM,MAAM,eAAe,GAAG,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC,YAAY,CAAC,CAAC;AAGtE,MAAM,MAAM,cAAc,CAAC,IAAI,SAAS,WAAW,EAAE,OAAO,GAAG,GAAG,IAAI,CACpE,GAAG,EAAE,OAAO,EACZ,KAAK,EAAE,KAAK,EACZ,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,eAAe,EACzB,OAAO,CAAC,EAAE,OAAO,KACd,OAAO,CAAC,IAAI,CAAC,CAAC;AAEnB,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,mBAAmB,EAAE,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC;AAWjF,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,KAAK,CAAC;IACb,QAAQ,EAAE,eAAe,EAAE,CAAC;CAC7B,CAAC;AAOF,qBAAa,eAAgB,SAAQ,QAAQ;IAOzC,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IAP5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAkE;IAEtG,SAAgB,UAAU,sBAA6B;IACvD,SAAgB,OAAO,sBAA6B;gBAGjC,OAAO,EAAE,MAAM,EACf,QAAQ,CAAC,EAAE,iBAAiB,YAAA;IAKxC,iBAAiB,CAAC,KAAK,EAAE,KAAK,GAAG,eAAe,EAAE;IAIlD,mBAAmB,CAAC,KAAK,EAAE,KAAK,GAAG,eAAe,EAAE;IAI3D;;OAEG;IACU,QAAQ,CAAC,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBvG;;OAEG;IACU,QAAQ,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,gBAAgB,GAAG,OAAO,CAAC,IAAI,CAAC;cAoCrD,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC;cA8BtB,MAAM,CAAC,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAM1D,OAAO,CAAC,kBAAkB;YAiBZ,sBAAsB;IA0BpC,OAAO,CAAC,YAAY;CAIrB"}
|