@unified-api/typescript-sdk 2.73.0 → 2.73.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.
- package/bin/mcp-server.js +9 -5
- package/bin/mcp-server.js.map +6 -6
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/package.json +1 -1
- package/sdk/models/shared/messagingchannel.d.ts +2 -0
- package/sdk/models/shared/messagingchannel.d.ts.map +1 -1
- package/sdk/models/shared/messagingchannel.js +4 -0
- package/sdk/models/shared/messagingchannel.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/sdk/models/shared/messagingchannel.ts +6 -0
package/bin/mcp-server.js
CHANGED
|
@@ -34231,9 +34231,9 @@ var init_config = __esm(() => {
|
|
|
34231
34231
|
SDK_METADATA = {
|
|
34232
34232
|
language: "typescript",
|
|
34233
34233
|
openapiDocVersion: "1.0",
|
|
34234
|
-
sdkVersion: "2.73.
|
|
34234
|
+
sdkVersion: "2.73.1",
|
|
34235
34235
|
genVersion: "2.632.2",
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 2.73.
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 2.73.1 2.632.2 1.0 @unified-api/typescript-sdk"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -46756,6 +46756,7 @@ var init_messagingchannel = __esm(() => {
|
|
|
46756
46756
|
members: arrayType(MessagingMember$inboundSchema).optional(),
|
|
46757
46757
|
name: stringType(),
|
|
46758
46758
|
parent_channel_id: stringType().optional(),
|
|
46759
|
+
parent_id: stringType().optional(),
|
|
46759
46760
|
raw: recordType(anyType()).optional(),
|
|
46760
46761
|
updated_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
46761
46762
|
web_url: stringType().optional()
|
|
@@ -46766,6 +46767,7 @@ var init_messagingchannel = __esm(() => {
|
|
|
46766
46767
|
is_active: "isActive",
|
|
46767
46768
|
is_private: "isPrivate",
|
|
46768
46769
|
parent_channel_id: "parentChannelId",
|
|
46770
|
+
parent_id: "parentId",
|
|
46769
46771
|
updated_at: "updatedAt",
|
|
46770
46772
|
web_url: "webUrl"
|
|
46771
46773
|
});
|
|
@@ -46780,6 +46782,7 @@ var init_messagingchannel = __esm(() => {
|
|
|
46780
46782
|
members: arrayType(MessagingMember$outboundSchema).optional(),
|
|
46781
46783
|
name: stringType(),
|
|
46782
46784
|
parentChannelId: stringType().optional(),
|
|
46785
|
+
parentId: stringType().optional(),
|
|
46783
46786
|
raw: recordType(anyType()).optional(),
|
|
46784
46787
|
updatedAt: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
46785
46788
|
webUrl: stringType().optional()
|
|
@@ -46790,6 +46793,7 @@ var init_messagingchannel = __esm(() => {
|
|
|
46790
46793
|
isActive: "is_active",
|
|
46791
46794
|
isPrivate: "is_private",
|
|
46792
46795
|
parentChannelId: "parent_channel_id",
|
|
46796
|
+
parentId: "parent_id",
|
|
46793
46797
|
updatedAt: "updated_at",
|
|
46794
46798
|
webUrl: "web_url"
|
|
46795
46799
|
});
|
|
@@ -117417,7 +117421,7 @@ var init_unifiedUpdateUnifiedWebhookTrigger2 = __esm(() => {
|
|
|
117417
117421
|
function createMCPServer(deps) {
|
|
117418
117422
|
const server = new McpServer({
|
|
117419
117423
|
name: "UnifiedTo",
|
|
117420
|
-
version: "2.73.
|
|
117424
|
+
version: "2.73.1"
|
|
117421
117425
|
});
|
|
117422
117426
|
const client = new UnifiedToCore({
|
|
117423
117427
|
security: deps.security,
|
|
@@ -119516,7 +119520,7 @@ var routes = an({
|
|
|
119516
119520
|
var app = He(routes, {
|
|
119517
119521
|
name: "mcp",
|
|
119518
119522
|
versionInfo: {
|
|
119519
|
-
currentVersion: "2.73.
|
|
119523
|
+
currentVersion: "2.73.1"
|
|
119520
119524
|
}
|
|
119521
119525
|
});
|
|
119522
119526
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -119524,5 +119528,5 @@ export {
|
|
|
119524
119528
|
app
|
|
119525
119529
|
};
|
|
119526
119530
|
|
|
119527
|
-
//# debugId=
|
|
119531
|
+
//# debugId=42610F35BBB6E45864756E2164756E21
|
|
119528
119532
|
//# sourceMappingURL=mcp-server.js.map
|