Skip to content

Commit

Permalink
0.0.441
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 7, 2024
1 parent c6ca5de commit 94849b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions imports/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2255,8 +2255,8 @@ export class DeepClient<L extends Link<Id> = Link<Id>> 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 },
Expand Down Expand Up @@ -2815,6 +2815,7 @@ export type Options<TTable extends Table = 'links'> = {
deep?: DeepClient<Link<Id>>;
subscription?: boolean;
apply?: string;
skip?: boolean;
};

export type ReadOptions<TTable extends Table = 'links'> = Options<TTable>;
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/deeplinks",
"version": "0.0.440",
"version": "0.0.441",
"license": "Unlicense",
"type": "module",
"scripts": {
Expand Down

0 comments on commit 94849b8

Please sign in to comment.