@forklaunch/implementation-iam-base 0.8.12 → 0.8.13
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.
|
@@ -225,8 +225,9 @@ export class BaseUserService<
|
|
|
225
225
|
|
|
226
226
|
async deleteUser(
|
|
227
227
|
idDto: IdDto & { organization?: { id: string } } & FilterQuery<
|
|
228
|
-
|
|
229
|
-
|
|
228
|
+
MapperEntities['UserMapper']
|
|
229
|
+
> &
|
|
230
|
+
object,
|
|
230
231
|
em?: EntityManager
|
|
231
232
|
): Promise<void> {
|
|
232
233
|
if (this.evaluatedTelemetryOptions.logging) {
|
|
@@ -246,8 +247,9 @@ export class BaseUserService<
|
|
|
246
247
|
|
|
247
248
|
async deleteBatchUsers(
|
|
248
249
|
idsDto: IdsDto & { organization?: { id: string } } & FilterQuery<
|
|
249
|
-
|
|
250
|
-
|
|
250
|
+
MapperEntities['UserMapper']
|
|
251
|
+
> &
|
|
252
|
+
object,
|
|
251
253
|
em?: EntityManager
|
|
252
254
|
): Promise<void> {
|
|
253
255
|
if (this.evaluatedTelemetryOptions.logging) {
|