squarecommonblhelper 8.0.1 → 9.0.0

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 CHANGED
@@ -15,6 +15,11 @@ helper for common bl for my projects.
15
15
 
16
16
  ## changelog
17
17
 
18
+ ### v9.0.0
19
+
20
+ - AuthenticationCommonBL:
21
+ - **breaking change**: remove user_profile_username from GetUserDetailsV0ResponseZ.
22
+
18
23
  ### v8.0.1
19
24
 
20
25
  - AuthenticationCommonBL:
@@ -30,7 +30,6 @@ declare class AuthenticationCommonBL {
30
30
  user_profile_phone_number: string | null;
31
31
  user_profile_first_name: string | null;
32
32
  user_profile_last_name: string | null;
33
- user_profile_username: string;
34
33
  };
35
34
  apps: string[];
36
35
  sessions: {
@@ -62,7 +62,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
62
62
  user_profile_phone_number: z.ZodNullable<z.ZodString>;
63
63
  user_profile_first_name: z.ZodNullable<z.ZodString>;
64
64
  user_profile_last_name: z.ZodNullable<z.ZodString>;
65
- user_profile_username: z.ZodString;
66
65
  }, "strict", z.ZodTypeAny, {
67
66
  user_profile_id: number;
68
67
  user_profile_photo_storage_token: string | null;
@@ -70,7 +69,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
70
69
  user_profile_phone_number: string | null;
71
70
  user_profile_first_name: string | null;
72
71
  user_profile_last_name: string | null;
73
- user_profile_username: string;
74
72
  }, {
75
73
  user_profile_id: number;
76
74
  user_profile_photo_storage_token: string | null;
@@ -78,7 +76,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
78
76
  user_profile_phone_number: string | null;
79
77
  user_profile_first_name: string | null;
80
78
  user_profile_last_name: string | null;
81
- user_profile_username: string;
82
79
  }>;
83
80
  apps: z.ZodArray<z.ZodString, "many">;
84
81
  sessions: z.ZodArray<z.ZodObject<{
@@ -101,7 +98,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
101
98
  user_profile_phone_number: string | null;
102
99
  user_profile_first_name: string | null;
103
100
  user_profile_last_name: string | null;
104
- user_profile_username: string;
105
101
  };
106
102
  apps: string[];
107
103
  sessions: {
@@ -118,7 +114,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
118
114
  user_profile_phone_number: string | null;
119
115
  user_profile_first_name: string | null;
120
116
  user_profile_last_name: string | null;
121
- user_profile_username: string;
122
117
  };
123
118
  apps: string[];
124
119
  sessions: {
@@ -137,7 +132,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
137
132
  user_profile_phone_number: string | null;
138
133
  user_profile_first_name: string | null;
139
134
  user_profile_last_name: string | null;
140
- user_profile_username: string;
141
135
  };
142
136
  apps: string[];
143
137
  sessions: {
@@ -156,7 +150,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
156
150
  user_profile_phone_number: string | null;
157
151
  user_profile_first_name: string | null;
158
152
  user_profile_last_name: string | null;
159
- user_profile_username: string;
160
153
  };
161
154
  apps: string[];
162
155
  sessions: {
@@ -178,7 +171,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
178
171
  user_profile_phone_number: string | null;
179
172
  user_profile_first_name: string | null;
180
173
  user_profile_last_name: string | null;
181
- user_profile_username: string;
182
174
  };
183
175
  apps: string[];
184
176
  sessions: {
@@ -201,7 +193,6 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
201
193
  user_profile_phone_number: string | null;
202
194
  user_profile_first_name: string | null;
203
195
  user_profile_last_name: string | null;
204
- user_profile_username: string;
205
196
  };
206
197
  apps: string[];
207
198
  sessions: {
@@ -20,7 +20,6 @@ const GetUserDetailsV0ResponseZ = APIOutputZ.extend({
20
20
  user_profile_phone_number: z.string().nullable(),
21
21
  user_profile_first_name: z.string().nullable(),
22
22
  user_profile_last_name: z.string().nullable(),
23
- user_profile_username: z.string(),
24
23
  }),
25
24
  apps: z.array(z.string()),
26
25
  sessions: z.array(z.strictObject({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarecommonblhelper",
3
- "version": "8.0.1",
3
+ "version": "9.0.0",
4
4
  "description": "helper for common bl for my projects.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",