Skip to content

Commit 2e8797c

Browse files
committed
Explicitly flag configs as insensitive for new EAs
1 parent 5daa273 commit 2e8797c

4 files changed

Lines changed: 10 additions & 0 deletions

File tree

packages/sources/canton-functions/src/config/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,36 @@ export const config = new AdapterConfig({
1212
'The amount of time the background execute should sleep before performing the next request',
1313
type: 'number',
1414
default: 1_000,
15+
sensitive: false,
1516
},
1617
URL: {
1718
description: 'The Canton JSON API URL',
1819
type: 'string',
1920
required: true,
21+
sensitive: false,
2022
},
2123
TEMPLATE_ID: {
2224
description: 'The template ID to query contracts for (format: packageId:Module:Template)',
2325
type: 'string',
2426
required: true,
27+
sensitive: false,
2528
},
2629
CHOICE: {
2730
description: 'The non-consuming choice to exercise on the contract',
2831
type: 'string',
2932
required: true,
33+
sensitive: false,
3034
},
3135
ARGUMENT: {
3236
description: 'The argument for the choice (JSON string)',
3337
type: 'string',
3438
required: false,
39+
sensitive: false,
3540
},
3641
CONTRACT_FILTER: {
3742
description: 'Filter to query contracts when contractId is not provided (JSON string)',
3843
type: 'string',
3944
required: false,
45+
sensitive: false,
4046
},
4147
})

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ export const config = new AdapterConfig({
1717
description: 'An API endpoint for Matrixdock',
1818
type: 'string',
1919
default: 'https://mapi.matrixport.com',
20+
sensitive: false,
2021
},
2122
})

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,6 @@ export const config = new AdapterConfig({
4343
type: 'string',
4444
description: 'The WS API endpoint to use for the forex-continuous (24/7) endpoint',
4545
default: 'wss://cryptofeed.ws.newchangefx.com/fiat_v1',
46+
sensitive: false,
4647
},
4748
})

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ export const config = new AdapterConfig(
3333
default: 1,
3434
type: 'number',
3535
validate: validator.integer({ min: 1, max: 5 }),
36+
sensitive: false,
3637
},
3738
WS_URL_SECONDARY_ATTEMPTS: {
3839
description:
3940
'Number of consecutive connection attempts to secondary WebSocket URL per failover cycle (alternates with primary)',
4041
default: 1,
4142
type: 'number',
4243
validate: validator.integer({ min: 1, max: 5 }),
44+
sensitive: false,
4345
},
4446
},
4547
{

0 commit comments

Comments
 (0)