@forklaunch/implementation-iam-base 0.7.3 → 0.7.4
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/lib/services/index.d.mts
CHANGED
|
@@ -3,6 +3,7 @@ import { OpenTelemetryCollector, MetricsDefinition, TelemetryOptions } from '@fo
|
|
|
3
3
|
import { OrganizationService, PermissionService, RoleService, UserService } from '@forklaunch/interfaces-iam/interfaces';
|
|
4
4
|
export * from '@forklaunch/interfaces-iam/interfaces';
|
|
5
5
|
import { CreateOrganizationDto, UpdateOrganizationDto, CreatePermissionDto, UpdatePermissionDto, CreateRoleDto, RoleDto, UpdateRoleDto, CreateUserDto, UpdateUserDto } from '@forklaunch/interfaces-iam/types';
|
|
6
|
+
export * from '@forklaunch/interfaces-iam/types';
|
|
6
7
|
import { AnySchemaValidator } from '@forklaunch/validator';
|
|
7
8
|
import { EntityManager, FilterQuery } from '@mikro-orm/core';
|
|
8
9
|
import { OrganizationEntities, OrganizationDtos, OrganizationMappers, PermissionEntities, PermissionDtos, PermissionMappers, RoleEntities, RoleDtos, RoleMappers, UserEntities, UserDtos, UserMappers } from '../domain/types/index.mjs';
|
package/lib/services/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { OpenTelemetryCollector, MetricsDefinition, TelemetryOptions } from '@fo
|
|
|
3
3
|
import { OrganizationService, PermissionService, RoleService, UserService } from '@forklaunch/interfaces-iam/interfaces';
|
|
4
4
|
export * from '@forklaunch/interfaces-iam/interfaces';
|
|
5
5
|
import { CreateOrganizationDto, UpdateOrganizationDto, CreatePermissionDto, UpdatePermissionDto, CreateRoleDto, RoleDto, UpdateRoleDto, CreateUserDto, UpdateUserDto } from '@forklaunch/interfaces-iam/types';
|
|
6
|
+
export * from '@forklaunch/interfaces-iam/types';
|
|
6
7
|
import { AnySchemaValidator } from '@forklaunch/validator';
|
|
7
8
|
import { EntityManager, FilterQuery } from '@mikro-orm/core';
|
|
8
9
|
import { OrganizationEntities, OrganizationDtos, OrganizationMappers, PermissionEntities, PermissionDtos, PermissionMappers, RoleEntities, RoleDtos, RoleMappers, UserEntities, UserDtos, UserMappers } from '../domain/types/index.js';
|
package/lib/services/index.js
CHANGED
|
@@ -668,11 +668,13 @@ var BaseUserService = class {
|
|
|
668
668
|
|
|
669
669
|
// services/index.ts
|
|
670
670
|
__reExport(services_exports, require("@forklaunch/interfaces-iam/interfaces"), module.exports);
|
|
671
|
+
__reExport(services_exports, require("@forklaunch/interfaces-iam/types"), module.exports);
|
|
671
672
|
// Annotate the CommonJS export names for ESM import in node:
|
|
672
673
|
0 && (module.exports = {
|
|
673
674
|
BaseOrganizationService,
|
|
674
675
|
BasePermissionService,
|
|
675
676
|
BaseRoleService,
|
|
676
677
|
BaseUserService,
|
|
677
|
-
...require("@forklaunch/interfaces-iam/interfaces")
|
|
678
|
+
...require("@forklaunch/interfaces-iam/interfaces"),
|
|
679
|
+
...require("@forklaunch/interfaces-iam/types")
|
|
678
680
|
});
|
package/lib/services/index.mjs
CHANGED