@aexhq/sdk 1.0.2-canary → 1.0.3-canary

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/cli.mjs CHANGED
@@ -6859,6 +6859,11 @@ async function resolveStartConfig(io2, args) {
6859
6859
  if (!args.model) {
6860
6860
  return { ok: false, error: startValidationMessage("--model", "is required when --config is not provided") };
6861
6861
  }
6862
+ try {
6863
+ parseModelSlug(args.model, "--model");
6864
+ } catch (err2) {
6865
+ return { ok: false, error: startValidationMessage("--model", err2 instanceof Error ? err2.message : String(err2)) };
6866
+ }
6862
6867
  model = args.model;
6863
6868
  if (args.prompts.length === 0)
6864
6869
  return { ok: false, error: startValidationMessage("--prompt", "is required (repeatable)") };
@@ -1 +1 @@
1
- 59deb53306fd371f98a8bd0895bf00e900b246af40c7e07f64ae20503366547e cli.mjs
1
+ 421b0b2b218564bbea270556e101a5debc6df6c845c3a7f68afa5050bd54f6fb cli.mjs
package/dist/version.d.ts CHANGED
@@ -6,4 +6,4 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export declare const SDK_VERSION = "1.0.2-canary";
9
+ export declare const SDK_VERSION = "1.0.3-canary";
package/dist/version.js CHANGED
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export const SDK_VERSION = "1.0.2-canary";
9
+ export const SDK_VERSION = "1.0.3-canary";
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexhq/sdk",
3
- "version": "1.0.2-canary",
3
+ "version": "1.0.3-canary",
4
4
  "description": "TypeScript SDK for autonomous agent sessions with managed Vercel AI Gateway model access.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -53,6 +53,6 @@
53
53
  "ignore": "7.0.5"
54
54
  },
55
55
  "aexRelease": {
56
- "sourceSha": "e37c72c1376847b0d803e1979ef8182b40c5f3ac"
56
+ "sourceSha": "bf8e948b1260501ebb830ced1d73c1eb4b69231c"
57
57
  }
58
58
  }