@herd-labs/sdk 0.0.5 → 0.2.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/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/src/config.d.ts +17 -5
- package/dist/src/config.js +12 -2
- package/dist/src/live/ActionsServiceLive.js +10 -10
- package/dist/src/live/AdaptersServiceLive.js +7 -7
- package/dist/src/live/AgentSafesServiceLive.js +4 -4
- package/dist/src/live/AgentWalletsServiceLive.d.ts +2 -2
- package/dist/src/live/AgentWalletsServiceLive.js +3 -3
- package/dist/src/live/AgentWorkflowsServiceLive.d.ts +2 -2
- package/dist/src/live/AgentWorkflowsServiceLive.js +12 -8
- package/dist/src/live/AuthServiceLive.d.ts +2 -2
- package/dist/src/live/AuthServiceLive.js +8 -7
- package/dist/src/live/BookmarksServiceLive.d.ts +2 -2
- package/dist/src/live/BookmarksServiceLive.js +7 -7
- package/dist/src/live/CodeBlocksServiceLive.d.ts +2 -2
- package/dist/src/live/CodeBlocksServiceLive.js +1 -2
- package/dist/src/live/CollectionsServiceLive.d.ts +2 -2
- package/dist/src/live/CollectionsServiceLive.js +5 -5
- package/dist/src/live/ContractsServiceLive.d.ts +2 -2
- package/dist/src/live/ContractsServiceLive.js +5 -5
- package/dist/src/live/DocsServiceLive.d.ts +2 -2
- package/dist/src/live/DocsServiceLive.js +3 -3
- package/dist/src/live/GroupsServiceLive.d.ts +2 -2
- package/dist/src/live/GroupsServiceLive.js +7 -7
- package/dist/src/live/HalServiceLive.d.ts +2 -2
- package/dist/src/live/HalServiceLive.js +3 -3
- package/dist/src/live/TransactionsServiceLive.d.ts +2 -2
- package/dist/src/live/TransactionsServiceLive.js +4 -4
- package/dist/src/live/WalletsServiceLive.js +5 -5
- package/dist/src/live/http.d.ts +1 -4
- package/dist/src/live/http.js +15 -4
- package/dist/src/schemas/actions.d.ts +16 -16
- package/dist/src/schemas/adapters.d.ts +2 -2
- package/dist/src/schemas/agent-wallets.d.ts +19 -19
- package/dist/src/schemas/agent-workflows.d.ts +74 -199
- package/dist/src/schemas/agent-workflows.js +32 -25
- package/dist/src/schemas/auth.d.ts +22 -12
- package/dist/src/schemas/auth.js +16 -5
- package/dist/src/schemas/bookmarks.d.ts +18 -18
- package/dist/src/schemas/codeblocks.d.ts +8 -8
- package/dist/src/schemas/collections.d.ts +8 -8
- package/dist/src/schemas/contracts.d.ts +13 -13
- package/dist/src/schemas/hal.d.ts +10 -10
- package/dist/src/schemas/transactions.d.ts +44 -44
- package/dist/src/schemas/wallets.d.ts +20 -20
- package/dist/src/services/AgentWorkflowsService.d.ts +8 -7
- package/dist/src/services/AuthService.d.ts +3 -2
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@herd-labs/sdk",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"typescript": "^5"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
+
"@better-auth/api-key": "^1.6.9",
|
|
34
35
|
"@effect/cli": "0.69.0",
|
|
35
36
|
"@effect/platform": "^0.90.0",
|
|
36
37
|
"@effect/cluster": "^0.45.0",
|