@axlsdk/axl 0.7.1 → 0.7.3

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -30,7 +30,7 @@ src/
30
30
  workflows/
31
31
  handle-ticket.ts — orchestrates support + billing agents
32
32
 
33
- axl.config.ts — re-exports runtime for Axl Studio
33
+ axl.config.mts — re-exports runtime for Axl Studio
34
34
  ```
35
35
 
36
36
  ### Config
@@ -119,7 +119,7 @@ runtime.registerTool(lookupOrder);
119
119
  ```
120
120
 
121
121
  ```typescript
122
- // axl.config.ts — thin entry point for Axl Studio
122
+ // axl.config.mts — thin entry point for Axl Studio
123
123
  import { runtime } from './src/runtime.js';
124
124
  export default runtime;
125
125
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axlsdk/axl",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "TypeScript SDK for orchestrating Agentic Systems",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",