squarefi-bff-api-module 1.22.4 → 1.22.5

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.
@@ -1040,6 +1040,8 @@ export interface components {
1040
1040
  is_developer: boolean;
1041
1041
  first_name?: string | null;
1042
1042
  last_name?: string | null;
1043
+ /** @description User birth date in ISO 8601 format */
1044
+ birth_date?: string | null;
1043
1045
  };
1044
1046
  SignInByEmailWithPasswordDto: {
1045
1047
  password: string;
@@ -1060,6 +1062,8 @@ export interface components {
1060
1062
  default_currency?: string;
1061
1063
  first_name?: string | null;
1062
1064
  last_name?: string | null;
1065
+ /** @description User birth date in ISO 8601 format */
1066
+ birth_date?: string | null;
1063
1067
  };
1064
1068
  ChangeEmailDto: {
1065
1069
  access_token: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.22.4",
3
+ "version": "1.22.5",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1041,6 +1041,8 @@ export interface components {
1041
1041
  is_developer: boolean;
1042
1042
  first_name?: string | null;
1043
1043
  last_name?: string | null;
1044
+ /** @description User birth date in ISO 8601 format */
1045
+ birth_date?: string | null;
1044
1046
  };
1045
1047
  SignInByEmailWithPasswordDto: {
1046
1048
  password: string;
@@ -1061,6 +1063,8 @@ export interface components {
1061
1063
  default_currency?: string;
1062
1064
  first_name?: string | null;
1063
1065
  last_name?: string | null;
1066
+ /** @description User birth date in ISO 8601 format */
1067
+ birth_date?: string | null;
1064
1068
  };
1065
1069
  ChangeEmailDto: {
1066
1070
  access_token: string;