@moovio/sdk 0.12.5 → 0.12.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/bin/mcp-server.js +17 -7
- package/bin/mcp-server.js.map +11 -11
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/capability.d.ts +1 -1
- package/models/components/capabilityid.d.ts +32 -2
- package/models/components/capabilityid.d.ts.map +1 -1
- package/models/components/capabilityid.js +11 -1
- package/models/components/capabilityid.js.map +1 -1
- package/models/components/webhookdatacapabilityrequested.d.ts +1 -1
- package/models/components/webhookdatacapabilityupdated.d.ts +1 -1
- package/models/operations/disablecapability.d.ts +1 -1
- package/models/operations/getcapability.d.ts +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/components/capability.ts +1 -1
- package/src/models/components/capabilityid.ts +12 -2
- package/src/models/components/webhookdatacapabilityrequested.ts +1 -1
- package/src/models/components/webhookdatacapabilityupdated.ts +1 -1
- package/src/models/operations/disablecapability.ts +1 -1
- package/src/models/operations/getcapability.ts +1 -1
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
39
39
|
export declare const SDK_METADATA: {
|
|
40
40
|
readonly language: "typescript";
|
|
41
41
|
readonly openapiDocVersion: "latest";
|
|
42
|
-
readonly sdkVersion: "0.12.
|
|
43
|
-
readonly genVersion: "2.
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.12.
|
|
42
|
+
readonly sdkVersion: "0.12.6";
|
|
43
|
+
readonly genVersion: "2.638.0";
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.12.6 2.638.0 latest @moovio/sdk";
|
|
45
45
|
};
|
|
46
46
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "latest",
|
|
34
|
-
sdkVersion: "0.12.
|
|
35
|
-
genVersion: "2.
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.12.
|
|
34
|
+
sdkVersion: "0.12.6",
|
|
35
|
+
genVersion: "2.638.0",
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.12.6 2.638.0 latest @moovio/sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/mcp-server/mcp-server.js
CHANGED
|
@@ -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.12.
|
|
25
|
+
currentVersion: "0.12.6",
|
|
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));
|
package/mcp-server/server.js
CHANGED
|
@@ -149,7 +149,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
|
|
|
149
149
|
function createMCPServer(deps) {
|
|
150
150
|
const server = new mcp_js_1.McpServer({
|
|
151
151
|
name: "Moov",
|
|
152
|
-
version: "0.12.
|
|
152
|
+
version: "0.12.6",
|
|
153
153
|
});
|
|
154
154
|
const client = new core_js_1.MoovCore({
|
|
155
155
|
security: deps.security,
|
|
@@ -10,7 +10,7 @@ export type Capability = {
|
|
|
10
10
|
*
|
|
11
11
|
* @remarks
|
|
12
12
|
*
|
|
13
|
-
* The `production-app`
|
|
13
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
14
14
|
*/
|
|
15
15
|
capability: CapabilityID;
|
|
16
16
|
accountID: string;
|
|
@@ -5,22 +5,32 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
5
5
|
*
|
|
6
6
|
* @remarks
|
|
7
7
|
*
|
|
8
|
-
* The `production-app`
|
|
8
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
9
9
|
*/
|
|
10
10
|
export declare const CapabilityID: {
|
|
11
11
|
readonly Transfers: "transfers";
|
|
12
12
|
readonly SendFunds: "send-funds";
|
|
13
|
+
readonly SendFundsPushToCard: "send-funds.push-to-card";
|
|
14
|
+
readonly MoneyTransferPushToCard: "money-transfer.push-to-card";
|
|
15
|
+
readonly SendFundsAch: "send-funds.ach";
|
|
16
|
+
readonly SendFundsRtp: "send-funds.rtp";
|
|
13
17
|
readonly CollectFunds: "collect-funds";
|
|
18
|
+
readonly CollectFundsCardPayments: "collect-funds.card-payments";
|
|
19
|
+
readonly MoneyTransferPullFromCard: "money-transfer.pull-from-card";
|
|
20
|
+
readonly CollectFundsAch: "collect-funds.ach";
|
|
14
21
|
readonly Wallet: "wallet";
|
|
22
|
+
readonly WalletBalance: "wallet.balance";
|
|
15
23
|
readonly CardIssuing: "card-issuing";
|
|
16
24
|
readonly ProductionApp: "production-app";
|
|
25
|
+
readonly PlatformProductionApp: "platform.production-app";
|
|
26
|
+
readonly PlatformWalletTransfers: "platform.wallet-transfers";
|
|
17
27
|
};
|
|
18
28
|
/**
|
|
19
29
|
* Moov account capabilities.
|
|
20
30
|
*
|
|
21
31
|
* @remarks
|
|
22
32
|
*
|
|
23
|
-
* The `production-app`
|
|
33
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
24
34
|
*/
|
|
25
35
|
export type CapabilityID = ClosedEnum<typeof CapabilityID>;
|
|
26
36
|
/** @internal */
|
|
@@ -36,19 +46,39 @@ export declare namespace CapabilityID$ {
|
|
|
36
46
|
const inboundSchema: z.ZodNativeEnum<{
|
|
37
47
|
readonly Transfers: "transfers";
|
|
38
48
|
readonly SendFunds: "send-funds";
|
|
49
|
+
readonly SendFundsPushToCard: "send-funds.push-to-card";
|
|
50
|
+
readonly MoneyTransferPushToCard: "money-transfer.push-to-card";
|
|
51
|
+
readonly SendFundsAch: "send-funds.ach";
|
|
52
|
+
readonly SendFundsRtp: "send-funds.rtp";
|
|
39
53
|
readonly CollectFunds: "collect-funds";
|
|
54
|
+
readonly CollectFundsCardPayments: "collect-funds.card-payments";
|
|
55
|
+
readonly MoneyTransferPullFromCard: "money-transfer.pull-from-card";
|
|
56
|
+
readonly CollectFundsAch: "collect-funds.ach";
|
|
40
57
|
readonly Wallet: "wallet";
|
|
58
|
+
readonly WalletBalance: "wallet.balance";
|
|
41
59
|
readonly CardIssuing: "card-issuing";
|
|
42
60
|
readonly ProductionApp: "production-app";
|
|
61
|
+
readonly PlatformProductionApp: "platform.production-app";
|
|
62
|
+
readonly PlatformWalletTransfers: "platform.wallet-transfers";
|
|
43
63
|
}>;
|
|
44
64
|
/** @deprecated use `CapabilityID$outboundSchema` instead. */
|
|
45
65
|
const outboundSchema: z.ZodNativeEnum<{
|
|
46
66
|
readonly Transfers: "transfers";
|
|
47
67
|
readonly SendFunds: "send-funds";
|
|
68
|
+
readonly SendFundsPushToCard: "send-funds.push-to-card";
|
|
69
|
+
readonly MoneyTransferPushToCard: "money-transfer.push-to-card";
|
|
70
|
+
readonly SendFundsAch: "send-funds.ach";
|
|
71
|
+
readonly SendFundsRtp: "send-funds.rtp";
|
|
48
72
|
readonly CollectFunds: "collect-funds";
|
|
73
|
+
readonly CollectFundsCardPayments: "collect-funds.card-payments";
|
|
74
|
+
readonly MoneyTransferPullFromCard: "money-transfer.pull-from-card";
|
|
75
|
+
readonly CollectFundsAch: "collect-funds.ach";
|
|
49
76
|
readonly Wallet: "wallet";
|
|
77
|
+
readonly WalletBalance: "wallet.balance";
|
|
50
78
|
readonly CardIssuing: "card-issuing";
|
|
51
79
|
readonly ProductionApp: "production-app";
|
|
80
|
+
readonly PlatformProductionApp: "platform.production-app";
|
|
81
|
+
readonly PlatformWalletTransfers: "platform.wallet-transfers";
|
|
52
82
|
}>;
|
|
53
83
|
}
|
|
54
84
|
//# sourceMappingURL=capabilityid.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capabilityid.d.ts","sourceRoot":"","sources":["../../src/models/components/capabilityid.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"capabilityid.d.ts","sourceRoot":"","sources":["../../src/models/components/capabilityid.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD;;;;;;GAMG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;CAiBf,CAAC;AACX;;;;;;GAMG;AACH,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,CAAC;AAE3D,gBAAgB;AAChB,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,YAAY,CAChD,CAAC;AAE7B,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO,YAAY,CACjD,CAAC;AAE7B;;;GAGG;AACH,yBAAiB,aAAa,CAAC;IAC7B,4DAA4D;IACrD,MAAM,aAAa;;;;;;;;;;;;;;;;;MAA6B,CAAC;IACxD,6DAA6D;IACtD,MAAM,cAAc;;;;;;;;;;;;;;;;;MAA8B,CAAC;CAC3D"}
|
|
@@ -43,15 +43,25 @@ const z = __importStar(require("zod"));
|
|
|
43
43
|
*
|
|
44
44
|
* @remarks
|
|
45
45
|
*
|
|
46
|
-
* The `production-app`
|
|
46
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
47
47
|
*/
|
|
48
48
|
exports.CapabilityID = {
|
|
49
49
|
Transfers: "transfers",
|
|
50
50
|
SendFunds: "send-funds",
|
|
51
|
+
SendFundsPushToCard: "send-funds.push-to-card",
|
|
52
|
+
MoneyTransferPushToCard: "money-transfer.push-to-card",
|
|
53
|
+
SendFundsAch: "send-funds.ach",
|
|
54
|
+
SendFundsRtp: "send-funds.rtp",
|
|
51
55
|
CollectFunds: "collect-funds",
|
|
56
|
+
CollectFundsCardPayments: "collect-funds.card-payments",
|
|
57
|
+
MoneyTransferPullFromCard: "money-transfer.pull-from-card",
|
|
58
|
+
CollectFundsAch: "collect-funds.ach",
|
|
52
59
|
Wallet: "wallet",
|
|
60
|
+
WalletBalance: "wallet.balance",
|
|
53
61
|
CardIssuing: "card-issuing",
|
|
54
62
|
ProductionApp: "production-app",
|
|
63
|
+
PlatformProductionApp: "platform.production-app",
|
|
64
|
+
PlatformWalletTransfers: "platform.wallet-transfers",
|
|
55
65
|
};
|
|
56
66
|
/** @internal */
|
|
57
67
|
exports.CapabilityID$inboundSchema = z.nativeEnum(exports.CapabilityID);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"capabilityid.js","sourceRoot":"","sources":["../../src/models/components/capabilityid.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;;;;;GAMG;AACU,QAAA,YAAY,GAAG;IAC1B,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,YAAY;IACvB,YAAY,EAAE,eAAe;IAC7B,MAAM,EAAE,QAAQ;IAChB,WAAW,EAAE,cAAc;IAC3B,aAAa,EAAE,gBAAgB;
|
|
1
|
+
{"version":3,"file":"capabilityid.js","sourceRoot":"","sources":["../../src/models/components/capabilityid.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;;;;;GAMG;AACU,QAAA,YAAY,GAAG;IAC1B,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,YAAY;IACvB,mBAAmB,EAAE,yBAAyB;IAC9C,uBAAuB,EAAE,6BAA6B;IACtD,YAAY,EAAE,gBAAgB;IAC9B,YAAY,EAAE,gBAAgB;IAC9B,YAAY,EAAE,eAAe;IAC7B,wBAAwB,EAAE,6BAA6B;IACvD,yBAAyB,EAAE,+BAA+B;IAC1D,eAAe,EAAE,mBAAmB;IACpC,MAAM,EAAE,QAAQ;IAChB,aAAa,EAAE,gBAAgB;IAC/B,WAAW,EAAE,cAAc;IAC3B,aAAa,EAAE,gBAAgB;IAC/B,qBAAqB,EAAE,yBAAyB;IAChD,uBAAuB,EAAE,2BAA2B;CAC5C,CAAC;AAUX,gBAAgB;AACH,QAAA,0BAA0B,GACrC,CAAC,CAAC,UAAU,CAAC,oBAAY,CAAC,CAAC;AAE7B,gBAAgB;AACH,QAAA,2BAA2B,GACtC,kCAA0B,CAAC;AAE7B;;;GAGG;AACH,IAAiB,aAAa,CAK7B;AALD,WAAiB,aAAa;IAC5B,4DAA4D;IAC/C,2BAAa,GAAG,kCAA0B,CAAC;IACxD,6DAA6D;IAChD,4BAAc,GAAG,mCAA2B,CAAC;AAC5D,CAAC,EALgB,aAAa,6BAAb,aAAa,QAK7B"}
|
|
@@ -10,7 +10,7 @@ export type WebhookDataCapabilityRequested = {
|
|
|
10
10
|
*
|
|
11
11
|
* @remarks
|
|
12
12
|
*
|
|
13
|
-
* The `production-app`
|
|
13
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
14
14
|
*/
|
|
15
15
|
capabilityID: CapabilityID;
|
|
16
16
|
};
|
|
@@ -11,7 +11,7 @@ export type WebhookDataCapabilityUpdated = {
|
|
|
11
11
|
*
|
|
12
12
|
* @remarks
|
|
13
13
|
*
|
|
14
|
-
* The `production-app`
|
|
14
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
15
15
|
*/
|
|
16
16
|
capabilityID: CapabilityID;
|
|
17
17
|
/**
|
|
@@ -25,7 +25,7 @@ export type DisableCapabilityRequest = {
|
|
|
25
25
|
*
|
|
26
26
|
* @remarks
|
|
27
27
|
*
|
|
28
|
-
* The `production-app`
|
|
28
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
29
29
|
*/
|
|
30
30
|
capabilityID: components.CapabilityID;
|
|
31
31
|
};
|
|
@@ -25,7 +25,7 @@ export type GetCapabilityRequest = {
|
|
|
25
25
|
*
|
|
26
26
|
* @remarks
|
|
27
27
|
*
|
|
28
|
-
* The `production-app`
|
|
28
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
29
29
|
*/
|
|
30
30
|
capabilityID: components.CapabilityID;
|
|
31
31
|
};
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -73,7 +73,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
73
73
|
export const SDK_METADATA = {
|
|
74
74
|
language: "typescript",
|
|
75
75
|
openapiDocVersion: "latest",
|
|
76
|
-
sdkVersion: "0.12.
|
|
77
|
-
genVersion: "2.
|
|
78
|
-
userAgent: "speakeasy-sdk/typescript 0.12.
|
|
76
|
+
sdkVersion: "0.12.6",
|
|
77
|
+
genVersion: "2.638.0",
|
|
78
|
+
userAgent: "speakeasy-sdk/typescript 0.12.6 2.638.0 latest @moovio/sdk",
|
|
79
79
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -29,7 +29,7 @@ export type Capability = {
|
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
31
|
*
|
|
32
|
-
* The `production-app`
|
|
32
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
33
33
|
*/
|
|
34
34
|
capability: CapabilityID;
|
|
35
35
|
accountID: string;
|
|
@@ -10,22 +10,32 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
10
10
|
*
|
|
11
11
|
* @remarks
|
|
12
12
|
*
|
|
13
|
-
* The `production-app`
|
|
13
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
14
14
|
*/
|
|
15
15
|
export const CapabilityID = {
|
|
16
16
|
Transfers: "transfers",
|
|
17
17
|
SendFunds: "send-funds",
|
|
18
|
+
SendFundsPushToCard: "send-funds.push-to-card",
|
|
19
|
+
MoneyTransferPushToCard: "money-transfer.push-to-card",
|
|
20
|
+
SendFundsAch: "send-funds.ach",
|
|
21
|
+
SendFundsRtp: "send-funds.rtp",
|
|
18
22
|
CollectFunds: "collect-funds",
|
|
23
|
+
CollectFundsCardPayments: "collect-funds.card-payments",
|
|
24
|
+
MoneyTransferPullFromCard: "money-transfer.pull-from-card",
|
|
25
|
+
CollectFundsAch: "collect-funds.ach",
|
|
19
26
|
Wallet: "wallet",
|
|
27
|
+
WalletBalance: "wallet.balance",
|
|
20
28
|
CardIssuing: "card-issuing",
|
|
21
29
|
ProductionApp: "production-app",
|
|
30
|
+
PlatformProductionApp: "platform.production-app",
|
|
31
|
+
PlatformWalletTransfers: "platform.wallet-transfers",
|
|
22
32
|
} as const;
|
|
23
33
|
/**
|
|
24
34
|
* Moov account capabilities.
|
|
25
35
|
*
|
|
26
36
|
* @remarks
|
|
27
37
|
*
|
|
28
|
-
* The `production-app`
|
|
38
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
29
39
|
*/
|
|
30
40
|
export type CapabilityID = ClosedEnum<typeof CapabilityID>;
|
|
31
41
|
|
|
@@ -20,7 +20,7 @@ export type WebhookDataCapabilityRequested = {
|
|
|
20
20
|
*
|
|
21
21
|
* @remarks
|
|
22
22
|
*
|
|
23
|
-
* The `production-app`
|
|
23
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
24
24
|
*/
|
|
25
25
|
capabilityID: CapabilityID;
|
|
26
26
|
};
|
|
@@ -25,7 +25,7 @@ export type WebhookDataCapabilityUpdated = {
|
|
|
25
25
|
*
|
|
26
26
|
* @remarks
|
|
27
27
|
*
|
|
28
|
-
* The `production-app`
|
|
28
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
29
29
|
*/
|
|
30
30
|
capabilityID: CapabilityID;
|
|
31
31
|
/**
|
|
@@ -33,7 +33,7 @@ export type DisableCapabilityRequest = {
|
|
|
33
33
|
*
|
|
34
34
|
* @remarks
|
|
35
35
|
*
|
|
36
|
-
* The `production-app`
|
|
36
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
37
37
|
*/
|
|
38
38
|
capabilityID: components.CapabilityID;
|
|
39
39
|
};
|
|
@@ -33,7 +33,7 @@ export type GetCapabilityRequest = {
|
|
|
33
33
|
*
|
|
34
34
|
* @remarks
|
|
35
35
|
*
|
|
36
|
-
* The `production-app`
|
|
36
|
+
* The `production-app`, `platform.production-app`, and / or `platform.wallet-transfers` capabilities might appear in your list. These are read-only capabilities that Moov requests and uses for account verification purposes. These capabilities remains active with your account and require no additional action.
|
|
37
37
|
*/
|
|
38
38
|
capabilityID: components.CapabilityID;
|
|
39
39
|
};
|