@otto-code/client 0.5.4 → 0.5.5

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.
@@ -1162,6 +1162,7 @@ export declare class DaemonClient {
1162
1162
  glowA: string;
1163
1163
  glowB: string;
1164
1164
  };
1165
+ personalityName?: string;
1165
1166
  requestId?: string;
1166
1167
  }): Promise<ArtifactCreatePayload>;
1167
1168
  artifactUpdate(options: {
@@ -3604,6 +3604,7 @@ export class DaemonClient {
3604
3604
  ...(options.thinkingOptionId ? { thinkingOptionId: options.thinkingOptionId } : {}),
3605
3605
  ...(options.systemPrompt ? { systemPrompt: options.systemPrompt } : {}),
3606
3606
  ...(options.spinner ? { spinner: options.spinner } : {}),
3607
+ ...(options.personalityName ? { personalityName: options.personalityName } : {}),
3607
3608
  },
3608
3609
  responseType: "artifact.create.response",
3609
3610
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otto-code/client",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Otto client SDK package",
5
5
  "files": [
6
6
  "dist",
@@ -35,8 +35,8 @@
35
35
  "test": "vitest run"
36
36
  },
37
37
  "dependencies": {
38
- "@otto-code/protocol": "0.5.4",
39
- "@otto-code/relay": "0.5.4",
38
+ "@otto-code/protocol": "0.5.5",
39
+ "@otto-code/relay": "0.5.5",
40
40
  "zod": "^4.4.3"
41
41
  },
42
42
  "devDependencies": {