squarecommonblhelper 9.0.0 → 9.0.1
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.1
|
|
19
|
+
|
|
20
|
+
- AuthenticationCommonBL:
|
|
21
|
+
- add user_profile_phone_number_country_code and user_profile_email_verified in GetUserDetailsV0ResponseZ.
|
|
22
|
+
|
|
18
23
|
### v9.0.0
|
|
19
24
|
|
|
20
25
|
- AuthenticationCommonBL:
|
package/dist/authentication.d.ts
CHANGED
|
@@ -27,9 +27,11 @@ declare class AuthenticationCommonBL {
|
|
|
27
27
|
user_profile_id: number;
|
|
28
28
|
user_profile_photo_storage_token: string | null;
|
|
29
29
|
user_profile_email: string | null;
|
|
30
|
+
user_profile_phone_number_country_code: string | null;
|
|
30
31
|
user_profile_phone_number: string | null;
|
|
31
32
|
user_profile_first_name: string | null;
|
|
32
33
|
user_profile_last_name: string | null;
|
|
34
|
+
user_profile_email_verified: string | null;
|
|
33
35
|
};
|
|
34
36
|
apps: string[];
|
|
35
37
|
sessions: {
|
|
@@ -74,10 +76,10 @@ declare class AuthenticationCommonBL {
|
|
|
74
76
|
user_profile_id: number;
|
|
75
77
|
user_profile_photo_storage_token: string | null;
|
|
76
78
|
user_profile_email: string | null;
|
|
79
|
+
user_profile_phone_number_country_code: string | null;
|
|
77
80
|
user_profile_phone_number: string | null;
|
|
78
81
|
user_profile_first_name: string | null;
|
|
79
82
|
user_profile_last_name: string | null;
|
|
80
|
-
user_profile_phone_number_country_code: string | null;
|
|
81
83
|
user_profile_email_verified: string | null;
|
|
82
84
|
}[];
|
|
83
85
|
affected_count: number;
|
|
@@ -59,23 +59,29 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
59
59
|
user_profile_id: z.ZodNumber;
|
|
60
60
|
user_profile_photo_storage_token: z.ZodNullable<z.ZodString>;
|
|
61
61
|
user_profile_email: z.ZodNullable<z.ZodString>;
|
|
62
|
+
user_profile_phone_number_country_code: z.ZodNullable<z.ZodString>;
|
|
62
63
|
user_profile_phone_number: z.ZodNullable<z.ZodString>;
|
|
63
64
|
user_profile_first_name: z.ZodNullable<z.ZodString>;
|
|
64
65
|
user_profile_last_name: z.ZodNullable<z.ZodString>;
|
|
66
|
+
user_profile_email_verified: z.ZodNullable<z.ZodString>;
|
|
65
67
|
}, "strict", z.ZodTypeAny, {
|
|
66
68
|
user_profile_id: number;
|
|
67
69
|
user_profile_photo_storage_token: string | null;
|
|
68
70
|
user_profile_email: string | null;
|
|
71
|
+
user_profile_phone_number_country_code: string | null;
|
|
69
72
|
user_profile_phone_number: string | null;
|
|
70
73
|
user_profile_first_name: string | null;
|
|
71
74
|
user_profile_last_name: string | null;
|
|
75
|
+
user_profile_email_verified: string | null;
|
|
72
76
|
}, {
|
|
73
77
|
user_profile_id: number;
|
|
74
78
|
user_profile_photo_storage_token: string | null;
|
|
75
79
|
user_profile_email: string | null;
|
|
80
|
+
user_profile_phone_number_country_code: string | null;
|
|
76
81
|
user_profile_phone_number: string | null;
|
|
77
82
|
user_profile_first_name: string | null;
|
|
78
83
|
user_profile_last_name: string | null;
|
|
84
|
+
user_profile_email_verified: string | null;
|
|
79
85
|
}>;
|
|
80
86
|
apps: z.ZodArray<z.ZodString, "many">;
|
|
81
87
|
sessions: z.ZodArray<z.ZodObject<{
|
|
@@ -95,9 +101,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
95
101
|
user_profile_id: number;
|
|
96
102
|
user_profile_photo_storage_token: string | null;
|
|
97
103
|
user_profile_email: string | null;
|
|
104
|
+
user_profile_phone_number_country_code: string | null;
|
|
98
105
|
user_profile_phone_number: string | null;
|
|
99
106
|
user_profile_first_name: string | null;
|
|
100
107
|
user_profile_last_name: string | null;
|
|
108
|
+
user_profile_email_verified: string | null;
|
|
101
109
|
};
|
|
102
110
|
apps: string[];
|
|
103
111
|
sessions: {
|
|
@@ -111,9 +119,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
111
119
|
user_profile_id: number;
|
|
112
120
|
user_profile_photo_storage_token: string | null;
|
|
113
121
|
user_profile_email: string | null;
|
|
122
|
+
user_profile_phone_number_country_code: string | null;
|
|
114
123
|
user_profile_phone_number: string | null;
|
|
115
124
|
user_profile_first_name: string | null;
|
|
116
125
|
user_profile_last_name: string | null;
|
|
126
|
+
user_profile_email_verified: string | null;
|
|
117
127
|
};
|
|
118
128
|
apps: string[];
|
|
119
129
|
sessions: {
|
|
@@ -129,9 +139,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
129
139
|
user_profile_id: number;
|
|
130
140
|
user_profile_photo_storage_token: string | null;
|
|
131
141
|
user_profile_email: string | null;
|
|
142
|
+
user_profile_phone_number_country_code: string | null;
|
|
132
143
|
user_profile_phone_number: string | null;
|
|
133
144
|
user_profile_first_name: string | null;
|
|
134
145
|
user_profile_last_name: string | null;
|
|
146
|
+
user_profile_email_verified: string | null;
|
|
135
147
|
};
|
|
136
148
|
apps: string[];
|
|
137
149
|
sessions: {
|
|
@@ -147,9 +159,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
147
159
|
user_profile_id: number;
|
|
148
160
|
user_profile_photo_storage_token: string | null;
|
|
149
161
|
user_profile_email: string | null;
|
|
162
|
+
user_profile_phone_number_country_code: string | null;
|
|
150
163
|
user_profile_phone_number: string | null;
|
|
151
164
|
user_profile_first_name: string | null;
|
|
152
165
|
user_profile_last_name: string | null;
|
|
166
|
+
user_profile_email_verified: string | null;
|
|
153
167
|
};
|
|
154
168
|
apps: string[];
|
|
155
169
|
sessions: {
|
|
@@ -168,9 +182,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
168
182
|
user_profile_id: number;
|
|
169
183
|
user_profile_photo_storage_token: string | null;
|
|
170
184
|
user_profile_email: string | null;
|
|
185
|
+
user_profile_phone_number_country_code: string | null;
|
|
171
186
|
user_profile_phone_number: string | null;
|
|
172
187
|
user_profile_first_name: string | null;
|
|
173
188
|
user_profile_last_name: string | null;
|
|
189
|
+
user_profile_email_verified: string | null;
|
|
174
190
|
};
|
|
175
191
|
apps: string[];
|
|
176
192
|
sessions: {
|
|
@@ -190,9 +206,11 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
190
206
|
user_profile_id: number;
|
|
191
207
|
user_profile_photo_storage_token: string | null;
|
|
192
208
|
user_profile_email: string | null;
|
|
209
|
+
user_profile_phone_number_country_code: string | null;
|
|
193
210
|
user_profile_phone_number: string | null;
|
|
194
211
|
user_profile_first_name: string | null;
|
|
195
212
|
user_profile_last_name: string | null;
|
|
213
|
+
user_profile_email_verified: string | null;
|
|
196
214
|
};
|
|
197
215
|
apps: string[];
|
|
198
216
|
sessions: {
|
|
@@ -320,20 +338,20 @@ declare const updateProfileDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendSh
|
|
|
320
338
|
user_profile_id: number;
|
|
321
339
|
user_profile_photo_storage_token: string | null;
|
|
322
340
|
user_profile_email: string | null;
|
|
341
|
+
user_profile_phone_number_country_code: string | null;
|
|
323
342
|
user_profile_phone_number: string | null;
|
|
324
343
|
user_profile_first_name: string | null;
|
|
325
344
|
user_profile_last_name: string | null;
|
|
326
|
-
user_profile_phone_number_country_code: string | null;
|
|
327
345
|
user_profile_email_verified: string | null;
|
|
328
346
|
}, {
|
|
329
347
|
user_id: string;
|
|
330
348
|
user_profile_id: number;
|
|
331
349
|
user_profile_photo_storage_token: string | null;
|
|
332
350
|
user_profile_email: string | null;
|
|
351
|
+
user_profile_phone_number_country_code: string | null;
|
|
333
352
|
user_profile_phone_number: string | null;
|
|
334
353
|
user_profile_first_name: string | null;
|
|
335
354
|
user_profile_last_name: string | null;
|
|
336
|
-
user_profile_phone_number_country_code: string | null;
|
|
337
355
|
user_profile_email_verified: string | null;
|
|
338
356
|
}>, "many">;
|
|
339
357
|
affected_count: z.ZodNumber;
|
|
@@ -343,10 +361,10 @@ declare const updateProfileDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendSh
|
|
|
343
361
|
user_profile_id: number;
|
|
344
362
|
user_profile_photo_storage_token: string | null;
|
|
345
363
|
user_profile_email: string | null;
|
|
364
|
+
user_profile_phone_number_country_code: string | null;
|
|
346
365
|
user_profile_phone_number: string | null;
|
|
347
366
|
user_profile_first_name: string | null;
|
|
348
367
|
user_profile_last_name: string | null;
|
|
349
|
-
user_profile_phone_number_country_code: string | null;
|
|
350
368
|
user_profile_email_verified: string | null;
|
|
351
369
|
}[];
|
|
352
370
|
affected_count: number;
|
|
@@ -356,10 +374,10 @@ declare const updateProfileDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendSh
|
|
|
356
374
|
user_profile_id: number;
|
|
357
375
|
user_profile_photo_storage_token: string | null;
|
|
358
376
|
user_profile_email: string | null;
|
|
377
|
+
user_profile_phone_number_country_code: string | null;
|
|
359
378
|
user_profile_phone_number: string | null;
|
|
360
379
|
user_profile_first_name: string | null;
|
|
361
380
|
user_profile_last_name: string | null;
|
|
362
|
-
user_profile_phone_number_country_code: string | null;
|
|
363
381
|
user_profile_email_verified: string | null;
|
|
364
382
|
}[];
|
|
365
383
|
affected_count: number;
|
|
@@ -372,10 +390,10 @@ declare const updateProfileDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendSh
|
|
|
372
390
|
user_profile_id: number;
|
|
373
391
|
user_profile_photo_storage_token: string | null;
|
|
374
392
|
user_profile_email: string | null;
|
|
393
|
+
user_profile_phone_number_country_code: string | null;
|
|
375
394
|
user_profile_phone_number: string | null;
|
|
376
395
|
user_profile_first_name: string | null;
|
|
377
396
|
user_profile_last_name: string | null;
|
|
378
|
-
user_profile_phone_number_country_code: string | null;
|
|
379
397
|
user_profile_email_verified: string | null;
|
|
380
398
|
}[];
|
|
381
399
|
affected_count: number;
|
|
@@ -389,10 +407,10 @@ declare const updateProfileDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendSh
|
|
|
389
407
|
user_profile_id: number;
|
|
390
408
|
user_profile_photo_storage_token: string | null;
|
|
391
409
|
user_profile_email: string | null;
|
|
410
|
+
user_profile_phone_number_country_code: string | null;
|
|
392
411
|
user_profile_phone_number: string | null;
|
|
393
412
|
user_profile_first_name: string | null;
|
|
394
413
|
user_profile_last_name: string | null;
|
|
395
|
-
user_profile_phone_number_country_code: string | null;
|
|
396
414
|
user_profile_email_verified: string | null;
|
|
397
415
|
}[];
|
|
398
416
|
affected_count: number;
|
|
@@ -17,9 +17,11 @@ const GetUserDetailsV0ResponseZ = APIOutputZ.extend({
|
|
|
17
17
|
user_profile_id: z.number(),
|
|
18
18
|
user_profile_photo_storage_token: z.string().nullable(),
|
|
19
19
|
user_profile_email: z.string().nullable(),
|
|
20
|
+
user_profile_phone_number_country_code: z.string().nullable(),
|
|
20
21
|
user_profile_phone_number: z.string().nullable(),
|
|
21
22
|
user_profile_first_name: z.string().nullable(),
|
|
22
23
|
user_profile_last_name: z.string().nullable(),
|
|
24
|
+
user_profile_email_verified: z.string().nullable(),
|
|
23
25
|
}),
|
|
24
26
|
apps: z.array(z.string()),
|
|
25
27
|
sessions: z.array(z.strictObject({
|