mollie-api-typescript 0.5.0 → 0.5.1
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 +6 -6
- 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/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/operations/createpaymentlink.d.ts +3 -3
- package/dist/commonjs/models/operations/updatepaymentlink.d.ts +3 -3
- package/dist/commonjs/models/paymentlinkresponse.d.ts +3 -3
- package/dist/esm/lib/config.d.ts +3 -3
- package/dist/esm/lib/config.js +3 -3
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/operations/createpaymentlink.d.ts +3 -3
- package/dist/esm/models/operations/updatepaymentlink.d.ts +3 -3
- package/dist/esm/models/paymentlinkresponse.d.ts +3 -3
- 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/src/models/operations/createpaymentlink.ts +3 -3
- package/src/models/operations/updatepaymentlink.ts +3 -3
- package/src/models/paymentlinkresponse.ts +3 -3
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "1.0.0";
|
|
38
|
-
readonly sdkVersion: "0.5.
|
|
39
|
-
readonly genVersion: "2.
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.5.
|
|
38
|
+
readonly sdkVersion: "0.5.1";
|
|
39
|
+
readonly genVersion: "2.729.2";
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.5.1 2.729.2 1.0.0 mollie-api-typescript";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "1.0.0",
|
|
31
|
-
sdkVersion: "0.5.
|
|
32
|
-
genVersion: "2.
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 0.5.
|
|
31
|
+
sdkVersion: "0.5.1",
|
|
32
|
+
genVersion: "2.729.2",
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 0.5.1 2.729.2 1.0.0 mollie-api-typescript",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
|
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
|
|
|
22
22
|
exports.app = (0, core_1.buildApplication)(routes, {
|
|
23
23
|
name: "mcp",
|
|
24
24
|
versionInfo: {
|
|
25
|
-
currentVersion: "0.5.
|
|
25
|
+
currentVersion: "0.5.1",
|
|
26
26
|
},
|
|
27
27
|
});
|
|
28
28
|
(0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
|
|
@@ -108,7 +108,7 @@ const webhooksUpdate_js_1 = require("./tools/webhooksUpdate.js");
|
|
|
108
108
|
function createMCPServer(deps) {
|
|
109
109
|
const server = new mcp_js_1.McpServer({
|
|
110
110
|
name: "Client",
|
|
111
|
-
version: "0.5.
|
|
111
|
+
version: "0.5.1",
|
|
112
112
|
});
|
|
113
113
|
const client = new core_js_1.ClientCore({
|
|
114
114
|
security: deps.security,
|
|
@@ -107,9 +107,9 @@ export type CreatePaymentLinkRequestBody = {
|
|
|
107
107
|
* @remarks
|
|
108
108
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
109
109
|
*
|
|
110
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
111
|
-
* '
|
|
112
|
-
* '
|
|
110
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
111
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
112
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
113
113
|
*/
|
|
114
114
|
allowedMethods?: Array<string> | null | undefined;
|
|
115
115
|
/**
|
|
@@ -29,9 +29,9 @@ export type UpdatePaymentLinkRequestBody = {
|
|
|
29
29
|
* @remarks
|
|
30
30
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
31
31
|
*
|
|
32
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
33
|
-
* '
|
|
34
|
-
* '
|
|
32
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
33
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
34
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
35
35
|
*/
|
|
36
36
|
allowedMethods?: Array<string> | null | undefined;
|
|
37
37
|
/**
|
|
@@ -149,9 +149,9 @@ export type PaymentLinkResponse = {
|
|
|
149
149
|
* @remarks
|
|
150
150
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
151
151
|
*
|
|
152
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
153
|
-
* '
|
|
154
|
-
* '
|
|
152
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
153
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
154
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
155
155
|
*/
|
|
156
156
|
allowedMethods?: Array<string> | null | undefined;
|
|
157
157
|
/**
|
package/dist/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "1.0.0";
|
|
38
|
-
readonly sdkVersion: "0.5.
|
|
39
|
-
readonly genVersion: "2.
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.5.
|
|
38
|
+
readonly sdkVersion: "0.5.1";
|
|
39
|
+
readonly genVersion: "2.729.2";
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.5.1 2.729.2 1.0.0 mollie-api-typescript";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/dist/esm/lib/config.js
CHANGED
|
@@ -24,8 +24,8 @@ export function serverURLFromOptions(options) {
|
|
|
24
24
|
export const SDK_METADATA = {
|
|
25
25
|
language: "typescript",
|
|
26
26
|
openapiDocVersion: "1.0.0",
|
|
27
|
-
sdkVersion: "0.5.
|
|
28
|
-
genVersion: "2.
|
|
29
|
-
userAgent: "speakeasy-sdk/typescript 0.5.
|
|
27
|
+
sdkVersion: "0.5.1",
|
|
28
|
+
genVersion: "2.729.2",
|
|
29
|
+
userAgent: "speakeasy-sdk/typescript 0.5.1 2.729.2 1.0.0 mollie-api-typescript",
|
|
30
30
|
};
|
|
31
31
|
//# sourceMappingURL=config.js.map
|
|
@@ -105,7 +105,7 @@ import { tool$webhooksUpdate } from "./tools/webhooksUpdate.js";
|
|
|
105
105
|
export function createMCPServer(deps) {
|
|
106
106
|
const server = new McpServer({
|
|
107
107
|
name: "Client",
|
|
108
|
-
version: "0.5.
|
|
108
|
+
version: "0.5.1",
|
|
109
109
|
});
|
|
110
110
|
const client = new ClientCore({
|
|
111
111
|
security: deps.security,
|
|
@@ -107,9 +107,9 @@ export type CreatePaymentLinkRequestBody = {
|
|
|
107
107
|
* @remarks
|
|
108
108
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
109
109
|
*
|
|
110
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
111
|
-
* '
|
|
112
|
-
* '
|
|
110
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
111
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
112
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
113
113
|
*/
|
|
114
114
|
allowedMethods?: Array<string> | null | undefined;
|
|
115
115
|
/**
|
|
@@ -29,9 +29,9 @@ export type UpdatePaymentLinkRequestBody = {
|
|
|
29
29
|
* @remarks
|
|
30
30
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
31
31
|
*
|
|
32
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
33
|
-
* '
|
|
34
|
-
* '
|
|
32
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
33
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
34
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
35
35
|
*/
|
|
36
36
|
allowedMethods?: Array<string> | null | undefined;
|
|
37
37
|
/**
|
|
@@ -149,9 +149,9 @@ export type PaymentLinkResponse = {
|
|
|
149
149
|
* @remarks
|
|
150
150
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
151
151
|
*
|
|
152
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
153
|
-
* '
|
|
154
|
-
* '
|
|
152
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
153
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
154
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
155
155
|
*/
|
|
156
156
|
allowedMethods?: Array<string> | null | undefined;
|
|
157
157
|
/**
|
package/jsr.json
CHANGED
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
62
62
|
export const SDK_METADATA = {
|
|
63
63
|
language: "typescript",
|
|
64
64
|
openapiDocVersion: "1.0.0",
|
|
65
|
-
sdkVersion: "0.5.
|
|
66
|
-
genVersion: "2.
|
|
65
|
+
sdkVersion: "0.5.1",
|
|
66
|
+
genVersion: "2.729.2",
|
|
67
67
|
userAgent:
|
|
68
|
-
"speakeasy-sdk/typescript 0.5.
|
|
68
|
+
"speakeasy-sdk/typescript 0.5.1 2.729.2 1.0.0 mollie-api-typescript",
|
|
69
69
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -115,9 +115,9 @@ export type CreatePaymentLinkRequestBody = {
|
|
|
115
115
|
* @remarks
|
|
116
116
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
117
117
|
*
|
|
118
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
119
|
-
* '
|
|
120
|
-
* '
|
|
118
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
119
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
120
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
121
121
|
*/
|
|
122
122
|
allowedMethods?: Array<string> | null | undefined;
|
|
123
123
|
/**
|
|
@@ -36,9 +36,9 @@ export type UpdatePaymentLinkRequestBody = {
|
|
|
36
36
|
* @remarks
|
|
37
37
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
38
38
|
*
|
|
39
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
40
|
-
* '
|
|
41
|
-
* '
|
|
39
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
40
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
41
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
42
42
|
*/
|
|
43
43
|
allowedMethods?: Array<string> | null | undefined;
|
|
44
44
|
/**
|
|
@@ -187,9 +187,9 @@ export type PaymentLinkResponse = {
|
|
|
187
187
|
* @remarks
|
|
188
188
|
* not provided or is an empty array, all enabled payment methods will be available.
|
|
189
189
|
*
|
|
190
|
-
* Enum: 'applepay', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', '
|
|
191
|
-
* '
|
|
192
|
-
* '
|
|
190
|
+
* Enum: 'applepay', 'bacs', 'bancomatpay', 'bancontact', 'banktransfer', 'belfius', 'billie', 'blik', 'creditcard', 'eps',
|
|
191
|
+
* 'giftcard', 'ideal', 'in3', 'kbc', 'klarna', 'mbway', 'multibanco', 'mybank', 'paybybank', 'paypal', 'paysafecard',
|
|
192
|
+
* 'pointofsale', 'przelewy24', 'riverty', 'satispay', 'swish', 'trustly', 'twint', 'voucher'.
|
|
193
193
|
*/
|
|
194
194
|
allowedMethods?: Array<string> | null | undefined;
|
|
195
195
|
/**
|