@ddd-qc/agent-directory 4.165.3 → 4.165.5
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/README.md +14 -5
- package/dist/agent_directory.proxy.d.ts +1 -1
- package/dist/agent_directory.proxy.js +1 -1
- package/dist/agent_directory.proxy.js.map +1 -1
- package/dist/agent_directory.zome.d.ts +1 -1
- package/dist/agent_directory.zvm.d.ts +2 -2
- package/dist/agent_directory.zvm.js +3 -3
- package/dist/agent_directory.zvm.js.map +1 -1
- package/dist/bindings/agent_directory.d.ts +1 -0
- package/dist/bindings/agent_directory.js +3 -0
- package/dist/bindings/agent_directory.js.map +1 -0
- package/dist/bindings/agent_directory.proxy.d.ts +9 -0
- package/dist/bindings/agent_directory.proxy.js +12 -0
- package/dist/bindings/agent_directory.proxy.js.map +1 -0
- package/dist/elements/agent-directory-list.d.ts +1 -1
- package/dist/elements/agent-directory-list.js +1 -1
- package/dist/elements/agent-directory-list.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
@@ -5,11 +5,20 @@ A holochain zome module that registers agents to a known directory path on agent
|
|
5
5
|
|
6
6
|
# API
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
8
|
+
Uses [dna-client](https://www.npmjs.com/package/@ddd-qc/dna-client) framework.
|
9
|
+
Provides a ZomeProxy and ZomeViewModel.
|
10
|
+
|
11
|
+
### Perspective
|
12
|
+
|
13
|
+
```typescript
|
14
|
+
interface AgentDirectoryPerspective {
|
15
|
+
agents: AgentPubKeyB64[], // List of registered agents
|
16
|
+
}
|
17
|
+
```
|
18
|
+
|
19
|
+
### ZomeViewModel
|
20
|
+
- `probeAll()`: Check the DHT for any kind of new data.
|
21
|
+
- `probeRegisteredAgents()`: Check the DHT for new registered agents.
|
13
22
|
|
14
23
|
|
15
24
|
# Custom Elements
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"agent_directory.proxy.js","sourceRoot":"","sources":["../src/agent_directory.proxy.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,
|
1
|
+
{"version":3,"file":"agent_directory.proxy.js","sourceRoot":"","sources":["../src/agent_directory.proxy.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,kBAAkB,CAAC;AAG3C;;GAEG;AACH,MAAM,OAAO,mBAAoB,SAAQ,SAAS;IAGhD,KAAK,CAAC,YAAY;QAChB,OAAO,IAAI,CAAC,IAAI,CAAC,uBAAuB,EAAE,IAAI,CAAC,CAAC;IAClD,CAAC;;AAJe,qCAAiB,GAAG,iBAAiB,CAAC","sourcesContent":["import {AgentPubKey} from \"@holochain/client\";\nimport {ZomeProxy} from \"@ddd-qc/lit-happ\";\n\n\n/**\n *\n */\nexport class AgentDirectoryProxy extends ZomeProxy {\n static readonly DEFAULT_ZOME_NAME = 'agent_directory';\n\n async getAllAgents(): Promise<AgentPubKey[]> {\n return this.call('get_registered_agents', null);\n }\n}\n"]}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AgentPubKeyB64 } from '@holochain-open-dev/core-types';
|
2
|
-
import { ZomeViewModel } from "@ddd-qc/
|
3
|
-
import { AgentDirectoryProxy } from "./agent_directory.proxy";
|
2
|
+
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
3
|
+
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
4
|
/** */
|
5
5
|
export interface AgentDirectoryPerspective {
|
6
6
|
agents: AgentPubKeyB64[];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { serializeHash } from "@holochain-open-dev/utils";
|
2
|
-
import { ZomeViewModel } from "@ddd-qc/
|
3
|
-
import { AgentDirectoryProxy } from "./agent_directory.proxy";
|
2
|
+
import { ZomeViewModel } from "@ddd-qc/lit-happ";
|
3
|
+
import { AgentDirectoryProxy } from "./bindings/agent_directory.proxy";
|
4
4
|
/**
|
5
5
|
*
|
6
6
|
*/
|
@@ -31,7 +31,7 @@ export class AgentDirectoryZvm extends ZomeViewModel {
|
|
31
31
|
}
|
32
32
|
/** */
|
33
33
|
async probeRegisteredAgents() {
|
34
|
-
let agents = await this.zomeProxy.
|
34
|
+
let agents = await this.zomeProxy.getRegisteredAgents();
|
35
35
|
this._agents = agents.map((agentKey) => serializeHash(agentKey));
|
36
36
|
// Debug add a random string to the perspective
|
37
37
|
// this._agents.push(String.fromCharCode("A".charCodeAt(0) + Math.floor(Math.random() * 26)))
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"agent_directory.zvm.js","sourceRoot":"","sources":["../src/agent_directory.zvm.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,aAAa,EAAC,MAAM,
|
1
|
+
{"version":3,"file":"agent_directory.zvm.js","sourceRoot":"","sources":["../src/agent_directory.zvm.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,aAAa,EAAC,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAC/C,OAAO,EAAC,mBAAmB,EAAC,MAAM,kCAAkC,CAAC;AASrE;;GAEG;AACH,MAAM,OAAO,iBAAkB,SAAQ,aAAa;IAApD;;QASE,mBAAmB;QAEX,YAAO,GAAqB,EAAE,CAAC;IAkCzC,CAAC;IAzCC,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAiC,CAAC;IAChD,CAAC;IAQD,oBAAoB;IAEpB,KAAK;IACL,IAAI,WAAW;QACb,OAAO,EAAC,MAAM,EAAE,IAAI,CAAC,OAAO,EAAC,CAAA;IAC/B,CAAC;IAGD,MAAM;IACI,UAAU;QAClB,IAAI,CAAC,IAAI,CAAC,oBAAoB;YAAE,OAAO,IAAI,CAAC;QAC5C,IAAI,UAAU,GAAG,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAA;QAC7G,OAAO,UAAU,CAAA;IACnB,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,QAAQ;QACZ,MAAM,IAAI,CAAC,qBAAqB,EAAE,CAAA;IACpC,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,qBAAqB;QACzB,IAAI,MAAM,GAAG,MAAM,IAAI,CAAC,SAAS,CAAC,mBAAmB,EAAE,CAAC;QACxD,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC;QACjE,+CAA+C;QAC/C,6FAA6F;QAC7F,IAAI,CAAC,iBAAiB,EAAE,CAAA;IAC1B,CAAC;;AAzCe,4BAAU,GAAG,mBAAmB,CAAC","sourcesContent":["import {AgentPubKeyB64} from '@holochain-open-dev/core-types';\nimport {serializeHash} from \"@holochain-open-dev/utils\";\nimport {ZomeViewModel} from \"@ddd-qc/lit-happ\";\nimport {AgentDirectoryProxy} from \"./bindings/agent_directory.proxy\";\n\n\n/** */\nexport interface AgentDirectoryPerspective {\n agents: AgentPubKeyB64[],\n}\n\n\n/**\n *\n */\nexport class AgentDirectoryZvm extends ZomeViewModel {\n\n static readonly ZOME_PROXY = AgentDirectoryProxy;\n\n get zomeProxy(): AgentDirectoryProxy {\n return this._zomeProxy as AgentDirectoryProxy;\n }\n\n\n /** -- Fields -- */\n\n private _agents: AgentPubKeyB64[] = [];\n\n\n /** -- Methods -- */\n\n /* */\n get perspective(): AgentDirectoryPerspective {\n return {agents: this._agents}\n }\n\n\n /** */\n protected hasChanged(): boolean {\n if (!this._previousPerspective) return true;\n let hasChanged = JSON.stringify(this.perspective.agents) !== JSON.stringify(this._previousPerspective.agents)\n return hasChanged\n }\n\n\n /** */\n async probeAll(): Promise<void> {\n await this.probeRegisteredAgents()\n }\n\n\n /** */\n async probeRegisteredAgents() {\n let agents = await this.zomeProxy.getRegisteredAgents();\n this._agents = agents.map((agentKey) => serializeHash(agentKey));\n // Debug add a random string to the perspective\n // this._agents.push(String.fromCharCode(\"A\".charCodeAt(0) + Math.floor(Math.random() * 26)))\n this.notifySubscribers()\n }\n\n}"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"agent_directory.js","sourceRoot":"","sources":["../../src/bindings/agent_directory.ts"],"names":[],"mappings":"AAAA,0DAA0D","sourcesContent":["/* This file is generated by zits. Do not edit manually */\n\nimport {\n/** Types */\nHoloHash,\nAgentPubKey,\nDnaHash,\nWasmHash,\nEntryHash,\nActionHash,\nAnyDhtHash,\nKitsuneAgent,\nKitsuneSpace,\nInstalledAppId,\nSignature,\nCellId,\nDnaProperties,\nRoleId,\nInstalledCell,\nTimestamp,\nHoloHashed,\n/** Action */\nSignedActionHashed,\nActionHashed,\nActionType,\nAction,\nNewEntryAction,\nDna,\nAgentValidationPkg,\nInitZomesComplete,\nCreateLink,\nDeleteLink,\nOpenChain,\nCloseChain,\nUpdate,\nDelete,\nCreate,\n/** Capabilities */\nCapSecret,\nCapClaim,\nZomeCallCapGrant,\nCapAccess,\nCapGrant,\n/** CounterSigning */\n//CounterSigningSessionData,\n//PreflightRequest,\n//CounterSigningSessionTimes,\n//ActionBase,\n//CounterSigningAgents,\n//PreflightBytes,\n//Role,\n//CountersigningAgentState,\n/** DhtOps */\nDhtOpType,\nDhtOp,\ngetDhtOpType,\ngetDhtOpAction,\ngetDhtOpEntry,\ngetDhtOpSignature,\n/** Entry */\nEntryVisibility,\nAppEntryType,\nEntryType,\nEntryContent,\nEntry,\n/** Record */\nRecord,\nRecordEntry,\n/** admin types */\nZomeName,\nMembraneProof,\nZomeDefinition,\nIntegrityZome,\nCoordinatorZome,\nDnaDefinition,\nResourceBytes,\nResourceMap,\nCellProvisioning,\nHoloHashB64,\nDnaVersionSpec,\nDnaVersionFlexible,\nNetworkSeed,\nZomeLocation,\n } from '@holochain/client';\n\nimport {\n// Common\nDictionary,\nEntryHashB64,\nActionHashB64,\nDhtOpHashB64,\nDnaHashB64,\nAgentPubKeyB64,\nAnyDhtHashB64,\nDhtOpHash,\n// DnaFile\nDnaFile,\nDnaDef,\nZomes,\nWasmCode,\n// entry-details\nEntryDetails,\nRecordDetails,\nDetails,\nDetailsType,\nEntryDhtStatus,\n// Validation\nValidationStatus,\nValidationReceipt,\n } from '@holochain-open-dev/core-types';\n"]}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { AgentPubKey } from '@holochain/client';
|
2
|
+
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
+
/**
|
4
|
+
*
|
5
|
+
*/
|
6
|
+
export declare class AgentDirectoryProxy extends ZomeProxy {
|
7
|
+
static readonly DEFAULT_ZOME_NAME = "agent_directory";
|
8
|
+
getRegisteredAgents(): Promise<AgentPubKey[]>;
|
9
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/* This file is generated by zits. Do not edit manually */
|
2
|
+
import { ZomeProxy } from '@ddd-qc/lit-happ';
|
3
|
+
/**
|
4
|
+
*
|
5
|
+
*/
|
6
|
+
export class AgentDirectoryProxy extends ZomeProxy {
|
7
|
+
async getRegisteredAgents() {
|
8
|
+
return this.call('get_registered_agents', null);
|
9
|
+
}
|
10
|
+
}
|
11
|
+
AgentDirectoryProxy.DEFAULT_ZOME_NAME = "agent_directory";
|
12
|
+
//# sourceMappingURL=agent_directory.proxy.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"agent_directory.proxy.js","sourceRoot":"","sources":["../../src/bindings/agent_directory.proxy.ts"],"names":[],"mappings":"AAAA,0DAA0D;AAgH1D,OAAO,EAAC,SAAS,EAAC,MAAM,kBAAkB,CAAC;AAE3C;;GAEG;AACH,MAAM,OAAO,mBAAoB,SAAQ,SAAS;IAGhD,KAAK,CAAC,mBAAmB;QACxB,OAAO,IAAI,CAAC,IAAI,CAAC,uBAAuB,EAAE,IAAI,CAAC,CAAC;IACjD,CAAC;;AAJe,qCAAiB,GAAG,iBAAiB,CAAA","sourcesContent":["/* This file is generated by zits. Do not edit manually */\n\nimport {} from './agent_directory';\nimport {\n/** Types */\nHoloHash,\nAgentPubKey,\nDnaHash,\nWasmHash,\nEntryHash,\nActionHash,\nAnyDhtHash,\nKitsuneAgent,\nKitsuneSpace,\nInstalledAppId,\nSignature,\nCellId,\nDnaProperties,\nRoleId,\nInstalledCell,\nTimestamp,\nHoloHashed,\n/** Action */\nSignedActionHashed,\nActionHashed,\nActionType,\nAction,\nNewEntryAction,\nDna,\nAgentValidationPkg,\nInitZomesComplete,\nCreateLink,\nDeleteLink,\nOpenChain,\nCloseChain,\nUpdate,\nDelete,\nCreate,\n/** Capabilities */\nCapSecret,\nCapClaim,\nZomeCallCapGrant,\nCapAccess,\nCapGrant,\n/** CounterSigning */\n//CounterSigningSessionData,\n//PreflightRequest,\n//CounterSigningSessionTimes,\n//ActionBase,\n//CounterSigningAgents,\n//PreflightBytes,\n//Role,\n//CountersigningAgentState,\n/** DhtOps */\nDhtOpType,\nDhtOp,\ngetDhtOpType,\ngetDhtOpAction,\ngetDhtOpEntry,\ngetDhtOpSignature,\n/** Entry */\nEntryVisibility,\nAppEntryType,\nEntryType,\nEntryContent,\nEntry,\n/** Record */\nRecord,\nRecordEntry,\n/** admin types */\nZomeName,\nMembraneProof,\nZomeDefinition,\nIntegrityZome,\nCoordinatorZome,\nDnaDefinition,\nResourceBytes,\nResourceMap,\nCellProvisioning,\nHoloHashB64,\nDnaVersionSpec,\nDnaVersionFlexible,\nNetworkSeed,\nZomeLocation,\n } from '@holochain/client';\n\nimport {\n// Common\nDictionary,\nEntryHashB64,\nActionHashB64,\nDhtOpHashB64,\nDnaHashB64,\nAgentPubKeyB64,\nAnyDhtHashB64,\nDhtOpHash,\n// DnaFile\nDnaFile,\nDnaDef,\nZomes,\nWasmCode,\n// entry-details\nEntryDetails,\nRecordDetails,\nDetails,\nDetailsType,\nEntryDhtStatus,\n// Validation\nValidationStatus,\nValidationReceipt,\n } from '@holochain-open-dev/core-types';\n\nimport {ZomeProxy} from '@ddd-qc/lit-happ';\n\n/**\n *\n */\nexport class AgentDirectoryProxy extends ZomeProxy {\n static readonly DEFAULT_ZOME_NAME = \"agent_directory\"\n \n async getRegisteredAgents(): Promise<AgentPubKey[]> {\n \treturn this.call('get_registered_agents', null);\n }\n\n\n}\n"]}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { __decorate } from "tslib";
|
2
2
|
import { html } from "lit";
|
3
3
|
import { state } from "lit/decorators.js";
|
4
|
-
import { ZomeElement } from "@ddd-qc/
|
4
|
+
import { ZomeElement } from "@ddd-qc/lit-happ";
|
5
5
|
import { AgentDirectoryZvm } from "../agent_directory.zvm";
|
6
6
|
/**
|
7
7
|
* @element agent-directory-list
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"agent-directory-list.js","sourceRoot":"","sources":["../../src/elements/agent-directory-list.ts"],"names":[],"mappings":";AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAW,KAAK,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,
|
1
|
+
{"version":3,"file":"agent-directory-list.js","sourceRoot":"","sources":["../../src/elements/agent-directory-list.ts"],"names":[],"mappings":";AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAW,KAAK,EAAC,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,kBAAkB,CAAC;AAC7C,OAAO,EAA4B,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AAEpF;;GAEG;AACH,MAAM,OAAO,kBAAmB,SAAQ,WAAyD;IAC/F,WAAW;IACX;QACE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;QAI7C,mBAAmB;QAEF,iBAAY,GAAG,KAAK,CAAC;IALtC,CAAC;IASD,oBAAoB;IAEpB,mCAAmC;IACnC,KAAK,CAAC,YAAY;QAChB,iDAAiD;QACjD,MAAM,IAAI,CAAC,OAAO,EAAE,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAGD,kCAAkC;IAClC,KAAK,CAAC,OAAO,CAAC,iBAAsB;QAClC,MAAM;IACR,CAAC;IAGD,MAAM;IACN,KAAK,CAAC,OAAO,CAAC,EAAQ;QACpB,iDAAiD;QACjD,MAAM,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;IAC7B,CAAC;IAGD,MAAM;IACN,MAAM;QACJ,OAAO,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;QAEnD,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE;YACtB,OAAO,IAAI,CAAA,yBAAyB,CAAC;SACtC;QAED,YAAY;QACZ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,GAAG,CACvD,CAAC,CAAC,MAAM,EAAE,UAAU,CAAC,EAAE,EAAE;YACvB,6CAA6C;YAC7C,OAAO,IAAI,CAAC,cAAc,UAAU,KAAK,UAAU,OAAO,CAAA;QAC5D,CAAC,CACJ,CAAA;QAED,iBAAiB;QACjB,OAAO,IAAI,CAAA;;YAEH,OAAO;;KAEd,CAAC;IACJ,CAAC;CACF;AAlDU;IAAR,KAAK,EAAE;wDAA8B","sourcesContent":["import {html} from \"lit\";\nimport {property, state} from \"lit/decorators.js\";\nimport {ZomeElement} from \"@ddd-qc/lit-happ\";\nimport {AgentDirectoryPerspective, AgentDirectoryZvm} from \"../agent_directory.zvm\";\n\n/**\n * @element agent-directory-list\n */\nexport class AgentDirectoryList extends ZomeElement<AgentDirectoryPerspective, AgentDirectoryZvm> {\n /** Ctor */\n constructor() {\n super(AgentDirectoryZvm.DEFAULT_ZOME_NAME);\n }\n\n\n /** -- Fields -- */\n\n @state() private _initialized = false;\n\n\n\n /** -- Methods -- */\n\n /** After first call to render() */\n async firstUpdated() {\n //this._viewModel.subscribe(this, 'perspective');\n await this.refresh();\n this._initialized = true;\n }\n\n\n /** After each call to render() */\n async updated(changedProperties: any) {\n // n/a\n }\n\n\n /** */\n async refresh(_e?: any) {\n //console.log(\"refresh(): Pulling data from DHT\")\n await this._zvm.probeAll();\n }\n\n\n /** */\n render() {\n console.log(\"agent-directory-list render() START\");\n\n if (!this._initialized) {\n return html`<span>Loading...</span>`;\n }\n\n /* Agents */\n const agentLi = Object.entries(this.perspective.agents).map(\n ([_index, agentIdB64]) => {\n //console.log(\"\" + index + \". \" + agentIdB64)\n return html `<li value=\"${agentIdB64}\">${agentIdB64}</li>`\n }\n )\n\n /** render all */\n return html` \n <ul>\n ${agentLi}\n </ul>\n `;\n }\n}\n"]}
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,iCAAiC,CAAC","sourcesContent":["export * from './agent_directory.zvm';\nexport * from './bindings/agent_directory.proxy';\nexport * from './elements/agent-directory-list';\n"]}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ddd-qc/agent-directory",
|
3
|
-
"version": "4.165.
|
3
|
+
"version": "4.165.5",
|
4
4
|
"license" : "CAL-1.0",
|
5
5
|
"keywords": ["holochain", "zome"],
|
6
6
|
"main": "./dist/index.js",
|
@@ -25,10 +25,11 @@
|
|
25
25
|
"typescript": "4.3.5"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@
|
28
|
+
"@ddd-qc/lit-happ": "0.9.7",
|
29
|
+
"@ddd-qc/cell-proxy": "0.9.7",
|
30
|
+
"@holochain/client": "^0.9.3",
|
29
31
|
"@holochain-open-dev/core-types": "^0.5.0",
|
30
32
|
"@holochain-open-dev/utils": "0.4.0",
|
31
|
-
"@ddd-qc/dna-client": "0.8.8",
|
32
33
|
"lit": "^2.2.0"
|
33
34
|
},
|
34
35
|
"type": "module",
|