@unified-api/typescript-sdk 2.73.25 → 2.73.26
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/README.md +1 -1
- package/bin/mcp-server.js +12 -12
- package/bin/mcp-server.js.map +7 -7
- 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/package.json +1 -1
- package/sdk/models/errors/index.d.ts +1 -0
- package/sdk/models/errors/index.d.ts.map +1 -1
- package/sdk/models/errors/index.js +1 -0
- package/sdk/models/errors/index.js.map +1 -1
- package/sdk/models/operations/listcalendarevents.d.ts +7 -4
- package/sdk/models/operations/listcalendarevents.d.ts.map +1 -1
- package/sdk/models/operations/listcalendarevents.js +4 -4
- package/sdk/models/operations/listcalendarevents.js.map +1 -1
- package/sdk/models/operations/listmessagingmessages.d.ts +5 -2
- package/sdk/models/operations/listmessagingmessages.d.ts.map +1 -1
- package/sdk/models/operations/listmessagingmessages.js +2 -2
- package/sdk/models/operations/listmessagingmessages.js.map +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/sdk/models/errors/index.ts +1 -0
- package/src/sdk/models/operations/listcalendarevents.ts +11 -8
- package/src/sdk/models/operations/listmessagingmessages.ts +7 -4
package/README.md
CHANGED
|
@@ -182,7 +182,7 @@ httpClient.addHook("requestError", (error, request) => {
|
|
|
182
182
|
console.groupEnd();
|
|
183
183
|
});
|
|
184
184
|
|
|
185
|
-
const sdk = new UnifiedTo({ httpClient });
|
|
185
|
+
const sdk = new UnifiedTo({ httpClient: httpClient });
|
|
186
186
|
```
|
|
187
187
|
<!-- End Custom HTTP Client [http-client] -->
|
|
188
188
|
|
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.
|
|
34235
|
-
genVersion: "2.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 2.73.
|
|
34234
|
+
sdkVersion: "2.73.26",
|
|
34235
|
+
genVersion: "2.709.0",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 2.73.26 2.709.0 1.0 @unified-api/typescript-sdk"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -58324,8 +58324,8 @@ var init_listcalendarevents = __esm(() => {
|
|
|
58324
58324
|
calendar_id: stringType().optional(),
|
|
58325
58325
|
connection_id: stringType(),
|
|
58326
58326
|
end_le: stringType().optional(),
|
|
58327
|
-
expand:
|
|
58328
|
-
expand_recurring_events:
|
|
58327
|
+
expand: booleanType().optional(),
|
|
58328
|
+
expand_recurring_events: booleanType().optional(),
|
|
58329
58329
|
fields: arrayType(stringType()).optional(),
|
|
58330
58330
|
limit: numberType().optional(),
|
|
58331
58331
|
offset: numberType().optional(),
|
|
@@ -58349,8 +58349,8 @@ var init_listcalendarevents = __esm(() => {
|
|
|
58349
58349
|
calendarId: stringType().optional(),
|
|
58350
58350
|
connectionId: stringType(),
|
|
58351
58351
|
endLe: stringType().optional(),
|
|
58352
|
-
expand:
|
|
58353
|
-
expandRecurringEvents:
|
|
58352
|
+
expand: booleanType().optional(),
|
|
58353
|
+
expandRecurringEvents: booleanType().optional(),
|
|
58354
58354
|
fields: arrayType(stringType()).optional(),
|
|
58355
58355
|
limit: numberType().optional(),
|
|
58356
58356
|
offset: numberType().optional(),
|
|
@@ -60079,7 +60079,7 @@ var init_listmessagingmessages = __esm(() => {
|
|
|
60079
60079
|
channel_id: stringType().optional(),
|
|
60080
60080
|
connection_id: stringType(),
|
|
60081
60081
|
end_le: stringType().optional(),
|
|
60082
|
-
expand:
|
|
60082
|
+
expand: booleanType().optional(),
|
|
60083
60083
|
fields: arrayType(stringType()).optional(),
|
|
60084
60084
|
limit: numberType().optional(),
|
|
60085
60085
|
offset: numberType().optional(),
|
|
@@ -60104,7 +60104,7 @@ var init_listmessagingmessages = __esm(() => {
|
|
|
60104
60104
|
channelId: stringType().optional(),
|
|
60105
60105
|
connectionId: stringType(),
|
|
60106
60106
|
endLe: stringType().optional(),
|
|
60107
|
-
expand:
|
|
60107
|
+
expand: booleanType().optional(),
|
|
60108
60108
|
fields: arrayType(stringType()).optional(),
|
|
60109
60109
|
limit: numberType().optional(),
|
|
60110
60110
|
offset: numberType().optional(),
|
|
@@ -127364,7 +127364,7 @@ var init_verificationUpdateVerificationRequest2 = __esm(() => {
|
|
|
127364
127364
|
function createMCPServer(deps) {
|
|
127365
127365
|
const server = new McpServer({
|
|
127366
127366
|
name: "UnifiedTo",
|
|
127367
|
-
version: "2.73.
|
|
127367
|
+
version: "2.73.26"
|
|
127368
127368
|
});
|
|
127369
127369
|
const client = new UnifiedToCore({
|
|
127370
127370
|
security: deps.security,
|
|
@@ -129563,7 +129563,7 @@ var routes = an({
|
|
|
129563
129563
|
var app = He(routes, {
|
|
129564
129564
|
name: "mcp",
|
|
129565
129565
|
versionInfo: {
|
|
129566
|
-
currentVersion: "2.73.
|
|
129566
|
+
currentVersion: "2.73.26"
|
|
129567
129567
|
}
|
|
129568
129568
|
});
|
|
129569
129569
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -129571,5 +129571,5 @@ export {
|
|
|
129571
129571
|
app
|
|
129572
129572
|
};
|
|
129573
129573
|
|
|
129574
|
-
//# debugId=
|
|
129574
|
+
//# debugId=42911525467A948E64756E2164756E21
|
|
129575
129575
|
//# sourceMappingURL=mcp-server.js.map
|