Skip to content

Commit 858f3a7

Browse files
Bill LeoutsakosBill Leoutsakos
authored andcommitted
fix(oracle-epm-edm): update integration registration inventories
1 parent ff32dee commit 858f3a7

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

apps/sim/lib/integrations/credential-display.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ const EXPECTED_COVERAGE: Record<string, string[]> = {
6868
// NetSuite remains an API-key catalog integration, like Snowflake, while its
6969
// block uses the shared reusable-credential selector.
7070
'netsuite-service-account': [],
71+
// EDM also exposes the reusable credential on its API-key-classified block.
72+
'oracle-epm-service-account': [],
7173
'pipedrive-service-account': ['pipedrive'],
7274
'salesforce-service-account': ['salesforce'],
7375
'shopify-service-account': ['shopify'],

apps/sim/lib/selectors/manifest.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ describe('selector manifest', () => {
99
const count = (classification: (typeof classifications)[number]) =>
1010
classifications.filter((value) => value === classification).length
1111

12-
expect(Object.keys(selectorManifest)).toHaveLength(94)
13-
expect(count('provider-server')).toBe(82)
12+
expect(Object.keys(selectorManifest)).toHaveLength(100)
13+
expect(count('provider-server')).toBe(88)
1414
expect(count('internal-server')).toBe(11)
1515
expect(count('local')).toBe(1)
1616
expect(classifications).not.toContain('provider-legacy')
@@ -36,7 +36,7 @@ describe('selector manifest', () => {
3636
const rawConnectionKeys = providerKeys.filter(
3737
(key) => !serverSelectorRegistry[key as keyof typeof serverSelectorRegistry].credential
3838
)
39-
expect(providerKeys).toHaveLength(82)
39+
expect(providerKeys).toHaveLength(88)
4040
expect(rawConnectionKeys.sort()).toEqual([
4141
'cloudwatch.logGroups',
4242
'cloudwatch.logStreams',
@@ -98,7 +98,7 @@ describe('selector manifest', () => {
9898
(attachment) => attachment.destination !== 'fixed'
9999
)
100100

101-
expect(preparedDestinations).toHaveLength(13)
101+
expect(preparedDestinations).toHaveLength(19)
102102
for (const attachment of preparedDestinations) {
103103
expect(attachment.destination).toEqual(
104104
expect.objectContaining({

0 commit comments

Comments
 (0)