From 94849b81aaa7280cccc2caa0e7dccb3128dbbba5 Mon Sep 17 00:00:00 2001 From: Ivan S Glazunov Date: Sat, 7 Sep 2024 18:55:25 +0300 Subject: [PATCH] 0.0.441 --- imports/client.tsx | 5 +++-- index.ts | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/imports/client.tsx b/imports/client.tsx index c00802ec..3980d3ff 100644 --- a/imports/client.tsx +++ b/imports/client.tsx @@ -2255,8 +2255,8 @@ export class DeepClient = Link> implements DeepClientInst } _queryTypesNamesSymbols() { - const Contain = this.idLocal('Contain'); - const Symbol = this.idLocal('Symbol'); + const Contain = _ids?.['@deep-foundation/core']?.Contain; + const Symbol = _ids?.['@deep-foundation/core']?.Symbol; return { return: { _contain: { relation: 'in', type_id: Contain }, @@ -2815,6 +2815,7 @@ export type Options = { deep?: DeepClient>; subscription?: boolean; apply?: string; + skip?: boolean; }; export type ReadOptions = Options; diff --git a/index.ts b/index.ts index e5ee46be..73af78ce 100644 --- a/index.ts +++ b/index.ts @@ -570,7 +570,7 @@ const handleRoutes = async () => { // for each port for (const port of updatedOrAddedPorts) { - const portValue = port?.port?.value; + const portValue = port?.port?.value || PORT; if (currentServers.hasOwnProperty(portValue)) { currentServers[portValue].close(); diff --git a/package.json b/package.json index e3944435..0f35d860 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@deep-foundation/deeplinks", - "version": "0.0.440", + "version": "0.0.441", "license": "Unlicense", "type": "module", "scripts": {