@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.
@@ -4,3 +4,4 @@ export * from './role.service';
4
4
  export * from './user.service';
5
5
 
6
6
  export * from '@forklaunch/interfaces-iam/interfaces';
7
+ export * from '@forklaunch/interfaces-iam/types';
@@ -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';
@@ -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';
@@ -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
  });
@@ -646,6 +646,7 @@ var BaseUserService = class {
646
646
 
647
647
  // services/index.ts
648
648
  export * from "@forklaunch/interfaces-iam/interfaces";
649
+ export * from "@forklaunch/interfaces-iam/types";
649
650
  export {
650
651
  BaseOrganizationService,
651
652
  BasePermissionService,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/implementation-iam-base",
3
- "version": "0.7.3",
3
+ "version": "0.7.4",
4
4
  "description": "Billing basic implementation for forklaunch",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {