@metad/contracts 3.6.2 → 3.7.0
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 +2 -2
- package/index.cjs.js +260 -464
- package/index.esm.js +245 -465
- package/package.json +2 -2
- package/src/agent/graph.d.ts +3 -0
- package/src/agent/variables.d.ts +4 -2
- package/src/ai/index.d.ts +3 -0
- package/src/ai/knowledge-doc-chunk.model.d.ts +1 -0
- package/src/ai/knowledge-doc.model.d.ts +33 -3
- package/src/ai/knowledgebase.model.d.ts +13 -1
- package/src/ai/middleware.model.d.ts +18 -0
- package/src/ai/skill.model.d.ts +181 -0
- package/src/ai/types.d.ts +33 -1
- package/src/ai/xpert-agent.model.d.ts +12 -0
- package/src/ai/xpert-table.model.d.ts +84 -0
- package/src/ai/xpert-tool-mcp.model.d.ts +5 -0
- package/src/ai/xpert-tool.model.d.ts +7 -0
- package/src/ai/xpert-workflow.model.d.ts +42 -7
- package/src/ai/xpert.model.d.ts +25 -3
- package/src/ai/xpert.utils.d.ts +0 -3
- package/src/analytics/gateway.d.ts +1 -0
- package/src/analytics/indicator.d.ts +5 -6
- package/src/analytics/semantic-model-entity.d.ts +1 -0
- package/src/analytics/semantic-model-member.d.ts +3 -0
- package/src/analytics/semantic-model.d.ts +8 -0
- package/src/plugin.d.ts +1 -1
- package/src/types.d.ts +6 -2
package/README.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# XpertAI Platform Contracts Types
|
|
2
2
|
|
|
3
|
-
Contacts is a package that contains all the types used in the
|
|
3
|
+
Contacts is a package that contains all the types used in the XpertAI projects.
|