syllable-sdk 1.0.8-rc.2 → 1.0.8-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +135 -59
- package/bin/mcp-server.js.map +13 -12
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/daotoolresponse.d.ts +80 -0
- package/models/components/daotoolresponse.d.ts.map +1 -0
- package/models/components/daotoolresponse.js +111 -0
- package/models/components/daotoolresponse.js.map +1 -0
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/promptcreaterequest.d.ts +5 -0
- package/models/components/promptcreaterequest.d.ts.map +1 -1
- package/models/components/promptcreaterequest.js +4 -0
- package/models/components/promptcreaterequest.js.map +1 -1
- package/models/components/promptresponse.d.ts +11 -0
- package/models/components/promptresponse.d.ts.map +1 -1
- package/models/components/promptresponse.js +9 -0
- package/models/components/promptresponse.js.map +1 -1
- package/models/components/promptupdaterequest.d.ts +5 -0
- package/models/components/promptupdaterequest.d.ts.map +1 -1
- package/models/components/promptupdaterequest.js +4 -0
- package/models/components/promptupdaterequest.js.map +1 -1
- package/openapi.json +243 -33
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/daotoolresponse.ts +171 -0
- package/src/models/components/index.ts +1 -0
- package/src/models/components/promptcreaterequest.ts +9 -0
- package/src/models/components/promptresponse.ts +24 -0
- package/src/models/components/promptupdaterequest.ts +9 -0
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.8-rc.
|
|
34423
|
-
genVersion: "2.
|
|
34424
|
-
userAgent: "speakeasy-sdk/typescript 1.0.8-rc.
|
|
34422
|
+
sdkVersion: "1.0.8-rc.3",
|
|
34423
|
+
genVersion: "2.739.1",
|
|
34424
|
+
userAgent: "speakeasy-sdk/typescript 1.0.8-rc.3 2.739.1 0.0.2 syllable-sdk"
|
|
34425
34425
|
};
|
|
34426
34426
|
});
|
|
34427
34427
|
|
|
@@ -36664,59 +36664,6 @@ var init_languagegroupresponse = __esm(() => {
|
|
|
36664
36664
|
})(LanguageGroupResponse$ ||= {});
|
|
36665
36665
|
});
|
|
36666
36666
|
|
|
36667
|
-
// src/models/components/promptllmprovider.ts
|
|
36668
|
-
var PromptLlmProvider, PromptLlmProvider$inboundSchema, PromptLlmProvider$outboundSchema, PromptLlmProvider$;
|
|
36669
|
-
var init_promptllmprovider = __esm(() => {
|
|
36670
|
-
init_v3();
|
|
36671
|
-
PromptLlmProvider = {
|
|
36672
|
-
AzureOpenai: "azure_openai",
|
|
36673
|
-
Google: "google",
|
|
36674
|
-
Openai: "openai"
|
|
36675
|
-
};
|
|
36676
|
-
PromptLlmProvider$inboundSchema = nativeEnumType(PromptLlmProvider);
|
|
36677
|
-
PromptLlmProvider$outboundSchema = PromptLlmProvider$inboundSchema;
|
|
36678
|
-
((PromptLlmProvider$) => {
|
|
36679
|
-
PromptLlmProvider$.inboundSchema = PromptLlmProvider$inboundSchema;
|
|
36680
|
-
PromptLlmProvider$.outboundSchema = PromptLlmProvider$outboundSchema;
|
|
36681
|
-
})(PromptLlmProvider$ ||= {});
|
|
36682
|
-
});
|
|
36683
|
-
|
|
36684
|
-
// src/models/components/promptllmconfig.ts
|
|
36685
|
-
var PromptLlmConfig$inboundSchema, PromptLlmConfig$outboundSchema, PromptLlmConfig$;
|
|
36686
|
-
var init_promptllmconfig = __esm(() => {
|
|
36687
|
-
init_v3();
|
|
36688
|
-
init_primitives();
|
|
36689
|
-
init_promptllmprovider();
|
|
36690
|
-
PromptLlmConfig$inboundSchema = objectType({
|
|
36691
|
-
provider: PromptLlmProvider$inboundSchema.optional(),
|
|
36692
|
-
model: stringType().default("gpt-4o"),
|
|
36693
|
-
version: nullableType(stringType()).optional(),
|
|
36694
|
-
api_version: nullableType(stringType()).optional(),
|
|
36695
|
-
temperature: nullableType(numberType()).optional(),
|
|
36696
|
-
seed: nullableType(numberType().int()).optional()
|
|
36697
|
-
}).transform((v2) => {
|
|
36698
|
-
return remap(v2, {
|
|
36699
|
-
api_version: "apiVersion"
|
|
36700
|
-
});
|
|
36701
|
-
});
|
|
36702
|
-
PromptLlmConfig$outboundSchema = objectType({
|
|
36703
|
-
provider: PromptLlmProvider$outboundSchema.optional(),
|
|
36704
|
-
model: stringType().default("gpt-4o"),
|
|
36705
|
-
version: nullableType(stringType()).optional(),
|
|
36706
|
-
apiVersion: nullableType(stringType()).optional(),
|
|
36707
|
-
temperature: nullableType(numberType()).optional(),
|
|
36708
|
-
seed: nullableType(numberType().int()).optional()
|
|
36709
|
-
}).transform((v2) => {
|
|
36710
|
-
return remap(v2, {
|
|
36711
|
-
apiVersion: "api_version"
|
|
36712
|
-
});
|
|
36713
|
-
});
|
|
36714
|
-
((PromptLlmConfig$) => {
|
|
36715
|
-
PromptLlmConfig$.inboundSchema = PromptLlmConfig$inboundSchema;
|
|
36716
|
-
PromptLlmConfig$.outboundSchema = PromptLlmConfig$outboundSchema;
|
|
36717
|
-
})(PromptLlmConfig$ ||= {});
|
|
36718
|
-
});
|
|
36719
|
-
|
|
36720
36667
|
// src/models/components/toolagentinfo.ts
|
|
36721
36668
|
var ToolAgentInfo$inboundSchema, ToolAgentInfo$outboundSchema, ToolAgentInfo$;
|
|
36722
36669
|
var init_toolagentinfo = __esm(() => {
|
|
@@ -37058,6 +37005,117 @@ var init_toolpromptinfo = __esm(() => {
|
|
|
37058
37005
|
})(ToolPromptInfo$ ||= {});
|
|
37059
37006
|
});
|
|
37060
37007
|
|
|
37008
|
+
// src/models/components/daotoolresponse.ts
|
|
37009
|
+
var DaoToolResponse$inboundSchema, DaoToolResponse$outboundSchema, DaoToolResponse$;
|
|
37010
|
+
var init_daotoolresponse = __esm(() => {
|
|
37011
|
+
init_v3();
|
|
37012
|
+
init_primitives();
|
|
37013
|
+
init_toolagentinfo();
|
|
37014
|
+
init_tooldefinition();
|
|
37015
|
+
init_toolpromptinfo();
|
|
37016
|
+
DaoToolResponse$inboundSchema = objectType({
|
|
37017
|
+
name: stringType(),
|
|
37018
|
+
definition: ToolDefinition$inboundSchema,
|
|
37019
|
+
service_id: numberType().int(),
|
|
37020
|
+
id: numberType().int(),
|
|
37021
|
+
last_updated_comments: nullableType(stringType()).optional(),
|
|
37022
|
+
service_name: nullableType(stringType()).optional(),
|
|
37023
|
+
prompts_info: nullableType(arrayType(ToolPromptInfo$inboundSchema)).optional(),
|
|
37024
|
+
agents_info: nullableType(arrayType(ToolAgentInfo$inboundSchema)).optional(),
|
|
37025
|
+
last_updated: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)),
|
|
37026
|
+
last_updated_by: stringType()
|
|
37027
|
+
}).transform((v2) => {
|
|
37028
|
+
return remap(v2, {
|
|
37029
|
+
service_id: "serviceId",
|
|
37030
|
+
last_updated_comments: "lastUpdatedComments",
|
|
37031
|
+
service_name: "serviceName",
|
|
37032
|
+
prompts_info: "promptsInfo",
|
|
37033
|
+
agents_info: "agentsInfo",
|
|
37034
|
+
last_updated: "lastUpdated",
|
|
37035
|
+
last_updated_by: "lastUpdatedBy"
|
|
37036
|
+
});
|
|
37037
|
+
});
|
|
37038
|
+
DaoToolResponse$outboundSchema = objectType({
|
|
37039
|
+
name: stringType(),
|
|
37040
|
+
definition: ToolDefinition$outboundSchema,
|
|
37041
|
+
serviceId: numberType().int(),
|
|
37042
|
+
id: numberType().int(),
|
|
37043
|
+
lastUpdatedComments: nullableType(stringType()).optional(),
|
|
37044
|
+
serviceName: nullableType(stringType()).optional(),
|
|
37045
|
+
promptsInfo: nullableType(arrayType(ToolPromptInfo$outboundSchema)).optional(),
|
|
37046
|
+
agentsInfo: nullableType(arrayType(ToolAgentInfo$outboundSchema)).optional(),
|
|
37047
|
+
lastUpdated: dateType().transform((v2) => v2.toISOString()),
|
|
37048
|
+
lastUpdatedBy: stringType()
|
|
37049
|
+
}).transform((v2) => {
|
|
37050
|
+
return remap(v2, {
|
|
37051
|
+
serviceId: "service_id",
|
|
37052
|
+
lastUpdatedComments: "last_updated_comments",
|
|
37053
|
+
serviceName: "service_name",
|
|
37054
|
+
promptsInfo: "prompts_info",
|
|
37055
|
+
agentsInfo: "agents_info",
|
|
37056
|
+
lastUpdated: "last_updated",
|
|
37057
|
+
lastUpdatedBy: "last_updated_by"
|
|
37058
|
+
});
|
|
37059
|
+
});
|
|
37060
|
+
((DaoToolResponse$) => {
|
|
37061
|
+
DaoToolResponse$.inboundSchema = DaoToolResponse$inboundSchema;
|
|
37062
|
+
DaoToolResponse$.outboundSchema = DaoToolResponse$outboundSchema;
|
|
37063
|
+
})(DaoToolResponse$ ||= {});
|
|
37064
|
+
});
|
|
37065
|
+
|
|
37066
|
+
// src/models/components/promptllmprovider.ts
|
|
37067
|
+
var PromptLlmProvider, PromptLlmProvider$inboundSchema, PromptLlmProvider$outboundSchema, PromptLlmProvider$;
|
|
37068
|
+
var init_promptllmprovider = __esm(() => {
|
|
37069
|
+
init_v3();
|
|
37070
|
+
PromptLlmProvider = {
|
|
37071
|
+
AzureOpenai: "azure_openai",
|
|
37072
|
+
Google: "google",
|
|
37073
|
+
Openai: "openai"
|
|
37074
|
+
};
|
|
37075
|
+
PromptLlmProvider$inboundSchema = nativeEnumType(PromptLlmProvider);
|
|
37076
|
+
PromptLlmProvider$outboundSchema = PromptLlmProvider$inboundSchema;
|
|
37077
|
+
((PromptLlmProvider$) => {
|
|
37078
|
+
PromptLlmProvider$.inboundSchema = PromptLlmProvider$inboundSchema;
|
|
37079
|
+
PromptLlmProvider$.outboundSchema = PromptLlmProvider$outboundSchema;
|
|
37080
|
+
})(PromptLlmProvider$ ||= {});
|
|
37081
|
+
});
|
|
37082
|
+
|
|
37083
|
+
// src/models/components/promptllmconfig.ts
|
|
37084
|
+
var PromptLlmConfig$inboundSchema, PromptLlmConfig$outboundSchema, PromptLlmConfig$;
|
|
37085
|
+
var init_promptllmconfig = __esm(() => {
|
|
37086
|
+
init_v3();
|
|
37087
|
+
init_primitives();
|
|
37088
|
+
init_promptllmprovider();
|
|
37089
|
+
PromptLlmConfig$inboundSchema = objectType({
|
|
37090
|
+
provider: PromptLlmProvider$inboundSchema.optional(),
|
|
37091
|
+
model: stringType().default("gpt-4o"),
|
|
37092
|
+
version: nullableType(stringType()).optional(),
|
|
37093
|
+
api_version: nullableType(stringType()).optional(),
|
|
37094
|
+
temperature: nullableType(numberType()).optional(),
|
|
37095
|
+
seed: nullableType(numberType().int()).optional()
|
|
37096
|
+
}).transform((v2) => {
|
|
37097
|
+
return remap(v2, {
|
|
37098
|
+
api_version: "apiVersion"
|
|
37099
|
+
});
|
|
37100
|
+
});
|
|
37101
|
+
PromptLlmConfig$outboundSchema = objectType({
|
|
37102
|
+
provider: PromptLlmProvider$outboundSchema.optional(),
|
|
37103
|
+
model: stringType().default("gpt-4o"),
|
|
37104
|
+
version: nullableType(stringType()).optional(),
|
|
37105
|
+
apiVersion: nullableType(stringType()).optional(),
|
|
37106
|
+
temperature: nullableType(numberType()).optional(),
|
|
37107
|
+
seed: nullableType(numberType().int()).optional()
|
|
37108
|
+
}).transform((v2) => {
|
|
37109
|
+
return remap(v2, {
|
|
37110
|
+
apiVersion: "api_version"
|
|
37111
|
+
});
|
|
37112
|
+
});
|
|
37113
|
+
((PromptLlmConfig$) => {
|
|
37114
|
+
PromptLlmConfig$.inboundSchema = PromptLlmConfig$inboundSchema;
|
|
37115
|
+
PromptLlmConfig$.outboundSchema = PromptLlmConfig$outboundSchema;
|
|
37116
|
+
})(PromptLlmConfig$ ||= {});
|
|
37117
|
+
});
|
|
37118
|
+
|
|
37061
37119
|
// src/models/components/toolresponse.ts
|
|
37062
37120
|
var ToolResponse$inboundSchema, ToolResponse$outboundSchema, ToolResponse$;
|
|
37063
37121
|
var init_toolresponse = __esm(() => {
|
|
@@ -37121,6 +37179,7 @@ var PromptResponse$inboundSchema, PromptResponse$outboundSchema, PromptResponse$
|
|
|
37121
37179
|
var init_promptresponse = __esm(() => {
|
|
37122
37180
|
init_v3();
|
|
37123
37181
|
init_primitives();
|
|
37182
|
+
init_daotoolresponse();
|
|
37124
37183
|
init_promptllmconfig();
|
|
37125
37184
|
init_toolresponse();
|
|
37126
37185
|
PromptResponse$inboundSchema = objectType({
|
|
@@ -37131,10 +37190,12 @@ var init_promptresponse = __esm(() => {
|
|
|
37131
37190
|
tools: arrayType(stringType()).optional(),
|
|
37132
37191
|
llm_config: PromptLlmConfig$inboundSchema,
|
|
37133
37192
|
session_end_enabled: booleanType().default(false),
|
|
37193
|
+
session_end_tool_id: nullableType(numberType().int()).optional(),
|
|
37134
37194
|
edit_comments: nullableType(stringType()).optional(),
|
|
37135
37195
|
id: numberType().int(),
|
|
37136
37196
|
last_updated: nullableType(stringType()),
|
|
37137
37197
|
last_updated_by: nullableType(stringType()).optional(),
|
|
37198
|
+
session_end_tool: nullableType(DaoToolResponse$inboundSchema).optional(),
|
|
37138
37199
|
agent_count: nullableType(numberType().int()).optional(),
|
|
37139
37200
|
version_number: nullableType(numberType().int()).optional(),
|
|
37140
37201
|
tools_full: nullableType(arrayType(ToolResponse$inboundSchema)).optional()
|
|
@@ -37142,9 +37203,11 @@ var init_promptresponse = __esm(() => {
|
|
|
37142
37203
|
return remap(v2, {
|
|
37143
37204
|
llm_config: "llmConfig",
|
|
37144
37205
|
session_end_enabled: "sessionEndEnabled",
|
|
37206
|
+
session_end_tool_id: "sessionEndToolId",
|
|
37145
37207
|
edit_comments: "editComments",
|
|
37146
37208
|
last_updated: "lastUpdated",
|
|
37147
37209
|
last_updated_by: "lastUpdatedBy",
|
|
37210
|
+
session_end_tool: "sessionEndTool",
|
|
37148
37211
|
agent_count: "agentCount",
|
|
37149
37212
|
version_number: "versionNumber",
|
|
37150
37213
|
tools_full: "toolsFull"
|
|
@@ -37158,10 +37221,12 @@ var init_promptresponse = __esm(() => {
|
|
|
37158
37221
|
tools: arrayType(stringType()).optional(),
|
|
37159
37222
|
llmConfig: PromptLlmConfig$outboundSchema,
|
|
37160
37223
|
sessionEndEnabled: booleanType().default(false),
|
|
37224
|
+
sessionEndToolId: nullableType(numberType().int()).optional(),
|
|
37161
37225
|
editComments: nullableType(stringType()).optional(),
|
|
37162
37226
|
id: numberType().int(),
|
|
37163
37227
|
lastUpdated: nullableType(stringType()),
|
|
37164
37228
|
lastUpdatedBy: nullableType(stringType()).optional(),
|
|
37229
|
+
sessionEndTool: nullableType(DaoToolResponse$outboundSchema).optional(),
|
|
37165
37230
|
agentCount: nullableType(numberType().int()).optional(),
|
|
37166
37231
|
versionNumber: nullableType(numberType().int()).optional(),
|
|
37167
37232
|
toolsFull: nullableType(arrayType(ToolResponse$outboundSchema)).optional()
|
|
@@ -37169,9 +37234,11 @@ var init_promptresponse = __esm(() => {
|
|
|
37169
37234
|
return remap(v2, {
|
|
37170
37235
|
llmConfig: "llm_config",
|
|
37171
37236
|
sessionEndEnabled: "session_end_enabled",
|
|
37237
|
+
sessionEndToolId: "session_end_tool_id",
|
|
37172
37238
|
editComments: "edit_comments",
|
|
37173
37239
|
lastUpdated: "last_updated",
|
|
37174
37240
|
lastUpdatedBy: "last_updated_by",
|
|
37241
|
+
sessionEndTool: "session_end_tool",
|
|
37175
37242
|
agentCount: "agent_count",
|
|
37176
37243
|
versionNumber: "version_number",
|
|
37177
37244
|
toolsFull: "tools_full"
|
|
@@ -42778,12 +42845,14 @@ var init_promptcreaterequest = __esm(() => {
|
|
|
42778
42845
|
tools: arrayType(stringType()).optional(),
|
|
42779
42846
|
llm_config: PromptLlmConfig$inboundSchema,
|
|
42780
42847
|
session_end_enabled: booleanType().default(false),
|
|
42848
|
+
session_end_tool_id: nullableType(numberType().int()).optional(),
|
|
42781
42849
|
edit_comments: nullableType(stringType()).optional(),
|
|
42782
42850
|
include_default_tools: booleanType().default(true)
|
|
42783
42851
|
}).transform((v2) => {
|
|
42784
42852
|
return remap(v2, {
|
|
42785
42853
|
llm_config: "llmConfig",
|
|
42786
42854
|
session_end_enabled: "sessionEndEnabled",
|
|
42855
|
+
session_end_tool_id: "sessionEndToolId",
|
|
42787
42856
|
edit_comments: "editComments",
|
|
42788
42857
|
include_default_tools: "includeDefaultTools"
|
|
42789
42858
|
});
|
|
@@ -42796,12 +42865,14 @@ var init_promptcreaterequest = __esm(() => {
|
|
|
42796
42865
|
tools: arrayType(stringType()).optional(),
|
|
42797
42866
|
llmConfig: PromptLlmConfig$outboundSchema,
|
|
42798
42867
|
sessionEndEnabled: booleanType().default(false),
|
|
42868
|
+
sessionEndToolId: nullableType(numberType().int()).optional(),
|
|
42799
42869
|
editComments: nullableType(stringType()).optional(),
|
|
42800
42870
|
includeDefaultTools: booleanType().default(true)
|
|
42801
42871
|
}).transform((v2) => {
|
|
42802
42872
|
return remap(v2, {
|
|
42803
42873
|
llmConfig: "llm_config",
|
|
42804
42874
|
sessionEndEnabled: "session_end_enabled",
|
|
42875
|
+
sessionEndToolId: "session_end_tool_id",
|
|
42805
42876
|
editComments: "edit_comments",
|
|
42806
42877
|
includeDefaultTools: "include_default_tools"
|
|
42807
42878
|
});
|
|
@@ -42950,6 +43021,7 @@ var init_promptupdaterequest = __esm(() => {
|
|
|
42950
43021
|
tools: arrayType(stringType()).optional(),
|
|
42951
43022
|
llm_config: PromptLlmConfig$inboundSchema,
|
|
42952
43023
|
session_end_enabled: booleanType().default(false),
|
|
43024
|
+
session_end_tool_id: nullableType(numberType().int()).optional(),
|
|
42953
43025
|
edit_comments: nullableType(stringType()).optional(),
|
|
42954
43026
|
id: numberType().int(),
|
|
42955
43027
|
include_default_tools: booleanType().default(true)
|
|
@@ -42957,6 +43029,7 @@ var init_promptupdaterequest = __esm(() => {
|
|
|
42957
43029
|
return remap(v2, {
|
|
42958
43030
|
llm_config: "llmConfig",
|
|
42959
43031
|
session_end_enabled: "sessionEndEnabled",
|
|
43032
|
+
session_end_tool_id: "sessionEndToolId",
|
|
42960
43033
|
edit_comments: "editComments",
|
|
42961
43034
|
include_default_tools: "includeDefaultTools"
|
|
42962
43035
|
});
|
|
@@ -42969,6 +43042,7 @@ var init_promptupdaterequest = __esm(() => {
|
|
|
42969
43042
|
tools: arrayType(stringType()).optional(),
|
|
42970
43043
|
llmConfig: PromptLlmConfig$outboundSchema,
|
|
42971
43044
|
sessionEndEnabled: booleanType().default(false),
|
|
43045
|
+
sessionEndToolId: nullableType(numberType().int()).optional(),
|
|
42972
43046
|
editComments: nullableType(stringType()).optional(),
|
|
42973
43047
|
id: numberType().int(),
|
|
42974
43048
|
includeDefaultTools: booleanType().default(true)
|
|
@@ -42976,6 +43050,7 @@ var init_promptupdaterequest = __esm(() => {
|
|
|
42976
43050
|
return remap(v2, {
|
|
42977
43051
|
llmConfig: "llm_config",
|
|
42978
43052
|
sessionEndEnabled: "session_end_enabled",
|
|
43053
|
+
sessionEndToolId: "session_end_tool_id",
|
|
42979
43054
|
editComments: "edit_comments",
|
|
42980
43055
|
includeDefaultTools: "include_default_tools"
|
|
42981
43056
|
});
|
|
@@ -44568,6 +44643,7 @@ var init_components = __esm(() => {
|
|
|
44568
44643
|
init_custommessageresponse();
|
|
44569
44644
|
init_custommessagerule();
|
|
44570
44645
|
init_custommessageupdaterequest();
|
|
44646
|
+
init_daotoolresponse();
|
|
44571
44647
|
init_dashboard();
|
|
44572
44648
|
init_dashboardproperties();
|
|
44573
44649
|
init_dashboardresponse();
|
|
@@ -65348,7 +65424,7 @@ Generate voice sample.`,
|
|
|
65348
65424
|
function createMCPServer(deps) {
|
|
65349
65425
|
const server = new McpServer({
|
|
65350
65426
|
name: "SyllableSDK",
|
|
65351
|
-
version: "1.0.8-rc.
|
|
65427
|
+
version: "1.0.8-rc.3"
|
|
65352
65428
|
});
|
|
65353
65429
|
const client = new SyllableSDKCore({
|
|
65354
65430
|
apiKeyHeader: deps.apiKeyHeader,
|
|
@@ -66882,7 +66958,7 @@ var routes = ln({
|
|
|
66882
66958
|
var app = _e(routes, {
|
|
66883
66959
|
name: "mcp",
|
|
66884
66960
|
versionInfo: {
|
|
66885
|
-
currentVersion: "1.0.8-rc.
|
|
66961
|
+
currentVersion: "1.0.8-rc.3"
|
|
66886
66962
|
}
|
|
66887
66963
|
});
|
|
66888
66964
|
Yt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -66890,5 +66966,5 @@ export {
|
|
|
66890
66966
|
app
|
|
66891
66967
|
};
|
|
66892
66968
|
|
|
66893
|
-
//# debugId=
|
|
66969
|
+
//# debugId=2C56CB3F65C78F5C64756E2164756E21
|
|
66894
66970
|
//# sourceMappingURL=mcp-server.js.map
|