squarefi-bff-api-module 1.34.19 → 1.34.21
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.
|
@@ -2107,9 +2107,9 @@ export interface components {
|
|
|
2107
2107
|
readonly has_more: boolean;
|
|
2108
2108
|
};
|
|
2109
2109
|
CounterpartiesFilter: {
|
|
2110
|
-
email?: string;
|
|
2110
|
+
email?: string | null;
|
|
2111
2111
|
/** @description Phone number */
|
|
2112
|
-
phone?: string;
|
|
2112
|
+
phone?: string | null;
|
|
2113
2113
|
name?: string;
|
|
2114
2114
|
nickname?: string | null;
|
|
2115
2115
|
/** @enum {string} */
|
|
@@ -2119,9 +2119,9 @@ export interface components {
|
|
|
2119
2119
|
};
|
|
2120
2120
|
CounterpartyAccountDto: {
|
|
2121
2121
|
id: string;
|
|
2122
|
-
email
|
|
2122
|
+
email?: string | null;
|
|
2123
2123
|
/** @description Phone number */
|
|
2124
|
-
phone
|
|
2124
|
+
phone?: string | null;
|
|
2125
2125
|
name: string;
|
|
2126
2126
|
nickname?: string | null;
|
|
2127
2127
|
/** @enum {string} */
|
|
@@ -2141,9 +2141,9 @@ export interface components {
|
|
|
2141
2141
|
readonly has_more: boolean;
|
|
2142
2142
|
};
|
|
2143
2143
|
CreateCounterpartyAccountDto: {
|
|
2144
|
-
email
|
|
2144
|
+
email?: string | null;
|
|
2145
2145
|
/** @description Phone number */
|
|
2146
|
-
phone
|
|
2146
|
+
phone?: string | null;
|
|
2147
2147
|
name: string;
|
|
2148
2148
|
nickname?: string | null;
|
|
2149
2149
|
/** @enum {string} */
|
|
@@ -2285,6 +2285,14 @@ export interface components {
|
|
|
2285
2285
|
default: string;
|
|
2286
2286
|
supported: string[];
|
|
2287
2287
|
};
|
|
2288
|
+
StatementBrandingEntity: {
|
|
2289
|
+
readonly company_name?: string | null;
|
|
2290
|
+
readonly logo_url?: string | null;
|
|
2291
|
+
readonly address?: string | null;
|
|
2292
|
+
readonly website?: string | null;
|
|
2293
|
+
readonly support_text?: string | null;
|
|
2294
|
+
readonly support_phone?: string | null;
|
|
2295
|
+
};
|
|
2288
2296
|
SystemConfigDto: {
|
|
2289
2297
|
/** @enum {string} */
|
|
2290
2298
|
default_theme_mode: "dark" | "light";
|
|
@@ -2297,6 +2305,7 @@ export interface components {
|
|
|
2297
2305
|
enable_referral_program: boolean;
|
|
2298
2306
|
readonly metrics_data?: components["schemas"]["MetricsDataEntity"] | null;
|
|
2299
2307
|
readonly supported_locales?: components["schemas"]["SupportedLocalesEntity"] | null;
|
|
2308
|
+
readonly statement_branding?: components["schemas"]["StatementBrandingEntity"] | null;
|
|
2300
2309
|
base_currency: string;
|
|
2301
2310
|
};
|
|
2302
2311
|
SystemChainsResponseDto: {
|