squarecommonblhelper 9.0.1 → 9.0.2

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.2
19
+
20
+ - AuthenticationCommonBL:
21
+ - add recovery_methods in GetUserDetailsV0ResponseZ.
22
+
18
23
  ### v9.0.1
19
24
 
20
25
  - AuthenticationCommonBL:
@@ -38,6 +38,7 @@ declare class AuthenticationCommonBL {
38
38
  app_name: string;
39
39
  active_sessions: number;
40
40
  }[];
41
+ recovery_methods: Record<string, boolean>;
41
42
  };
42
43
  };
43
44
  log?: any;
@@ -94,6 +94,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
94
94
  app_name: string;
95
95
  active_sessions: number;
96
96
  }>, "many">;
97
+ recovery_methods: z.ZodRecord<z.ZodString, z.ZodBoolean>;
97
98
  }, "strict", z.ZodTypeAny, {
98
99
  user_id: string;
99
100
  username: string;
@@ -112,6 +113,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
112
113
  app_name: string;
113
114
  active_sessions: number;
114
115
  }[];
116
+ recovery_methods: Record<string, boolean>;
115
117
  }, {
116
118
  user_id: string;
117
119
  username: string;
@@ -130,6 +132,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
130
132
  app_name: string;
131
133
  active_sessions: number;
132
134
  }[];
135
+ recovery_methods: Record<string, boolean>;
133
136
  }>;
134
137
  }, "strict", z.ZodTypeAny, {
135
138
  main: {
@@ -150,6 +153,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
150
153
  app_name: string;
151
154
  active_sessions: number;
152
155
  }[];
156
+ recovery_methods: Record<string, boolean>;
153
157
  };
154
158
  }, {
155
159
  main: {
@@ -170,6 +174,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
170
174
  app_name: string;
171
175
  active_sessions: number;
172
176
  }[];
177
+ recovery_methods: Record<string, boolean>;
173
178
  };
174
179
  }>;
175
180
  }>, "strict", z.ZodTypeAny, {
@@ -193,6 +198,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
193
198
  app_name: string;
194
199
  active_sessions: number;
195
200
  }[];
201
+ recovery_methods: Record<string, boolean>;
196
202
  };
197
203
  };
198
204
  log?: any;
@@ -217,6 +223,7 @@ declare const GetUserDetailsV0ResponseZ: z.ZodObject<z.objectUtil.extendShape<{
217
223
  app_name: string;
218
224
  active_sessions: number;
219
225
  }[];
226
+ recovery_methods: Record<string, boolean>;
220
227
  };
221
228
  };
222
229
  log?: any;
@@ -28,6 +28,7 @@ const GetUserDetailsV0ResponseZ = APIOutputZ.extend({
28
28
  app_name: z.string(),
29
29
  active_sessions: z.number(),
30
30
  })),
31
+ recovery_methods: z.record(z.string(), z.boolean()),
31
32
  }),
32
33
  }),
33
34
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarecommonblhelper",
3
- "version": "9.0.1",
3
+ "version": "9.0.2",
4
4
  "description": "helper for common bl for my projects.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",