latitudesh-typescript-sdk 0.7.1 → 0.7.2
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 +29 -11
- package/bin/mcp-server.js.map +6 -6
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/teaminclude.d.ts +16 -6
- package/dist/commonjs/models/teaminclude.d.ts.map +1 -1
- package/dist/commonjs/models/teaminclude.js +24 -6
- package/dist/commonjs/models/teaminclude.js.map +1 -1
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/teaminclude.d.ts +16 -6
- package/dist/esm/models/teaminclude.d.ts.map +1 -1
- package/dist/esm/models/teaminclude.js +24 -6
- package/dist/esm/models/teaminclude.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +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/models/teaminclude.ts +40 -12
package/bin/mcp-server.js
CHANGED
|
@@ -53149,9 +53149,9 @@ var init_config = __esm(() => {
|
|
|
53149
53149
|
SDK_METADATA = {
|
|
53150
53150
|
language: "typescript",
|
|
53151
53151
|
openapiDocVersion: "2023-06-01",
|
|
53152
|
-
sdkVersion: "0.7.
|
|
53152
|
+
sdkVersion: "0.7.2",
|
|
53153
53153
|
genVersion: "2.916.2",
|
|
53154
|
-
userAgent: "speakeasy-sdk/typescript 0.7.
|
|
53154
|
+
userAgent: "speakeasy-sdk/typescript 0.7.2 2.916.2 2023-06-01 latitudesh-typescript-sdk"
|
|
53155
53155
|
};
|
|
53156
53156
|
});
|
|
53157
53157
|
|
|
@@ -55273,8 +55273,26 @@ var Currency$inboundSchema, Currency$outboundSchema, TeamIncludeLimits$inboundSc
|
|
|
55273
55273
|
var init_teaminclude = __esm(() => {
|
|
55274
55274
|
init_v3();
|
|
55275
55275
|
init_primitives();
|
|
55276
|
-
Currency$inboundSchema = objectType({
|
|
55277
|
-
|
|
55276
|
+
Currency$inboundSchema = objectType({
|
|
55277
|
+
id: stringType().optional(),
|
|
55278
|
+
code: stringType().optional(),
|
|
55279
|
+
name: stringType().optional(),
|
|
55280
|
+
currency_id: nullableType(numberType().int()).optional()
|
|
55281
|
+
}).transform((v2) => {
|
|
55282
|
+
return remap(v2, {
|
|
55283
|
+
currency_id: "currencyId"
|
|
55284
|
+
});
|
|
55285
|
+
});
|
|
55286
|
+
Currency$outboundSchema = objectType({
|
|
55287
|
+
id: stringType().optional(),
|
|
55288
|
+
code: stringType().optional(),
|
|
55289
|
+
name: stringType().optional(),
|
|
55290
|
+
currencyId: nullableType(numberType().int()).optional()
|
|
55291
|
+
}).transform((v2) => {
|
|
55292
|
+
return remap(v2, {
|
|
55293
|
+
currencyId: "currency_id"
|
|
55294
|
+
});
|
|
55295
|
+
});
|
|
55278
55296
|
TeamIncludeLimits$inboundSchema = objectType({
|
|
55279
55297
|
bare_metal: nullableType(numberType().int()).optional(),
|
|
55280
55298
|
bare_metal_gpu: nullableType(numberType().int()).optional(),
|
|
@@ -55322,9 +55340,9 @@ var init_teaminclude = __esm(() => {
|
|
|
55322
55340
|
name: stringType().optional(),
|
|
55323
55341
|
slug: stringType().optional(),
|
|
55324
55342
|
description: nullableType(stringType()).optional(),
|
|
55325
|
-
address: stringType().optional(),
|
|
55343
|
+
address: nullableType(stringType()).optional(),
|
|
55326
55344
|
currency: lazyType(() => Currency$inboundSchema).optional(),
|
|
55327
|
-
status: stringType().optional(),
|
|
55345
|
+
status: nullableType(stringType()).optional(),
|
|
55328
55346
|
feature_flags: arrayType(stringType()).optional(),
|
|
55329
55347
|
limits: lazyType(() => TeamIncludeLimits$inboundSchema).optional()
|
|
55330
55348
|
}).transform((v2) => {
|
|
@@ -55337,9 +55355,9 @@ var init_teaminclude = __esm(() => {
|
|
|
55337
55355
|
name: stringType().optional(),
|
|
55338
55356
|
slug: stringType().optional(),
|
|
55339
55357
|
description: nullableType(stringType()).optional(),
|
|
55340
|
-
address: stringType().optional(),
|
|
55358
|
+
address: nullableType(stringType()).optional(),
|
|
55341
55359
|
currency: lazyType(() => Currency$outboundSchema).optional(),
|
|
55342
|
-
status: stringType().optional(),
|
|
55360
|
+
status: nullableType(stringType()).optional(),
|
|
55343
55361
|
featureFlags: arrayType(stringType()).optional(),
|
|
55344
55362
|
limits: lazyType(() => TeamIncludeLimits$outboundSchema).optional()
|
|
55345
55363
|
}).transform((v2) => {
|
|
@@ -82622,7 +82640,7 @@ Refreshing an existing VPN Session will create new credentials for that session
|
|
|
82622
82640
|
function createMCPServer(deps) {
|
|
82623
82641
|
const server2 = new McpServer({
|
|
82624
82642
|
name: "Latitudesh",
|
|
82625
|
-
version: "0.7.
|
|
82643
|
+
version: "0.7.2"
|
|
82626
82644
|
});
|
|
82627
82645
|
const client = new LatitudeshCore({
|
|
82628
82646
|
bearer: deps.bearer,
|
|
@@ -84139,7 +84157,7 @@ var routes = ln({
|
|
|
84139
84157
|
var app = _e(routes, {
|
|
84140
84158
|
name: "mcp",
|
|
84141
84159
|
versionInfo: {
|
|
84142
|
-
currentVersion: "0.7.
|
|
84160
|
+
currentVersion: "0.7.2"
|
|
84143
84161
|
}
|
|
84144
84162
|
});
|
|
84145
84163
|
Yt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -84147,5 +84165,5 @@ export {
|
|
|
84147
84165
|
app
|
|
84148
84166
|
};
|
|
84149
84167
|
|
|
84150
|
-
//# debugId=
|
|
84168
|
+
//# debugId=51B48170CDDCCF1464756E2164756E21
|
|
84151
84169
|
//# sourceMappingURL=mcp-server.js.map
|