@financeable/lenders 0.5.6 → 0.5.8
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/FUNCTIONS.md +2 -2
- package/bin/mcp-server.js +8 -9
- package/bin/mcp-server.js.map +7 -7
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/lib/sdks.js +0 -2
- package/dist/commonjs/lib/sdks.js.map +1 -1
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/components/lenders.d.ts +1 -0
- package/dist/commonjs/models/components/lenders.d.ts.map +1 -1
- package/dist/commonjs/models/components/lenders.js +1 -0
- package/dist/commonjs/models/components/lenders.js.map +1 -1
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/lib/sdks.js +0 -2
- package/dist/esm/lib/sdks.js.map +1 -1
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/components/lenders.d.ts +1 -0
- package/dist/esm/models/components/lenders.d.ts.map +1 -1
- package/dist/esm/models/components/lenders.js +1 -0
- package/dist/esm/models/components/lenders.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +0 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/lenders.ts +1 -0
package/FUNCTIONS.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Standalone Functions
|
|
2
2
|
|
|
3
3
|
> [!NOTE]
|
|
4
|
-
> This section is useful if you are using a bundler and
|
|
4
|
+
> This section is useful if you are using a bundler and targeting browsers and
|
|
5
5
|
> runtimes where the size of an application affects performance and load times.
|
|
6
6
|
|
|
7
7
|
Every method in this SDK is also available as a standalone function. This
|
|
8
|
-
alternative API is suitable when
|
|
8
|
+
alternative API is suitable when targeting the browser or serverless runtimes
|
|
9
9
|
and using a bundler to build your application since all unused functionality
|
|
10
10
|
will be tree-shaken away. This includes code for unused methods, Zod schemas,
|
|
11
11
|
encoding helpers and response handlers. The result is dramatically smaller
|
package/bin/mcp-server.js
CHANGED
|
@@ -47552,9 +47552,9 @@ var init_config = __esm(() => {
|
|
|
47552
47552
|
SDK_METADATA = {
|
|
47553
47553
|
language: "typescript",
|
|
47554
47554
|
openapiDocVersion: "0.1.0",
|
|
47555
|
-
sdkVersion: "0.5.
|
|
47556
|
-
genVersion: "2.
|
|
47557
|
-
userAgent: "speakeasy-sdk/typescript 0.5.
|
|
47555
|
+
sdkVersion: "0.5.8",
|
|
47556
|
+
genVersion: "2.884.0",
|
|
47557
|
+
userAgent: "speakeasy-sdk/typescript 0.5.8 2.884.0 0.1.0 @financeable/lenders"
|
|
47558
47558
|
};
|
|
47559
47559
|
});
|
|
47560
47560
|
|
|
@@ -48298,8 +48298,6 @@ async function logResponse(logger, res, req) {
|
|
|
48298
48298
|
logger.log(await res.clone().json());
|
|
48299
48299
|
break;
|
|
48300
48300
|
case (matchContentType(res, "application/jsonl") || jsonlLikeContentTypeRE.test(ct)):
|
|
48301
|
-
logger.log(await res.clone().text());
|
|
48302
|
-
break;
|
|
48303
48301
|
case matchContentType(res, "text/event-stream"):
|
|
48304
48302
|
logger.log(`<${contentType2}>`);
|
|
48305
48303
|
break;
|
|
@@ -51081,7 +51079,8 @@ var init_lenders = __esm(() => {
|
|
|
51081
51079
|
Afs: "Afs",
|
|
51082
51080
|
WestpacDriveExpress: "WestpacDriveExpress",
|
|
51083
51081
|
WestpacEF: "WestpacEF",
|
|
51084
|
-
CapitalFinance: "CapitalFinance"
|
|
51082
|
+
CapitalFinance: "CapitalFinance",
|
|
51083
|
+
AngleAuto: "AngleAuto"
|
|
51085
51084
|
};
|
|
51086
51085
|
Lenders$inboundSchema = nativeEnumType(Lenders);
|
|
51087
51086
|
Lenders$outboundSchema = Lenders$inboundSchema;
|
|
@@ -52868,7 +52867,7 @@ var init_createPersonalSubmission2 = __esm(() => {
|
|
|
52868
52867
|
function createMCPServer(deps) {
|
|
52869
52868
|
const server = new McpServer({
|
|
52870
52869
|
name: "FinanceableLenders",
|
|
52871
|
-
version: "0.5.
|
|
52870
|
+
version: "0.5.8"
|
|
52872
52871
|
});
|
|
52873
52872
|
const client = new FinanceableLendersCore({
|
|
52874
52873
|
serverURL: deps.serverURL,
|
|
@@ -54063,7 +54062,7 @@ var routes = rn({
|
|
|
54063
54062
|
var app = Ve(routes, {
|
|
54064
54063
|
name: "mcp",
|
|
54065
54064
|
versionInfo: {
|
|
54066
|
-
currentVersion: "0.5.
|
|
54065
|
+
currentVersion: "0.5.8"
|
|
54067
54066
|
}
|
|
54068
54067
|
});
|
|
54069
54068
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -54071,5 +54070,5 @@ export {
|
|
|
54071
54070
|
app
|
|
54072
54071
|
};
|
|
54073
54072
|
|
|
54074
|
-
//# debugId=
|
|
54073
|
+
//# debugId=B3EAAFB687EBEC3E64756E2164756E21
|
|
54075
54074
|
//# sourceMappingURL=mcp-server.js.map
|