@indexnetwork/protocol 10.1.3-rc.453.1 → 11.0.1-rc.455.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/CHANGELOG.md +1 -0
- package/dist/capabilities/contacts.facade.d.ts +1 -1
- package/dist/capabilities/integrations.facade.d.ts +1 -1
- package/dist/capabilities/opportunities.facade.d.ts +2 -1
- package/dist/capabilities/opportunities.facade.js +1 -1
- package/dist/capabilities/participant-agents.facade.d.ts +2 -2
- package/dist/capabilities/participant-agents.facade.js +1 -1
- package/dist/capabilities/questions.facade.d.ts +2 -2
- package/dist/capabilities/questions.facade.js +1 -1
- package/dist/chat/chat-streaming.types.d.ts +1 -1
- package/dist/chat/chat.agent.d.ts +1 -1
- package/dist/contacts/domain/contact.types.d.ts +0 -2
- package/dist/contacts/domain/contact.types.js +0 -2
- package/dist/contacts/domain/index.d.ts +0 -2
- package/dist/contacts/index.d.ts +1 -2
- package/dist/contacts/index.js +1 -2
- package/dist/contacts/ports/contact.tools.port.d.ts +3 -5
- package/dist/contacts/ports/contact.tools.port.js +3 -5
- package/dist/contacts/ports/index.d.ts +0 -2
- package/dist/contacts/ports/index.js +0 -2
- package/dist/enrichment/enrichment.graph.d.ts +4 -4
- package/dist/enrichment/enrichment.state.d.ts +1 -1
- package/dist/index.d.ts +8 -8
- package/dist/index.js +3 -3
- package/dist/integrations/domain/index.d.ts +0 -2
- package/dist/integrations/domain/integration.types.d.ts +0 -2
- package/dist/integrations/domain/integration.types.js +0 -2
- package/dist/integrations/index.d.ts +1 -2
- package/dist/integrations/index.js +1 -2
- package/dist/integrations/ports/index.d.ts +0 -2
- package/dist/integrations/ports/index.js +0 -2
- package/dist/integrations/ports/integration.tools.port.d.ts +3 -5
- package/dist/integrations/ports/integration.tools.port.js +3 -5
- package/dist/mcp/elicitation.builder.d.ts +1 -1
- package/dist/mcp/elicitation.dispatcher.d.ts +1 -1
- package/dist/opportunity/application/opportunity.graph.d.ts +14 -8
- package/dist/opportunity/application/opportunity.graph.js +26 -14
- package/dist/opportunity/discovery.env.d.ts +6 -0
- package/dist/opportunity/discovery.env.js +30 -0
- package/dist/opportunity/discriminator/discriminator.adjustments.d.ts +1 -1
- package/dist/opportunity/discriminator/discriminator.push.d.ts +1 -1
- package/dist/opportunity/discriminator/discriminator.question.d.ts +1 -1
- package/dist/opportunity/domain/opportunity.state.d.ts +1 -3
- package/dist/opportunity/public/index.d.ts +2 -1
- package/dist/opportunity/public/index.js +1 -1
- package/dist/participant-agents/domain/index.d.ts +0 -1
- package/dist/participant-agents/index.d.ts +2 -6
- package/dist/participant-agents/index.js +2 -6
- package/dist/participant-agents/ports/agent.tools.port.d.ts +3 -5
- package/dist/participant-agents/ports/agent.tools.port.js +3 -5
- package/dist/participant-agents/ports/index.d.ts +1 -2
- package/dist/participant-agents/ports/index.js +1 -2
- package/dist/questions/domain/index.d.ts +0 -1
- package/dist/questions/domain/index.js +0 -1
- package/dist/questions/domain/question.schema.d.ts +1 -3
- package/dist/questions/domain/question.schema.js +1 -3
- package/dist/questions/index.d.ts +1 -6
- package/dist/questions/index.js +1 -6
- package/dist/questions/ports/question.generator.port.d.ts +1 -2
- package/dist/questions/ports/question.persistence.port.d.ts +1 -2
- package/dist/questions/public/index.d.ts +1 -1
- package/dist/shared/agent/tool.helpers.d.ts +6 -6
- package/dist/shared/interfaces/database.interface.d.ts +2 -0
- package/dist/shared/schemas/pending-question.schema.d.ts +1 -1
- package/dist/signals/application/intent.clarifier.js +1 -1
- package/dist/signals/application/intent.graph.d.ts +1 -1
- package/dist/signals/application/intent.verifier.d.ts +6 -6
- package/package.json +1 -1
- package/dist/shared/interfaces/agent.interface.d.ts +0 -17
- package/dist/shared/interfaces/agent.interface.js +0 -15
- package/dist/shared/interfaces/contact.interface.d.ts +0 -9
- package/dist/shared/interfaces/contact.interface.js +0 -8
- package/dist/shared/interfaces/integration.interface.d.ts +0 -9
- package/dist/shared/interfaces/integration.interface.js +0 -8
- package/dist/shared/interfaces/question-generator.interface.d.ts +0 -5
- package/dist/shared/interfaces/question-generator.interface.js +0 -1
- package/dist/shared/interfaces/questioner.interface.d.ts +0 -5
- package/dist/shared/interfaces/questioner.interface.js +0 -1
- package/dist/shared/schemas/question.schema.d.ts +0 -5
- package/dist/shared/schemas/question.schema.js +0 -5
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated — compatibility shim.
|
|
3
|
-
*
|
|
4
|
-
* Canonical types have moved to the participant-agents domain-first module:
|
|
5
|
-
* - Domain entity types → participant-agents/domain
|
|
6
|
-
* - AgentDatabase port → participant-agents/ports
|
|
7
|
-
*
|
|
8
|
-
* This re-export exists solely to avoid breaking imports that pre-date IND-548.
|
|
9
|
-
* Import directly from participant-agents/domain or participant-agents/ports
|
|
10
|
-
* for new code, or use the capabilities/participant-agents.facade.ts surface
|
|
11
|
-
* from outside the package.
|
|
12
|
-
*
|
|
13
|
-
* IND-548: migrated to src/participant-agents/domain/ and src/participant-agents/ports/.
|
|
14
|
-
*/
|
|
15
|
-
export type { AgentRecord, AgentTransportRecord, AgentPermissionRecord, AgentWithRelations, CreateAgentInput, CreateTransportInput, GrantPermissionInput, } from '../../participant-agents/domain/index.js';
|
|
16
|
-
export { SYSTEM_AGENT_IDS } from '../../participant-agents/domain/index.js';
|
|
17
|
-
export type { AgentDatabase } from '../../participant-agents/ports/index.js';
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated — compatibility shim.
|
|
3
|
-
*
|
|
4
|
-
* Canonical types have moved to the participant-agents domain-first module:
|
|
5
|
-
* - Domain entity types → participant-agents/domain
|
|
6
|
-
* - AgentDatabase port → participant-agents/ports
|
|
7
|
-
*
|
|
8
|
-
* This re-export exists solely to avoid breaking imports that pre-date IND-548.
|
|
9
|
-
* Import directly from participant-agents/domain or participant-agents/ports
|
|
10
|
-
* for new code, or use the capabilities/participant-agents.facade.ts surface
|
|
11
|
-
* from outside the package.
|
|
12
|
-
*
|
|
13
|
-
* IND-548: migrated to src/participant-agents/domain/ and src/participant-agents/ports/.
|
|
14
|
-
*/
|
|
15
|
-
export { SYSTEM_AGENT_IDS } from '../../participant-agents/domain/index.js';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Canonical location: contacts/ports
|
|
3
|
-
* Retained for backward compatibility during IND-549 migration.
|
|
4
|
-
*
|
|
5
|
-
* IND-549: types and interfaces migrated to src/contacts/domain and
|
|
6
|
-
* src/contacts/ports. This file is a thin compatibility shim.
|
|
7
|
-
*/
|
|
8
|
-
export type { ContactInput, ContactResult, ContactImportResult, ContactEntry, ContactSearchResult, } from "../../contacts/domain/index.js";
|
|
9
|
-
export type { ContactServiceAdapter } from "../../contacts/ports/index.js";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Canonical location: contacts/ports
|
|
3
|
-
* Retained for backward compatibility during IND-549 migration.
|
|
4
|
-
*
|
|
5
|
-
* IND-549: types and interfaces migrated to src/contacts/domain and
|
|
6
|
-
* src/contacts/ports. This file is a thin compatibility shim.
|
|
7
|
-
*/
|
|
8
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Canonical location: integrations/ports
|
|
3
|
-
* Retained for backward compatibility during IND-549 migration.
|
|
4
|
-
*
|
|
5
|
-
* IND-549: types and interfaces migrated to src/integrations/domain and
|
|
6
|
-
* src/integrations/ports. This file is a thin compatibility shim.
|
|
7
|
-
*/
|
|
8
|
-
export type { IntegrationSession, IntegrationSessionOptions, ToolActionResponse, IntegrationConnection, } from "../../integrations/domain/index.js";
|
|
9
|
-
export type { IntegrationAdapter } from "../../integrations/ports/index.js";
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Canonical location: integrations/ports
|
|
3
|
-
* Retained for backward compatibility during IND-549 migration.
|
|
4
|
-
*
|
|
5
|
-
* IND-549: types and interfaces migrated to src/integrations/domain and
|
|
6
|
-
* src/integrations/ports. This file is a thin compatibility shim.
|
|
7
|
-
*/
|
|
8
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @deprecated Canonical location: questions/ports/question.persistence.port — retained
|
|
3
|
-
* for backward compatibility (IND-547).
|
|
4
|
-
*/
|
|
5
|
-
export type { PersistableQuestion, PersistedQuestion, QuestionFilters, ChatQuestionAnswerOutcome, ChatQuestionsHost, QuestionerDatabase, } from "../../questions/ports/question.persistence.port.js";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|