squarefi-bff-api-module 1.36.63 → 1.36.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/types/autogen/apiV1External.types.d.ts +157 -24
- package/dist/api/types/autogen/apiV1Frontend.types.d.ts +215 -110
- package/dist/api/types/autogen/apiV1Legacy.types.d.ts +207 -38
- package/dist/api/types/autogen/apiV1Tenant.types.d.ts +263 -273
- package/dist/api/types/autogen/apiV2.types.d.ts +7 -0
- package/package.json +1 -1
|
@@ -2009,6 +2009,12 @@ export interface components {
|
|
|
2009
2009
|
MailingDataEntity: {
|
|
2010
2010
|
readonly support_email?: string | null;
|
|
2011
2011
|
};
|
|
2012
|
+
AppLinksEntity: {
|
|
2013
|
+
readonly terms_of_use_url?: string | null;
|
|
2014
|
+
readonly privacy_policy_url?: string | null;
|
|
2015
|
+
readonly fraud_and_security_url?: string | null;
|
|
2016
|
+
readonly consumer_protection_url?: string | null;
|
|
2017
|
+
};
|
|
2012
2018
|
SupportedLocalesEntity: {
|
|
2013
2019
|
default: string;
|
|
2014
2020
|
supported: string[];
|
|
@@ -2051,6 +2057,7 @@ export interface components {
|
|
|
2051
2057
|
readonly metrics_data?: components["schemas"]["MetricsDataEntity"] | null;
|
|
2052
2058
|
readonly statement_branding?: components["schemas"]["StatementBrandingEntity"] | null;
|
|
2053
2059
|
readonly mailing_data?: components["schemas"]["MailingDataEntity"] | null;
|
|
2060
|
+
readonly app_links?: components["schemas"]["AppLinksEntity"] | null;
|
|
2054
2061
|
/** @enum {string} */
|
|
2055
2062
|
kyc_data_provider: "persona" | "sumsub";
|
|
2056
2063
|
readonly supported_locales?: components["schemas"]["SupportedLocalesEntity"] | null;
|