feat(oracle-b2c-service): add Oracle B2C Service integration - #7423
Open
BillLeoutsakosvl346 wants to merge 2 commits into
Open
feat(oracle-b2c-service): add Oracle B2C Service integration#7423BillLeoutsakosvl346 wants to merge 2 commits into
BillLeoutsakosvl346 wants to merge 2 commits into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryAdds an Oracle B2C Service workflow integration with 21 REST operations, Basic authentication, validated request construction, generated catalog metadata, documentation, and tests.
Confidence Score: 5/5The PR appears safe to merge because no blocking failure remains in the eligible follow-up review scope. No blocking failure remains.
|
| Filename | Overview |
|---|---|
| apps/sim/blocks/blocks/oracle-b2c-service.ts | Defines the workflow-facing Oracle block, operation selection, parameter projection, credentials, and common outputs. |
| apps/sim/tools/oracle_b2c_service/utils.ts | Centralizes URL validation, authentication headers, pagination constraints, payload construction, ID validation, and response transformation. |
| apps/sim/tools/oracle_b2c_service/params.ts | Defines shared credential and action parameter contracts with user-only visibility for manually supplied credentials. |
| apps/sim/tools/oracle_b2c_service/oracle-b2c-service.test.ts | Exercises operation routing, request payloads, URL constraints, validation behavior, and response transformations. |
| apps/sim/tools/registry.ts | Registers all 21 Oracle operation IDs with their executable tool definitions. |
| apps/sim/blocks/registry-maps.ts | Registers Oracle B2C Service in the block execution and metadata catalogs. |
| packages/deployment-config/src/integrations.json | Adds Oracle B2C Service to deployment integration availability metadata. |
Sequence Diagram
sequenceDiagram
participant User as Workflow user
participant Block as Oracle B2C block
participant Tool as Registered Oracle tool
participant Guard as Secure request transport
participant Oracle as Oracle B2C REST API
User->>Block: Configure operation and credentials
Block->>Tool: Resolve operation-specific tool ID
Tool->>Guard: Build validated HTTPS request
Guard->>Oracle: Send authenticated REST request
Oracle-->>Guard: Return resource or collection page
Guard-->>Tool: Transform provider response
Tool-->>Block: Return structured workflow output
Reviews (2): Last reviewed commit: "fix(oracle-b2c-service): map response su..." | Re-trigger Greptile
Contributor
Author
Contributor
Author
|
@cubic-dev-ai review this PR |
Contributor
@BillLeoutsakosvl346 I have started the AI code review. It will take a few minutes to complete. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Type of Change
Testing
Checklist