@lerianstudio/matcher-mcp 5.0.0-beta.4 → 5.0.0-beta.6
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/dist/spec/openapi.yaml +8 -11
- package/package.json +1 -1
package/dist/spec/openapi.yaml
CHANGED
|
@@ -341,6 +341,11 @@ components:
|
|
|
341
341
|
examples:
|
|
342
342
|
- a1b2c3d4-5678-90ab-cdef-1234567890ab
|
|
343
343
|
type: string
|
|
344
|
+
testable:
|
|
345
|
+
description: Whether Matcher can run a connectivity test for this connection's aggregator vendor
|
|
346
|
+
examples:
|
|
347
|
+
- true
|
|
348
|
+
type: boolean
|
|
344
349
|
vendor:
|
|
345
350
|
description: Aggregator vendor the connection is bound to
|
|
346
351
|
enum:
|
|
@@ -355,6 +360,7 @@ components:
|
|
|
355
360
|
- configName
|
|
356
361
|
- baseUrl
|
|
357
362
|
- accountRef
|
|
363
|
+
- testable
|
|
358
364
|
type: object
|
|
359
365
|
AggregatorConnectionListResponse:
|
|
360
366
|
additionalProperties: false
|
|
@@ -7580,16 +7586,7 @@ components:
|
|
|
7580
7586
|
- pluggy-main
|
|
7581
7587
|
minLength: 1
|
|
7582
7588
|
type: string
|
|
7583
|
-
vendor:
|
|
7584
|
-
description: "Aggregator vendor: pluggy or belvo"
|
|
7585
|
-
enum:
|
|
7586
|
-
- pluggy
|
|
7587
|
-
- belvo
|
|
7588
|
-
examples:
|
|
7589
|
-
- pluggy
|
|
7590
|
-
type: string
|
|
7591
7589
|
required:
|
|
7592
|
-
- vendor
|
|
7593
7590
|
- configName
|
|
7594
7591
|
type: object
|
|
7595
7592
|
TestAggregatorConnectionResponse:
|
|
@@ -10171,7 +10168,7 @@ paths:
|
|
|
10171
10168
|
- Configuration
|
|
10172
10169
|
/v1/discovery/aggregator-connections:
|
|
10173
10170
|
get:
|
|
10174
|
-
description: "Returns a cursor-paginated list of the tenant's Open-Finance data-aggregator (Pluggy/Belvo) connections, ordered by config name. The list is secret-free by construction: no credential material (clientId/secret/ciphertext) is ever returned."
|
|
10171
|
+
description: "Returns a cursor-paginated list of the tenant's Open-Finance data-aggregator (Pluggy/Belvo) connections, ordered by config name. The list is secret-free by construction: no credential material (clientId/secret/ciphertext) is ever returned. Each row carries `testable`, derived from the stored vendor, so a client knows whether the connectivity-test action can run at all without keeping its own vendor list."
|
|
10175
10172
|
operationId: listAggregatorConnections
|
|
10176
10173
|
parameters:
|
|
10177
10174
|
- description: Maximum number of records to return
|
|
@@ -10239,7 +10236,7 @@ paths:
|
|
|
10239
10236
|
- Discovery
|
|
10240
10237
|
/v1/discovery/aggregator-connections/test:
|
|
10241
10238
|
post:
|
|
10242
|
-
description: "Runs a live connectivity check for an existing Open-Finance data-aggregator (Pluggy/Belvo) connection using its already-sealed credential, addressed by
|
|
10239
|
+
description: "Runs a live connectivity check for an existing Open-Finance data-aggregator (Pluggy/Belvo) connection using its already-sealed credential, addressed by configName. The vendor is read from the stored connection, not from the request. No credential is supplied or returned: the result is the secret-free boolean health of the connection. Two refusals are deliberately distinct: a config name matching no connection is 404 MTCH-0005, while a connection whose stored vendor Matcher has no test path for yet (Belvo today) is 422 MTCH-0210 and no test runs. The list endpoint's per-connection `testable` flag tells a client which is which before it offers the action."
|
|
10243
10240
|
operationId: testAggregatorConnection
|
|
10244
10241
|
requestBody:
|
|
10245
10242
|
content:
|