@atomsolution/invoice-sdk-api 1.28.0 → 1.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -136,10 +136,11 @@ function getListProviders(mode, bank) {
136
136
  const widget = yield loadSettingsFromCDN();
137
137
  const bankSettings = widget.getSettings(mode, bank);
138
138
  const providers = PROVIDERS.map((provider) => {
139
- const { invoiceLookupUrl, sso } = bankSettings[provider.route];
139
+ const { invoiceLookupUrl, sso, features } = bankSettings[provider.route];
140
140
  return __spreadProps(__spreadValues({}, provider), {
141
141
  invoiceLookupUrl,
142
- isActiveSSO: sso
142
+ isActiveSSO: sso,
143
+ features
143
144
  });
144
145
  });
145
146
  return providers.filter((provider) => bankSettings[provider.route].isActive);