fix import names
This commit is contained in:
parent
70c35f6d2b
commit
3803d45d14
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@apihub24/token-authentication",
|
"name": "@apihub24/token-authentication",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "./dist/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import { Inject, Injectable } from "@nestjs/common";
|
import { Inject, Injectable } from "@nestjs/common";
|
||||||
import { validate } from "class-validator";
|
import { validate } from "class-validator";
|
||||||
import * as contracts from "src/contracts";
|
|
||||||
import { GroupService } from "./group.service";
|
import { GroupService } from "./group.service";
|
||||||
|
import * as contracts from "../contracts";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AccountFactoryService {
|
export class AccountFactoryService {
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import { Account } from "../contracts/models/account";
|
import { Account } from "../contracts/models/account";
|
||||||
import { Inject, Injectable } from "@nestjs/common";
|
import { Inject, Injectable } from "@nestjs/common";
|
||||||
import * as repository from "@apihub24/repository";
|
import * as repository from "@apihub24/repository";
|
||||||
import { Group } from "src/contracts";
|
import { Group } from "../contracts";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class AccountService {
|
export class AccountService {
|
||||||
|
|||||||
@ -2,7 +2,7 @@ import { Inject, Injectable } from "@nestjs/common";
|
|||||||
import { validate } from "class-validator";
|
import { validate } from "class-validator";
|
||||||
import { OrganizationService } from "./organization.service";
|
import { OrganizationService } from "./organization.service";
|
||||||
import { RightService } from "./right.service";
|
import { RightService } from "./right.service";
|
||||||
import { Group } from "src/contracts";
|
import { Group } from "../contracts";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class GroupFactoryService {
|
export class GroupFactoryService {
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import { Inject, Injectable } from "@nestjs/common";
|
import { Inject, Injectable } from "@nestjs/common";
|
||||||
import { Group } from "../contracts/models/group";
|
import { Group } from "../contracts/models/group";
|
||||||
import * as repository from "@apihub24/repository";
|
import * as repository from "@apihub24/repository";
|
||||||
import { Right } from "src/contracts";
|
import { Right } from "../contracts";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class GroupService {
|
export class GroupService {
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Inject, Injectable } from "@nestjs/common";
|
import { Inject, Injectable } from "@nestjs/common";
|
||||||
import * as contracts from "src/contracts";
|
import * as contracts from "../contracts";
|
||||||
import { AccountService } from "./account.service";
|
import { AccountService } from "./account.service";
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user