chore(sdk): align all adapters on published @hanzo/ai@^0.2.0
5 early adapters (docusign/meetings/notion/slack/teams) pinned @hanzo/ai@^0.1.1, which resolved to the LOCAL packages/ai AgentKit (no createAiClient) — the reason they carry stand-in client.ts files. Bump them to ^0.2.0 so every adapter's declared dep points at the real published headless client. Tests unchanged and green (docusign 103, meetings 70, notion 104, slack 68, teams 69). Remaining SDK cleanup (separate pass): rename the extension's own @hanzo/ai AgentKit → @hanzo/agentkit to end the name collision, then replace each adapter's stand-in client.ts with a one-line re-export of @hanzo/ai.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@hanzo/docusign",
|
||||
"version": "0.1.0",
|
||||
"description": "Hanzo AI for DocuSign — AI over agreements and envelopes: summarize, extract key terms, risk-flag clauses, and draft memos. An Extension App panel plus a Connect webhook that auto-summarizes completed envelopes, built on @hanzo/ai and @hanzo/iam over the api.hanzo.ai gateway.",
|
||||
"description": "Hanzo AI for DocuSign \u2014 AI over agreements and envelopes: summarize, extract key terms, risk-flag clauses, and draft memos. An Extension App panel plus a Connect webhook that auto-summarizes completed envelopes, built on @hanzo/ai and @hanzo/iam over the api.hanzo.ai gateway.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
@@ -12,7 +12,7 @@
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hanzo/ai": "0.1.1",
|
||||
"@hanzo/ai": "^0.2.0",
|
||||
"@hanzo/iam": "0.13.2",
|
||||
"pdfjs-dist": "4.10.38"
|
||||
},
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@hanzo/meetings",
|
||||
"version": "0.1.0",
|
||||
"description": "Hanzo AI for Zoom + Google Meet — an in-meeting assistant that summarizes calls, extracts action items, drafts follow-ups, and answers questions about the meeting. A Zoom App and a Google Meet add-on over one shared panel, wired to the api.hanzo.ai gateway and hanzo.id IAM.",
|
||||
"description": "Hanzo AI for Zoom + Google Meet \u2014 an in-meeting assistant that summarizes calls, extracts action items, drafts follow-ups, and answers questions about the meeting. A Zoom App and a Google Meet add-on over one shared panel, wired to the api.hanzo.ai gateway and hanzo.id IAM.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
@@ -13,7 +13,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@googleworkspace/meet-addons": "1.2.0",
|
||||
"@hanzo/ai": "0.1.1",
|
||||
"@hanzo/ai": "^0.2.0",
|
||||
"@hanzo/iam": "0.13.2",
|
||||
"@zoom/appssdk": "0.16.39"
|
||||
},
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@hanzo/notion",
|
||||
"version": "0.1.0",
|
||||
"description": "Hanzo AI for Notion — summarize a page, draft/expand content, extract action items into a database, and ask about a page/workspace. Model calls route through the api.hanzo.ai gateway; Notion access via OAuth2 (public integration) + REST v1 with a server-side token proxy.",
|
||||
"description": "Hanzo AI for Notion \u2014 summarize a page, draft/expand content, extract action items into a database, and ask about a page/workspace. Model calls route through the api.hanzo.ai gateway; Notion access via OAuth2 (public integration) + REST v1 with a server-side token proxy.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
@@ -12,7 +12,7 @@
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hanzo/ai": "^0.1.1",
|
||||
"@hanzo/ai": "^0.2.0",
|
||||
"@hanzo/iam": "^0.13.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@hanzo/slack",
|
||||
"version": "0.1.0",
|
||||
"description": "Hanzo AI in Slack — slash command, App Home assistant panel, message shortcuts, and interactivity, built on @hanzo/ai, @hanzo/iam, and @hanzo/cards.",
|
||||
"description": "Hanzo AI in Slack \u2014 slash command, App Home assistant panel, message shortcuts, and interactivity, built on @hanzo/ai, @hanzo/iam, and @hanzo/cards.",
|
||||
"type": "module",
|
||||
"main": "./dist/server.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -19,7 +19,7 @@
|
||||
"start": "node dist/server.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hanzo/ai": "^0.1.1",
|
||||
"@hanzo/ai": "^0.2.0",
|
||||
"@hanzo/cards": "workspace:*",
|
||||
"@hanzo/iam": "^0.13.2",
|
||||
"@slack/bolt": "^4.7.3"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@hanzo/teams",
|
||||
"version": "0.1.0",
|
||||
"description": "Hanzo AI for Microsoft Teams — a Bot Framework app with chat, message extensions, and Adaptive Card actions, built on @hanzo/ai, @hanzo/iam, and @hanzo/cards.",
|
||||
"description": "Hanzo AI for Microsoft Teams \u2014 a Bot Framework app with chat, message extensions, and Adaptive Card actions, built on @hanzo/ai, @hanzo/iam, and @hanzo/cards.",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
@@ -32,7 +32,7 @@
|
||||
"package": "node manifest/build.mjs"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hanzo/ai": "^0.1.1",
|
||||
"@hanzo/ai": "^0.2.0",
|
||||
"@hanzo/cards": "workspace:*",
|
||||
"@hanzo/iam": "^0.13.2",
|
||||
"botbuilder": "^4.23.3",
|
||||
|
||||
Generated
+10
-3163
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user