mollie-api-typescript 0.9.9 → 1.0.0
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 +0 -7
- package/bin/mcp-server.js +6 -6
- package/bin/mcp-server.js.map +4 -4
- package/dist/commonjs/lib/config.d.ts +3 -3
- package/dist/commonjs/lib/config.js +3 -3
- package/dist/commonjs/lib/config.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/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/lib/config.js.map +1 -1
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +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/README.md
CHANGED
|
@@ -35,7 +35,6 @@ Developer-friendly & type-safe Typescript SDK specifically catered to leverage *
|
|
|
35
35
|
* [Custom HTTP Client](#custom-http-client)
|
|
36
36
|
* [Debugging](#debugging)
|
|
37
37
|
* [Development](#development)
|
|
38
|
-
* [Maturity](#maturity)
|
|
39
38
|
* [Contributions](#contributions)
|
|
40
39
|
|
|
41
40
|
<!-- End Table of Contents [toc] -->
|
|
@@ -939,12 +938,6 @@ You can also enable a default debug logger by setting an environment variable `C
|
|
|
939
938
|
|
|
940
939
|
# Development
|
|
941
940
|
|
|
942
|
-
## Maturity
|
|
943
|
-
|
|
944
|
-
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
|
|
945
|
-
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
|
|
946
|
-
looking for the latest version.
|
|
947
|
-
|
|
948
941
|
## Contributions
|
|
949
942
|
|
|
950
943
|
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation.
|
package/bin/mcp-server.js
CHANGED
|
@@ -52403,9 +52403,9 @@ var init_config = __esm(() => {
|
|
|
52403
52403
|
SDK_METADATA = {
|
|
52404
52404
|
language: "typescript",
|
|
52405
52405
|
openapiDocVersion: "1.0.0",
|
|
52406
|
-
sdkVersion: "0.
|
|
52407
|
-
genVersion: "2.
|
|
52408
|
-
userAgent: "speakeasy-sdk/typescript 0.
|
|
52406
|
+
sdkVersion: "1.0.0",
|
|
52407
|
+
genVersion: "2.791.1",
|
|
52408
|
+
userAgent: "speakeasy-sdk/typescript 1.0.0 2.791.1 1.0.0 mollie-api-typescript"
|
|
52409
52409
|
};
|
|
52410
52410
|
});
|
|
52411
52411
|
|
|
@@ -79080,7 +79080,7 @@ Updates the webhook. You may edit the name, url and the list of subscribed event
|
|
|
79080
79080
|
function createMCPServer(deps) {
|
|
79081
79081
|
const server = new McpServer({
|
|
79082
79082
|
name: "Client",
|
|
79083
|
-
version: "0.
|
|
79083
|
+
version: "1.0.0"
|
|
79084
79084
|
});
|
|
79085
79085
|
const client = new ClientCore({
|
|
79086
79086
|
security: deps.security,
|
|
@@ -80508,7 +80508,7 @@ var routes = an({
|
|
|
80508
80508
|
var app = He(routes, {
|
|
80509
80509
|
name: "mcp",
|
|
80510
80510
|
versionInfo: {
|
|
80511
|
-
currentVersion: "0.
|
|
80511
|
+
currentVersion: "1.0.0"
|
|
80512
80512
|
}
|
|
80513
80513
|
});
|
|
80514
80514
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -80516,5 +80516,5 @@ export {
|
|
|
80516
80516
|
app
|
|
80517
80517
|
};
|
|
80518
80518
|
|
|
80519
|
-
//# debugId=
|
|
80519
|
+
//# debugId=1C47114F3540AA2764756E2164756E21
|
|
80520
80520
|
//# sourceMappingURL=mcp-server.js.map
|