@indexnetwork/protocol 21.0.0-rc.487.1 → 21.0.0-rc.488.1
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/contacts/contact.repository.port.d.ts +1 -1
- package/dist/contacts/contact.repository.port.js +1 -1
- package/dist/contacts/contact.tools.d.ts +1 -1
- package/dist/contacts/contact.tools.js +1 -1
- package/dist/contacts/contact.tools.port.d.ts +2 -3
- package/dist/contacts/contact.tools.port.js +2 -3
- package/dist/contacts/contact.types.d.ts +2 -2
- package/dist/contacts/contact.types.js +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — ContactServiceAdapter persistence port.
|
|
3
3
|
*
|
|
4
4
|
* Injected boundary for contact management persistence. Implemented by
|
|
5
5
|
* the host application and passed into the protocol layer at the composition root.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — ContactServiceAdapter persistence port.
|
|
3
3
|
*
|
|
4
4
|
* Injected boundary for contact management persistence. Implemented by
|
|
5
5
|
* the host application and passed into the protocol layer at the composition root.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — createContactTools canonical implementation.
|
|
3
3
|
*
|
|
4
4
|
* Creates contact management tools for the chat agent. Enables listing,
|
|
5
5
|
* removing, and searching the user's personal network.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — createContactTools canonical implementation.
|
|
3
3
|
*
|
|
4
4
|
* Creates contact management tools for the chat agent. Enables listing,
|
|
5
5
|
* removing, and searching the user's personal network.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — ContactToolDeps tool host port.
|
|
3
3
|
*
|
|
4
4
|
* Narrow port type consumed by createContactTools. The host provides a
|
|
5
5
|
* ContactServiceAdapter.
|
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
* Its shape remains structurally equivalent to the matching
|
|
12
12
|
* ToolRegistryCompositionDeps fields.
|
|
13
13
|
*
|
|
14
|
-
*
|
|
15
|
-
* contacts capability's dedicated ports layer.
|
|
14
|
+
* This root-level contract keeps the capability dependency surface compact.
|
|
16
15
|
*/
|
|
17
16
|
import type { ContactServiceAdapter } from "./contact.repository.port.js";
|
|
18
17
|
/** Host capabilities consumed by contact tools. */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — ContactToolDeps tool host port.
|
|
3
3
|
*
|
|
4
4
|
* Narrow port type consumed by createContactTools. The host provides a
|
|
5
5
|
* ContactServiceAdapter.
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
* Its shape remains structurally equivalent to the matching
|
|
12
12
|
* ToolRegistryCompositionDeps fields.
|
|
13
13
|
*
|
|
14
|
-
*
|
|
15
|
-
* contacts capability's dedicated ports layer.
|
|
14
|
+
* This root-level contract keeps the capability dependency surface compact.
|
|
16
15
|
*/
|
|
17
16
|
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — pure contact entity value types.
|
|
3
3
|
*
|
|
4
4
|
* No application logic, no LLM calls, no cross-capability imports.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
6
|
+
* Canonical contact types for the contacts capability.
|
|
7
7
|
*/
|
|
8
8
|
/** Contact with user details, as returned by listContacts. */
|
|
9
9
|
export interface ContactEntry {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* contacts
|
|
2
|
+
* contacts — pure contact entity value types.
|
|
3
3
|
*
|
|
4
4
|
* No application logic, no LLM calls, no cross-capability imports.
|
|
5
5
|
*
|
|
6
|
-
*
|
|
6
|
+
* Canonical contact types for the contacts capability.
|
|
7
7
|
*/
|
|
8
8
|
export {};
|