@unified-api/typescript-sdk 2.73.16 → 2.73.17
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 +14 -6
- 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/shared/propertyconnectionauth.d.ts +2 -0
- package/sdk/models/shared/propertyconnectionauth.d.ts.map +1 -1
- package/sdk/models/shared/propertyconnectionauth.js +4 -0
- package/sdk/models/shared/propertyconnectionauth.js.map +1 -1
- package/sdk/models/shared/webhook.d.ts +2 -0
- package/sdk/models/shared/webhook.d.ts.map +1 -1
- package/sdk/models/shared/webhook.js +4 -0
- package/sdk/models/shared/webhook.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/shared/propertyconnectionauth.ts +6 -0
- package/src/sdk/models/shared/webhook.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.
|
|
34235
|
-
genVersion: "2.
|
|
34236
|
-
userAgent: "speakeasy-sdk/typescript 2.73.
|
|
34234
|
+
sdkVersion: "2.73.17",
|
|
34235
|
+
genVersion: "2.687.1",
|
|
34236
|
+
userAgent: "speakeasy-sdk/typescript 2.73.17 2.687.1 1.0 @unified-api/typescript-sdk"
|
|
34237
34237
|
};
|
|
34238
34238
|
});
|
|
34239
34239
|
|
|
@@ -41981,6 +41981,7 @@ var init_propertyconnectionauth = __esm(() => {
|
|
|
41981
41981
|
refresh_token: stringType().optional(),
|
|
41982
41982
|
refresh_token_expires_date: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
41983
41983
|
refresh_token_expires_in: numberType().optional(),
|
|
41984
|
+
refresh_url: stringType().optional(),
|
|
41984
41985
|
state: stringType().optional(),
|
|
41985
41986
|
token: stringType().optional(),
|
|
41986
41987
|
token_url: stringType().optional(),
|
|
@@ -42002,6 +42003,7 @@ var init_propertyconnectionauth = __esm(() => {
|
|
|
42002
42003
|
refresh_token: "refreshToken",
|
|
42003
42004
|
refresh_token_expires_date: "refreshTokenExpiresDate",
|
|
42004
42005
|
refresh_token_expires_in: "refreshTokenExpiresIn",
|
|
42006
|
+
refresh_url: "refreshUrl",
|
|
42005
42007
|
token_url: "tokenUrl",
|
|
42006
42008
|
user_id: "userId"
|
|
42007
42009
|
});
|
|
@@ -42027,6 +42029,7 @@ var init_propertyconnectionauth = __esm(() => {
|
|
|
42027
42029
|
refreshToken: stringType().optional(),
|
|
42028
42030
|
refreshTokenExpiresDate: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42029
42031
|
refreshTokenExpiresIn: numberType().optional(),
|
|
42032
|
+
refreshUrl: stringType().optional(),
|
|
42030
42033
|
state: stringType().optional(),
|
|
42031
42034
|
token: stringType().optional(),
|
|
42032
42035
|
tokenUrl: stringType().optional(),
|
|
@@ -42048,6 +42051,7 @@ var init_propertyconnectionauth = __esm(() => {
|
|
|
42048
42051
|
refreshToken: "refresh_token",
|
|
42049
42052
|
refreshTokenExpiresDate: "refresh_token_expires_date",
|
|
42050
42053
|
refreshTokenExpiresIn: "refresh_token_expires_in",
|
|
42054
|
+
refreshUrl: "refresh_url",
|
|
42051
42055
|
tokenUrl: "token_url",
|
|
42052
42056
|
userId: "user_id"
|
|
42053
42057
|
});
|
|
@@ -50336,6 +50340,7 @@ var init_webhook = __esm(() => {
|
|
|
50336
50340
|
connection_id: stringType(),
|
|
50337
50341
|
created_at: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50338
50342
|
db_name_prefix: stringType().optional(),
|
|
50343
|
+
db_schema: stringType().optional(),
|
|
50339
50344
|
db_type: DbType$inboundSchema.optional(),
|
|
50340
50345
|
db_url: stringType().optional(),
|
|
50341
50346
|
environment: stringType().default("Production"),
|
|
@@ -50361,6 +50366,7 @@ var init_webhook = __esm(() => {
|
|
|
50361
50366
|
connection_id: "connectionId",
|
|
50362
50367
|
created_at: "createdAt",
|
|
50363
50368
|
db_name_prefix: "dbNamePrefix",
|
|
50369
|
+
db_schema: "dbSchema",
|
|
50364
50370
|
db_type: "dbType",
|
|
50365
50371
|
db_url: "dbUrl",
|
|
50366
50372
|
hook_url: "hookUrl",
|
|
@@ -50379,6 +50385,7 @@ var init_webhook = __esm(() => {
|
|
|
50379
50385
|
connectionId: stringType(),
|
|
50380
50386
|
createdAt: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50381
50387
|
dbNamePrefix: stringType().optional(),
|
|
50388
|
+
dbSchema: stringType().optional(),
|
|
50382
50389
|
dbType: DbType$outboundSchema.optional(),
|
|
50383
50390
|
dbUrl: stringType().optional(),
|
|
50384
50391
|
environment: stringType().default("Production"),
|
|
@@ -50404,6 +50411,7 @@ var init_webhook = __esm(() => {
|
|
|
50404
50411
|
connectionId: "connection_id",
|
|
50405
50412
|
createdAt: "created_at",
|
|
50406
50413
|
dbNamePrefix: "db_name_prefix",
|
|
50414
|
+
dbSchema: "db_schema",
|
|
50407
50415
|
dbType: "db_type",
|
|
50408
50416
|
dbUrl: "db_url",
|
|
50409
50417
|
hookUrl: "hook_url",
|
|
@@ -124302,7 +124310,7 @@ var init_unifiedUpdateUnifiedWebhookTrigger2 = __esm(() => {
|
|
|
124302
124310
|
function createMCPServer(deps) {
|
|
124303
124311
|
const server = new McpServer({
|
|
124304
124312
|
name: "UnifiedTo",
|
|
124305
|
-
version: "2.73.
|
|
124313
|
+
version: "2.73.17"
|
|
124306
124314
|
});
|
|
124307
124315
|
const client = new UnifiedToCore({
|
|
124308
124316
|
security: deps.security,
|
|
@@ -126469,7 +126477,7 @@ var routes = an({
|
|
|
126469
126477
|
var app = He(routes, {
|
|
126470
126478
|
name: "mcp",
|
|
126471
126479
|
versionInfo: {
|
|
126472
|
-
currentVersion: "2.73.
|
|
126480
|
+
currentVersion: "2.73.17"
|
|
126473
126481
|
}
|
|
126474
126482
|
});
|
|
126475
126483
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -126477,5 +126485,5 @@ export {
|
|
|
126477
126485
|
app
|
|
126478
126486
|
};
|
|
126479
126487
|
|
|
126480
|
-
//# debugId=
|
|
126488
|
+
//# debugId=BA55FF210F1727DA64756E2164756E21
|
|
126481
126489
|
//# sourceMappingURL=mcp-server.js.map
|