@moneylion/react-native-offer-carousel 1.0.0 → 1.0.1
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/README.md +44 -0
- package/lib/commonjs/capabilities/configuration/src/brands/checkVisualEligibility.js +30 -0
- package/lib/commonjs/capabilities/configuration/src/brands/checkVisualEligibility.js.map +1 -0
- package/lib/commonjs/capabilities/configuration/src/brands/createDerivedBrands.js +40 -0
- package/lib/commonjs/capabilities/configuration/src/brands/createDerivedBrands.js.map +1 -0
- package/lib/commonjs/capabilities/configuration/src/brands/index.js +20 -0
- package/lib/commonjs/capabilities/configuration/src/brands/index.js.map +1 -0
- package/lib/commonjs/capabilities/configuration/src/brands/types.js +13 -0
- package/lib/commonjs/capabilities/configuration/src/brands/types.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/domain/third-party-search/index.js +17 -0
- package/lib/commonjs/capabilities/core/src/domain/third-party-search/index.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.js +33 -0
- package/lib/commonjs/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/index.js +17 -0
- package/lib/commonjs/capabilities/core/src/index.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/CnfContext.js +18 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/CnfContext.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/App.js +18 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/App.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Brand.js +87 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Brand.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Configuration.js +41 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Configuration.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Request.js +21 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Request.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Session.js +12 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Session.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Signals.js +41 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Signals.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Subaccount.js +26 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/Subaccount.js.map +1 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/index.js +83 -0
- package/lib/commonjs/capabilities/core/src/system/cnfContext/schemas/index.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/api/offerCatalogApi.js +131 -0
- package/lib/commonjs/capabilities/offer-catalog/src/api/offerCatalogApi.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/index.js +65 -0
- package/lib/commonjs/capabilities/offer-catalog/src/index.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/types/offerCatalogSchema.js +2 -0
- package/lib/commonjs/capabilities/offer-catalog/src/types/offerCatalogSchema.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/arrayToMarkdownList.js +11 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/arrayToMarkdownList.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/contextUtil.js +70 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/contextUtil.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/errorUtil.js +21 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/errorUtil.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/formatUtils.js +161 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/formatUtils.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/getOfferUrl.js +44 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/getOfferUrl.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.js +78 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/boolean.js +22 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/boolean.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.js +60 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/common.js +20 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/common.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.js +62 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.js +32 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.js +31 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currency.js +22 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currency.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.js +46 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.js +208 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.js +20 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.js +24 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.js +21 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.js +40 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/index.js +204 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/index.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.js +35 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.js +43 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/percentage.js +21 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/percentage.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.js +32 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.js +76 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.js +69 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.js +23 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.js +47 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.js +72 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.js +23 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.js +29 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.js +53 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.js +46 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.js +26 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.js +83 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.js +28 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.js +28 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.js +21 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.js +30 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/index.js +48 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/index.js.map +1 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/types.js +6 -0
- package/lib/commonjs/capabilities/offer-catalog/src/utils/stats/types.js.map +1 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.js +6 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.js.map +1 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.js +2 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.js.map +1 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/types/PublicApi.d.js +2 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/types/PublicApi.d.js.map +1 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/types/index.js +6 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/types/index.js.map +1 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.js +74 -0
- package/lib/commonjs/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.js +61 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/components.js +143 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/components.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/index.js +54 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/index.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.js +122 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/index.js +13 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/index.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/index.js +110 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/index.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.js +91 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.js +44 -0
- package/lib/commonjs/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/index.js +28 -0
- package/lib/commonjs/capabilities/ui/elements/src/index.js.map +1 -0
- package/lib/commonjs/capabilities/ui/elements/src/offerCardAttributes.js +23 -0
- package/lib/commonjs/capabilities/ui/elements/src/offerCardAttributes.js.map +1 -0
- package/lib/commonjs/components/Cards/VideosCard/VideosCard.js +1 -1
- package/lib/commonjs/components/Common/BaseOfferCard/Stat/Stat.js +1 -1
- package/lib/commonjs/components/Common/BaseOfferCard/Stat/Stat.js.map +1 -1
- package/lib/commonjs/components/Common/BaseOfferCard/index.js +4 -4
- package/lib/commonjs/components/Common/BaseOfferCard/index.js.map +1 -1
- package/lib/commonjs/components/Layouts/CreditCardOfferCard/statsBuilder.js +1 -1
- package/lib/commonjs/components/Layouts/DefaultOfferCard/statsBuilder.js +1 -1
- package/lib/commonjs/components/Modal/DescriptionPoints.js +3 -3
- package/lib/commonjs/components/Modal/DescriptionPoints.js.map +1 -1
- package/lib/commonjs/components/Modal/Disclaimer.js +1 -1
- package/lib/commonjs/components/Modal/Disclaimer.js.map +1 -1
- package/lib/commonjs/components/MoneyLionOfferCarousel.js +1 -1
- package/lib/commonjs/config/mocks/cnfContext.js +143 -0
- package/lib/commonjs/config/mocks/cnfContext.js.map +1 -0
- package/lib/commonjs/pageData.js +1 -1
- package/lib/commonjs/services/getProductTypesByQuery.js +1 -1
- package/lib/commonjs/utils/formatOfferUrl.js +1 -1
- package/lib/commonjs/utils/getOffersByProductTypes.js +2 -2
- package/lib/module/capabilities/configuration/src/brands/checkVisualEligibility.js +24 -0
- package/lib/module/capabilities/configuration/src/brands/checkVisualEligibility.js.map +1 -0
- package/lib/module/capabilities/configuration/src/brands/createDerivedBrands.js +34 -0
- package/lib/module/capabilities/configuration/src/brands/createDerivedBrands.js.map +1 -0
- package/lib/module/capabilities/configuration/src/brands/index.js +3 -0
- package/lib/module/capabilities/configuration/src/brands/index.js.map +1 -0
- package/lib/module/capabilities/configuration/src/brands/types.js +6 -0
- package/lib/module/capabilities/configuration/src/brands/types.js.map +1 -0
- package/lib/module/capabilities/core/src/domain/third-party-search/index.js +2 -0
- package/lib/module/capabilities/core/src/domain/third-party-search/index.js.map +1 -0
- package/lib/module/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.js +26 -0
- package/lib/module/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.js.map +1 -0
- package/lib/module/capabilities/core/src/index.js +2 -0
- package/lib/module/capabilities/core/src/index.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/CnfContext.js +12 -0
- package/lib/module/capabilities/core/src/system/cnfContext/CnfContext.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/App.js +12 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/App.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Brand.js +81 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Brand.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Configuration.js +35 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Configuration.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Request.js +15 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Request.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Session.js +6 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Session.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Signals.js +35 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Signals.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Subaccount.js +20 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/Subaccount.js.map +1 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/index.js +8 -0
- package/lib/module/capabilities/core/src/system/cnfContext/schemas/index.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/api/offerCatalogApi.js +122 -0
- package/lib/module/capabilities/offer-catalog/src/api/offerCatalogApi.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/index.js +5 -0
- package/lib/module/capabilities/offer-catalog/src/index.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/types/offerCatalogSchema.js +2 -0
- package/lib/module/capabilities/offer-catalog/src/types/offerCatalogSchema.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/arrayToMarkdownList.js +4 -0
- package/lib/module/capabilities/offer-catalog/src/utils/arrayToMarkdownList.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/contextUtil.js +58 -0
- package/lib/module/capabilities/offer-catalog/src/utils/contextUtil.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/errorUtil.js +15 -0
- package/lib/module/capabilities/offer-catalog/src/utils/errorUtil.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/formatUtils.js +151 -0
- package/lib/module/capabilities/offer-catalog/src/utils/formatUtils.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/getOfferUrl.js +37 -0
- package/lib/module/capabilities/offer-catalog/src/utils/getOfferUrl.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.js +71 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/boolean.js +15 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/boolean.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.js +59 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/common.js +13 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/common.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.js +61 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.js +25 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.js +30 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currency.js +15 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currency.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.js +39 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.js +207 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.js +13 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.js +23 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.js +14 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.js +39 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/index.js +20 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/index.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.js +28 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.js +42 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/percentage.js +14 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/percentage.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.js +31 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.js +69 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.js +68 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.js +16 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.js +40 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.js +71 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.js +16 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.js +28 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.js +46 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.js +45 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.js +19 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.js +82 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.js +21 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.js +27 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.js +14 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.js +29 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/index.js +41 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/index.js.map +1 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/types.js +2 -0
- package/lib/module/capabilities/offer-catalog/src/utils/stats/types.js.map +1 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.js +2 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.js.map +1 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.js +2 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.js.map +1 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/types/PublicApi.d.js +2 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/types/PublicApi.d.js.map +1 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/types/index.js +2 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/types/index.js.map +1 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.js +65 -0
- package/lib/module/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.js +50 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/components.js +134 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/components.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/index.js +46 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/index.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.js +115 -0
- package/lib/module/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/index.js +2 -0
- package/lib/module/capabilities/ui/elements/src/components/index.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/index.js +103 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/index.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.js +86 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.js +43 -0
- package/lib/module/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/index.js +3 -0
- package/lib/module/capabilities/ui/elements/src/index.js.map +1 -0
- package/lib/module/capabilities/ui/elements/src/offerCardAttributes.js +16 -0
- package/lib/module/capabilities/ui/elements/src/offerCardAttributes.js.map +1 -0
- package/lib/module/components/Cards/VideosCard/VideosCard.js +1 -1
- package/lib/module/components/Common/BaseOfferCard/Stat/Stat.js +1 -2
- package/lib/module/components/Common/BaseOfferCard/Stat/Stat.js.map +1 -1
- package/lib/module/components/Common/BaseOfferCard/index.js +3 -4
- package/lib/module/components/Common/BaseOfferCard/index.js.map +1 -1
- package/lib/module/components/Layouts/CreditCardOfferCard/statsBuilder.js +1 -1
- package/lib/module/components/Layouts/CreditCardOfferCard/statsBuilder.js.map +1 -1
- package/lib/module/components/Layouts/DefaultOfferCard/statsBuilder.js +1 -1
- package/lib/module/components/Layouts/DefaultOfferCard/statsBuilder.js.map +1 -1
- package/lib/module/components/Modal/DescriptionPoints.js +2 -2
- package/lib/module/components/Modal/DescriptionPoints.js.map +1 -1
- package/lib/module/components/Modal/Disclaimer.js +1 -1
- package/lib/module/components/Modal/Disclaimer.js.map +1 -1
- package/lib/module/components/MoneyLionOfferCarousel.js +1 -1
- package/lib/module/components/MoneyLionOfferCarousel.js.map +1 -1
- package/lib/module/config/mocks/cnfContext.js +137 -0
- package/lib/module/config/mocks/cnfContext.js.map +1 -0
- package/lib/module/pageData.js +1 -1
- package/lib/module/pageData.js.map +1 -1
- package/lib/module/services/getProductTypesByQuery.js +1 -1
- package/lib/module/services/getProductTypesByQuery.js.map +1 -1
- package/lib/module/utils/formatOfferUrl.js +1 -1
- package/lib/module/utils/formatOfferUrl.js.map +1 -1
- package/lib/module/utils/getOffersByProductTypes.js +2 -2
- package/lib/module/utils/getOffersByProductTypes.js.map +1 -1
- package/lib/typescript/builder/builder.d.ts +2 -2
- package/lib/typescript/builder/builder.d.ts.map +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/checkVisualEligibility.d.ts.map +1 -0
- package/lib/typescript/{capabilities → src/capabilities}/configuration/src/brands/createDerivedBrands.d.ts +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/createDerivedBrands.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/configuration/src/brands/index.d.ts.map +1 -0
- package/lib/typescript/{capabilities → src/capabilities}/configuration/src/brands/types.d.ts +1 -1
- package/lib/typescript/src/capabilities/configuration/src/brands/types.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/domain/third-party-search/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/CnfContext.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/App.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Brand.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Configuration.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Request.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Session.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Signals.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/Subaccount.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/core/src/system/cnfContext/schemas/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/api/offerCatalogApi.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/types/offerCatalogSchema.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/arrayToMarkdownList.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/contextUtil.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/errorUtil.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/formatUtils.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/getOfferUrl.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/boolean.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/common.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/currency.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/percentage.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offer-catalog/src/utils/stats/types.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/offers/pipeline/src/sources/ratetables/types/index.d.ts.map +1 -0
- package/lib/typescript/{capabilities → src/capabilities}/offers/pipeline/src/sources/ratetables/withDeviceSignals.d.ts +9 -9
- package/lib/typescript/src/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.d.ts.map +1 -0
- package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/MarkdownText/components.d.ts +1 -1
- package/lib/typescript/src/capabilities/ui/elements/src/components/MarkdownText/components.d.ts.map +1 -0
- package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/MarkdownText/index.d.ts +1 -1
- package/lib/typescript/src/capabilities/ui/elements/src/components/MarkdownText/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/thumbor/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/index.d.ts.map +1 -0
- package/lib/typescript/src/capabilities/ui/elements/src/offerCardAttributes.d.ts.map +1 -0
- package/lib/typescript/src/components/Common/BaseOfferCard/Stat/Stat.d.ts +5 -1
- package/lib/typescript/src/components/Common/BaseOfferCard/Stat/Stat.d.ts.map +1 -1
- package/lib/typescript/src/components/Common/BaseOfferCard/index.d.ts +2 -2
- package/lib/typescript/src/components/Common/BaseOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/CallToAction.d.ts +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/CallToAction.d.ts.map +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/SeeMore.d.ts +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/SeeMore.d.ts.map +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Common/DynamicOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/DynamicOffersRender.d.ts +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/DynamicOffersRender.d.ts.map +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/FallbackOfferTemplate.d.ts +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/FallbackOfferTemplate.d.ts.map +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/Offer.d.ts +1 -1
- package/lib/typescript/src/components/DynamicOffers/Render/Offer.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/statsBuilder.d.ts +2 -2
- package/lib/typescript/src/components/Layouts/CreditCardOfferCard/statsBuilder.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/statsBuilder.d.ts +3 -3
- package/lib/typescript/src/components/Layouts/DefaultOfferCard/statsBuilder.d.ts.map +1 -1
- package/lib/typescript/src/components/Layouts/HeadlineWithDescriptionCard/index.d.ts +1 -1
- package/lib/typescript/src/components/Layouts/HeadlineWithDescriptionCard/index.d.ts.map +1 -1
- package/lib/typescript/src/components/Modal/OfferDetailsModal.d.ts +1 -1
- package/lib/typescript/src/components/Modal/OfferDetailsModal.d.ts.map +1 -1
- package/lib/typescript/src/config/mocks/cnfContext.d.ts.map +1 -0
- package/lib/typescript/src/context/EventHandlerProvider.d.ts +1 -1
- package/lib/typescript/src/context/EventHandlerProvider.d.ts.map +1 -1
- package/lib/typescript/src/pageData.d.ts +2 -2
- package/lib/typescript/src/pageData.d.ts.map +1 -1
- package/lib/typescript/src/services/getDynamicOffers.d.ts +3 -3
- package/lib/typescript/src/services/getDynamicOffers.d.ts.map +1 -1
- package/lib/typescript/src/utils/addClientTagsToOfferLinks.d.ts +1 -1
- package/lib/typescript/src/utils/addClientTagsToOfferLinks.d.ts.map +1 -1
- package/lib/typescript/src/utils/formatOfferUrl.d.ts +1 -1
- package/lib/typescript/src/utils/formatOfferUrl.d.ts.map +1 -1
- package/lib/typescript/src/utils/getDefaultProductType.d.ts +1 -1
- package/lib/typescript/src/utils/getDefaultProductType.d.ts.map +1 -1
- package/lib/typescript/src/utils/getEnableUseCachedOffers.d.ts +1 -1
- package/lib/typescript/src/utils/getEnableUseCachedOffers.d.ts.map +1 -1
- package/lib/typescript/src/utils/getOffersBasedOnLayout.d.ts +1 -1
- package/lib/typescript/src/utils/getOffersBasedOnLayout.d.ts.map +1 -1
- package/lib/typescript/src/utils/getOffersByProductTypes.d.ts +2 -2
- package/lib/typescript/src/utils/getOffersByProductTypes.d.ts.map +1 -1
- package/lib/typescript/src/utils/getProductTypesDefinition.d.ts +1 -1
- package/lib/typescript/src/utils/getProductTypesDefinition.d.ts.map +1 -1
- package/lib/typescript/src/utils/selectDynamicOffers.d.ts +1 -1
- package/lib/typescript/src/utils/selectDynamicOffers.d.ts.map +1 -1
- package/lib/typescript/src/utils/sortOffersByRecommendationScore.d.ts +1 -1
- package/lib/typescript/src/utils/sortOffersByRecommendationScore.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/capabilities/configuration/src/brands/checkVisualEligibility.ts +29 -0
- package/src/capabilities/configuration/src/brands/createDerivedBrands.ts +39 -0
- package/src/capabilities/configuration/src/brands/index.ts +2 -0
- package/src/capabilities/configuration/src/brands/types.ts +8 -0
- package/src/capabilities/core/src/domain/third-party-search/index.ts +1 -0
- package/src/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.ts +33 -0
- package/src/capabilities/core/src/index.ts +1 -0
- package/src/capabilities/core/src/system/cnfContext/CnfContext.ts +21 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/App.ts +13 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Brand.ts +119 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Configuration.ts +49 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Request.ts +16 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Session.ts +9 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Signals.ts +47 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/Subaccount.ts +25 -0
- package/src/capabilities/core/src/system/cnfContext/schemas/index.ts +7 -0
- package/src/capabilities/offer-catalog/src/api/offerCatalogApi.ts +171 -0
- package/src/capabilities/offer-catalog/src/index.ts +10 -0
- package/src/capabilities/offer-catalog/src/types/offerCatalogSchema.ts +119 -0
- package/src/capabilities/offer-catalog/src/utils/arrayToMarkdownList.ts +3 -0
- package/src/capabilities/offer-catalog/src/utils/contextUtil.ts +73 -0
- package/src/capabilities/offer-catalog/src/utils/errorUtil.ts +18 -0
- package/src/capabilities/offer-catalog/src/utils/formatUtils.ts +168 -0
- package/src/capabilities/offer-catalog/src/utils/getOfferUrl.ts +61 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.ts +103 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.ts +58 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/boolean.ts +31 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.ts +60 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/common.ts +31 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.ts +29 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.ts +36 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/currency.ts +24 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.ts +206 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.ts +83 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.ts +22 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.ts +25 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.ts +38 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.ts +24 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/index.ts +19 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.ts +41 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.ts +52 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.ts +30 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/percentage.ts +23 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.ts +67 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.ts +92 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.ts +34 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.ts +70 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.ts +71 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.ts +27 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.ts +38 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.ts +44 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.ts +68 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.ts +81 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.ts +38 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.ts +26 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.ts +45 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.ts +28 -0
- package/src/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.ts +23 -0
- package/src/capabilities/offer-catalog/src/utils/stats/index.ts +141 -0
- package/src/capabilities/offer-catalog/src/utils/stats/types.ts +47 -0
- package/src/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.ts +6 -0
- package/src/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.ts +2272 -0
- package/src/capabilities/offers/pipeline/src/sources/ratetables/types/PublicApi.d.ts +1924 -0
- package/src/capabilities/offers/pipeline/src/sources/ratetables/types/index.ts +5 -0
- package/src/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.ts +83 -0
- package/src/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.tsx +66 -0
- package/src/capabilities/ui/elements/src/components/MarkdownText/components.tsx +175 -0
- package/src/capabilities/ui/elements/src/components/MarkdownText/index.tsx +52 -0
- package/src/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.ts +124 -0
- package/src/capabilities/ui/elements/src/components/index.ts +1 -0
- package/src/capabilities/ui/elements/src/components/thumbor/index.tsx +115 -0
- package/src/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.ts +42 -0
- package/src/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.ts +110 -0
- package/src/capabilities/ui/elements/src/index.ts +3 -0
- package/src/capabilities/ui/elements/src/offerCardAttributes.ts +28 -0
- package/src/components/Cards/VideosCard/VideosCard.tsx +1 -1
- package/src/components/Common/BaseOfferCard/Stat/Stat.tsx +7 -2
- package/src/components/Common/BaseOfferCard/index.tsx +3 -4
- package/src/components/Common/DynamicOfferCard/CallToAction.tsx +1 -1
- package/src/components/Common/DynamicOfferCard/SeeMore.tsx +1 -1
- package/src/components/Common/DynamicOfferCard/index.tsx +1 -1
- package/src/components/DynamicOffers/Render/DynamicOffersRender.tsx +1 -1
- package/src/components/DynamicOffers/Render/FallbackOfferTemplate.tsx +1 -1
- package/src/components/DynamicOffers/Render/Offer.tsx +1 -1
- package/src/components/Layouts/CreditCardOfferCard/index.tsx +1 -1
- package/src/components/Layouts/CreditCardOfferCard/statsBuilder.tsx +2 -2
- package/src/components/Layouts/DefaultOfferCard/index.tsx +1 -1
- package/src/components/Layouts/DefaultOfferCard/statsBuilder.tsx +2 -2
- package/src/components/Layouts/HeadlineWithDescriptionCard/index.tsx +1 -1
- package/src/components/Modal/DescriptionPoints.tsx +2 -2
- package/src/components/Modal/Disclaimer.tsx +1 -1
- package/src/components/Modal/OfferDetailsModal.tsx +1 -1
- package/src/components/MoneyLionOfferCarousel.tsx +2 -2
- package/src/config/mocks/cnfContext.ts +136 -0
- package/src/context/EventHandlerProvider.tsx +1 -1
- package/src/pageData.ts +2 -2
- package/src/services/getDynamicOffers.ts +2 -2
- package/src/services/getProductTypesByQuery.ts +1 -1
- package/src/utils/addClientTagsToOfferLinks.ts +1 -1
- package/src/utils/formatOfferUrl.ts +1 -1
- package/src/utils/getDefaultProductType.ts +1 -1
- package/src/utils/getEnableUseCachedOffers.ts +1 -1
- package/src/utils/getOffersBasedOnLayout.ts +1 -1
- package/src/utils/getOffersByProductTypes.ts +3 -3
- package/src/utils/getProductTypesDefinition.ts +1 -1
- package/src/utils/selectDynamicOffers.ts +1 -1
- package/src/utils/sortOffersByRecommendationScore.ts +1 -1
- package/lib/typescript/capabilities/configuration/src/brands/checkVisualEligibility.d.ts.map +0 -1
- package/lib/typescript/capabilities/configuration/src/brands/createDerivedBrands.d.ts.map +0 -1
- package/lib/typescript/capabilities/configuration/src/brands/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/configuration/src/brands/types.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/domain/third-party-search/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/CnfContext.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/App.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Brand.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Configuration.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Request.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Session.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Signals.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/Subaccount.d.ts.map +0 -1
- package/lib/typescript/capabilities/core/src/system/cnfContext/schemas/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/api/offerCatalogApi.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/types/offerCatalogSchema.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/arrayToMarkdownList.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/contextUtil.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/errorUtil.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/formatUtils.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/getOfferUrl.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/annualFee.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/boolean.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/boolean.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/common.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/common.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/currency.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/percentage.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/percentage.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrency.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rangePercent.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offer-catalog/src/utils/stats/types.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/pipeline/src/sources/ratetables/types/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/pipeline/src/sources/ratetables/withDeviceSignals.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/HyphenIcon.d.ts +0 -7
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/HyphenIcon.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/Stat.d.ts +0 -12
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/Stat.d.ts.map +0 -1
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/index.d.ts +0 -2
- package/lib/typescript/capabilities/offers/ux/src/elements/Stat/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/MarkdownText/Abbreviation.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/MarkdownText/components.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/MarkdownText/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/MarkdownText/markdownPreprocessor.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/thumbor/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/components/thumbor/useSvgUriViewBox.test.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/index.d.ts.map +0 -1
- package/lib/typescript/capabilities/ui/elements/src/offerCardAttributes.d.ts.map +0 -1
- package/lib/typescript/config/mocks/cnfContext.d.ts.map +0 -1
- /package/lib/typescript/{capabilities → src/capabilities}/configuration/src/brands/checkVisualEligibility.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/configuration/src/brands/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/domain/third-party-search/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/domain/third-party-search/orderProductTypesByRankUtils.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/CnfContext.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/App.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Brand.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Configuration.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Request.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Session.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Signals.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/Subaccount.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/core/src/system/cnfContext/schemas/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/api/offerCatalogApi.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/types/offerCatalogSchema.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/arrayToMarkdownList.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/contextUtil.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/errorUtil.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/formatUtils.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/getOfferUrl.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/annualFee.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/boolean.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/boolean.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/common.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/common.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/creditBureaus.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/creditBureaus.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/currency.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/currencyOrBasis.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/currencyOrBasis.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/freeTrialDays.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/freeTrialDays.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/fromListStringWithAnd.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/monthlyOrAnnualCurrency.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/percentage.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/percentage.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/purchaseApr.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/purchaseApr.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeCurrency.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeCurrencyByTime.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeCurrencyUnabbreviated.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeMonths.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangeMonths.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangePercent.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rangePercent.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/recommendedCredit.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/recommendedCredit.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rewardsDisplay.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/formatters/rewardsDisplay.spec.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offer-catalog/src/utils/stats/types.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offers/pipeline/src/sources/ratetables/offer-catalog/types/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offers/pipeline/src/sources/ratetables/offer-catalog/types/oas/offer-catalog.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/offers/pipeline/src/sources/ratetables/types/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/MarkdownText/Abbreviation.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/MarkdownText/markdownPreprocessor.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/thumbor/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/thumbor/useSvgUriViewBox.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/components/thumbor/useSvgUriViewBox.test.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/index.d.ts +0 -0
- /package/lib/typescript/{capabilities → src/capabilities}/ui/elements/src/offerCardAttributes.d.ts +0 -0
- /package/lib/typescript/{config → src/config}/mocks/cnfContext.d.ts +0 -0
package/README.md
CHANGED
|
@@ -1 +1,45 @@
|
|
|
1
1
|
# react-native-offer-carousel
|
|
2
|
+
|
|
3
|
+
### Description
|
|
4
|
+
|
|
5
|
+
This SDK involves a horizontal-scrolling offers carousel section. The carousel consists of offer cards of various types and categories.
|
|
6
|
+
|
|
7
|
+
<img width="300" alt="image" src="https://github.com/user-attachments/assets/a6c4d612-63bf-46c8-a37c-4ece0f0d99ef" />
|
|
8
|
+
|
|
9
|
+
### Setup Guide
|
|
10
|
+
|
|
11
|
+
#### What you need:
|
|
12
|
+
|
|
13
|
+
1. Install `Node.js` on your machine
|
|
14
|
+
2. Once Node.js is installed, install [Yarn](https://classic.yarnpkg.com/lang/en/) with `npm`
|
|
15
|
+
3. Twingate Access to MoneyLion offers
|
|
16
|
+
- You should be able to see this on your Twingate, ensure that you are connected to the United States network
|
|
17
|
+
<img width="443" alt="image" src="https://github.com/user-attachments/assets/16c56f67-0c70-4125-84eb-37fe6de33911" />
|
|
18
|
+
4. Clone this repo on your machine
|
|
19
|
+
5. Install Expo Go on your physical test device (only needed for running on real device)
|
|
20
|
+
|
|
21
|
+
### Running on simulator (iOS/Android)
|
|
22
|
+
|
|
23
|
+
#### Steps to run:
|
|
24
|
+
|
|
25
|
+
1. Obtain the `.env` file that contains private tokens from any @marketplace-platform-mobile team members.
|
|
26
|
+
2. In the engine-mobile-sdk repo folder, open your terminal.
|
|
27
|
+
3. Navigate to the offer-carousel folder, then the example folder.
|
|
28
|
+
- Use this command `cd offer-carousel/example`
|
|
29
|
+
4. Run `yarn install` to install the packages.
|
|
30
|
+
5. Run `yarn start --reset-cache` to start the metro bundler.
|
|
31
|
+
6. Press `i` to run the app on iOS simulator, press `a` for Android emulator.
|
|
32
|
+
7. The app should be up and running on your simulator/emulator.
|
|
33
|
+
|
|
34
|
+
#### Demo
|
|
35
|
+
|
|
36
|
+
https://github.com/user-attachments/assets/17403661-36b0-4043-849f-0a77bc907a5d
|
|
37
|
+
|
|
38
|
+
### Running on real device
|
|
39
|
+
|
|
40
|
+
1. In the engine-mobile-sdk repo folder, open your terminal.
|
|
41
|
+
2. Navigate to the offer-carousel folder, then the example folder.
|
|
42
|
+
- Use this command `cd offer-carousel/example`
|
|
43
|
+
3. Run `yarn install` to install the packages.
|
|
44
|
+
4. Run `yarn expo start` if your machine and test device are on the same network. Else, run `yarn expo start --tunnel` if your test device is on a different network than your development machine. (Important: Ensure that no other `yarn start` instance is running from the same folder)
|
|
45
|
+
5. Scan the QR code shown in the terminal with Expo Go (Android) or the Camera app (iOS), the app should start running on your test device.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.checkVisualBrandEligibility = void 0;
|
|
7
|
+
var _radash = require("radash");
|
|
8
|
+
var _types = require("./types");
|
|
9
|
+
var _tsPattern = require("ts-pattern");
|
|
10
|
+
/**
|
|
11
|
+
* A UI centric concept that prioritizes brands for visual use, both by the data available and the preferences of the brand.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Determines the highest visual eligibility a Brand supports.
|
|
16
|
+
* Used to rank a primary eligible brand highest if no brand prefers primary, such as a licensed brand
|
|
17
|
+
* @param brand
|
|
18
|
+
*/
|
|
19
|
+
const checkVisualBrandEligibility = brand => (0, _tsPattern.match)([(0, _types.enhanceType)(brand), (0, _radash.get)(brand, "allowedMarks"), brand === null || brand === void 0 ? void 0 : brand.isLicensed]).returnType().with([_tsPattern.P._, _tsPattern.P._, true], ["business", {
|
|
20
|
+
logo: true,
|
|
21
|
+
name: true
|
|
22
|
+
}, _tsPattern.P.any], ["product", {
|
|
23
|
+
logo: true,
|
|
24
|
+
name: true
|
|
25
|
+
}, _tsPattern.P.any], () => "primary").with(["individual", _tsPattern.P._, _tsPattern.P.any], ["business", {
|
|
26
|
+
name: true,
|
|
27
|
+
logo: false
|
|
28
|
+
}, _tsPattern.P.any], () => "secondary").otherwise(() => "none");
|
|
29
|
+
exports.checkVisualBrandEligibility = checkVisualBrandEligibility;
|
|
30
|
+
//# sourceMappingURL=checkVisualEligibility.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_radash","require","_types","_tsPattern","checkVisualBrandEligibility","brand","match","enhanceType","get","isLicensed","returnType","with","P","_","logo","name","any","otherwise","exports"],"sourceRoot":"../../../../../../src","sources":["capabilities/configuration/src/brands/checkVisualEligibility.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAD,OAAA;AACA,IAAAE,UAAA,GAAAF,OAAA;AAEA;AACA;AACA;;AAGA;AACA;AACA;AACA;AACA;AACO,MAAMG,2BAA2B,GAAIC,KAAY,IACvD,IAAAC,gBAAK,EAAC,CAAC,IAAAC,kBAAW,EAACF,KAAK,CAAC,EAAE,IAAAG,WAAG,EAACH,KAAK,EAAE,cAAc,CAAC,EAAEA,KAAK,aAALA,KAAK,uBAALA,KAAK,CAAEI,UAAU,CAAC,CAAC,CACxEC,UAAU,CAAkB,CAAC,CAC7BC,IAAI,CACJ,CAACC,YAAC,CAACC,CAAC,EAAED,YAAC,CAACC,CAAC,EAAE,IAAI,CAAC,EAChB,CAAC,UAAU,EAAE;EAAEC,IAAI,EAAE,IAAI;EAAEC,IAAI,EAAE;AAAK,CAAC,EAAEH,YAAC,CAACI,GAAG,CAAC,EAC/C,CAAC,SAAS,EAAE;EAAEF,IAAI,EAAE,IAAI;EAAEC,IAAI,EAAE;AAAK,CAAC,EAAEH,YAAC,CAACI,GAAG,CAAC,EAC9C,MAAM,SACP,CAAC,CACAL,IAAI,CACJ,CAAC,YAAY,EAAEC,YAAC,CAACC,CAAC,EAAED,YAAC,CAACI,GAAG,CAAC,EAC1B,CAAC,UAAU,EAAE;EAAED,IAAI,EAAE,IAAI;EAAED,IAAI,EAAE;AAAM,CAAC,EAAEF,YAAC,CAACI,GAAG,CAAC,EAChD,MAAM,WACP,CAAC,CACAC,SAAS,CAAC,MAAM,MAAM,CAAC;AAACC,OAAA,CAAAd,2BAAA,GAAAA,2BAAA","ignoreList":[]}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.createDerivedBrands = void 0;
|
|
7
|
+
var _radash = require("radash");
|
|
8
|
+
var _tsPattern = require("ts-pattern");
|
|
9
|
+
var _types = require("./types");
|
|
10
|
+
var _checkVisualEligibility = require("./checkVisualEligibility");
|
|
11
|
+
/**
|
|
12
|
+
* Extracts and normalizes a brand into -
|
|
13
|
+
* LicensedBrand - The brand to be used for terms, legal and other compliance needs
|
|
14
|
+
* VisualBrands - The brands to be shown to the user
|
|
15
|
+
* @param brand
|
|
16
|
+
*/
|
|
17
|
+
const createDerivedBrands = brand => {
|
|
18
|
+
// Determine the licensed brand for this brand, keeping in mind that this brand may be the licensed brand
|
|
19
|
+
const licensedBrand = (0, _tsPattern.match)([(0, _types.enhanceType)(brand), (brand === null || brand === void 0 ? void 0 : brand.isLicensed) || (brand === null || brand === void 0 ? void 0 : brand.licensedBrand)])
|
|
20
|
+
// Ensure we get back a brand at the end
|
|
21
|
+
.returnType()
|
|
22
|
+
// If the type is licensed, return this brand
|
|
23
|
+
.with(["licensed", _tsPattern.P._], () => brand)
|
|
24
|
+
// If the type is not licensed, but there is a cobrand setup, use that to get the licensed brand
|
|
25
|
+
.with([_tsPattern.P.not("licensed"), _tsPattern.P.select("licensedBrandObj")], ({
|
|
26
|
+
licensedBrandObj
|
|
27
|
+
}) => {
|
|
28
|
+
if ((0, _radash.isObject)(licensedBrandObj)) return licensedBrandObj;
|
|
29
|
+
// Throw if no licensed brand is able to be found
|
|
30
|
+
throw new Error("Missing Licensed Brand");
|
|
31
|
+
}).otherwise(() => {
|
|
32
|
+
throw new Error("Missing Licensed Brand");
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
// Determine the set of visual brands which should be displayed on the page
|
|
36
|
+
const brandCanBeShown = (0, _checkVisualEligibility.checkVisualBrandEligibility)(brand) !== "none";
|
|
37
|
+
return Array.from(new Set((0, _radash.sift)([licensedBrand, brandCanBeShown && brand])));
|
|
38
|
+
};
|
|
39
|
+
exports.createDerivedBrands = createDerivedBrands;
|
|
40
|
+
//# sourceMappingURL=createDerivedBrands.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_radash","require","_tsPattern","_types","_checkVisualEligibility","createDerivedBrands","brand","licensedBrand","match","enhanceType","isLicensed","returnType","with","P","_","not","select","licensedBrandObj","isObject","Error","otherwise","brandCanBeShown","checkVisualBrandEligibility","Array","from","Set","sift","exports"],"sourceRoot":"../../../../../../src","sources":["capabilities/configuration/src/brands/createDerivedBrands.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAEA,IAAAC,UAAA,GAAAD,OAAA;AACA,IAAAE,MAAA,GAAAF,OAAA;AACA,IAAAG,uBAAA,GAAAH,OAAA;AAEA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMI,mBAAmB,GAAIC,KAAY,IAAK;EACpD;EACA,MAAMC,aAAa,GAAG,IAAAC,gBAAK,EAAC,CAC3B,IAAAC,kBAAW,EAACH,KAAK,CAAC,EAClB,CAAAA,KAAK,aAALA,KAAK,uBAALA,KAAK,CAAEI,UAAU,MAAIJ,KAAK,aAALA,KAAK,uBAALA,KAAK,CAAEC,aAAa,EACzC;EACA;EAAA,CACCI,UAAU,CAAQ;EACnB;EAAA,CACCC,IAAI,CAAC,CAAC,UAAU,EAAEC,YAAC,CAACC,CAAC,CAAC,EAAE,MAAMR,KAAK;EACpC;EAAA,CACCM,IAAI,CACJ,CAACC,YAAC,CAACE,GAAG,CAAC,UAAU,CAAC,EAAEF,YAAC,CAACG,MAAM,CAAC,kBAAkB,CAAC,CAAC,EACjD,CAAC;IAAEC;EAAiB,CAAC,KAAK;IACzB,IAAI,IAAAC,gBAAQ,EAACD,gBAAgB,CAAC,EAAE,OAAOA,gBAAgB;IACvD;IACA,MAAM,IAAIE,KAAK,CAAC,wBAAwB,CAAC;EAC1C,CACD,CAAC,CACAC,SAAS,CAAC,MAAM;IAChB,MAAM,IAAID,KAAK,CAAC,wBAAwB,CAAC;EAC1C,CAAC,CAAC;;EAEH;EACA,MAAME,eAAe,GAAG,IAAAC,mDAA2B,EAAChB,KAAK,CAAC,KAAK,MAAM;EACrE,OAAOiB,KAAK,CAACC,IAAI,CAAC,IAAIC,GAAG,CAAC,IAAAC,YAAI,EAAC,CAACnB,aAAa,EAAEc,eAAe,IAAIf,KAAK,CAAC,CAAC,CAAC,CAAC;AAC5E,CAAC;AAACqB,OAAA,CAAAtB,mBAAA,GAAAA,mBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "checkVisualBrandEligibility", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _checkVisualEligibility.checkVisualBrandEligibility;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "enhanceType", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _types.enhanceType;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
var _types = require("./types");
|
|
19
|
+
var _checkVisualEligibility = require("./checkVisualEligibility");
|
|
20
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_types","require","_checkVisualEligibility"],"sourceRoot":"../../../../../../src","sources":["capabilities/configuration/src/brands/index.ts"],"mappings":";;;;;;;;;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AACA,IAAAC,uBAAA,GAAAD,OAAA","ignoreList":[]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.enhanceType = void 0;
|
|
7
|
+
var _radash = require("radash");
|
|
8
|
+
const enhanceType = brand => {
|
|
9
|
+
if ((0, _radash.isObject)(brand)) return brand !== null && brand !== void 0 && brand.isLicensed ? "licensed" : brand.type;
|
|
10
|
+
return undefined;
|
|
11
|
+
};
|
|
12
|
+
exports.enhanceType = enhanceType;
|
|
13
|
+
//# sourceMappingURL=types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_radash","require","enhanceType","brand","isObject","isLicensed","type","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["capabilities/configuration/src/brands/types.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGO,MAAMC,WAAW,GAAIC,KAAY,IAAK;EAC5C,IAAI,IAAAC,gBAAQ,EAACD,KAAK,CAAC,EAAE,OAAOA,KAAK,aAALA,KAAK,eAALA,KAAK,CAAEE,UAAU,GAAG,UAAU,GAAGF,KAAK,CAACG,IAAI;EACvE,OAAOC,SAAS;AACjB,CAAC;AAACC,OAAA,CAAAN,WAAA,GAAAA,WAAA","ignoreList":[]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _orderProductTypesByRankUtils = require("./orderProductTypesByRankUtils");
|
|
7
|
+
Object.keys(_orderProductTypesByRankUtils).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _orderProductTypesByRankUtils[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _orderProductTypesByRankUtils[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_orderProductTypesByRankUtils","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../../../../src","sources":["capabilities/core/src/domain/third-party-search/index.ts"],"mappings":";;;;;AAAA,IAAAA,6BAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,6BAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,6BAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,6BAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
package/lib/commonjs/capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.orderProductTypesByRank = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* Orders product types by rank.
|
|
9
|
+
*
|
|
10
|
+
* @param productTypes {Record<string, number>} - The product types to order.
|
|
11
|
+
* @returns {string[]} The product types ordered by rank.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* const productTypes = {
|
|
16
|
+
* 'credit-card': 1,
|
|
17
|
+
* 'loan': 2,
|
|
18
|
+
* 'insurance': 3,
|
|
19
|
+
* }
|
|
20
|
+
* const orderedProductTypes = orderProductTypesByRank(productTypes)
|
|
21
|
+
* // orderedProductTypes = ['insurance', 'loan', 'credit-card']
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
const orderProductTypesByRank = productTypes => {
|
|
25
|
+
const productTypesWithRank = Object.entries(productTypes).map(([productType, count]) => ({
|
|
26
|
+
productType,
|
|
27
|
+
rank: count
|
|
28
|
+
}));
|
|
29
|
+
const sortedProductTypes = productTypesWithRank.sort((a, b) => b.rank - a.rank);
|
|
30
|
+
return sortedProductTypes.map(pt => pt.productType);
|
|
31
|
+
};
|
|
32
|
+
exports.orderProductTypesByRank = orderProductTypesByRank;
|
|
33
|
+
//# sourceMappingURL=orderProductTypesByRankUtils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["orderProductTypesByRank","productTypes","productTypesWithRank","Object","entries","map","productType","count","rank","sortedProductTypes","sort","a","b","pt","exports"],"sourceRoot":"../../../../../../../src","sources":["capabilities/core/src/domain/third-party-search/orderProductTypesByRankUtils.ts"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAMA,uBAAuB,GACnCC,YAAoC,IAChC;EACJ,MAAMC,oBAAoB,GAAGC,MAAM,CAACC,OAAO,CAACH,YAAY,CAAC,CAACI,GAAG,CAC5D,CAAC,CAACC,WAAW,EAAEC,KAAK,CAAC,MAAM;IAC1BD,WAAW;IACXE,IAAI,EAAED;EACP,CAAC,CACF,CAAC;EAED,MAAME,kBAAkB,GAAGP,oBAAoB,CAACQ,IAAI,CACnD,CAACC,CAAC,EAAEC,CAAC,KAAKA,CAAC,CAACJ,IAAI,GAAGG,CAAC,CAACH,IACtB,CAAC;EAED,OAAOC,kBAAkB,CAACJ,GAAG,CAAEQ,EAAE,IAAKA,EAAE,CAACP,WAAW,CAAC;AACtD,CAAC;AAACQ,OAAA,CAAAd,uBAAA,GAAAA,uBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _schemas = require("./system/cnfContext/schemas");
|
|
7
|
+
Object.keys(_schemas).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _schemas[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _schemas[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_schemas","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../../../src","sources":["capabilities/core/src/index.ts"],"mappings":";;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,QAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,QAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,QAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.CnfContext = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
var _schemas = require("./schemas");
|
|
9
|
+
const CnfContext = exports.CnfContext = _effect.Schema.Struct({
|
|
10
|
+
app: _schemas.App,
|
|
11
|
+
brand: _schemas.Brand,
|
|
12
|
+
configuration: _schemas.Configuration,
|
|
13
|
+
request: _schemas.CnfRequest,
|
|
14
|
+
signals: _schemas.Signals,
|
|
15
|
+
subaccount: _schemas.Subaccount,
|
|
16
|
+
isDev: _effect.Schema.Boolean
|
|
17
|
+
});
|
|
18
|
+
//# sourceMappingURL=CnfContext.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","_schemas","CnfContext","exports","Schema","Struct","app","App","brand","Brand","configuration","Configuration","request","CnfRequest","signals","Signals","subaccount","Subaccount","isDev","Boolean"],"sourceRoot":"../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/CnfContext.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,QAAA,GAAAD,OAAA;AASO,MAAME,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAGE,cAAM,CAACC,MAAM,CAAC;EACvCC,GAAG,EAAEC,YAAG;EACRC,KAAK,EAAEC,cAAK;EACZC,aAAa,EAAEC,sBAAa;EAC5BC,OAAO,EAAEC,mBAAU;EACnBC,OAAO,EAAEC,gBAAO;EAChBC,UAAU,EAAEC,mBAAU;EACtBC,KAAK,EAAEd,cAAM,CAACe;AACf,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.App = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const App = exports.App = _effect.Schema.Struct({
|
|
9
|
+
id: _effect.Schema.UUID,
|
|
10
|
+
name: _effect.Schema.String,
|
|
11
|
+
registry: _effect.Schema.String,
|
|
12
|
+
repository: _effect.Schema.String,
|
|
13
|
+
syncStatus: _effect.Schema.String,
|
|
14
|
+
createdAt: _effect.Schema.String,
|
|
15
|
+
updatedAt: _effect.Schema.String,
|
|
16
|
+
syncTimestamp: _effect.Schema.String
|
|
17
|
+
});
|
|
18
|
+
//# sourceMappingURL=App.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","App","exports","Schema","Struct","id","UUID","name","String","registry","repository","syncStatus","createdAt","updatedAt","syncTimestamp"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/App.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGO,MAAMC,GAAG,GAAAC,OAAA,CAAAD,GAAA,GAAGE,cAAM,CAACC,MAAM,CAAC;EAChCC,EAAE,EAAEF,cAAM,CAACG,IAAI;EACfC,IAAI,EAAEJ,cAAM,CAACK,MAAM;EACnBC,QAAQ,EAAEN,cAAM,CAACK,MAAM;EACvBE,UAAU,EAAEP,cAAM,CAACK,MAAM;EACzBG,UAAU,EAAER,cAAM,CAACK,MAAM;EACzBI,SAAS,EAAET,cAAM,CAACK,MAAM;EACxBK,SAAS,EAAEV,cAAM,CAACK,MAAM;EACxBM,aAAa,EAAEX,cAAM,CAACK;AACvB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Brand = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const Palette = _effect.Schema.Struct({
|
|
9
|
+
promotional: _effect.Schema.optional(_effect.Schema.String),
|
|
10
|
+
generation: _effect.Schema.optional(_effect.Schema.Literal("generate", "provided")),
|
|
11
|
+
colorScheme: _effect.Schema.optional(_effect.Schema.Literal("balanced", "light", "dark")),
|
|
12
|
+
positive: _effect.Schema.optional(_effect.Schema.String),
|
|
13
|
+
critical: _effect.Schema.optional(_effect.Schema.String),
|
|
14
|
+
highlight: _effect.Schema.optional(_effect.Schema.String),
|
|
15
|
+
neutral: _effect.Schema.optional(_effect.Schema.String)
|
|
16
|
+
});
|
|
17
|
+
const Links = _effect.Schema.Struct({
|
|
18
|
+
home: _effect.Schema.optional(_effect.Schema.String),
|
|
19
|
+
terms: _effect.Schema.optional(_effect.Schema.String),
|
|
20
|
+
support: _effect.Schema.optional(_effect.Schema.String),
|
|
21
|
+
privacy: _effect.Schema.optional(_effect.Schema.String)
|
|
22
|
+
});
|
|
23
|
+
const AiInference = _effect.Schema.Struct({
|
|
24
|
+
status: _effect.Schema.String,
|
|
25
|
+
error: _effect.Schema.optional(_effect.Schema.String)
|
|
26
|
+
});
|
|
27
|
+
const Media = _effect.Schema.Struct({
|
|
28
|
+
id: _effect.Schema.String,
|
|
29
|
+
autoCrop: _effect.Schema.Boolean,
|
|
30
|
+
prefix: _effect.Schema.optional(_effect.Schema.String),
|
|
31
|
+
alt: _effect.Schema.optional(_effect.Schema.String),
|
|
32
|
+
url: _effect.Schema.optional(_effect.Schema.String),
|
|
33
|
+
filename: _effect.Schema.optional(_effect.Schema.String),
|
|
34
|
+
mimeType: _effect.Schema.optional(_effect.Schema.String),
|
|
35
|
+
filesize: _effect.Schema.optional(_effect.Schema.Number),
|
|
36
|
+
width: _effect.Schema.optional(_effect.Schema.Number),
|
|
37
|
+
height: _effect.Schema.optional(_effect.Schema.Number),
|
|
38
|
+
createdAt: _effect.Schema.optional(_effect.Schema.String),
|
|
39
|
+
updatedAt: _effect.Schema.optional(_effect.Schema.String),
|
|
40
|
+
aiInference: _effect.Schema.optional(AiInference)
|
|
41
|
+
});
|
|
42
|
+
const Logos = _effect.Schema.Struct({
|
|
43
|
+
horizontal: _effect.Schema.optional(Media),
|
|
44
|
+
icon: _effect.Schema.optional(_effect.Schema.NullOr(Media))
|
|
45
|
+
});
|
|
46
|
+
const FontFamily = _effect.Schema.Literal("nunito", "lato", "sourceSans3", "openSans", "roboto", "arimo", "montserrat");
|
|
47
|
+
const Font = _effect.Schema.Struct({
|
|
48
|
+
family: _effect.Schema.optional(FontFamily)
|
|
49
|
+
});
|
|
50
|
+
const AllowedMarks = _effect.Schema.Struct({
|
|
51
|
+
logo: _effect.Schema.Boolean,
|
|
52
|
+
name: _effect.Schema.Boolean
|
|
53
|
+
});
|
|
54
|
+
const CtaRoundness = _effect.Schema.Struct({
|
|
55
|
+
small: _effect.Schema.optional(_effect.Schema.Number),
|
|
56
|
+
medium: _effect.Schema.optional(_effect.Schema.Number),
|
|
57
|
+
large: _effect.Schema.optional(_effect.Schema.Number)
|
|
58
|
+
});
|
|
59
|
+
const BrandFields = _effect.Schema.Struct({
|
|
60
|
+
id: _effect.Schema.String,
|
|
61
|
+
domain: _effect.Schema.String,
|
|
62
|
+
displayName: _effect.Schema.String,
|
|
63
|
+
isLicensed: _effect.Schema.optional(_effect.Schema.Boolean),
|
|
64
|
+
hideLicensedLogo: _effect.Schema.optional(_effect.Schema.Boolean),
|
|
65
|
+
palette: _effect.Schema.optional(Palette),
|
|
66
|
+
links: _effect.Schema.optional(Links),
|
|
67
|
+
logos: _effect.Schema.optional(Logos),
|
|
68
|
+
font: _effect.Schema.optional(Font),
|
|
69
|
+
type: _effect.Schema.optional(_effect.Schema.Literal("business", "product", "individual")),
|
|
70
|
+
allowedMarks: AllowedMarks,
|
|
71
|
+
ctaRoundness: _effect.Schema.optional(CtaRoundness),
|
|
72
|
+
createdAt: _effect.Schema.optional(_effect.Schema.String),
|
|
73
|
+
updatedAt: _effect.Schema.optional(_effect.Schema.String)
|
|
74
|
+
});
|
|
75
|
+
const Brand = exports.Brand = _effect.Schema.suspend(() => {
|
|
76
|
+
const withDepth = depth => {
|
|
77
|
+
if (depth > 2) {
|
|
78
|
+
return BrandFields; // We don't want infinite recursion of licensedBrand field
|
|
79
|
+
}
|
|
80
|
+
return _effect.Schema.Struct({
|
|
81
|
+
...BrandFields.fields,
|
|
82
|
+
licensedBrand: _effect.Schema.optional(_effect.Schema.NullOr(_effect.Schema.suspend(() => withDepth(depth + 1))))
|
|
83
|
+
});
|
|
84
|
+
};
|
|
85
|
+
return withDepth(0); // Start with depth 0
|
|
86
|
+
});
|
|
87
|
+
//# sourceMappingURL=Brand.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","Palette","Schema","Struct","promotional","optional","String","generation","Literal","colorScheme","positive","critical","highlight","neutral","Links","home","terms","support","privacy","AiInference","status","error","Media","id","autoCrop","Boolean","prefix","alt","url","filename","mimeType","filesize","Number","width","height","createdAt","updatedAt","aiInference","Logos","horizontal","icon","NullOr","FontFamily","Font","family","AllowedMarks","logo","name","CtaRoundness","small","medium","large","BrandFields","domain","displayName","isLicensed","hideLicensedLogo","palette","links","logos","font","type","allowedMarks","ctaRoundness","Brand","exports","suspend","withDepth","depth","fields","licensedBrand"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Brand.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGA,MAAMC,OAAO,GAAGC,cAAM,CAACC,MAAM,CAAC;EAC7BC,WAAW,EAAEF,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EAC3CC,UAAU,EAAEL,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACM,OAAO,CAAC,UAAU,EAAE,UAAU,CAAC,CAAC;EACnEC,WAAW,EAAEP,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACM,OAAO,CAAC,UAAU,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC;EACzEE,QAAQ,EAAER,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACxCK,QAAQ,EAAET,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACxCM,SAAS,EAAEV,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACzCO,OAAO,EAAEX,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM;AACvC,CAAC,CAAC;AAGF,MAAMQ,KAAK,GAAGZ,cAAM,CAACC,MAAM,CAAC;EAC3BY,IAAI,EAAEb,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACpCU,KAAK,EAAEd,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACrCW,OAAO,EAAEf,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACvCY,OAAO,EAAEhB,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM;AACvC,CAAC,CAAC;AAGF,MAAMa,WAAW,GAAGjB,cAAM,CAACC,MAAM,CAAC;EACjCiB,MAAM,EAAElB,cAAM,CAACI,MAAM;EACrBe,KAAK,EAAEnB,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM;AACrC,CAAC,CAAC;AAGF,MAAMgB,KAAK,GAAGpB,cAAM,CAACC,MAAM,CAAC;EAC3BoB,EAAE,EAAErB,cAAM,CAACI,MAAM;EACjBkB,QAAQ,EAAEtB,cAAM,CAACuB,OAAO;EACxBC,MAAM,EAAExB,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACtCqB,GAAG,EAAEzB,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACnCsB,GAAG,EAAE1B,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACnCuB,QAAQ,EAAE3B,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACxCwB,QAAQ,EAAE5B,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACxCyB,QAAQ,EAAE7B,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM,CAAC;EACxCC,KAAK,EAAE/B,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM,CAAC;EACrCE,MAAM,EAAEhC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM,CAAC;EACtCG,SAAS,EAAEjC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACzC8B,SAAS,EAAElC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACzC+B,WAAW,EAAEnC,cAAM,CAACG,QAAQ,CAACc,WAAW;AACzC,CAAC,CAAC;AAGF,MAAMmB,KAAK,GAAGpC,cAAM,CAACC,MAAM,CAAC;EAC3BoC,UAAU,EAAErC,cAAM,CAACG,QAAQ,CAACiB,KAAK,CAAC;EAClCkB,IAAI,EAAEtC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACuC,MAAM,CAACnB,KAAK,CAAC;AAC3C,CAAC,CAAC;AAGF,MAAMoB,UAAU,GAAGxC,cAAM,CAACM,OAAO,CAChC,QAAQ,EACR,MAAM,EACN,aAAa,EACb,UAAU,EACV,QAAQ,EACR,OAAO,EACP,YACD,CAAC;AAGD,MAAMmC,IAAI,GAAGzC,cAAM,CAACC,MAAM,CAAC;EAC1ByC,MAAM,EAAE1C,cAAM,CAACG,QAAQ,CAACqC,UAAU;AACnC,CAAC,CAAC;AAGF,MAAMG,YAAY,GAAG3C,cAAM,CAACC,MAAM,CAAC;EAClC2C,IAAI,EAAE5C,cAAM,CAACuB,OAAO;EACpBsB,IAAI,EAAE7C,cAAM,CAACuB;AACd,CAAC,CAAC;AAGF,MAAMuB,YAAY,GAAG9C,cAAM,CAACC,MAAM,CAAC;EAClC8C,KAAK,EAAE/C,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM,CAAC;EACrCkB,MAAM,EAAEhD,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM,CAAC;EACtCmB,KAAK,EAAEjD,cAAM,CAACG,QAAQ,CAACH,cAAM,CAAC8B,MAAM;AACrC,CAAC,CAAC;AAGF,MAAMoB,WAAW,GAAGlD,cAAM,CAACC,MAAM,CAAC;EACjCoB,EAAE,EAAErB,cAAM,CAACI,MAAM;EACjB+C,MAAM,EAAEnD,cAAM,CAACI,MAAM;EACrBgD,WAAW,EAAEpD,cAAM,CAACI,MAAM;EAC1BiD,UAAU,EAAErD,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACuB,OAAO,CAAC;EAC3C+B,gBAAgB,EAAEtD,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACuB,OAAO,CAAC;EACjDgC,OAAO,EAAEvD,cAAM,CAACG,QAAQ,CAACJ,OAAO,CAAC;EACjCyD,KAAK,EAAExD,cAAM,CAACG,QAAQ,CAACS,KAAK,CAAC;EAC7B6C,KAAK,EAAEzD,cAAM,CAACG,QAAQ,CAACiC,KAAK,CAAC;EAC7BsB,IAAI,EAAE1D,cAAM,CAACG,QAAQ,CAACsC,IAAI,CAAC;EAC3BkB,IAAI,EAAE3D,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACM,OAAO,CAAC,UAAU,EAAE,SAAS,EAAE,YAAY,CAAC,CAAC;EAC1EsD,YAAY,EAAEjB,YAAY;EAC1BkB,YAAY,EAAE7D,cAAM,CAACG,QAAQ,CAAC2C,YAAY,CAAC;EAC3Cb,SAAS,EAAEjC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACzC8B,SAAS,EAAElC,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM;AACzC,CAAC,CAAC;AAMK,MAAM0D,KAAK,GAAAC,OAAA,CAAAD,KAAA,GAAG9D,cAAM,CAACgE,OAAO,CAAC,MAA4B;EAC/D,MAAMC,SAAS,GACdC,KAAa,IAC0C;IACvD,IAAIA,KAAK,GAAG,CAAC,EAAE;MACd,OAAOhB,WAAW,CAAC,CAAC;IACrB;IAEA,OAAOlD,cAAM,CAACC,MAAM,CAAC;MACpB,GAAGiD,WAAW,CAACiB,MAAM;MACrBC,aAAa,EAAEpE,cAAM,CAACG,QAAQ,CAC7BH,cAAM,CAACuC,MAAM,CAACvC,cAAM,CAACgE,OAAO,CAAC,MAAMC,SAAS,CAACC,KAAK,GAAG,CAAC,CAAC,CAAC,CACzD;IACD,CAAC,CAAC;EACH,CAAC;EAED,OAAOD,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;AACtB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.DynamicOffersConfigurationSchema = exports.Configuration = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const ProductTypesDefinition = _effect.Schema.Struct({
|
|
9
|
+
id: _effect.Schema.String,
|
|
10
|
+
partnerPageUrl: _effect.Schema.String,
|
|
11
|
+
productTypeSlug: _effect.Schema.String
|
|
12
|
+
});
|
|
13
|
+
const PartnersOverrideDefinition = _effect.Schema.Struct({
|
|
14
|
+
id: _effect.Schema.String,
|
|
15
|
+
overrideUrl: _effect.Schema.String,
|
|
16
|
+
financialInstitutionUuid: _effect.Schema.String
|
|
17
|
+
});
|
|
18
|
+
const DynamicOffersConfigurationSchema = exports.DynamicOffersConfigurationSchema = _effect.Schema.Struct({
|
|
19
|
+
hideFooter: _effect.Schema.optionalWith(_effect.Schema.Boolean, {
|
|
20
|
+
default: () => false
|
|
21
|
+
}),
|
|
22
|
+
enableUseCachedOffers: _effect.Schema.optionalWith(_effect.Schema.Boolean, {
|
|
23
|
+
default: () => false
|
|
24
|
+
}),
|
|
25
|
+
defaultProductTypeSlug: _effect.Schema.optionalWith(_effect.Schema.String, {
|
|
26
|
+
default: () => "EarnedWageAccess"
|
|
27
|
+
}),
|
|
28
|
+
productTypesDefinition: _effect.Schema.optionalWith(_effect.Schema.Array(ProductTypesDefinition), {
|
|
29
|
+
default: () => []
|
|
30
|
+
}),
|
|
31
|
+
partnersOverrideDefinition: _effect.Schema.optionalWith(_effect.Schema.Array(PartnersOverrideDefinition), {
|
|
32
|
+
default: () => []
|
|
33
|
+
})
|
|
34
|
+
});
|
|
35
|
+
const Configuration = exports.Configuration = _effect.Schema.Struct({
|
|
36
|
+
app: _effect.Schema.Union(_effect.Schema.String, _effect.Schema.Struct({
|
|
37
|
+
name: _effect.Schema.String
|
|
38
|
+
})),
|
|
39
|
+
configuration: DynamicOffersConfigurationSchema
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=Configuration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","ProductTypesDefinition","Schema","Struct","id","String","partnerPageUrl","productTypeSlug","PartnersOverrideDefinition","overrideUrl","financialInstitutionUuid","DynamicOffersConfigurationSchema","exports","hideFooter","optionalWith","Boolean","default","enableUseCachedOffers","defaultProductTypeSlug","productTypesDefinition","Array","partnersOverrideDefinition","Configuration","app","Union","name","configuration"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Configuration.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAEA,MAAMC,sBAAsB,GAAGC,cAAM,CAACC,MAAM,CAAC;EAC5CC,EAAE,EAAEF,cAAM,CAACG,MAAM;EACjBC,cAAc,EAAEJ,cAAM,CAACG,MAAM;EAC7BE,eAAe,EAAEL,cAAM,CAACG;AACzB,CAAC,CAAC;AAEF,MAAMG,0BAA0B,GAAGN,cAAM,CAACC,MAAM,CAAC;EAChDC,EAAE,EAAEF,cAAM,CAACG,MAAM;EACjBI,WAAW,EAAEP,cAAM,CAACG,MAAM;EAC1BK,wBAAwB,EAAER,cAAM,CAACG;AAClC,CAAC,CAAC;AAEK,MAAMM,gCAAgC,GAAAC,OAAA,CAAAD,gCAAA,GAAGT,cAAM,CAACC,MAAM,CAAC;EAC7DU,UAAU,EAAEX,cAAM,CAACY,YAAY,CAACZ,cAAM,CAACa,OAAO,EAAE;IAAEC,OAAO,EAAEA,CAAA,KAAM;EAAM,CAAC,CAAC;EACzEC,qBAAqB,EAAEf,cAAM,CAACY,YAAY,CAACZ,cAAM,CAACa,OAAO,EAAE;IAC1DC,OAAO,EAAEA,CAAA,KAAM;EAChB,CAAC,CAAC;EACFE,sBAAsB,EAAEhB,cAAM,CAACY,YAAY,CAACZ,cAAM,CAACG,MAAM,EAAE;IAC1DW,OAAO,EAAEA,CAAA,KAAM;EAChB,CAAC,CAAC;EACFG,sBAAsB,EAAEjB,cAAM,CAACY,YAAY,CAC1CZ,cAAM,CAACkB,KAAK,CAACnB,sBAAsB,CAAC,EACpC;IACCe,OAAO,EAAEA,CAAA,KAAM;EAChB,CACD,CAAC;EACDK,0BAA0B,EAAEnB,cAAM,CAACY,YAAY,CAC9CZ,cAAM,CAACkB,KAAK,CAACZ,0BAA0B,CAAC,EACxC;IAAEQ,OAAO,EAAEA,CAAA,KAAM;EAAG,CACrB;AACD,CAAC,CAAC;AAMK,MAAMM,aAAa,GAAAV,OAAA,CAAAU,aAAA,GAAGpB,cAAM,CAACC,MAAM,CAAC;EAC1CoB,GAAG,EAAErB,cAAM,CAACsB,KAAK,CAChBtB,cAAM,CAACG,MAAM,EACbH,cAAM,CAACC,MAAM,CAAC;IACbsB,IAAI,EAAEvB,cAAM,CAACG;EACd,CAAC,CACF,CAAC;EACDqB,aAAa,EAAEf;AAChB,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.CnfRequest = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const CnfRequest = exports.CnfRequest = _effect.Schema.Struct({
|
|
9
|
+
referer: _effect.Schema.optional(_effect.Schema.String),
|
|
10
|
+
channel: _effect.Schema.optional(_effect.Schema.String),
|
|
11
|
+
zone: _effect.Schema.optional(_effect.Schema.String),
|
|
12
|
+
cnfAppBaseUrl: _effect.Schema.optionalWith(_effect.Schema.String, {
|
|
13
|
+
default: () => "http://localhost:3000"
|
|
14
|
+
}),
|
|
15
|
+
path: _effect.Schema.optional(_effect.Schema.String),
|
|
16
|
+
pathname: _effect.Schema.optional(_effect.Schema.String),
|
|
17
|
+
query: _effect.Schema.optional(_effect.Schema.String),
|
|
18
|
+
searchParams: _effect.Schema.Struct({}),
|
|
19
|
+
host: _effect.Schema.optional(_effect.Schema.String)
|
|
20
|
+
});
|
|
21
|
+
//# sourceMappingURL=Request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","CnfRequest","exports","Schema","Struct","referer","optional","String","channel","zone","cnfAppBaseUrl","optionalWith","default","path","pathname","query","searchParams","host"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Request.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGO,MAAMC,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAGE,cAAM,CAACC,MAAM,CAAC;EACvCC,OAAO,EAAEF,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACvCC,OAAO,EAAEL,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACvCE,IAAI,EAAEN,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACpCG,aAAa,EAAEP,cAAM,CAACQ,YAAY,CAACR,cAAM,CAACI,MAAM,EAAE;IACjDK,OAAO,EAAEA,CAAA,KAAM;EAChB,CAAC,CAAC;EACFC,IAAI,EAAEV,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACpCO,QAAQ,EAAEX,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACxCQ,KAAK,EAAEZ,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM,CAAC;EACrCS,YAAY,EAAEb,cAAM,CAACC,MAAM,CAAC,CAAC,CAAC,CAAC;EAC/Ba,IAAI,EAAEd,cAAM,CAACG,QAAQ,CAACH,cAAM,CAACI,MAAM;AACpC,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SessionId = exports.Session = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const SessionId = exports.SessionId = _effect.Schema.UUID.pipe(_effect.Schema.brand("SessionId"));
|
|
9
|
+
const Session = exports.Session = _effect.Schema.Struct({
|
|
10
|
+
id: SessionId
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=Session.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","SessionId","exports","Schema","UUID","pipe","brand","Session","Struct","id"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Session.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGO,MAAMC,SAAS,GAAAC,OAAA,CAAAD,SAAA,GAAGE,cAAM,CAACC,IAAI,CAACC,IAAI,CAACF,cAAM,CAACG,KAAK,CAAC,WAAW,CAAC,CAAC;AAG7D,MAAMC,OAAO,GAAAL,OAAA,CAAAK,OAAA,GAAGJ,cAAM,CAACK,MAAM,CAAC;EACpCC,EAAE,EAAER;AACL,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Signals = exports.ReferralSignals = exports.PartnerSignals = exports.LeadUuid = exports.LeadSignals = exports.DeviceId = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const PartnerSignals = exports.PartnerSignals = _effect.Schema.Struct({
|
|
9
|
+
clientTags: _effect.Schema.Struct({}, {
|
|
10
|
+
key: _effect.Schema.String,
|
|
11
|
+
value: _effect.Schema.String
|
|
12
|
+
})
|
|
13
|
+
});
|
|
14
|
+
const DeviceId = exports.DeviceId = _effect.Schema.UUID;
|
|
15
|
+
const DeviceSignals = _effect.Schema.Struct({
|
|
16
|
+
id: DeviceId,
|
|
17
|
+
ipAddress: _effect.Schema.optional(_effect.Schema.String),
|
|
18
|
+
os: _effect.Schema.optional(_effect.Schema.String),
|
|
19
|
+
isMobile: _effect.Schema.optional(_effect.Schema.Boolean),
|
|
20
|
+
country: _effect.Schema.optional(_effect.Schema.String),
|
|
21
|
+
state: _effect.Schema.optional(_effect.Schema.Struct({
|
|
22
|
+
name: _effect.Schema.optional(_effect.Schema.String),
|
|
23
|
+
code: _effect.Schema.optional(_effect.Schema.String)
|
|
24
|
+
})),
|
|
25
|
+
postalCode: _effect.Schema.String,
|
|
26
|
+
city: _effect.Schema.String,
|
|
27
|
+
fingerprintId: _effect.Schema.optional(_effect.Schema.String),
|
|
28
|
+
userAgent: _effect.Schema.optional(_effect.Schema.String)
|
|
29
|
+
});
|
|
30
|
+
const LeadUuid = exports.LeadUuid = _effect.Schema.UUID;
|
|
31
|
+
const LeadSignals = exports.LeadSignals = _effect.Schema.Struct({
|
|
32
|
+
uuid: LeadUuid
|
|
33
|
+
});
|
|
34
|
+
const ReferralSignals = exports.ReferralSignals = _effect.Schema.Struct({});
|
|
35
|
+
const Signals = exports.Signals = _effect.Schema.Struct({
|
|
36
|
+
partnerSignals: PartnerSignals,
|
|
37
|
+
deviceSignals: DeviceSignals,
|
|
38
|
+
lead: LeadSignals,
|
|
39
|
+
referral: ReferralSignals
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=Signals.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","PartnerSignals","exports","Schema","Struct","clientTags","key","String","value","DeviceId","UUID","DeviceSignals","id","ipAddress","optional","os","isMobile","Boolean","country","state","name","code","postalCode","city","fingerprintId","userAgent","LeadUuid","LeadSignals","uuid","ReferralSignals","Signals","partnerSignals","deviceSignals","lead","referral"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Signals.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAGO,MAAMC,cAAc,GAAAC,OAAA,CAAAD,cAAA,GAAGE,cAAM,CAACC,MAAM,CAAC;EAC3CC,UAAU,EAAEF,cAAM,CAACC,MAAM,CAAC,CAAC,CAAC,EAAE;IAAEE,GAAG,EAAEH,cAAM,CAACI,MAAM;IAAEC,KAAK,EAAEL,cAAM,CAACI;EAAO,CAAC;AAC3E,CAAC,CAAC;AAGK,MAAME,QAAQ,GAAAP,OAAA,CAAAO,QAAA,GAAGN,cAAM,CAACO,IAAI;AAGnC,MAAMC,aAAa,GAAGR,cAAM,CAACC,MAAM,CAAC;EACnCQ,EAAE,EAAEH,QAAQ;EACZI,SAAS,EAAEV,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM,CAAC;EACzCQ,EAAE,EAAEZ,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM,CAAC;EAClCS,QAAQ,EAAEb,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACc,OAAO,CAAC;EACzCC,OAAO,EAAEf,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM,CAAC;EACvCY,KAAK,EAAEhB,cAAM,CAACW,QAAQ,CACrBX,cAAM,CAACC,MAAM,CAAC;IACbgB,IAAI,EAAEjB,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM,CAAC;IACpCc,IAAI,EAAElB,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM;EACpC,CAAC,CACF,CAAC;EACDe,UAAU,EAAEnB,cAAM,CAACI,MAAM;EACzBgB,IAAI,EAAEpB,cAAM,CAACI,MAAM;EACnBiB,aAAa,EAAErB,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM,CAAC;EAC7CkB,SAAS,EAAEtB,cAAM,CAACW,QAAQ,CAACX,cAAM,CAACI,MAAM;AACzC,CAAC,CAAC;AAGK,MAAMmB,QAAQ,GAAAxB,OAAA,CAAAwB,QAAA,GAAGvB,cAAM,CAACO,IAAI;AAG5B,MAAMiB,WAAW,GAAAzB,OAAA,CAAAyB,WAAA,GAAGxB,cAAM,CAACC,MAAM,CAAC;EACxCwB,IAAI,EAAEF;AACP,CAAC,CAAC;AAGK,MAAMG,eAAe,GAAA3B,OAAA,CAAA2B,eAAA,GAAG1B,cAAM,CAACC,MAAM,CAAC,CAAC,CAAC,CAAC;AAGzC,MAAM0B,OAAO,GAAA5B,OAAA,CAAA4B,OAAA,GAAG3B,cAAM,CAACC,MAAM,CAAC;EACpC2B,cAAc,EAAE9B,cAAc;EAC9B+B,aAAa,EAAErB,aAAa;EAC5BsB,IAAI,EAAEN,WAAW;EACjBO,QAAQ,EAAEL;AACX,CAAC,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Subaccount = void 0;
|
|
7
|
+
var _effect = require("effect");
|
|
8
|
+
const EmptyString = _effect.Schema.Literal("");
|
|
9
|
+
const NullOrEmptyString = schema => _effect.Schema.Union(_effect.Schema.Null, EmptyString, schema);
|
|
10
|
+
const Tag = _effect.Schema.Struct({
|
|
11
|
+
id: _effect.Schema.String,
|
|
12
|
+
key: _effect.Schema.String,
|
|
13
|
+
value: _effect.Schema.String
|
|
14
|
+
});
|
|
15
|
+
const Subaccount = exports.Subaccount = _effect.Schema.Struct({
|
|
16
|
+
id: _effect.Schema.UUID,
|
|
17
|
+
publicToken: _effect.Schema.String,
|
|
18
|
+
name: _effect.Schema.String,
|
|
19
|
+
companyUuid: _effect.Schema.String,
|
|
20
|
+
subaccount: _effect.Schema.NullOr(_effect.Schema.Number),
|
|
21
|
+
supplySubaccountUuid: _effect.Schema.UUID.pipe(NullOrEmptyString, _effect.Schema.optional),
|
|
22
|
+
tags: _effect.Schema.Array(Tag),
|
|
23
|
+
createdAt: _effect.Schema.String,
|
|
24
|
+
updatedAt: _effect.Schema.String
|
|
25
|
+
});
|
|
26
|
+
//# sourceMappingURL=Subaccount.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_effect","require","EmptyString","Schema","Literal","NullOrEmptyString","schema","Union","Null","Tag","Struct","id","String","key","value","Subaccount","exports","UUID","publicToken","name","companyUuid","subaccount","NullOr","Number","supplySubaccountUuid","pipe","optional","tags","Array","createdAt","updatedAt"],"sourceRoot":"../../../../../../../../src","sources":["capabilities/core/src/system/cnfContext/schemas/Subaccount.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAEA,MAAMC,WAAW,GAAGC,cAAM,CAACC,OAAO,CAAC,EAAE,CAAC;AACtC,MAAMC,iBAAiB,GAAiCC,MAAS,IAChEH,cAAM,CAACI,KAAK,CAACJ,cAAM,CAACK,IAAI,EAAEN,WAAW,EAAEI,MAAM,CAAC;AAE/C,MAAMG,GAAG,GAAGN,cAAM,CAACO,MAAM,CAAC;EACzBC,EAAE,EAAER,cAAM,CAACS,MAAM;EACjBC,GAAG,EAAEV,cAAM,CAACS,MAAM;EAClBE,KAAK,EAAEX,cAAM,CAACS;AACf,CAAC,CAAC;AAEK,MAAMG,UAAU,GAAAC,OAAA,CAAAD,UAAA,GAAGZ,cAAM,CAACO,MAAM,CAAC;EACvCC,EAAE,EAAER,cAAM,CAACc,IAAI;EACfC,WAAW,EAAEf,cAAM,CAACS,MAAM;EAC1BO,IAAI,EAAEhB,cAAM,CAACS,MAAM;EACnBQ,WAAW,EAAEjB,cAAM,CAACS,MAAM;EAC1BS,UAAU,EAAElB,cAAM,CAACmB,MAAM,CAACnB,cAAM,CAACoB,MAAM,CAAC;EACxCC,oBAAoB,EAAErB,cAAM,CAACc,IAAI,CAACQ,IAAI,CAACpB,iBAAiB,EAAEF,cAAM,CAACuB,QAAQ,CAAC;EAC1EC,IAAI,EAAExB,cAAM,CAACyB,KAAK,CAACnB,GAAG,CAAC;EACvBoB,SAAS,EAAE1B,cAAM,CAACS,MAAM;EACxBkB,SAAS,EAAE3B,cAAM,CAACS;AACnB,CAAC,CAAC","ignoreList":[]}
|