fix: update paths proto files
All checks were successful
Publish / Publish Job (push) Successful in 2m28s

This commit is contained in:
Дмитрий
2026-04-10 11:01:13 +03:00
parent 91a58e2d1d
commit 12ff7f9827
2 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@lendry-erp/contracts", "name": "@lendry-erp/contracts",
"version": "1.0.60", "version": "1.0.61",
"description": "Protobuf definitions and generated TypeScript types", "description": "Protobuf definitions and generated TypeScript types",
"type": "commonjs", "type": "commonjs",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,10 +1,10 @@
import { join } from "path"; import { join } from "path";
export const PROTO_PATHS = { export const PROTO_PATHS = {
AUTH: join(__dirname, "../../proto/auth.proto"), AUTH: join(__dirname, "../../proto/sso/auth.proto"),
LDAP_AUTH: join(__dirname, "../../proto/ldap-auth.proto"), LDAP_AUTH: join(__dirname, "../../proto/sso/ldap-auth.proto"),
ACCOUNT: join(__dirname, "../../proto/account.proto"), ACCOUNT: join(__dirname, "../../proto/sso/account.proto"),
RBAC: join(__dirname, "../../proto/rbac.proto"), RBAC: join(__dirname, "../../proto/sso/rbac.proto"),
TWOFA: join(__dirname, "../../proto/twofa.proto"), TWOFA: join(__dirname, "../../proto/sso/twofa.proto"),
LDAP: join(__dirname, "../../proto/ldap.proto"), LDAP: join(__dirname, "../../proto/sso/ldap.proto"),
} as const; } as const;