squarefi-bff-api-module 1.34.19 → 1.34.20

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: string;
2122
+ email?: string | null;
2123
2123
  /** @description Phone number */
2124
- phone: string;
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: string;
2144
+ email?: string | null;
2145
2145
  /** @description Phone number */
2146
- phone: string;
2146
+ phone?: string | null;
2147
2147
  name: string;
2148
2148
  nickname?: string | null;
2149
2149
  /** @enum {string} */
@@ -2285,6 +2285,13 @@ 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
+ };
2288
2295
  SystemConfigDto: {
2289
2296
  /** @enum {string} */
2290
2297
  default_theme_mode: "dark" | "light";
@@ -2297,6 +2304,7 @@ export interface components {
2297
2304
  enable_referral_program: boolean;
2298
2305
  readonly metrics_data?: components["schemas"]["MetricsDataEntity"] | null;
2299
2306
  readonly supported_locales?: components["schemas"]["SupportedLocalesEntity"] | null;
2307
+ readonly statement_branding?: components["schemas"]["StatementBrandingEntity"] | null;
2300
2308
  base_currency: string;
2301
2309
  };
2302
2310
  SystemChainsResponseDto: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.34.19",
3
+ "version": "1.34.20",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",