syllable-sdk 1.0.15 → 1.0.16-rc.2

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 (49) hide show
  1. package/README.md +38 -38
  2. package/bin/mcp-server.js +223 -94
  3. package/bin/mcp-server.js.map +14 -13
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +3 -3
  7. package/lib/config.js +3 -3
  8. package/lib/config.js.map +1 -1
  9. package/mcp-server/mcp-server.js +1 -1
  10. package/mcp-server/mcp-server.js.map +1 -1
  11. package/mcp-server/server.js +1 -1
  12. package/mcp-server/server.js.map +1 -1
  13. package/models/components/eventtaskevents.d.ts +4 -5
  14. package/models/components/eventtaskevents.d.ts.map +1 -1
  15. package/models/components/eventtaskevents.js +0 -5
  16. package/models/components/eventtaskevents.js.map +1 -1
  17. package/models/components/expressiontask.d.ts +1 -1
  18. package/models/components/expressiontaskevents.d.ts +5 -5
  19. package/models/components/expressiontaskevents.d.ts.map +1 -1
  20. package/models/components/expressiontaskevents.js +0 -4
  21. package/models/components/expressiontaskevents.js.map +1 -1
  22. package/models/components/getvalueaction.d.ts +154 -0
  23. package/models/components/getvalueaction.d.ts.map +1 -0
  24. package/models/components/getvalueaction.js +220 -0
  25. package/models/components/getvalueaction.js.map +1 -0
  26. package/models/components/index.d.ts +1 -0
  27. package/models/components/index.d.ts.map +1 -1
  28. package/models/components/index.js +1 -0
  29. package/models/components/index.js.map +1 -1
  30. package/models/components/stepeventactions.d.ts +45 -12
  31. package/models/components/stepeventactions.d.ts.map +1 -1
  32. package/models/components/stepeventactions.js +17 -8
  33. package/models/components/stepeventactions.js.map +1 -1
  34. package/models/components/toolparametertransform.d.ts +5 -5
  35. package/models/components/toolparametertransform.d.ts.map +1 -1
  36. package/models/components/toolparametertransform.js +6 -7
  37. package/models/components/toolparametertransform.js.map +1 -1
  38. package/openapi.json +175 -67
  39. package/package.json +1 -1
  40. package/src/lib/config.ts +3 -3
  41. package/src/mcp-server/mcp-server.ts +1 -1
  42. package/src/mcp-server/server.ts +1 -1
  43. package/src/models/components/eventtaskevents.ts +1 -16
  44. package/src/models/components/expressiontask.ts +1 -1
  45. package/src/models/components/expressiontaskevents.ts +3 -16
  46. package/src/models/components/getvalueaction.ts +458 -0
  47. package/src/models/components/index.ts +1 -0
  48. package/src/models/components/stepeventactions.ts +71 -21
  49. package/src/models/components/toolparametertransform.ts +13 -9
@@ -36,7 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
36
36
  };
37
37
  })();
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.ToolParameterTransform$outboundSchema = exports.ToolParameterTransform$inboundSchema = exports.Action$outboundSchema = exports.Action$inboundSchema = exports.Action = void 0;
39
+ exports.ToolParameterTransform$outboundSchema = exports.ToolParameterTransform$inboundSchema = exports.ToolParameterTransformAction$outboundSchema = exports.ToolParameterTransformAction$inboundSchema = exports.ToolParameterTransformAction = void 0;
40
40
  exports.toolParameterTransformToJSON = toolParameterTransformToJSON;
41
41
  exports.toolParameterTransformFromJSON = toolParameterTransformFromJSON;
42
42
  const z = __importStar(require("zod/v3"));
@@ -45,26 +45,25 @@ const toolparametertransformcondition_js_1 = require("./toolparametertransformco
45
45
  /**
46
46
  * The action to perform on the tool parameter value: `default` means only set the value (using the `format` field) if the parameter doesn't exist or is empty, `override` means always set the value," and `remove` means "remove the parameter value."
47
47
  */
48
- exports.Action = {
48
+ exports.ToolParameterTransformAction = {
49
49
  Default: "default",
50
50
  Override: "override",
51
51
  Remove: "remove",
52
52
  };
53
53
  /** @internal */
54
- exports.Action$inboundSchema = z
55
- .nativeEnum(exports.Action);
54
+ exports.ToolParameterTransformAction$inboundSchema = z.nativeEnum(exports.ToolParameterTransformAction);
56
55
  /** @internal */
57
- exports.Action$outboundSchema = exports.Action$inboundSchema;
56
+ exports.ToolParameterTransformAction$outboundSchema = exports.ToolParameterTransformAction$inboundSchema;
58
57
  /** @internal */
59
58
  exports.ToolParameterTransform$inboundSchema = z.object({
60
- action: exports.Action$inboundSchema.default("default"),
59
+ action: exports.ToolParameterTransformAction$inboundSchema.default("default"),
61
60
  when: z.nullable(toolparametertransformcondition_js_1.ToolParameterTransformCondition$inboundSchema).optional(),
62
61
  value: z.nullable(z.any()).optional(),
63
62
  format: z.nullable(z.string()).optional(),
64
63
  });
65
64
  /** @internal */
66
65
  exports.ToolParameterTransform$outboundSchema = z.object({
67
- action: exports.Action$outboundSchema.default("default"),
66
+ action: exports.ToolParameterTransformAction$outboundSchema.default("default"),
68
67
  when: z.nullable(toolparametertransformcondition_js_1.ToolParameterTransformCondition$outboundSchema).optional(),
69
68
  value: z.nullable(z.any()).optional(),
70
69
  format: z.nullable(z.string()).optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"toolparametertransform.js","sourceRoot":"","sources":["../../src/models/components/toolparametertransform.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6FH,oEAMC;AACD,wEAQC;AA1GD,0CAA4B;AAC5B,qDAAiD;AAIjD,6FAK8C;AAE9C;;GAEG;AACU,QAAA,MAAM,GAAG;IACpB,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;CACR,CAAC;AAkCX,gBAAgB;AACH,QAAA,oBAAoB,GAAmC,CAAC;KAClE,UAAU,CAAC,cAAM,CAAC,CAAC;AACtB,gBAAgB;AACH,QAAA,qBAAqB,GAChC,4BAAoB,CAAC;AAEvB,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,4BAAoB,CAAC,OAAO,CAAC,SAAS,CAAC;IAC/C,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,kFAA6C,CAAC,CAAC,QAAQ,EAAE;IAC1E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,qCAAqC,GAI9C,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,6BAAqB,CAAC,OAAO,CAAC,SAAS,CAAC;IAChD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,mFAA8C,CAAC,CAAC,QAAQ,EAAE;IAC3E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAEH,SAAgB,4BAA4B,CAC1C,sBAA8C;IAE9C,OAAO,IAAI,CAAC,SAAS,CACnB,6CAAqC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CACpE,CAAC;AACJ,CAAC;AACD,SAAgB,8BAA8B,CAC5C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4CAAoC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAChE,oDAAoD,CACrD,CAAC;AACJ,CAAC"}
1
+ {"version":3,"file":"toolparametertransform.js","sourceRoot":"","sources":["../../src/models/components/toolparametertransform.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiGH,oEAMC;AACD,wEAQC;AA9GD,0CAA4B;AAC5B,qDAAiD;AAIjD,6FAK8C;AAE9C;;GAEG;AACU,QAAA,4BAA4B,GAAG;IAC1C,OAAO,EAAE,SAAS;IAClB,QAAQ,EAAE,UAAU;IACpB,MAAM,EAAE,QAAQ;CACR,CAAC;AAoCX,gBAAgB;AACH,QAAA,0CAA0C,GAEnD,CAAC,CAAC,UAAU,CAAC,oCAA4B,CAAC,CAAC;AAC/C,gBAAgB;AACH,QAAA,2CAA2C,GAEpD,kDAA0C,CAAC;AAE/C,gBAAgB;AACH,QAAA,oCAAoC,GAI7C,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,kDAA0C,CAAC,OAAO,CAAC,SAAS,CAAC;IACrE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,kFAA6C,CAAC,CAAC,QAAQ,EAAE;IAC1E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,qCAAqC,GAI9C,CAAC,CAAC,MAAM,CAAC;IACX,MAAM,EAAE,mDAA2C,CAAC,OAAO,CAAC,SAAS,CAAC;IACtE,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,mFAA8C,CAAC,CAAC,QAAQ,EAAE;IAC3E,KAAK,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAEH,SAAgB,4BAA4B,CAC1C,sBAA8C;IAE9C,OAAO,IAAI,CAAC,SAAS,CACnB,6CAAqC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CACpE,CAAC;AACJ,CAAC;AACD,SAAgB,8BAA8B,CAC5C,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,4CAAoC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAChE,oDAAoD,CACrD,CAAC;AACJ,CAAC"}
package/openapi.json CHANGED
@@ -13938,7 +13938,7 @@
13938
13938
  "title": "Batch Id",
13939
13939
  "description": "Unique ID for conversation batch",
13940
13940
  "examples": [
13941
- "20251204.9"
13941
+ "20251208.9"
13942
13942
  ]
13943
13943
  },
13944
13944
  "campaign_id": {
@@ -13962,7 +13962,7 @@
13962
13962
  "title": "Expires On",
13963
13963
  "description": "Timestamp of batch expiration",
13964
13964
  "examples": [
13965
- "2025-12-05T00:00:00Z"
13965
+ "2025-12-09T00:00:00Z"
13966
13966
  ]
13967
13967
  },
13968
13968
  "paused": {
@@ -14015,7 +14015,7 @@
14015
14015
  "title": "Created At",
14016
14016
  "description": "Timestamp of batch creation",
14017
14017
  "examples": [
14018
- "2025-12-04T00:00:00Z"
14018
+ "2025-12-08T00:00:00Z"
14019
14019
  ]
14020
14020
  },
14021
14021
  "deleted_at": {
@@ -14031,7 +14031,7 @@
14031
14031
  "title": "Deleted At",
14032
14032
  "description": "Timestamp of batch deletion",
14033
14033
  "examples": [
14034
- "2025-12-04T00:00:00Z"
14034
+ "2025-12-08T00:00:00Z"
14035
14035
  ]
14036
14036
  },
14037
14037
  "deleted_reason": {
@@ -14062,7 +14062,7 @@
14062
14062
  "title": "Last Updated At",
14063
14063
  "description": "Timestamp of last change to batch",
14064
14064
  "examples": [
14065
- "2025-12-04T00:00:00Z"
14065
+ "2025-12-08T00:00:00Z"
14066
14066
  ]
14067
14067
  },
14068
14068
  "last_updated_by": {
@@ -14973,7 +14973,7 @@
14973
14973
  "title": "Batch Id",
14974
14974
  "description": "Unique ID for conversation batch",
14975
14975
  "examples": [
14976
- "20251204.9"
14976
+ "20251208.9"
14977
14977
  ]
14978
14978
  },
14979
14979
  "campaign_id": {
@@ -14997,7 +14997,7 @@
14997
14997
  "title": "Expires On",
14998
14998
  "description": "Timestamp of batch expiration",
14999
14999
  "examples": [
15000
- "2025-12-05T00:00:00Z"
15000
+ "2025-12-09T00:00:00Z"
15001
15001
  ]
15002
15002
  },
15003
15003
  "paused": {
@@ -15050,7 +15050,7 @@
15050
15050
  "title": "Created At",
15051
15051
  "description": "Timestamp of batch creation",
15052
15052
  "examples": [
15053
- "2025-12-04T00:00:00Z"
15053
+ "2025-12-08T00:00:00Z"
15054
15054
  ]
15055
15055
  },
15056
15056
  "deleted_at": {
@@ -15066,7 +15066,7 @@
15066
15066
  "title": "Deleted At",
15067
15067
  "description": "Timestamp of batch deletion",
15068
15068
  "examples": [
15069
- "2025-12-04T00:00:00Z"
15069
+ "2025-12-08T00:00:00Z"
15070
15070
  ]
15071
15071
  },
15072
15072
  "deleted_reason": {
@@ -15097,7 +15097,7 @@
15097
15097
  "title": "Last Updated At",
15098
15098
  "description": "Timestamp of last change to batch",
15099
15099
  "examples": [
15100
- "2025-12-04T00:00:00Z"
15100
+ "2025-12-08T00:00:00Z"
15101
15101
  ]
15102
15102
  },
15103
15103
  "last_updated_by": {
@@ -15140,7 +15140,7 @@
15140
15140
  "title": "Batch Id",
15141
15141
  "description": "Unique ID for conversation batch",
15142
15142
  "examples": [
15143
- "20251204.9"
15143
+ "20251208.9"
15144
15144
  ]
15145
15145
  },
15146
15146
  "campaign_id": {
@@ -15164,7 +15164,7 @@
15164
15164
  "title": "Expires On",
15165
15165
  "description": "Timestamp of batch expiration",
15166
15166
  "examples": [
15167
- "2025-12-05T00:00:00Z"
15167
+ "2025-12-09T00:00:00Z"
15168
15168
  ]
15169
15169
  },
15170
15170
  "paused": {
@@ -15313,7 +15313,7 @@
15313
15313
  "title": "Created At",
15314
15314
  "description": "Timestamp of request creation",
15315
15315
  "examples": [
15316
- "2025-12-03T00:00:00Z"
15316
+ "2025-12-07T00:00:00Z"
15317
15317
  ]
15318
15318
  },
15319
15319
  "sent_at": {
@@ -15329,7 +15329,7 @@
15329
15329
  "title": "Sent At",
15330
15330
  "description": "Timestamp at which request was sent",
15331
15331
  "examples": [
15332
- "2025-12-04T00:00:00Z"
15332
+ "2025-12-08T00:00:00Z"
15333
15333
  ]
15334
15334
  },
15335
15335
  "attempt_count": {
@@ -17876,17 +17876,14 @@
17876
17876
  {
17877
17877
  "$ref": "#/components/schemas/SetValueAction"
17878
17878
  },
17879
- {
17880
- "$ref": "#/components/schemas/SayAction"
17881
- },
17882
- {
17883
- "$ref": "#/components/schemas/SaveAction"
17884
- },
17885
17879
  {
17886
17880
  "$ref": "#/components/schemas/IncrementAction"
17887
17881
  },
17888
17882
  {
17889
17883
  "$ref": "#/components/schemas/CallAction"
17884
+ },
17885
+ {
17886
+ "$ref": "#/components/schemas/SayAction"
17890
17887
  }
17891
17888
  ],
17892
17889
  "discriminator": {
@@ -17894,7 +17891,6 @@
17894
17891
  "mapping": {
17895
17892
  "call": "#/components/schemas/CallAction",
17896
17893
  "inc": "#/components/schemas/IncrementAction",
17897
- "save": "#/components/schemas/SaveAction",
17898
17894
  "say": "#/components/schemas/SayAction",
17899
17895
  "set": "#/components/schemas/SetValueAction"
17900
17896
  }
@@ -18054,17 +18050,14 @@
18054
18050
  {
18055
18051
  "$ref": "#/components/schemas/SetValueAction"
18056
18052
  },
18057
- {
18058
- "$ref": "#/components/schemas/SayAction"
18059
- },
18060
- {
18061
- "$ref": "#/components/schemas/SaveAction"
18062
- },
18063
18053
  {
18064
18054
  "$ref": "#/components/schemas/IncrementAction"
18065
18055
  },
18066
18056
  {
18067
18057
  "$ref": "#/components/schemas/CallAction"
18058
+ },
18059
+ {
18060
+ "$ref": "#/components/schemas/SayAction"
18068
18061
  }
18069
18062
  ],
18070
18063
  "discriminator": {
@@ -18072,7 +18065,6 @@
18072
18065
  "mapping": {
18073
18066
  "call": "#/components/schemas/CallAction",
18074
18067
  "inc": "#/components/schemas/IncrementAction",
18075
- "save": "#/components/schemas/SaveAction",
18076
18068
  "say": "#/components/schemas/SayAction",
18077
18069
  "set": "#/components/schemas/SetValueAction"
18078
18070
  }
@@ -18098,14 +18090,14 @@
18098
18090
  {
18099
18091
  "$ref": "#/components/schemas/IncrementAction"
18100
18092
  },
18101
- {
18102
- "$ref": "#/components/schemas/SayAction"
18103
- },
18104
18093
  {
18105
18094
  "$ref": "#/components/schemas/SaveAction"
18106
18095
  },
18107
18096
  {
18108
18097
  "$ref": "#/components/schemas/CallAction"
18098
+ },
18099
+ {
18100
+ "$ref": "#/components/schemas/SayAction"
18109
18101
  }
18110
18102
  ],
18111
18103
  "discriminator": {
@@ -18131,7 +18123,7 @@
18131
18123
  },
18132
18124
  "type": "object",
18133
18125
  "title": "ExpressionTaskEvents",
18134
- "description": "Actions to perform when events occur (enter, submit)."
18126
+ "description": "Actions to perform when events occur (start, submit)."
18135
18127
  },
18136
18128
  "FolderDetails": {
18137
18129
  "properties": {
@@ -18187,7 +18179,7 @@
18187
18179
  "title": "Created At",
18188
18180
  "description": "Timestamp at which insight upload folder was created",
18189
18181
  "examples": [
18190
- "2025-12-03T00:00:00Z"
18182
+ "2025-12-07T00:00:00Z"
18191
18183
  ]
18192
18184
  },
18193
18185
  "updated_at": {
@@ -18196,7 +18188,7 @@
18196
18188
  "title": "Updated At",
18197
18189
  "description": "Timestamp at which insight upload folder was last updated",
18198
18190
  "examples": [
18199
- "2025-12-04T00:00:00Z"
18191
+ "2025-12-08T00:00:00Z"
18200
18192
  ]
18201
18193
  },
18202
18194
  "last_updated_by": {
@@ -18243,6 +18235,120 @@
18243
18235
  "title": "FolderDetails",
18244
18236
  "description": "Response model for an insight upload folder details."
18245
18237
  },
18238
+ "GetValueAction": {
18239
+ "properties": {
18240
+ "value": {
18241
+ "anyOf": [
18242
+ {
18243
+ "$ref": "#/components/schemas/JsonValue"
18244
+ },
18245
+ {
18246
+ "type": "null"
18247
+ }
18248
+ ],
18249
+ "description": "Initial value of the variable."
18250
+ },
18251
+ "value_from": {
18252
+ "anyOf": [
18253
+ {
18254
+ "oneOf": [
18255
+ {
18256
+ "$ref": "#/components/schemas/CelExpression"
18257
+ },
18258
+ {
18259
+ "$ref": "#/components/schemas/JMESPathExpression"
18260
+ }
18261
+ ],
18262
+ "discriminator": {
18263
+ "propertyName": "type",
18264
+ "mapping": {
18265
+ "cel": "#/components/schemas/CelExpression",
18266
+ "jmespath": "#/components/schemas/JMESPathExpression",
18267
+ "jp": "#/components/schemas/JMESPathExpression"
18268
+ }
18269
+ }
18270
+ },
18271
+ {
18272
+ "$ref": "#/components/schemas/CaseExpression"
18273
+ },
18274
+ {
18275
+ "type": "string"
18276
+ },
18277
+ {
18278
+ "type": "null"
18279
+ }
18280
+ ],
18281
+ "title": "Value From",
18282
+ "description": "Expression to compute initial value (mutually exclusive with value)."
18283
+ },
18284
+ "if": {
18285
+ "anyOf": [
18286
+ {
18287
+ "oneOf": [
18288
+ {
18289
+ "$ref": "#/components/schemas/CelExpression"
18290
+ },
18291
+ {
18292
+ "$ref": "#/components/schemas/JMESPathExpression"
18293
+ }
18294
+ ],
18295
+ "discriminator": {
18296
+ "propertyName": "type",
18297
+ "mapping": {
18298
+ "cel": "#/components/schemas/CelExpression",
18299
+ "jmespath": "#/components/schemas/JMESPathExpression",
18300
+ "jp": "#/components/schemas/JMESPathExpression"
18301
+ }
18302
+ }
18303
+ },
18304
+ {
18305
+ "$ref": "#/components/schemas/CaseExpression"
18306
+ },
18307
+ {
18308
+ "type": "string"
18309
+ },
18310
+ {
18311
+ "type": "null"
18312
+ }
18313
+ ],
18314
+ "title": "If",
18315
+ "description": "An expression that must evaluate to true for the action to be applied."
18316
+ },
18317
+ "action": {
18318
+ "type": "string",
18319
+ "enum": [
18320
+ "get",
18321
+ "load"
18322
+ ],
18323
+ "title": "Action",
18324
+ "description": "Populate default input values.",
18325
+ "default": "get"
18326
+ },
18327
+ "inputs": {
18328
+ "anyOf": [
18329
+ {
18330
+ "items": {
18331
+ "type": "string"
18332
+ },
18333
+ "type": "array"
18334
+ },
18335
+ {
18336
+ "type": "null"
18337
+ }
18338
+ ],
18339
+ "title": "Inputs",
18340
+ "description": "Input field names to populate; None populates all step inputs."
18341
+ },
18342
+ "overwrite": {
18343
+ "type": "boolean",
18344
+ "title": "Overwrite",
18345
+ "description": "If False (default), only populate empty inputs. If True, always overwrite.",
18346
+ "default": false
18347
+ }
18348
+ },
18349
+ "type": "object",
18350
+ "title": "GetValueAction"
18351
+ },
18246
18352
  "HTTPValidationError": {
18247
18353
  "properties": {
18248
18354
  "detail": {
@@ -19052,7 +19158,7 @@
19052
19158
  "title": "Created At",
19053
19159
  "description": "Timestamp of at which insight tool configuration was created",
19054
19160
  "examples": [
19055
- "2025-12-03T00:00:00Z"
19161
+ "2025-12-07T00:00:00Z"
19056
19162
  ]
19057
19163
  },
19058
19164
  "updated_at": {
@@ -19061,7 +19167,7 @@
19061
19167
  "title": "Updated At",
19062
19168
  "description": "Timestamp at which insight tool configuration was last updated",
19063
19169
  "examples": [
19064
- "2025-12-04T00:00:00Z"
19170
+ "2025-12-08T00:00:00Z"
19065
19171
  ]
19066
19172
  },
19067
19173
  "last_updated_by": {
@@ -19442,7 +19548,7 @@
19442
19548
  "title": "Start Datetime",
19443
19549
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
19444
19550
  "examples": [
19445
- "2025-12-03T00:00:00Z"
19551
+ "2025-12-07T00:00:00Z"
19446
19552
  ]
19447
19553
  },
19448
19554
  "end_datetime": {
@@ -19458,7 +19564,7 @@
19458
19564
  "title": "End Datetime",
19459
19565
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
19460
19566
  "examples": [
19461
- "2025-12-04T00:00:00Z"
19567
+ "2025-12-08T00:00:00Z"
19462
19568
  ]
19463
19569
  }
19464
19570
  },
@@ -19533,7 +19639,7 @@
19533
19639
  "title": "Start Datetime",
19534
19640
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
19535
19641
  "examples": [
19536
- "2025-12-03T00:00:00Z"
19642
+ "2025-12-07T00:00:00Z"
19537
19643
  ]
19538
19644
  },
19539
19645
  "end_datetime": {
@@ -19549,7 +19655,7 @@
19549
19655
  "title": "End Datetime",
19550
19656
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
19551
19657
  "examples": [
19552
- "2025-12-04T00:00:00Z"
19658
+ "2025-12-08T00:00:00Z"
19553
19659
  ]
19554
19660
  },
19555
19661
  "id": {
@@ -19602,7 +19708,7 @@
19602
19708
  "title": "Created At",
19603
19709
  "description": "Timestamp at which the insight workflow was created",
19604
19710
  "examples": [
19605
- "2025-12-03T00:00:00Z"
19711
+ "2025-12-07T00:00:00Z"
19606
19712
  ]
19607
19713
  },
19608
19714
  "updated_at": {
@@ -19611,7 +19717,7 @@
19611
19717
  "title": "Updated At",
19612
19718
  "description": "Timestamp of most recent update to the insight workflow",
19613
19719
  "examples": [
19614
- "2025-12-04T00:00:00Z"
19720
+ "2025-12-08T00:00:00Z"
19615
19721
  ]
19616
19722
  },
19617
19723
  "last_updated_by": {
@@ -19707,7 +19813,7 @@
19707
19813
  "title": "Created At",
19708
19814
  "description": "Timestamp at which insight upload folder was created",
19709
19815
  "examples": [
19710
- "2025-12-03T00:00:00Z"
19816
+ "2025-12-07T00:00:00Z"
19711
19817
  ]
19712
19818
  },
19713
19819
  "updated_at": {
@@ -19716,7 +19822,7 @@
19716
19822
  "title": "Updated At",
19717
19823
  "description": "Timestamp at which insight upload folder was last updated",
19718
19824
  "examples": [
19719
- "2025-12-04T00:00:00Z"
19825
+ "2025-12-08T00:00:00Z"
19720
19826
  ]
19721
19827
  },
19722
19828
  "last_updated_by": {
@@ -19951,7 +20057,7 @@
19951
20057
  "title": "Created At",
19952
20058
  "description": "Timestamp at which insight tool result was created",
19953
20059
  "examples": [
19954
- "2025-12-03T00:00:00Z"
20060
+ "2025-12-07T00:00:00Z"
19955
20061
  ]
19956
20062
  },
19957
20063
  "updated_at": {
@@ -19960,7 +20066,7 @@
19960
20066
  "title": "Updated At",
19961
20067
  "description": "Timestamp at which insight tool result was last updated",
19962
20068
  "examples": [
19963
- "2025-12-04T00:00:00Z"
20069
+ "2025-12-08T00:00:00Z"
19964
20070
  ]
19965
20071
  },
19966
20072
  "upload_file_metadata": {
@@ -20105,7 +20211,7 @@
20105
20211
  "title": "Start Time",
20106
20212
  "description": "Start time of the uploaded file",
20107
20213
  "examples": [
20108
- "2025-12-03T00:00:00Z"
20214
+ "2025-12-07T00:00:00Z"
20109
20215
  ]
20110
20216
  },
20111
20217
  "end_time": {
@@ -20121,7 +20227,7 @@
20121
20227
  "title": "End Time",
20122
20228
  "description": "End time of the uploaded file",
20123
20229
  "examples": [
20124
- "2025-12-04T00:00:00Z"
20230
+ "2025-12-08T00:00:00Z"
20125
20231
  ]
20126
20232
  },
20127
20233
  "error_message": {
@@ -20176,7 +20282,7 @@
20176
20282
  "title": "Created At",
20177
20283
  "description": "Timestamp at which insight upload file was created",
20178
20284
  "examples": [
20179
- "2025-12-03T00:00:00Z"
20285
+ "2025-12-07T00:00:00Z"
20180
20286
  ]
20181
20287
  }
20182
20288
  },
@@ -23535,7 +23641,7 @@
23535
23641
  "title": "Created At",
23536
23642
  "description": "Timestamp of campaign creation",
23537
23643
  "examples": [
23538
- "2025-12-04T00:00:00Z"
23644
+ "2025-12-08T00:00:00Z"
23539
23645
  ]
23540
23646
  },
23541
23647
  "updated_at": {
@@ -23544,7 +23650,7 @@
23544
23650
  "title": "Updated At",
23545
23651
  "description": "Timestamp of campaign update",
23546
23652
  "examples": [
23547
- "2025-12-04T00:00:00Z"
23653
+ "2025-12-08T00:00:00Z"
23548
23654
  ]
23549
23655
  },
23550
23656
  "last_updated_by": {
@@ -26529,17 +26635,14 @@
26529
26635
  {
26530
26636
  "$ref": "#/components/schemas/SetValueAction"
26531
26637
  },
26532
- {
26533
- "$ref": "#/components/schemas/SayAction"
26534
- },
26535
- {
26536
- "$ref": "#/components/schemas/SaveAction"
26537
- },
26538
26638
  {
26539
26639
  "$ref": "#/components/schemas/IncrementAction"
26540
26640
  },
26541
26641
  {
26542
26642
  "$ref": "#/components/schemas/CallAction"
26643
+ },
26644
+ {
26645
+ "$ref": "#/components/schemas/SayAction"
26543
26646
  }
26544
26647
  ],
26545
26648
  "discriminator": {
@@ -26547,7 +26650,6 @@
26547
26650
  "mapping": {
26548
26651
  "call": "#/components/schemas/CallAction",
26549
26652
  "inc": "#/components/schemas/IncrementAction",
26550
- "save": "#/components/schemas/SaveAction",
26551
26653
  "say": "#/components/schemas/SayAction",
26552
26654
  "set": "#/components/schemas/SetValueAction"
26553
26655
  }
@@ -26568,27 +26670,28 @@
26568
26670
  "items": {
26569
26671
  "oneOf": [
26570
26672
  {
26571
- "$ref": "#/components/schemas/SetValueAction"
26673
+ "$ref": "#/components/schemas/GetValueAction"
26572
26674
  },
26573
26675
  {
26574
- "$ref": "#/components/schemas/IncrementAction"
26676
+ "$ref": "#/components/schemas/SetValueAction"
26575
26677
  },
26576
26678
  {
26577
- "$ref": "#/components/schemas/SayAction"
26679
+ "$ref": "#/components/schemas/IncrementAction"
26578
26680
  },
26579
26681
  {
26580
- "$ref": "#/components/schemas/SaveAction"
26682
+ "$ref": "#/components/schemas/CallAction"
26581
26683
  },
26582
26684
  {
26583
- "$ref": "#/components/schemas/CallAction"
26685
+ "$ref": "#/components/schemas/SayAction"
26584
26686
  }
26585
26687
  ],
26586
26688
  "discriminator": {
26587
26689
  "propertyName": "action",
26588
26690
  "mapping": {
26589
26691
  "call": "#/components/schemas/CallAction",
26692
+ "get": "#/components/schemas/GetValueAction",
26590
26693
  "inc": "#/components/schemas/IncrementAction",
26591
- "save": "#/components/schemas/SaveAction",
26694
+ "load": "#/components/schemas/GetValueAction",
26592
26695
  "say": "#/components/schemas/SayAction",
26593
26696
  "set": "#/components/schemas/SetValueAction"
26594
26697
  }
@@ -26608,6 +26711,9 @@
26608
26711
  {
26609
26712
  "items": {
26610
26713
  "oneOf": [
26714
+ {
26715
+ "$ref": "#/components/schemas/GetValueAction"
26716
+ },
26611
26717
  {
26612
26718
  "$ref": "#/components/schemas/SetValueAction"
26613
26719
  },
@@ -26621,7 +26727,9 @@
26621
26727
  "discriminator": {
26622
26728
  "propertyName": "action",
26623
26729
  "mapping": {
26730
+ "get": "#/components/schemas/GetValueAction",
26624
26731
  "inc": "#/components/schemas/IncrementAction",
26732
+ "load": "#/components/schemas/GetValueAction",
26625
26733
  "save": "#/components/schemas/SaveAction",
26626
26734
  "set": "#/components/schemas/SetValueAction"
26627
26735
  }
@@ -26647,14 +26755,14 @@
26647
26755
  {
26648
26756
  "$ref": "#/components/schemas/IncrementAction"
26649
26757
  },
26650
- {
26651
- "$ref": "#/components/schemas/SayAction"
26652
- },
26653
26758
  {
26654
26759
  "$ref": "#/components/schemas/SaveAction"
26655
26760
  },
26656
26761
  {
26657
26762
  "$ref": "#/components/schemas/CallAction"
26763
+ },
26764
+ {
26765
+ "$ref": "#/components/schemas/SayAction"
26658
26766
  }
26659
26767
  ],
26660
26768
  "discriminator": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "1.0.15",
3
+ "version": "1.0.16-rc.2",
4
4
  "author": "Syllable",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
package/src/lib/config.ts CHANGED
@@ -61,7 +61,7 @@ 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: "1.0.15",
65
- genVersion: "2.770.0",
66
- userAgent: "speakeasy-sdk/typescript 1.0.15 2.770.0 0.0.2 syllable-sdk",
64
+ sdkVersion: "1.0.16-rc.2",
65
+ genVersion: "2.774.0",
66
+ userAgent: "speakeasy-sdk/typescript 1.0.16-rc.2 2.774.0 0.0.2 syllable-sdk",
67
67
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "1.0.15",
22
+ currentVersion: "1.0.16-rc.2",
23
23
  },
24
24
  });
25
25