-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Form
, Flow
, and Flow Vault Connection
Managers
#444
Merged
Conversation
This file contains 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
SDK-4929 form api dsk support fix typo SDK-4929 form create unit test SDK-4929 form added unit test SDK-4929 form comment updated
SDK-4929 flow api test recordings added
SDK-4929 flows, vault connection sdk support. SDK-4929 flows and vault connection recordings added. SDK-4929 flow struct updated
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #444 +/- ##
==========================================
+ Coverage 95.70% 95.81% +0.11%
==========================================
Files 49 51 +2
Lines 8234 8456 +222
==========================================
+ Hits 7880 8102 +222
Misses 236 236
Partials 118 118 ☔ View full report in Codecov by Sentry. |
kushalshit27
changed the title
Add Support for support for forms, flow, flow vault connection
Add Support for support for forms, flow, vault connection
Sep 13, 2024
kushalshit27
changed the title
Add Support for support for forms, flow, vault connection
Support for forms, flow, vault connection
Sep 13, 2024
kushalshit27
changed the title
Support for forms, flow, vault connection
Support for form, flow, vault connection
Sep 13, 2024
developerkunal
requested changes
Sep 16, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added my review
1 task
duedares-rvj
approved these changes
Sep 23, 2024
developerkunal
approved these changes
Sep 23, 2024
developerkunal
changed the title
Support for form, flow, vault connection
Add support for Sep 27, 2024
Form
, Flow
, and Flow Vault Connection
Managers
Merged
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.
🔧 Changes
This PR adds support for the following required endpoints:
Form Manager:
POST /api/v2/forms
GET /api/v2/forms
GET /api/v2/forms/:form_id
PATCH /api/v2/forms/:form_id
DELETE /api/v2/forms/:form_id
Flow Manager:
POST /api/v2/flows
GET /api/v2/flows
GET /api/v2/flows/:flow_id
PATCH /api/v2/flows/:flow_id
DELETE /api/v2/flows/:flow_id
Flow Vault Connection Manager:
POST /api/v2/flows/vault/connections
GET /api/v2/flows/vault/connections
GET /api/v2/flows/vault/connections/:connection_id
PATCH /api/v2/flows/vault/connections/:connection_id
DELETE /api/v2/flows/vault/connections/:connection_id
📚 References
For further information, refer to the following documentation:
🔍 Example
🔬 Testing
📝 Checklist