syllable-sdk 0.1.0-alpha.31 → 0.1.0-alpha.32

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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "syllable-sdk",
5
- "version": "0.1.0-alpha.31",
5
+ "version": "0.1.0-alpha.32",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -27,8 +27,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
27
27
  export declare const SDK_METADATA: {
28
28
  readonly language: "typescript";
29
29
  readonly openapiDocVersion: "0.0.2";
30
- readonly sdkVersion: "0.1.0-alpha.31";
30
+ readonly sdkVersion: "0.1.0-alpha.32";
31
31
  readonly genVersion: "2.493.21";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.31 2.493.21 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.32 2.493.21 0.0.2 syllable-sdk";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -35,8 +35,8 @@ function serverURLFromOptions(options) {
35
35
  exports.SDK_METADATA = {
36
36
  language: "typescript",
37
37
  openapiDocVersion: "0.0.2",
38
- sdkVersion: "0.1.0-alpha.31",
38
+ sdkVersion: "0.1.0-alpha.32",
39
39
  genVersion: "2.493.21",
40
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.31 2.493.21 0.0.2 syllable-sdk",
40
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.32 2.493.21 0.0.2 syllable-sdk",
41
41
  };
42
42
  //# sourceMappingURL=config.js.map
@@ -111,8 +111,7 @@
111
111
  "sdk-docs/Tools",
112
112
  "sdk-docs/Services",
113
113
  "sdk-docs/Channels",
114
- "sdk-docs/Targets",
115
- "sdk-docs/Directory"
114
+ "sdk-docs/Targets"
116
115
  ]
117
116
  },
118
117
  {
@@ -50,7 +50,7 @@ export type AgentResponse = {
50
50
  */
51
51
  languages?: Array<string> | undefined;
52
52
  /**
53
- * Custom context variables for the conversation session. Should be prefixed with "vars.".
53
+ * Custom context variables for the conversation session. Keys should be prefixed with "vars.".
54
54
  */
55
55
  variables: {
56
56
  [k: string]: string;
package/openapi.json CHANGED
@@ -4495,12 +4495,7 @@
4495
4495
  },
4496
4496
  "type": "object",
4497
4497
  "title": "Variables",
4498
- "description": "Custom context variables for the conversation session. Should be prefixed with \"vars.\".",
4499
- "examples": [
4500
- {
4501
- "vars.hospital": "Weill Cornell Medical Center"
4502
- }
4503
- ]
4498
+ "description": "Custom context variables for the conversation session. Keys should be prefixed with \"vars.\"."
4504
4499
  },
4505
4500
  "tool_headers": {
4506
4501
  "anyOf": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.31",
3
+ "version": "0.1.0-alpha.32",
4
4
  "author": "Speakeasy",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -61,8 +61,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
61
61
  export const SDK_METADATA = {
62
62
  language: "typescript",
63
63
  openapiDocVersion: "0.0.2",
64
- sdkVersion: "0.1.0-alpha.31",
64
+ sdkVersion: "0.1.0-alpha.32",
65
65
  genVersion: "2.493.21",
66
66
  userAgent:
67
- "speakeasy-sdk/typescript 0.1.0-alpha.31 2.493.21 0.0.2 syllable-sdk",
67
+ "speakeasy-sdk/typescript 0.1.0-alpha.32 2.493.21 0.0.2 syllable-sdk",
68
68
  } as const;
@@ -77,7 +77,7 @@ export type AgentResponse = {
77
77
  */
78
78
  languages?: Array<string> | undefined;
79
79
  /**
80
- * Custom context variables for the conversation session. Should be prefixed with "vars.".
80
+ * Custom context variables for the conversation session. Keys should be prefixed with "vars.".
81
81
  */
82
82
  variables: { [k: string]: string };
83
83
  /**