Skip to content

Commit 147f273

Browse files
Bill LeoutsakosBill Leoutsakos
authored andcommitted
fix(oracle-epm-account-reconciliation): restrict unmatch artifacts
1 parent 7d00158 commit 147f273

7 files changed

Lines changed: 4 additions & 8 deletions

File tree

apps/docs/content/docs/integrations/oracle_epm_account_reconciliation.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,6 @@ Unmatch all transactions matched by a specified auto-match job.
777777
| `state` | string | Normalized job state: pending, succeeded, or failed |
778778
| `jobId` | string | Job ID extracted from a validated provider status link |
779779
| `accepted` | boolean | Whether Oracle accepted the launch; preserved if later work fails |
780-
| `logFileName` | string | Repository log filename extracted from a validated log-content link |
781780

782781
### Oracle EPM Account Reconciliation Unmatch Transactions
783782

apps/sim/blocks/blocks/oracle_epm_account_reconciliation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,6 @@ export const OracleEpmAccountReconciliationBlock: BlockConfig<OracleEpmAccountRe
20692069
'import_matching_transactions',
20702070
'purge_archived_transactions',
20712071
'purge_matched_transactions',
2072-
'unmatch_auto_match_job',
20732072
'unmatch_transactions',
20742073
],
20752074
},

apps/sim/lib/internal/oracle-epm-account-reconciliation/jobs.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ describe('Account Reconciliation job behavior', () => {
230230
['purgearchivetransactions', true, false],
231231
['importtmpremappedtransactions', true, false],
232232
['unmatchtransactions', true, false],
233-
['unmatchtransactionsbyautomatch', true, false],
233+
['unmatchtransactionsbyautomatch', false, false],
234234
] as const)(
235235
'projects only documented artifacts for %s on launch and after waiting',
236236
async (jobName, hasLog, hasArchive) => {

apps/sim/lib/internal/oracle-epm-account-reconciliation/jobs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ const matchingJobArtifacts: Record<string, readonly ArcsArtifactRelation[]> = {
3030
purgearchivetransactions: ['log-content'],
3131
importtmpremappedtransactions: ['log-content'],
3232
unmatchtransactions: ['log-content'],
33-
unmatchtransactionsbyautomatch: ['log-content'],
3433
}
3534

3635
export function classifyArcsStatus(status: number): 'pending' | 'succeeded' | 'failed' {

apps/sim/tools/generated/tool-outputs.ts

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

apps/sim/tools/oracle_epm_account_reconciliation/oracle_epm_account_reconciliation.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ describe('Account Reconciliation public integration contract', () => {
167167
'import_matching_transactions',
168168
'purge_archived_transactions',
169169
'purge_matched_transactions',
170-
'unmatch_auto_match_job',
171170
'unmatch_transactions',
172171
]
173172
for (const action of actions) {

apps/sim/tools/oracle_epm_account_reconciliation/unmatch_auto_match_job.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
OracleEpmAccountReconciliationResponse,
44
OracleEpmAccountReconciliationUnmatchAutoMatchJobParams,
55
} from '@/tools/oracle_epm_account_reconciliation/types'
6-
import { ARCS_MATCHING_LOG_OUTPUTS } from '@/tools/oracle_epm_account_reconciliation/types'
6+
import { ARCS_JOB_OUTPUTS } from '@/tools/oracle_epm_account_reconciliation/types'
77
import { arcsAuthParamFields } from '@/tools/oracle_epm_account_reconciliation/utils'
88
import type { InternalToolConfig } from '@/tools/types'
99

@@ -44,5 +44,5 @@ export const oracleEpmAccountReconciliationUnmatchAutoMatchJobTool: InternalTool
4444
},
4545
},
4646
operation: { input: createInternalToolOperationInput },
47-
outputs: ARCS_MATCHING_LOG_OUTPUTS,
47+
outputs: ARCS_JOB_OUTPUTS,
4848
}

0 commit comments

Comments
 (0)