txai-tipos
Advanced tools
Comparing version 1.7.41 to 1.7.42
@@ -20,2 +20,10 @@ export { IEmpresa } from "./interfaces/empresa.interface"; | ||
export { ISetor } from "./interfaces/setor.interface"; | ||
export { IContextoOrganizacional, IProposito, IMissao, IValores, IVisao, IPoliticaDeQualidade, IEscopoDoSistemaDeGestao, IPoliticaDeIntegridadeECompliance, IPoliticaDeAntiSuborno } from "./interfaces/contexto-organizacional.interface"; | ||
export { IContextoOrganizacional } from "./interfaces/contexto-organizacional.interface"; | ||
export { IEscopoDoSistemaDeGestao } from "./interfaces/escopo-do-sistema-de-gestao.interface"; | ||
export { IMissao } from "./interfaces/missao.interface"; | ||
export { IPoliticaDeAntiSuborno } from "./interfaces/politica-de-anti-suborno.interface"; | ||
export { IPoliticaDeIntegridadeECompliance } from "./interfaces/politica-de-integridade.interface"; | ||
export { IPoliticaDeQualidade } from "./interfaces/politica-de-qualidade.interface"; | ||
export { IProposito } from "./interfaces/proposito.interface"; | ||
export { IValores } from "./interfaces/valores.interface"; | ||
export { IVisao } from "./interfaces/visao.interface"; |
@@ -15,2 +15,4 @@ export interface ICargo { | ||
isActive: boolean; | ||
createdAt?: Date; | ||
updatedAt?: Date; | ||
} |
@@ -1,42 +0,13 @@ | ||
export interface IProposito { | ||
descricao: string; | ||
createdAt?: Date; | ||
} | ||
export interface IMissao { | ||
descricao: string; | ||
createdAt?: Date; | ||
} | ||
export interface IValores { | ||
descricao: string; | ||
createdAt?: Date; | ||
} | ||
export interface IVisao { | ||
descricao: string; | ||
createdAt?: Date; | ||
} | ||
export interface IPoliticaDeQualidade { | ||
descricao: string; | ||
revisoes: number; | ||
responsavelPelaAprovacaoId: number | null; | ||
responsavelPelaAprovacao: string | null; | ||
nomeDoResponsavel: string | null; | ||
createdAt?: Date; | ||
} | ||
export interface IEscopoDoSistemaDeGestao { | ||
descricao: string; | ||
revisoes: number; | ||
createdAt?: Date; | ||
} | ||
export interface IPoliticaDeIntegridadeECompliance { | ||
descricao: string; | ||
revisoes: number; | ||
createdAt?: Date; | ||
} | ||
export interface IPoliticaDeAntiSuborno { | ||
descricao: string; | ||
revisoes: number; | ||
createdAt?: Date; | ||
} | ||
import { IEmpresa } from "./empresa.interface"; | ||
import { IEscopoDoSistemaDeGestao } from "./escopo-do-sistema-de-gestao.interface"; | ||
import { IMissao } from "./missao.interface"; | ||
import { IPoliticaDeAntiSuborno } from "./politica-de-anti-suborno.interface"; | ||
import { IPoliticaDeIntegridadeECompliance } from "./politica-de-integridade.interface"; | ||
import { IPoliticaDeQualidade } from "./politica-de-qualidade.interface"; | ||
import { IProposito } from "./proposito.interface"; | ||
import { IValores } from "./valores.interface"; | ||
import { IVisao } from "./visao.interface"; | ||
export interface IContextoOrganizacional { | ||
empresaId: number; | ||
id?: number; | ||
empresa: IEmpresa; | ||
proposito: IProposito; | ||
@@ -50,2 +21,4 @@ missao: IMissao; | ||
politicaDeAntiSuborno: IPoliticaDeAntiSuborno; | ||
createdAt?: Date; | ||
updatedAt?: Date; | ||
} |
export interface ISetor { | ||
id: number; | ||
id?: number; | ||
nome: string; | ||
@@ -7,2 +7,3 @@ empresaId: string; | ||
isActive: boolean; | ||
empresaNome?: string; | ||
} |
{ | ||
"name": "txai-tipos", | ||
"version": "1.7.41", | ||
"version": "1.7.42", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "repository": "git@gitlab.com:SGT_Team/txai-tipos.git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12731
62
393