Skip to content

Commit 20b78ee

Browse files
DF-22512: Patches sensitive fields for Bank Frick & Superstate EAs
1 parent a806c7c commit 20b78ee

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

packages/sources/bank-frick/src/config/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export const config = new AdapterConfig({
2121
description: 'The API key to use for making requests to the Bank Frick API',
2222
type: 'string',
2323
required: true,
24+
sensitive: true,
2425
},
2526
PAGE_SIZE: {
2627
description: 'The number of accounts to fetch per call to /accounts. Must be >= 1 and <= 500.',
@@ -33,6 +34,7 @@ export const config = new AdapterConfig({
3334
description: '',
3435
type: 'string',
3536
required: true,
37+
sensitive: true,
3638
validate: {
3739
meta: {
3840
details: 'Invalid private key',

packages/sources/superstate/src/config/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ export const config = new AdapterConfig(
1010
TRANSACTION_API_KEY: {
1111
description: 'Api key for /v2/transactions API endpoints',
1212
type: 'string',
13+
sensitive: true,
1314
},
1415
TRANSACTION_API_SECRET: {
1516
description: 'Api secret for /v2/transactions API endpoints',
1617
type: 'string',
18+
sensitive: true,
1719
},
1820
LOOKBACK_DAYS: {
1921
description: 'The number of days of historical data to retrieve',

0 commit comments

Comments
 (0)