-
Notifications
You must be signed in to change notification settings - Fork 993
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
[FCLite] Add FC Lite integration in FC Example app #4694
Conversation
} else { | ||
assertionFailure("unable to convert `configurationData` to a `configurationString`") | ||
} | ||
let configurationString = String(decoding: configurationData, as: UTF8.self) |
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.
Drive-by fix. Our linter was yelling about this line
caeb5ea
to
065992c
Compare
ac4a6ca
to
e122ef5
Compare
@@ -37,11 +37,13 @@ final class PlaygroundConfiguration { | |||
enum IntegrationType: String, CaseIterable, Identifiable, Hashable { | |||
case standalone = "standalone" | |||
case paymentElement = "payment_element" | |||
case fcLite = "fc_lite" |
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.
Not blocking, but would it make sense to make FC Lite its own setting? This way, you can run both standalone and MPE with both full and lite SDKs.
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.
Done in 1172475 - added it to the SDK type:

e122ef5
to
1172475
Compare
Summary
Adds an entry point for FC Lite in our Financial Connections Example app. FC Lite currently isn't implemented, so this doesn't currently do anything, but it will come in handy for my next PRs that build out this integration.
Motivation
Will allow testing FC Lite once it's implemented.
Testing
Changelog
N/a