syllable-sdk 1.0.15-rc.3 → 1.0.16-rc.1

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 (41) hide show
  1. package/README.md +38 -38
  2. package/bin/mcp-server.js +203 -88
  3. package/bin/mcp-server.js.map +13 -12
  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/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/server.js +1 -1
  10. package/models/components/eventtaskevents.d.ts +4 -5
  11. package/models/components/eventtaskevents.d.ts.map +1 -1
  12. package/models/components/eventtaskevents.js +0 -5
  13. package/models/components/eventtaskevents.js.map +1 -1
  14. package/models/components/expressiontask.d.ts +1 -1
  15. package/models/components/expressiontaskevents.d.ts +5 -5
  16. package/models/components/expressiontaskevents.d.ts.map +1 -1
  17. package/models/components/expressiontaskevents.js +0 -4
  18. package/models/components/expressiontaskevents.js.map +1 -1
  19. package/models/components/getvalueaction.d.ts +135 -0
  20. package/models/components/getvalueaction.d.ts.map +1 -0
  21. package/models/components/getvalueaction.js +208 -0
  22. package/models/components/getvalueaction.js.map +1 -0
  23. package/models/components/index.d.ts +1 -0
  24. package/models/components/index.d.ts.map +1 -1
  25. package/models/components/index.js +1 -0
  26. package/models/components/index.js.map +1 -1
  27. package/models/components/stepeventactions.d.ts +13 -12
  28. package/models/components/stepeventactions.d.ts.map +1 -1
  29. package/models/components/stepeventactions.js +9 -8
  30. package/models/components/stepeventactions.js.map +1 -1
  31. package/openapi.json +169 -67
  32. package/package.json +1 -1
  33. package/src/lib/config.ts +3 -3
  34. package/src/mcp-server/mcp-server.ts +1 -1
  35. package/src/mcp-server/server.ts +1 -1
  36. package/src/models/components/eventtaskevents.ts +1 -16
  37. package/src/models/components/expressiontask.ts +1 -1
  38. package/src/models/components/expressiontaskevents.ts +3 -16
  39. package/src/models/components/getvalueaction.ts +435 -0
  40. package/src/models/components/index.ts +1 -0
  41. package/src/models/components/stepeventactions.ts +30 -21
package/bin/mcp-server.js CHANGED
@@ -34419,9 +34419,9 @@ var init_config = __esm(() => {
34419
34419
  SDK_METADATA = {
34420
34420
  language: "typescript",
34421
34421
  openapiDocVersion: "0.0.2",
34422
- sdkVersion: "1.0.15-rc.3",
34423
- genVersion: "2.770.0",
34424
- userAgent: "speakeasy-sdk/typescript 1.0.15-rc.3 2.770.0 0.0.2 syllable-sdk"
34422
+ sdkVersion: "1.0.16-rc.1",
34423
+ genVersion: "2.772.0",
34424
+ userAgent: "speakeasy-sdk/typescript 1.0.16-rc.1 2.772.0 0.0.2 syllable-sdk"
34425
34425
  };
34426
34426
  });
34427
34427
 
@@ -36955,71 +36955,6 @@ var init_incrementaction = __esm(() => {
36955
36955
  });
36956
36956
  });
36957
36957
 
36958
- // src/models/components/saveaction.ts
36959
- var SaveActionIf1$inboundSchema, SaveActionIf1$outboundSchema, SaveActionIf$inboundSchema, SaveActionIf$outboundSchema, SaveAction$inboundSchema, SaveAction$outboundSchema;
36960
- var init_saveaction = __esm(() => {
36961
- init_v3();
36962
- init_caseexpression();
36963
- init_celexpression();
36964
- init_jmespathexpression();
36965
- SaveActionIf1$inboundSchema = unionType([
36966
- CelExpression$inboundSchema,
36967
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
36968
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
36969
- ]);
36970
- SaveActionIf1$outboundSchema = unionType([
36971
- CelExpression$outboundSchema,
36972
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
36973
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
36974
- ]);
36975
- SaveActionIf$inboundSchema = unionType([
36976
- CaseExpression$inboundSchema,
36977
- unionType([
36978
- CelExpression$inboundSchema,
36979
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
36980
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
36981
- ]),
36982
- stringType()
36983
- ]);
36984
- SaveActionIf$outboundSchema = unionType([
36985
- CaseExpression$outboundSchema,
36986
- unionType([
36987
- CelExpression$outboundSchema,
36988
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
36989
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
36990
- ]),
36991
- stringType()
36992
- ]);
36993
- SaveAction$inboundSchema = objectType({
36994
- if: nullableType(unionType([
36995
- CaseExpression$inboundSchema,
36996
- unionType([
36997
- CelExpression$inboundSchema,
36998
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
36999
- JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37000
- ]),
37001
- stringType()
37002
- ])).optional(),
37003
- action: literalType("save"),
37004
- name: nullableType(stringType()).optional(),
37005
- inputs: nullableType(arrayType(stringType())).optional()
37006
- });
37007
- SaveAction$outboundSchema = objectType({
37008
- if: nullableType(unionType([
37009
- CaseExpression$outboundSchema,
37010
- unionType([
37011
- CelExpression$outboundSchema,
37012
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37013
- JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37014
- ]),
37015
- stringType()
37016
- ])).optional(),
37017
- action: literalType("save"),
37018
- name: nullableType(stringType()).optional(),
37019
- inputs: nullableType(arrayType(stringType())).optional()
37020
- });
37021
- });
37022
-
37023
36958
  // src/models/components/sayaction.ts
37024
36959
  var Role, SayActionIf1$inboundSchema, SayActionIf1$outboundSchema, SayActionIf$inboundSchema, SayActionIf$outboundSchema, Role$inboundSchema, Role$outboundSchema, SayAction$inboundSchema, SayAction$outboundSchema;
37025
36960
  var init_sayaction = __esm(() => {
@@ -37217,20 +37152,17 @@ var init_eventtaskevents = __esm(() => {
37217
37152
  init_v3();
37218
37153
  init_callaction();
37219
37154
  init_incrementaction();
37220
- init_saveaction();
37221
37155
  init_sayaction();
37222
37156
  init_setvalueaction();
37223
37157
  EventTaskEventsStart$inboundSchema = unionType([
37224
37158
  CallAction$inboundSchema,
37225
37159
  IncrementAction$inboundSchema,
37226
- SaveAction$inboundSchema,
37227
37160
  SayAction$inboundSchema,
37228
37161
  SetValueAction$inboundSchema
37229
37162
  ]);
37230
37163
  EventTaskEventsStart$outboundSchema = unionType([
37231
37164
  CallAction$outboundSchema,
37232
37165
  IncrementAction$outboundSchema,
37233
- SaveAction$outboundSchema,
37234
37166
  SayAction$outboundSchema,
37235
37167
  SetValueAction$outboundSchema
37236
37168
  ]);
@@ -37238,7 +37170,6 @@ var init_eventtaskevents = __esm(() => {
37238
37170
  start: nullableType(arrayType(unionType([
37239
37171
  CallAction$inboundSchema,
37240
37172
  IncrementAction$inboundSchema,
37241
- SaveAction$inboundSchema,
37242
37173
  SayAction$inboundSchema,
37243
37174
  SetValueAction$inboundSchema
37244
37175
  ]))).optional()
@@ -37247,7 +37178,6 @@ var init_eventtaskevents = __esm(() => {
37247
37178
  start: nullableType(arrayType(unionType([
37248
37179
  CallAction$outboundSchema,
37249
37180
  IncrementAction$outboundSchema,
37250
- SaveAction$outboundSchema,
37251
37181
  SayAction$outboundSchema,
37252
37182
  SetValueAction$outboundSchema
37253
37183
  ]))).optional()
@@ -37381,6 +37311,71 @@ var init_eventtask = __esm(() => {
37381
37311
  });
37382
37312
  });
37383
37313
 
37314
+ // src/models/components/saveaction.ts
37315
+ var SaveActionIf1$inboundSchema, SaveActionIf1$outboundSchema, SaveActionIf$inboundSchema, SaveActionIf$outboundSchema, SaveAction$inboundSchema, SaveAction$outboundSchema;
37316
+ var init_saveaction = __esm(() => {
37317
+ init_v3();
37318
+ init_caseexpression();
37319
+ init_celexpression();
37320
+ init_jmespathexpression();
37321
+ SaveActionIf1$inboundSchema = unionType([
37322
+ CelExpression$inboundSchema,
37323
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37324
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37325
+ ]);
37326
+ SaveActionIf1$outboundSchema = unionType([
37327
+ CelExpression$outboundSchema,
37328
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37329
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37330
+ ]);
37331
+ SaveActionIf$inboundSchema = unionType([
37332
+ CaseExpression$inboundSchema,
37333
+ unionType([
37334
+ CelExpression$inboundSchema,
37335
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37336
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37337
+ ]),
37338
+ stringType()
37339
+ ]);
37340
+ SaveActionIf$outboundSchema = unionType([
37341
+ CaseExpression$outboundSchema,
37342
+ unionType([
37343
+ CelExpression$outboundSchema,
37344
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37345
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37346
+ ]),
37347
+ stringType()
37348
+ ]);
37349
+ SaveAction$inboundSchema = objectType({
37350
+ if: nullableType(unionType([
37351
+ CaseExpression$inboundSchema,
37352
+ unionType([
37353
+ CelExpression$inboundSchema,
37354
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37355
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37356
+ ]),
37357
+ stringType()
37358
+ ])).optional(),
37359
+ action: literalType("save"),
37360
+ name: nullableType(stringType()).optional(),
37361
+ inputs: nullableType(arrayType(stringType())).optional()
37362
+ });
37363
+ SaveAction$outboundSchema = objectType({
37364
+ if: nullableType(unionType([
37365
+ CaseExpression$outboundSchema,
37366
+ unionType([
37367
+ CelExpression$outboundSchema,
37368
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37369
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37370
+ ]),
37371
+ stringType()
37372
+ ])).optional(),
37373
+ action: literalType("save"),
37374
+ name: nullableType(stringType()).optional(),
37375
+ inputs: nullableType(arrayType(stringType())).optional()
37376
+ });
37377
+ });
37378
+
37384
37379
  // src/models/components/expressiontaskevents.ts
37385
37380
  var Start$inboundSchema, Start$outboundSchema, Submit$inboundSchema, Submit$outboundSchema, ExpressionTaskEvents$inboundSchema, ExpressionTaskEvents$outboundSchema;
37386
37381
  var init_expressiontaskevents = __esm(() => {
@@ -37393,14 +37388,12 @@ var init_expressiontaskevents = __esm(() => {
37393
37388
  Start$inboundSchema = unionType([
37394
37389
  CallAction$inboundSchema,
37395
37390
  IncrementAction$inboundSchema,
37396
- SaveAction$inboundSchema,
37397
37391
  SayAction$inboundSchema,
37398
37392
  SetValueAction$inboundSchema
37399
37393
  ]);
37400
37394
  Start$outboundSchema = unionType([
37401
37395
  CallAction$outboundSchema,
37402
37396
  IncrementAction$outboundSchema,
37403
- SaveAction$outboundSchema,
37404
37397
  SayAction$outboundSchema,
37405
37398
  SetValueAction$outboundSchema
37406
37399
  ]);
@@ -37422,7 +37415,6 @@ var init_expressiontaskevents = __esm(() => {
37422
37415
  start: nullableType(arrayType(unionType([
37423
37416
  CallAction$inboundSchema,
37424
37417
  IncrementAction$inboundSchema,
37425
- SaveAction$inboundSchema,
37426
37418
  SayAction$inboundSchema,
37427
37419
  SetValueAction$inboundSchema
37428
37420
  ]))).optional(),
@@ -37438,7 +37430,6 @@ var init_expressiontaskevents = __esm(() => {
37438
37430
  start: nullableType(arrayType(unionType([
37439
37431
  CallAction$outboundSchema,
37440
37432
  IncrementAction$outboundSchema,
37441
- SaveAction$outboundSchema,
37442
37433
  SayAction$outboundSchema,
37443
37434
  SetValueAction$outboundSchema
37444
37435
  ]))).optional(),
@@ -37730,11 +37721,134 @@ var init_nextstep = __esm(() => {
37730
37721
  });
37731
37722
  });
37732
37723
 
37724
+ // src/models/components/getvalueaction.ts
37725
+ var GetValueActionValueFrom1$inboundSchema, GetValueActionValueFrom1$outboundSchema, GetValueActionValueFrom$inboundSchema, GetValueActionValueFrom$outboundSchema, GetValueActionIf1$inboundSchema, GetValueActionIf1$outboundSchema, GetValueActionIf$inboundSchema, GetValueActionIf$outboundSchema, GetValueAction$inboundSchema, GetValueAction$outboundSchema;
37726
+ var init_getvalueaction = __esm(() => {
37727
+ init_v3();
37728
+ init_primitives();
37729
+ init_caseexpression();
37730
+ init_celexpression();
37731
+ init_jmespathexpression();
37732
+ GetValueActionValueFrom1$inboundSchema = unionType([
37733
+ CelExpression$inboundSchema,
37734
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37735
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37736
+ ]);
37737
+ GetValueActionValueFrom1$outboundSchema = unionType([
37738
+ CelExpression$outboundSchema,
37739
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37740
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37741
+ ]);
37742
+ GetValueActionValueFrom$inboundSchema = unionType([
37743
+ CaseExpression$inboundSchema,
37744
+ unionType([
37745
+ CelExpression$inboundSchema,
37746
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37747
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37748
+ ]),
37749
+ stringType()
37750
+ ]);
37751
+ GetValueActionValueFrom$outboundSchema = unionType([
37752
+ CaseExpression$outboundSchema,
37753
+ unionType([
37754
+ CelExpression$outboundSchema,
37755
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37756
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37757
+ ]),
37758
+ stringType()
37759
+ ]);
37760
+ GetValueActionIf1$inboundSchema = unionType([
37761
+ CelExpression$inboundSchema,
37762
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37763
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37764
+ ]);
37765
+ GetValueActionIf1$outboundSchema = unionType([
37766
+ CelExpression$outboundSchema,
37767
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37768
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37769
+ ]);
37770
+ GetValueActionIf$inboundSchema = unionType([
37771
+ CaseExpression$inboundSchema,
37772
+ unionType([
37773
+ CelExpression$inboundSchema,
37774
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37775
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37776
+ ]),
37777
+ stringType()
37778
+ ]);
37779
+ GetValueActionIf$outboundSchema = unionType([
37780
+ CaseExpression$outboundSchema,
37781
+ unionType([
37782
+ CelExpression$outboundSchema,
37783
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37784
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37785
+ ]),
37786
+ stringType()
37787
+ ]);
37788
+ GetValueAction$inboundSchema = objectType({
37789
+ value: nullableType(anyType()).optional(),
37790
+ value_from: nullableType(unionType([
37791
+ CaseExpression$inboundSchema,
37792
+ unionType([
37793
+ CelExpression$inboundSchema,
37794
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37795
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37796
+ ]),
37797
+ stringType()
37798
+ ])).optional(),
37799
+ if: nullableType(unionType([
37800
+ CaseExpression$inboundSchema,
37801
+ unionType([
37802
+ CelExpression$inboundSchema,
37803
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jmespath") })),
37804
+ JMESPathExpression$inboundSchema.and(objectType({ type: literalType("jp") }))
37805
+ ]),
37806
+ stringType()
37807
+ ])).optional(),
37808
+ action: literalType("get"),
37809
+ inputs: nullableType(arrayType(stringType())).optional(),
37810
+ overwrite: booleanType().default(false)
37811
+ }).transform((v2) => {
37812
+ return remap(v2, {
37813
+ value_from: "valueFrom"
37814
+ });
37815
+ });
37816
+ GetValueAction$outboundSchema = objectType({
37817
+ value: nullableType(anyType()).optional(),
37818
+ valueFrom: nullableType(unionType([
37819
+ CaseExpression$outboundSchema,
37820
+ unionType([
37821
+ CelExpression$outboundSchema,
37822
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37823
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37824
+ ]),
37825
+ stringType()
37826
+ ])).optional(),
37827
+ if: nullableType(unionType([
37828
+ CaseExpression$outboundSchema,
37829
+ unionType([
37830
+ CelExpression$outboundSchema,
37831
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jmespath") })),
37832
+ JMESPathExpression$outboundSchema.and(objectType({ type: literalType("jp") }))
37833
+ ]),
37834
+ stringType()
37835
+ ])).optional(),
37836
+ action: literalType("get"),
37837
+ inputs: nullableType(arrayType(stringType())).optional(),
37838
+ overwrite: booleanType().default(false)
37839
+ }).transform((v2) => {
37840
+ return remap(v2, {
37841
+ valueFrom: "value_from"
37842
+ });
37843
+ });
37844
+ });
37845
+
37733
37846
  // src/models/components/stepeventactions.ts
37734
37847
  var StepEventActionsStart$inboundSchema, StepEventActionsStart$outboundSchema, Enter$inboundSchema, Enter$outboundSchema, Presubmit$inboundSchema, Presubmit$outboundSchema, StepEventActionsSubmit$inboundSchema, StepEventActionsSubmit$outboundSchema, StepEventActions$inboundSchema, StepEventActions$outboundSchema;
37735
37848
  var init_stepeventactions = __esm(() => {
37736
37849
  init_v3();
37737
37850
  init_callaction();
37851
+ init_getvalueaction();
37738
37852
  init_incrementaction();
37739
37853
  init_saveaction();
37740
37854
  init_sayaction();
@@ -37742,37 +37856,37 @@ var init_stepeventactions = __esm(() => {
37742
37856
  StepEventActionsStart$inboundSchema = unionType([
37743
37857
  CallAction$inboundSchema,
37744
37858
  IncrementAction$inboundSchema,
37745
- SaveAction$inboundSchema,
37746
37859
  SayAction$inboundSchema,
37747
37860
  SetValueAction$inboundSchema
37748
37861
  ]);
37749
37862
  StepEventActionsStart$outboundSchema = unionType([
37750
37863
  CallAction$outboundSchema,
37751
37864
  IncrementAction$outboundSchema,
37752
- SaveAction$outboundSchema,
37753
37865
  SayAction$outboundSchema,
37754
37866
  SetValueAction$outboundSchema
37755
37867
  ]);
37756
37868
  Enter$inboundSchema = unionType([
37757
37869
  CallAction$inboundSchema,
37870
+ GetValueAction$inboundSchema,
37758
37871
  IncrementAction$inboundSchema,
37759
- SaveAction$inboundSchema,
37760
37872
  SayAction$inboundSchema,
37761
37873
  SetValueAction$inboundSchema
37762
37874
  ]);
37763
37875
  Enter$outboundSchema = unionType([
37764
37876
  CallAction$outboundSchema,
37877
+ GetValueAction$outboundSchema,
37765
37878
  IncrementAction$outboundSchema,
37766
- SaveAction$outboundSchema,
37767
37879
  SayAction$outboundSchema,
37768
37880
  SetValueAction$outboundSchema
37769
37881
  ]);
37770
37882
  Presubmit$inboundSchema = unionType([
37883
+ GetValueAction$inboundSchema,
37771
37884
  IncrementAction$inboundSchema,
37772
37885
  SaveAction$inboundSchema,
37773
37886
  SetValueAction$inboundSchema
37774
37887
  ]);
37775
37888
  Presubmit$outboundSchema = unionType([
37889
+ GetValueAction$outboundSchema,
37776
37890
  IncrementAction$outboundSchema,
37777
37891
  SaveAction$outboundSchema,
37778
37892
  SetValueAction$outboundSchema
@@ -37795,18 +37909,18 @@ var init_stepeventactions = __esm(() => {
37795
37909
  start: nullableType(arrayType(unionType([
37796
37910
  CallAction$inboundSchema,
37797
37911
  IncrementAction$inboundSchema,
37798
- SaveAction$inboundSchema,
37799
37912
  SayAction$inboundSchema,
37800
37913
  SetValueAction$inboundSchema
37801
37914
  ]))).optional(),
37802
37915
  enter: nullableType(arrayType(unionType([
37803
37916
  CallAction$inboundSchema,
37917
+ GetValueAction$inboundSchema,
37804
37918
  IncrementAction$inboundSchema,
37805
- SaveAction$inboundSchema,
37806
37919
  SayAction$inboundSchema,
37807
37920
  SetValueAction$inboundSchema
37808
37921
  ]))).optional(),
37809
37922
  presubmit: nullableType(arrayType(unionType([
37923
+ GetValueAction$inboundSchema,
37810
37924
  IncrementAction$inboundSchema,
37811
37925
  SaveAction$inboundSchema,
37812
37926
  SetValueAction$inboundSchema
@@ -37823,18 +37937,18 @@ var init_stepeventactions = __esm(() => {
37823
37937
  start: nullableType(arrayType(unionType([
37824
37938
  CallAction$outboundSchema,
37825
37939
  IncrementAction$outboundSchema,
37826
- SaveAction$outboundSchema,
37827
37940
  SayAction$outboundSchema,
37828
37941
  SetValueAction$outboundSchema
37829
37942
  ]))).optional(),
37830
37943
  enter: nullableType(arrayType(unionType([
37831
37944
  CallAction$outboundSchema,
37945
+ GetValueAction$outboundSchema,
37832
37946
  IncrementAction$outboundSchema,
37833
- SaveAction$outboundSchema,
37834
37947
  SayAction$outboundSchema,
37835
37948
  SetValueAction$outboundSchema
37836
37949
  ]))).optional(),
37837
37950
  presubmit: nullableType(arrayType(unionType([
37951
+ GetValueAction$outboundSchema,
37838
37952
  IncrementAction$outboundSchema,
37839
37953
  SaveAction$outboundSchema,
37840
37954
  SetValueAction$outboundSchema
@@ -45160,6 +45274,7 @@ var init_components = __esm(() => {
45160
45274
  init_expressiontask();
45161
45275
  init_expressiontaskevents();
45162
45276
  init_folderdetails();
45277
+ init_getvalueaction();
45163
45278
  init_incidentcreaterequest();
45164
45279
  init_incidentorganizationresponse();
45165
45280
  init_incidentproperties();
@@ -65775,7 +65890,7 @@ Generate voice sample.`,
65775
65890
  function createMCPServer(deps) {
65776
65891
  const server = new McpServer({
65777
65892
  name: "SyllableSDK",
65778
- version: "1.0.15-rc.3"
65893
+ version: "1.0.16-rc.1"
65779
65894
  });
65780
65895
  const client = new SyllableSDKCore({
65781
65896
  apiKeyHeader: deps.apiKeyHeader,
@@ -67313,7 +67428,7 @@ var routes = ln({
67313
67428
  var app = _e(routes, {
67314
67429
  name: "mcp",
67315
67430
  versionInfo: {
67316
- currentVersion: "1.0.15-rc.3"
67431
+ currentVersion: "1.0.16-rc.1"
67317
67432
  }
67318
67433
  });
67319
67434
  Yt(app, process3.argv.slice(2), buildContext(process3));
@@ -67321,5 +67436,5 @@ export {
67321
67436
  app
67322
67437
  };
67323
67438
 
67324
- //# debugId=60ECEA00D6F1071464756E2164756E21
67439
+ //# debugId=575971ED77CE374D64756E2164756E21
67325
67440
  //# sourceMappingURL=mcp-server.js.map