syllable-sdk 0.1.0-alpha.143 → 0.1.0-alpha.146

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 (29) hide show
  1. package/docs/sdks/batches/README.md +4 -4
  2. package/docs/sdks/syllablesdktools/README.md +2 -0
  3. package/docs/sdks/workflows/README.md +8 -8
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/models/components/insightsfolderproperties.d.ts +3 -0
  8. package/models/components/insightsfolderproperties.d.ts.map +1 -1
  9. package/models/components/insightsfolderproperties.js +1 -0
  10. package/models/components/insightsfolderproperties.js.map +1 -1
  11. package/models/components/insighttoolproperties.d.ts +3 -0
  12. package/models/components/insighttoolproperties.d.ts.map +1 -1
  13. package/models/components/insighttoolproperties.js +1 -0
  14. package/models/components/insighttoolproperties.js.map +1 -1
  15. package/models/components/insighttooltestinput.d.ts +8 -3
  16. package/models/components/insighttooltestinput.d.ts.map +1 -1
  17. package/models/components/insighttooltestinput.js +6 -2
  18. package/models/components/insighttooltestinput.js.map +1 -1
  19. package/models/components/insightworkflowproperties.d.ts +3 -0
  20. package/models/components/insightworkflowproperties.d.ts.map +1 -1
  21. package/models/components/insightworkflowproperties.js +1 -0
  22. package/models/components/insightworkflowproperties.js.map +1 -1
  23. package/openapi.json +61 -37
  24. package/package.json +1 -1
  25. package/src/lib/config.ts +2 -2
  26. package/src/models/components/insightsfolderproperties.ts +1 -0
  27. package/src/models/components/insighttoolproperties.ts +1 -0
  28. package/src/models/components/insighttooltestinput.ts +14 -5
  29. package/src/models/components/insightworkflowproperties.ts +1 -0
@@ -125,9 +125,9 @@ const syllableSDK = new SyllableSDK({
125
125
 
126
126
  async function run() {
127
127
  const result = await syllableSDK.outbound.batches.create({
128
- batchId: "20250512.9",
128
+ batchId: "20250513.9",
129
129
  campaignId: 1,
130
- expiresOn: new Date("2025-05-13T00:00:00Z"),
130
+ expiresOn: new Date("2025-05-14T00:00:00Z"),
131
131
  paused: true,
132
132
  });
133
133
 
@@ -154,9 +154,9 @@ const syllableSDK = new SyllableSDKCore({
154
154
 
155
155
  async function run() {
156
156
  const res = await outboundBatchesCreate(syllableSDK, {
157
- batchId: "20250512.9",
157
+ batchId: "20250513.9",
158
158
  campaignId: 1,
159
- expiresOn: new Date("2025-05-13T00:00:00Z"),
159
+ expiresOn: new Date("2025-05-14T00:00:00Z"),
160
160
  paused: true,
161
161
  });
162
162
 
@@ -385,6 +385,7 @@ async function run() {
385
385
  const result = await syllableSDK.insights.tools.insightsToolTest({
386
386
  toolName: "summary-tool",
387
387
  sessionId: 283467,
388
+ uploadFileId: 283467,
388
389
  });
389
390
 
390
391
  // Handle the result
@@ -412,6 +413,7 @@ async function run() {
412
413
  const res = await insightsToolsInsightsToolTest(syllableSDK, {
413
414
  toolName: "summary-tool",
414
415
  sessionId: 283467,
416
+ uploadFileId: 283467,
415
417
  });
416
418
 
417
419
  if (!res.ok) {
@@ -131,8 +131,8 @@ async function run() {
131
131
  1,
132
132
  ],
133
133
  conditions: {},
134
- startDatetime: new Date("2025-05-11T00:00:00Z"),
135
- endDatetime: new Date("2025-05-12T00:00:00Z"),
134
+ startDatetime: new Date("2025-05-12T00:00:00Z"),
135
+ endDatetime: new Date("2025-05-13T00:00:00Z"),
136
136
  });
137
137
 
138
138
  // Handle the result
@@ -165,8 +165,8 @@ async function run() {
165
165
  1,
166
166
  ],
167
167
  conditions: {},
168
- startDatetime: new Date("2025-05-11T00:00:00Z"),
169
- endDatetime: new Date("2025-05-12T00:00:00Z"),
168
+ startDatetime: new Date("2025-05-12T00:00:00Z"),
169
+ endDatetime: new Date("2025-05-13T00:00:00Z"),
170
170
  });
171
171
 
172
172
  if (!res.ok) {
@@ -303,8 +303,8 @@ async function run() {
303
303
  1,
304
304
  ],
305
305
  conditions: {},
306
- startDatetime: new Date("2025-05-11T00:00:00Z"),
307
- endDatetime: new Date("2025-05-12T00:00:00Z"),
306
+ startDatetime: new Date("2025-05-12T00:00:00Z"),
307
+ endDatetime: new Date("2025-05-13T00:00:00Z"),
308
308
  },
309
309
  });
310
310
 
@@ -340,8 +340,8 @@ async function run() {
340
340
  1,
341
341
  ],
342
342
  conditions: {},
343
- startDatetime: new Date("2025-05-11T00:00:00Z"),
344
- endDatetime: new Date("2025-05-12T00:00:00Z"),
343
+ startDatetime: new Date("2025-05-12T00:00:00Z"),
344
+ endDatetime: new Date("2025-05-13T00:00:00Z"),
345
345
  },
346
346
  });
347
347
 
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "syllable-sdk",
5
- "version": "0.1.0-alpha.143",
5
+ "version": "0.1.0-alpha.146",
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.143";
30
+ readonly sdkVersion: "0.1.0-alpha.146";
31
31
  readonly genVersion: "2.512.4";
32
- readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.143 2.512.4 0.0.2 syllable-sdk";
32
+ readonly userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.146 2.512.4 0.0.2 syllable-sdk";
33
33
  };
34
34
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
31
31
  exports.SDK_METADATA = {
32
32
  language: "typescript",
33
33
  openapiDocVersion: "0.0.2",
34
- sdkVersion: "0.1.0-alpha.143",
34
+ sdkVersion: "0.1.0-alpha.146",
35
35
  genVersion: "2.512.4",
36
- userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.143 2.512.4 0.0.2 syllable-sdk",
36
+ userAgent: "speakeasy-sdk/typescript 0.1.0-alpha.146 2.512.4 0.0.2 syllable-sdk",
37
37
  };
38
38
  //# sourceMappingURL=config.js.map
@@ -3,6 +3,7 @@ import { ClosedEnum } from "../../types/enums.js";
3
3
  export declare const InsightsFolderProperties: {
4
4
  readonly Id: "id";
5
5
  readonly Name: "name";
6
+ readonly NameExact: "name_exact";
6
7
  readonly Label: "label";
7
8
  readonly UpdatedAt: "updated_at";
8
9
  };
@@ -20,6 +21,7 @@ export declare namespace InsightsFolderProperties$ {
20
21
  const inboundSchema: z.ZodNativeEnum<{
21
22
  readonly Id: "id";
22
23
  readonly Name: "name";
24
+ readonly NameExact: "name_exact";
23
25
  readonly Label: "label";
24
26
  readonly UpdatedAt: "updated_at";
25
27
  }>;
@@ -27,6 +29,7 @@ export declare namespace InsightsFolderProperties$ {
27
29
  const outboundSchema: z.ZodNativeEnum<{
28
30
  readonly Id: "id";
29
31
  readonly Name: "name";
32
+ readonly NameExact: "name_exact";
30
33
  readonly Label: "label";
31
34
  readonly UpdatedAt: "updated_at";
32
35
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"insightsfolderproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insightsfolderproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,wBAAwB;;;;;CAK3B,CAAC;AACX,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAC/C,OAAO,wBAAwB,CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,aAAa,CAClE,OAAO,wBAAwB,CACS,CAAC;AAE3C,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,aAAa,CACnE,OAAO,wBAAwB,CACS,CAAC;AAE3C;;;GAGG;AACH,yBAAiB,yBAAyB,CAAC;IACzC,wEAAwE;IACjE,MAAM,aAAa;;;;;MAAyC,CAAC;IACpE,yEAAyE;IAClE,MAAM,cAAc;;;;;MAA0C,CAAC;CACvE"}
1
+ {"version":3,"file":"insightsfolderproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insightsfolderproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,wBAAwB;;;;;;CAM3B,CAAC;AACX,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAC/C,OAAO,wBAAwB,CAChC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,aAAa,CAClE,OAAO,wBAAwB,CACS,CAAC;AAE3C,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,aAAa,CACnE,OAAO,wBAAwB,CACS,CAAC;AAE3C;;;GAGG;AACH,yBAAiB,yBAAyB,CAAC;IACzC,wEAAwE;IACjE,MAAM,aAAa;;;;;;MAAyC,CAAC;IACpE,yEAAyE;IAClE,MAAM,cAAc;;;;;;MAA0C,CAAC;CACvE"}
@@ -31,6 +31,7 @@ const z = __importStar(require("zod"));
31
31
  exports.InsightsFolderProperties = {
32
32
  Id: "id",
33
33
  Name: "name",
34
+ NameExact: "name_exact",
34
35
  Label: "label",
35
36
  UpdatedAt: "updated_at",
36
37
  };
@@ -1 +1 @@
1
- {"version":3,"file":"insightsfolderproperties.js","sourceRoot":"","sources":["../../src/models/components/insightsfolderproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,wBAAwB,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,sCAAsC,GAE/C,CAAC,CAAC,UAAU,CAAC,gCAAwB,CAAC,CAAC;AAE3C,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,8CAAsC,CAAC;AAE3C;;;GAGG;AACH,IAAiB,yBAAyB,CAKzC;AALD,WAAiB,yBAAyB;IACxC,wEAAwE;IAC3D,uCAAa,GAAG,8CAAsC,CAAC;IACpE,yEAAyE;IAC5D,wCAAc,GAAG,+CAAuC,CAAC;AACxE,CAAC,EALgB,yBAAyB,yCAAzB,yBAAyB,QAKzC"}
1
+ {"version":3,"file":"insightsfolderproperties.js","sourceRoot":"","sources":["../../src/models/components/insightsfolderproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,wBAAwB,GAAG;IACtC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,YAAY;IACvB,KAAK,EAAE,OAAO;IACd,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,sCAAsC,GAE/C,CAAC,CAAC,UAAU,CAAC,gCAAwB,CAAC,CAAC;AAE3C,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,8CAAsC,CAAC;AAE3C;;;GAGG;AACH,IAAiB,yBAAyB,CAKzC;AALD,WAAiB,yBAAyB;IACxC,wEAAwE;IAC3D,uCAAa,GAAG,8CAAsC,CAAC;IACpE,yEAAyE;IAC5D,wCAAc,GAAG,+CAAuC,CAAC;AACxE,CAAC,EALgB,yBAAyB,yCAAzB,yBAAyB,QAKzC"}
@@ -3,6 +3,7 @@ import { ClosedEnum } from "../../types/enums.js";
3
3
  export declare const InsightToolProperties: {
4
4
  readonly Id: "id";
5
5
  readonly Name: "name";
6
+ readonly NameExact: "name_exact";
6
7
  readonly Description: "description";
7
8
  readonly ToolArguments: "tool_arguments";
8
9
  readonly InsightToolDefinitionId: "insight_tool_definition_id";
@@ -22,6 +23,7 @@ export declare namespace InsightToolProperties$ {
22
23
  const inboundSchema: z.ZodNativeEnum<{
23
24
  readonly Id: "id";
24
25
  readonly Name: "name";
26
+ readonly NameExact: "name_exact";
25
27
  readonly Description: "description";
26
28
  readonly ToolArguments: "tool_arguments";
27
29
  readonly InsightToolDefinitionId: "insight_tool_definition_id";
@@ -31,6 +33,7 @@ export declare namespace InsightToolProperties$ {
31
33
  const outboundSchema: z.ZodNativeEnum<{
32
34
  readonly Id: "id";
33
35
  readonly Name: "name";
36
+ readonly NameExact: "name_exact";
34
37
  readonly Description: "description";
35
38
  readonly ToolArguments: "tool_arguments";
36
39
  readonly InsightToolDefinitionId: "insight_tool_definition_id";
@@ -1 +1 @@
1
- {"version":3,"file":"insighttoolproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insighttoolproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,qBAAqB;;;;;;;CAOxB,CAAC;AACX,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE7E,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,aAAa,CAC/D,OAAO,qBAAqB,CACS,CAAC;AAExC,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,aAAa,CAChE,OAAO,qBAAqB,CACS,CAAC;AAExC;;;GAGG;AACH,yBAAiB,sBAAsB,CAAC;IACtC,qEAAqE;IAC9D,MAAM,aAAa;;;;;;;MAAsC,CAAC;IACjE,sEAAsE;IAC/D,MAAM,cAAc;;;;;;;MAAuC,CAAC;CACpE"}
1
+ {"version":3,"file":"insighttoolproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insighttoolproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,qBAAqB;;;;;;;;CAQxB,CAAC;AACX,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE7E,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,aAAa,CAC/D,OAAO,qBAAqB,CACS,CAAC;AAExC,gBAAgB;AAChB,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,aAAa,CAChE,OAAO,qBAAqB,CACS,CAAC;AAExC;;;GAGG;AACH,yBAAiB,sBAAsB,CAAC;IACtC,qEAAqE;IAC9D,MAAM,aAAa;;;;;;;;MAAsC,CAAC;IACjE,sEAAsE;IAC/D,MAAM,cAAc;;;;;;;;MAAuC,CAAC;CACpE"}
@@ -31,6 +31,7 @@ const z = __importStar(require("zod"));
31
31
  exports.InsightToolProperties = {
32
32
  Id: "id",
33
33
  Name: "name",
34
+ NameExact: "name_exact",
34
35
  Description: "description",
35
36
  ToolArguments: "tool_arguments",
36
37
  InsightToolDefinitionId: "insight_tool_definition_id",
@@ -1 +1 @@
1
- {"version":3,"file":"insighttoolproperties.js","sourceRoot":"","sources":["../../src/models/components/insighttoolproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,qBAAqB,GAAG;IACnC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,gBAAgB;IAC/B,uBAAuB,EAAE,4BAA4B;IACrD,SAAS,EAAE,YAAY;CACf,CAAC;AAGX,gBAAgB;AACH,QAAA,mCAAmC,GAE5C,CAAC,CAAC,UAAU,CAAC,6BAAqB,CAAC,CAAC;AAExC,gBAAgB;AACH,QAAA,oCAAoC,GAE7C,2CAAmC,CAAC;AAExC;;;GAGG;AACH,IAAiB,sBAAsB,CAKtC;AALD,WAAiB,sBAAsB;IACrC,qEAAqE;IACxD,oCAAa,GAAG,2CAAmC,CAAC;IACjE,sEAAsE;IACzD,qCAAc,GAAG,4CAAoC,CAAC;AACrE,CAAC,EALgB,sBAAsB,sCAAtB,sBAAsB,QAKtC"}
1
+ {"version":3,"file":"insighttoolproperties.js","sourceRoot":"","sources":["../../src/models/components/insighttoolproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,qBAAqB,GAAG;IACnC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,aAAa;IAC1B,aAAa,EAAE,gBAAgB;IAC/B,uBAAuB,EAAE,4BAA4B;IACrD,SAAS,EAAE,YAAY;CACf,CAAC;AAGX,gBAAgB;AACH,QAAA,mCAAmC,GAE5C,CAAC,CAAC,UAAU,CAAC,6BAAqB,CAAC,CAAC;AAExC,gBAAgB;AACH,QAAA,oCAAoC,GAE7C,2CAAmC,CAAC;AAExC;;;GAGG;AACH,IAAiB,sBAAsB,CAKtC;AALD,WAAiB,sBAAsB;IACrC,qEAAqE;IACxD,oCAAa,GAAG,2CAAmC,CAAC;IACjE,sEAAsE;IACzD,qCAAc,GAAG,4CAAoC,CAAC;AACrE,CAAC,EALgB,sBAAsB,sCAAtB,sBAAsB,QAKtC"}
@@ -10,16 +10,21 @@ export type InsightToolTestInput = {
10
10
  */
11
11
  toolName: string;
12
12
  /**
13
- * The session ID of the session to run the tool against
13
+ * The session ID of the session against which to run the tool
14
14
  */
15
- sessionId: number;
15
+ sessionId?: number | null | undefined;
16
+ /**
17
+ * The file ID of the uploaded file against which to run the tool
18
+ */
19
+ uploadFileId?: number | null | undefined;
16
20
  };
17
21
  /** @internal */
18
22
  export declare const InsightToolTestInput$inboundSchema: z.ZodType<InsightToolTestInput, z.ZodTypeDef, unknown>;
19
23
  /** @internal */
20
24
  export type InsightToolTestInput$Outbound = {
21
25
  tool_name: string;
22
- session_id: number;
26
+ session_id?: number | null | undefined;
27
+ upload_file_id?: number | null | undefined;
23
28
  };
24
29
  /** @internal */
25
30
  export declare const InsightToolTestInput$outboundSchema: z.ZodType<InsightToolTestInput$Outbound, z.ZodTypeDef, InsightToolTestInput>;
@@ -1 +1 @@
1
- {"version":3,"file":"insighttooltestinput.d.ts","sourceRoot":"","sources":["../../src/models/components/insighttooltestinput.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CACxD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,OAAO,CASP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,6BAA6B,GAAG;IAC1C,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,oBAAoB,CASpB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,qBAAqB,CAAC;IACrC,oEAAoE;IAC7D,MAAM,aAAa,wDAAqC,CAAC;IAChE,qEAAqE;IAC9D,MAAM,cAAc,8EAAsC,CAAC;IAClE,+DAA+D;IAC/D,KAAY,QAAQ,GAAG,6BAA6B,CAAC;CACtD;AAED,wBAAgB,0BAA0B,CACxC,oBAAoB,EAAE,oBAAoB,GACzC,MAAM,CAIR;AAED,wBAAgB,4BAA4B,CAC1C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,CAM3D"}
1
+ {"version":3,"file":"insighttooltestinput.d.ts","sourceRoot":"","sources":["../../src/models/components/insighttooltestinput.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAGzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AAErE;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG;IACjC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IACjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACtC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CAC1C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,OAAO,CACxD,oBAAoB,EACpB,CAAC,CAAC,UAAU,EACZ,OAAO,CAWP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,6BAA6B,GAAG;IAC1C,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CAC5C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CACzD,6BAA6B,EAC7B,CAAC,CAAC,UAAU,EACZ,oBAAoB,CAWpB,CAAC;AAEH;;;GAGG;AACH,yBAAiB,qBAAqB,CAAC;IACrC,oEAAoE;IAC7D,MAAM,aAAa,wDAAqC,CAAC;IAChE,qEAAqE;IAC9D,MAAM,cAAc,8EAAsC,CAAC;IAClE,+DAA+D;IAC/D,KAAY,QAAQ,GAAG,6BAA6B,CAAC;CACtD;AAED,wBAAgB,0BAA0B,CACxC,oBAAoB,EAAE,oBAAoB,GACzC,MAAM,CAIR;AAED,wBAAgB,4BAA4B,CAC1C,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,oBAAoB,EAAE,kBAAkB,CAAC,CAM3D"}
@@ -35,21 +35,25 @@ const schemas_js_1 = require("../../lib/schemas.js");
35
35
  /** @internal */
36
36
  exports.InsightToolTestInput$inboundSchema = z.object({
37
37
  tool_name: z.string(),
38
- session_id: z.number().int(),
38
+ session_id: z.nullable(z.number().int()).optional(),
39
+ upload_file_id: z.nullable(z.number().int()).optional(),
39
40
  }).transform((v) => {
40
41
  return (0, primitives_js_1.remap)(v, {
41
42
  "tool_name": "toolName",
42
43
  "session_id": "sessionId",
44
+ "upload_file_id": "uploadFileId",
43
45
  });
44
46
  });
45
47
  /** @internal */
46
48
  exports.InsightToolTestInput$outboundSchema = z.object({
47
49
  toolName: z.string(),
48
- sessionId: z.number().int(),
50
+ sessionId: z.nullable(z.number().int()).optional(),
51
+ uploadFileId: z.nullable(z.number().int()).optional(),
49
52
  }).transform((v) => {
50
53
  return (0, primitives_js_1.remap)(v, {
51
54
  toolName: "tool_name",
52
55
  sessionId: "session_id",
56
+ uploadFileId: "upload_file_id",
53
57
  });
54
58
  });
55
59
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"insighttooltestinput.js","sourceRoot":"","sources":["../../src/models/components/insighttooltestinput.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAuEH,gEAMC;AAED,oEAQC;AArFD,uCAAyB;AACzB,2DAA0D;AAC1D,qDAAiD;AAkBjD,gBAAgB;AACH,QAAA,kCAAkC,GAI3C,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC7B,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,WAAW,EAAE,UAAU;QACvB,YAAY,EAAE,WAAW;KAC1B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAQH,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC5B,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,WAAW;QACrB,SAAS,EAAE,YAAY;KACxB,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,qBAAqB,CAOrC;AAPD,WAAiB,qBAAqB;IACpC,oEAAoE;IACvD,mCAAa,GAAG,0CAAkC,CAAC;IAChE,qEAAqE;IACxD,oCAAc,GAAG,2CAAmC,CAAC;AAGpE,CAAC,EAPgB,qBAAqB,qCAArB,qBAAqB,QAOrC;AAED,SAAgB,0BAA0B,CACxC,oBAA0C;IAE1C,OAAO,IAAI,CAAC,SAAS,CACnB,2CAAmC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAChE,CAAC;AACJ,CAAC;AAED,SAAgB,4BAA4B,CAC1C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,0CAAkC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9D,kDAAkD,CACnD,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"insighttooltestinput.js","sourceRoot":"","sources":["../../src/models/components/insighttooltestinput.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAgFH,gEAMC;AAED,oEAQC;AA9FD,uCAAyB;AACzB,2DAA0D;AAC1D,qDAAiD;AAsBjD,gBAAgB;AACH,QAAA,kCAAkC,GAI3C,CAAC,CAAC,MAAM,CAAC;IACX,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,UAAU,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,cAAc,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;CACxD,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,WAAW,EAAE,UAAU;QACvB,YAAY,EAAE,WAAW;QACzB,gBAAgB,EAAE,cAAc;KACjC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,mCAAmC,GAI5C,CAAC,CAAC,MAAM,CAAC;IACX,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,SAAS,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IAClD,YAAY,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;CACtD,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE;IACjB,OAAO,IAAA,qBAAM,EAAC,CAAC,EAAE;QACf,QAAQ,EAAE,WAAW;QACrB,SAAS,EAAE,YAAY;QACvB,YAAY,EAAE,gBAAgB;KAC/B,CAAC,CAAC;AACL,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,qBAAqB,CAOrC;AAPD,WAAiB,qBAAqB;IACpC,oEAAoE;IACvD,mCAAa,GAAG,0CAAkC,CAAC;IAChE,qEAAqE;IACxD,oCAAc,GAAG,2CAAmC,CAAC;AAGpE,CAAC,EAPgB,qBAAqB,qCAArB,qBAAqB,QAOrC;AAED,SAAgB,0BAA0B,CACxC,oBAA0C;IAE1C,OAAO,IAAI,CAAC,SAAS,CACnB,2CAAmC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAChE,CAAC;AACJ,CAAC;AAED,SAAgB,4BAA4B,CAC1C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,0CAAkC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9D,kDAAkD,CACnD,CAAC;AACJ,CAAC"}
@@ -3,6 +3,7 @@ import { ClosedEnum } from "../../types/enums.js";
3
3
  export declare const InsightWorkflowProperties: {
4
4
  readonly Id: "id";
5
5
  readonly Name: "name";
6
+ readonly NameExact: "name_exact";
6
7
  readonly Description: "description";
7
8
  readonly Status: "status";
8
9
  readonly Conditions: "conditions";
@@ -23,6 +24,7 @@ export declare namespace InsightWorkflowProperties$ {
23
24
  const inboundSchema: z.ZodNativeEnum<{
24
25
  readonly Id: "id";
25
26
  readonly Name: "name";
27
+ readonly NameExact: "name_exact";
26
28
  readonly Description: "description";
27
29
  readonly Status: "status";
28
30
  readonly Conditions: "conditions";
@@ -33,6 +35,7 @@ export declare namespace InsightWorkflowProperties$ {
33
35
  const outboundSchema: z.ZodNativeEnum<{
34
36
  readonly Id: "id";
35
37
  readonly Name: "name";
38
+ readonly NameExact: "name_exact";
36
39
  readonly Description: "description";
37
40
  readonly Status: "status";
38
41
  readonly Conditions: "conditions";
@@ -1 +1 @@
1
- {"version":3,"file":"insightworkflowproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insightworkflowproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,yBAAyB;;;;;;;;CAQ5B,CAAC;AACX,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAChD,OAAO,yBAAyB,CACjC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,aAAa,CACnE,OAAO,yBAAyB,CACS,CAAC;AAE5C,gBAAgB;AAChB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,aAAa,CACpE,OAAO,yBAAyB,CACS,CAAC;AAE5C;;;GAGG;AACH,yBAAiB,0BAA0B,CAAC;IAC1C,yEAAyE;IAClE,MAAM,aAAa;;;;;;;;MAA0C,CAAC;IACrE,0EAA0E;IACnE,MAAM,cAAc;;;;;;;;MAA2C,CAAC;CACxE"}
1
+ {"version":3,"file":"insightworkflowproperties.d.ts","sourceRoot":"","sources":["../../src/models/components/insightworkflowproperties.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,eAAO,MAAM,yBAAyB;;;;;;;;;CAS5B,CAAC;AACX,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAChD,OAAO,yBAAyB,CACjC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,aAAa,CACnE,OAAO,yBAAyB,CACS,CAAC;AAE5C,gBAAgB;AAChB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,aAAa,CACpE,OAAO,yBAAyB,CACS,CAAC;AAE5C;;;GAGG;AACH,yBAAiB,0BAA0B,CAAC;IAC1C,yEAAyE;IAClE,MAAM,aAAa;;;;;;;;;MAA0C,CAAC;IACrE,0EAA0E;IACnE,MAAM,cAAc;;;;;;;;;MAA2C,CAAC;CACxE"}
@@ -31,6 +31,7 @@ const z = __importStar(require("zod"));
31
31
  exports.InsightWorkflowProperties = {
32
32
  Id: "id",
33
33
  Name: "name",
34
+ NameExact: "name_exact",
34
35
  Description: "description",
35
36
  Status: "status",
36
37
  Conditions: "conditions",
@@ -1 +1 @@
1
- {"version":3,"file":"insightworkflowproperties.js","sourceRoot":"","sources":["../../src/models/components/insightworkflowproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,yBAAyB,GAAG;IACvC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,aAAa;IAC1B,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,cAAc,EAAE,kBAAkB;IAClC,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,CAAC,CAAC,UAAU,CAAC,iCAAyB,CAAC,CAAC;AAE5C,gBAAgB;AACH,QAAA,wCAAwC,GAEjD,+CAAuC,CAAC;AAE5C;;;GAGG;AACH,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IACzC,yEAAyE;IAC5D,wCAAa,GAAG,+CAAuC,CAAC;IACrE,0EAA0E;IAC7D,yCAAc,GAAG,gDAAwC,CAAC;AACzE,CAAC,EALgB,0BAA0B,0CAA1B,0BAA0B,QAK1C"}
1
+ {"version":3,"file":"insightworkflowproperties.js","sourceRoot":"","sources":["../../src/models/components/insightworkflowproperties.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGZ,QAAA,yBAAyB,GAAG;IACvC,EAAE,EAAE,IAAI;IACR,IAAI,EAAE,MAAM;IACZ,SAAS,EAAE,YAAY;IACvB,WAAW,EAAE,aAAa;IAC1B,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,cAAc,EAAE,kBAAkB;IAClC,SAAS,EAAE,YAAY;CACf,CAAC;AAKX,gBAAgB;AACH,QAAA,uCAAuC,GAEhD,CAAC,CAAC,UAAU,CAAC,iCAAyB,CAAC,CAAC;AAE5C,gBAAgB;AACH,QAAA,wCAAwC,GAEjD,+CAAuC,CAAC;AAE5C;;;GAGG;AACH,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IACzC,yEAAyE;IAC5D,wCAAa,GAAG,+CAAuC,CAAC;IACrE,0EAA0E;IAC7D,yCAAc,GAAG,gDAAwC,CAAC;AACzE,CAAC,EALgB,0BAA0B,0CAA1B,0BAA0B,QAK1C"}
package/openapi.json CHANGED
@@ -11329,7 +11329,7 @@
11329
11329
  "title": "Batch Id",
11330
11330
  "description": "Unique ID for conversation batch",
11331
11331
  "examples": [
11332
- "20250512.9"
11332
+ "20250513.9"
11333
11333
  ]
11334
11334
  },
11335
11335
  "campaign_id": {
@@ -11353,7 +11353,7 @@
11353
11353
  "title": "Expires On",
11354
11354
  "description": "Timestamp of batch expiration",
11355
11355
  "examples": [
11356
- "2025-05-13T00:00:00Z"
11356
+ "2025-05-14T00:00:00Z"
11357
11357
  ]
11358
11358
  },
11359
11359
  "paused": {
@@ -11406,7 +11406,7 @@
11406
11406
  "title": "Created At",
11407
11407
  "description": "Timestamp of batch creation",
11408
11408
  "examples": [
11409
- "2025-05-12T00:00:00Z"
11409
+ "2025-05-13T00:00:00Z"
11410
11410
  ]
11411
11411
  },
11412
11412
  "deleted_at": {
@@ -11422,7 +11422,7 @@
11422
11422
  "title": "Deleted At",
11423
11423
  "description": "Timestamp of batch deletion",
11424
11424
  "examples": [
11425
- "2025-05-12T00:00:00Z"
11425
+ "2025-05-13T00:00:00Z"
11426
11426
  ]
11427
11427
  },
11428
11428
  "deleted_reason": {
@@ -11453,7 +11453,7 @@
11453
11453
  "title": "Last Updated At",
11454
11454
  "description": "Timestamp of last change to batch",
11455
11455
  "examples": [
11456
- "2025-05-12T00:00:00Z"
11456
+ "2025-05-13T00:00:00Z"
11457
11457
  ]
11458
11458
  },
11459
11459
  "last_updated_by": {
@@ -11968,7 +11968,7 @@
11968
11968
  "title": "Batch Id",
11969
11969
  "description": "Unique ID for conversation batch",
11970
11970
  "examples": [
11971
- "20250512.9"
11971
+ "20250513.9"
11972
11972
  ]
11973
11973
  },
11974
11974
  "campaign_id": {
@@ -11992,7 +11992,7 @@
11992
11992
  "title": "Expires On",
11993
11993
  "description": "Timestamp of batch expiration",
11994
11994
  "examples": [
11995
- "2025-05-13T00:00:00Z"
11995
+ "2025-05-14T00:00:00Z"
11996
11996
  ]
11997
11997
  },
11998
11998
  "paused": {
@@ -12045,7 +12045,7 @@
12045
12045
  "title": "Created At",
12046
12046
  "description": "Timestamp of batch creation",
12047
12047
  "examples": [
12048
- "2025-05-12T00:00:00Z"
12048
+ "2025-05-13T00:00:00Z"
12049
12049
  ]
12050
12050
  },
12051
12051
  "deleted_at": {
@@ -12061,7 +12061,7 @@
12061
12061
  "title": "Deleted At",
12062
12062
  "description": "Timestamp of batch deletion",
12063
12063
  "examples": [
12064
- "2025-05-12T00:00:00Z"
12064
+ "2025-05-13T00:00:00Z"
12065
12065
  ]
12066
12066
  },
12067
12067
  "deleted_reason": {
@@ -12092,7 +12092,7 @@
12092
12092
  "title": "Last Updated At",
12093
12093
  "description": "Timestamp of last change to batch",
12094
12094
  "examples": [
12095
- "2025-05-12T00:00:00Z"
12095
+ "2025-05-13T00:00:00Z"
12096
12096
  ]
12097
12097
  },
12098
12098
  "last_updated_by": {
@@ -12135,7 +12135,7 @@
12135
12135
  "title": "Batch Id",
12136
12136
  "description": "Unique ID for conversation batch",
12137
12137
  "examples": [
12138
- "20250512.9"
12138
+ "20250513.9"
12139
12139
  ]
12140
12140
  },
12141
12141
  "campaign_id": {
@@ -12159,7 +12159,7 @@
12159
12159
  "title": "Expires On",
12160
12160
  "description": "Timestamp of batch expiration",
12161
12161
  "examples": [
12162
- "2025-05-13T00:00:00Z"
12162
+ "2025-05-14T00:00:00Z"
12163
12163
  ]
12164
12164
  },
12165
12165
  "paused": {
@@ -12300,7 +12300,7 @@
12300
12300
  "title": "Created At",
12301
12301
  "description": "Timestamp of request creation",
12302
12302
  "examples": [
12303
- "2025-05-11T00:00:00Z"
12303
+ "2025-05-12T00:00:00Z"
12304
12304
  ]
12305
12305
  },
12306
12306
  "sent_at": {
@@ -12316,7 +12316,7 @@
12316
12316
  "title": "Sent At",
12317
12317
  "description": "Timestamp at which request was sent",
12318
12318
  "examples": [
12319
- "2025-05-12T00:00:00Z"
12319
+ "2025-05-13T00:00:00Z"
12320
12320
  ]
12321
12321
  },
12322
12322
  "attempt_count": {
@@ -14215,7 +14215,7 @@
14215
14215
  "title": "Created At",
14216
14216
  "description": "Timestamp at which insight upload folder was created",
14217
14217
  "examples": [
14218
- "2025-05-11T00:00:00Z"
14218
+ "2025-05-12T00:00:00Z"
14219
14219
  ]
14220
14220
  },
14221
14221
  "updated_at": {
@@ -14224,7 +14224,7 @@
14224
14224
  "title": "Updated At",
14225
14225
  "description": "Timestamp at which insight upload folder was last updated",
14226
14226
  "examples": [
14227
- "2025-05-12T00:00:00Z"
14227
+ "2025-05-13T00:00:00Z"
14228
14228
  ]
14229
14229
  },
14230
14230
  "last_updated_by": {
@@ -14939,7 +14939,7 @@
14939
14939
  "title": "Created At",
14940
14940
  "description": "Timestamp of at which insight tool configuration was created",
14941
14941
  "examples": [
14942
- "2025-05-11T00:00:00Z"
14942
+ "2025-05-12T00:00:00Z"
14943
14943
  ]
14944
14944
  },
14945
14945
  "updated_at": {
@@ -14948,7 +14948,7 @@
14948
14948
  "title": "Updated At",
14949
14949
  "description": "Timestamp at which insight tool configuration was last updated",
14950
14950
  "examples": [
14951
- "2025-05-12T00:00:00Z"
14951
+ "2025-05-13T00:00:00Z"
14952
14952
  ]
14953
14953
  },
14954
14954
  "last_updated_by": {
@@ -14978,6 +14978,7 @@
14978
14978
  "enum": [
14979
14979
  "id",
14980
14980
  "name",
14981
+ "name_exact",
14981
14982
  "description",
14982
14983
  "tool_arguments",
14983
14984
  "insight_tool_definition_id",
@@ -14996,9 +14997,31 @@
14996
14997
  ]
14997
14998
  },
14998
14999
  "session_id": {
14999
- "type": "integer",
15000
+ "anyOf": [
15001
+ {
15002
+ "type": "integer"
15003
+ },
15004
+ {
15005
+ "type": "null"
15006
+ }
15007
+ ],
15000
15008
  "title": "Session Id",
15001
- "description": "The session ID of the session to run the tool against",
15009
+ "description": "The session ID of the session against which to run the tool",
15010
+ "examples": [
15011
+ "283467"
15012
+ ]
15013
+ },
15014
+ "upload_file_id": {
15015
+ "anyOf": [
15016
+ {
15017
+ "type": "integer"
15018
+ },
15019
+ {
15020
+ "type": "null"
15021
+ }
15022
+ ],
15023
+ "title": "Upload File Id",
15024
+ "description": "The file ID of the uploaded file against which to run the tool",
15002
15025
  "examples": [
15003
15026
  "283467"
15004
15027
  ]
@@ -15006,8 +15029,7 @@
15006
15029
  },
15007
15030
  "type": "object",
15008
15031
  "required": [
15009
- "tool_name",
15010
- "session_id"
15032
+ "tool_name"
15011
15033
  ],
15012
15034
  "title": "InsightToolTestInput",
15013
15035
  "description": "Request model to test an insight tool."
@@ -15271,7 +15293,7 @@
15271
15293
  "title": "Start Datetime",
15272
15294
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
15273
15295
  "examples": [
15274
- "2025-05-11T00:00:00Z"
15296
+ "2025-05-12T00:00:00Z"
15275
15297
  ]
15276
15298
  },
15277
15299
  "end_datetime": {
@@ -15287,7 +15309,7 @@
15287
15309
  "title": "End Datetime",
15288
15310
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
15289
15311
  "examples": [
15290
- "2025-05-12T00:00:00Z"
15312
+ "2025-05-13T00:00:00Z"
15291
15313
  ]
15292
15314
  }
15293
15315
  },
@@ -15361,7 +15383,7 @@
15361
15383
  "title": "Start Datetime",
15362
15384
  "description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
15363
15385
  "examples": [
15364
- "2025-05-11T00:00:00Z"
15386
+ "2025-05-12T00:00:00Z"
15365
15387
  ]
15366
15388
  },
15367
15389
  "end_datetime": {
@@ -15377,7 +15399,7 @@
15377
15399
  "title": "End Datetime",
15378
15400
  "description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
15379
15401
  "examples": [
15380
- "2025-05-12T00:00:00Z"
15402
+ "2025-05-13T00:00:00Z"
15381
15403
  ]
15382
15404
  },
15383
15405
  "id": {
@@ -15415,7 +15437,7 @@
15415
15437
  "title": "Created At",
15416
15438
  "description": "Timestamp at which the insight workflow was created",
15417
15439
  "examples": [
15418
- "2025-05-11T00:00:00Z"
15440
+ "2025-05-12T00:00:00Z"
15419
15441
  ]
15420
15442
  },
15421
15443
  "updated_at": {
@@ -15424,7 +15446,7 @@
15424
15446
  "title": "Updated At",
15425
15447
  "description": "Timestamp of most recent update to the insight workflow",
15426
15448
  "examples": [
15427
- "2025-05-12T00:00:00Z"
15449
+ "2025-05-13T00:00:00Z"
15428
15450
  ]
15429
15451
  },
15430
15452
  "last_updated_by": {
@@ -15457,6 +15479,7 @@
15457
15479
  "enum": [
15458
15480
  "id",
15459
15481
  "name",
15482
+ "name_exact",
15460
15483
  "description",
15461
15484
  "status",
15462
15485
  "conditions",
@@ -15519,7 +15542,7 @@
15519
15542
  "title": "Created At",
15520
15543
  "description": "Timestamp at which insight upload folder was created",
15521
15544
  "examples": [
15522
- "2025-05-11T00:00:00Z"
15545
+ "2025-05-12T00:00:00Z"
15523
15546
  ]
15524
15547
  },
15525
15548
  "updated_at": {
@@ -15528,7 +15551,7 @@
15528
15551
  "title": "Updated At",
15529
15552
  "description": "Timestamp at which insight upload folder was last updated",
15530
15553
  "examples": [
15531
- "2025-05-12T00:00:00Z"
15554
+ "2025-05-13T00:00:00Z"
15532
15555
  ]
15533
15556
  },
15534
15557
  "last_updated_by": {
@@ -15602,6 +15625,7 @@
15602
15625
  "enum": [
15603
15626
  "id",
15604
15627
  "name",
15628
+ "name_exact",
15605
15629
  "label",
15606
15630
  "updated_at"
15607
15631
  ],
@@ -15732,7 +15756,7 @@
15732
15756
  "title": "Created At",
15733
15757
  "description": "Timestamp at which insight tool result was created",
15734
15758
  "examples": [
15735
- "2025-05-11T00:00:00Z"
15759
+ "2025-05-12T00:00:00Z"
15736
15760
  ]
15737
15761
  },
15738
15762
  "updated_at": {
@@ -15741,7 +15765,7 @@
15741
15765
  "title": "Updated At",
15742
15766
  "description": "Timestamp at which insight tool result was last updated",
15743
15767
  "examples": [
15744
- "2025-05-12T00:00:00Z"
15768
+ "2025-05-13T00:00:00Z"
15745
15769
  ]
15746
15770
  }
15747
15771
  },
@@ -15876,7 +15900,7 @@
15876
15900
  "title": "Start Time",
15877
15901
  "description": "Start time of the uploaded file",
15878
15902
  "examples": [
15879
- "2025-05-11T00:00:00Z"
15903
+ "2025-05-12T00:00:00Z"
15880
15904
  ]
15881
15905
  },
15882
15906
  "end_time": {
@@ -15892,7 +15916,7 @@
15892
15916
  "title": "End Time",
15893
15917
  "description": "End time of the uploaded file",
15894
15918
  "examples": [
15895
- "2025-05-12T00:00:00Z"
15919
+ "2025-05-13T00:00:00Z"
15896
15920
  ]
15897
15921
  },
15898
15922
  "error_message": {
@@ -15947,7 +15971,7 @@
15947
15971
  "title": "Created At",
15948
15972
  "description": "Timestamp at which insight upload file was created",
15949
15973
  "examples": [
15950
- "2025-05-11T00:00:00Z"
15974
+ "2025-05-12T00:00:00Z"
15951
15975
  ]
15952
15976
  }
15953
15977
  },
@@ -18368,7 +18392,7 @@
18368
18392
  "title": "Created At",
18369
18393
  "description": "Timestamp of campaign creation",
18370
18394
  "examples": [
18371
- "2025-05-12T00:00:00Z"
18395
+ "2025-05-13T00:00:00Z"
18372
18396
  ]
18373
18397
  },
18374
18398
  "updated_at": {
@@ -18377,7 +18401,7 @@
18377
18401
  "title": "Updated At",
18378
18402
  "description": "Timestamp of campaign update",
18379
18403
  "examples": [
18380
- "2025-05-12T00:00:00Z"
18404
+ "2025-05-13T00:00:00Z"
18381
18405
  ]
18382
18406
  },
18383
18407
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "0.1.0-alpha.143",
3
+ "version": "0.1.0-alpha.146",
4
4
  "author": "Syllable",
5
5
  "main": "./index.js",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -57,8 +57,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
57
57
  export const SDK_METADATA = {
58
58
  language: "typescript",
59
59
  openapiDocVersion: "0.0.2",
60
- sdkVersion: "0.1.0-alpha.143",
60
+ sdkVersion: "0.1.0-alpha.146",
61
61
  genVersion: "2.512.4",
62
62
  userAgent:
63
- "speakeasy-sdk/typescript 0.1.0-alpha.143 2.512.4 0.0.2 syllable-sdk",
63
+ "speakeasy-sdk/typescript 0.1.0-alpha.146 2.512.4 0.0.2 syllable-sdk",
64
64
  } as const;
@@ -8,6 +8,7 @@ import { ClosedEnum } from "../../types/enums.js";
8
8
  export const InsightsFolderProperties = {
9
9
  Id: "id",
10
10
  Name: "name",
11
+ NameExact: "name_exact",
11
12
  Label: "label",
12
13
  UpdatedAt: "updated_at",
13
14
  } as const;
@@ -8,6 +8,7 @@ import { ClosedEnum } from "../../types/enums.js";
8
8
  export const InsightToolProperties = {
9
9
  Id: "id",
10
10
  Name: "name",
11
+ NameExact: "name_exact",
11
12
  Description: "description",
12
13
  ToolArguments: "tool_arguments",
13
14
  InsightToolDefinitionId: "insight_tool_definition_id",
@@ -17,9 +17,13 @@ export type InsightToolTestInput = {
17
17
  */
18
18
  toolName: string;
19
19
  /**
20
- * The session ID of the session to run the tool against
20
+ * The session ID of the session against which to run the tool
21
21
  */
22
- sessionId: number;
22
+ sessionId?: number | null | undefined;
23
+ /**
24
+ * The file ID of the uploaded file against which to run the tool
25
+ */
26
+ uploadFileId?: number | null | undefined;
23
27
  };
24
28
 
25
29
  /** @internal */
@@ -29,18 +33,21 @@ export const InsightToolTestInput$inboundSchema: z.ZodType<
29
33
  unknown
30
34
  > = z.object({
31
35
  tool_name: z.string(),
32
- session_id: z.number().int(),
36
+ session_id: z.nullable(z.number().int()).optional(),
37
+ upload_file_id: z.nullable(z.number().int()).optional(),
33
38
  }).transform((v) => {
34
39
  return remap$(v, {
35
40
  "tool_name": "toolName",
36
41
  "session_id": "sessionId",
42
+ "upload_file_id": "uploadFileId",
37
43
  });
38
44
  });
39
45
 
40
46
  /** @internal */
41
47
  export type InsightToolTestInput$Outbound = {
42
48
  tool_name: string;
43
- session_id: number;
49
+ session_id?: number | null | undefined;
50
+ upload_file_id?: number | null | undefined;
44
51
  };
45
52
 
46
53
  /** @internal */
@@ -50,11 +57,13 @@ export const InsightToolTestInput$outboundSchema: z.ZodType<
50
57
  InsightToolTestInput
51
58
  > = z.object({
52
59
  toolName: z.string(),
53
- sessionId: z.number().int(),
60
+ sessionId: z.nullable(z.number().int()).optional(),
61
+ uploadFileId: z.nullable(z.number().int()).optional(),
54
62
  }).transform((v) => {
55
63
  return remap$(v, {
56
64
  toolName: "tool_name",
57
65
  sessionId: "session_id",
66
+ uploadFileId: "upload_file_id",
58
67
  });
59
68
  });
60
69
 
@@ -8,6 +8,7 @@ import { ClosedEnum } from "../../types/enums.js";
8
8
  export const InsightWorkflowProperties = {
9
9
  Id: "id",
10
10
  Name: "name",
11
+ NameExact: "name_exact",
11
12
  Description: "description",
12
13
  Status: "status",
13
14
  Conditions: "conditions",