7vdomain 1.2.8 → 1.3.0

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.
@@ -0,0 +1,17 @@
1
+ import { RegimeEnum } from "../../RegimeEnum";
2
+ import { SistemasEnum } from "../../SistemasEnum";
3
+ import { UfEnum } from "../../UfEnum";
4
+ export interface IncluirEmpresaRootRequest {
5
+ pessoaRegistradoraId: number;
6
+ sistema: SistemasEnum;
7
+ numeroCnpj: number;
8
+ ie: string;
9
+ razaoSocial: string;
10
+ cidade: string;
11
+ nomeFantasia: string;
12
+ estado: UfEnum;
13
+ lucroReal: boolean;
14
+ industria: boolean;
15
+ grupo: string;
16
+ regimeTributario: RegimeEnum;
17
+ }
@@ -0,0 +1 @@
1
+ export * from "./IncluirEmpresaRootRequest";
@@ -14,6 +14,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./EmpresaRequest"), exports);
18
- __exportStar(require("./ImpostoEstadualRequest"), exports);
19
- __exportStar(require("./ImpostoFederalRequest"), exports);
17
+ __exportStar(require("./IncluirEmpresaRootRequest"), exports);
@@ -0,0 +1,19 @@
1
+ import { RegimeEnum } from "RegimeEnum";
2
+ import { SistemasEnum } from "SistemasEnum";
3
+ import { UfEnum } from "UfEnum";
4
+ export interface IncluirEmpresaRootResponse {
5
+ pessoaEmpresaId: number;
6
+ empresaCnpjId: number;
7
+ pessoaRegistradoraId: number;
8
+ sistema: SistemasEnum;
9
+ numeroCnpj: string;
10
+ ie: string;
11
+ razaoSocial: string;
12
+ cidade: string;
13
+ nomeFantasia: string;
14
+ estado: UfEnum;
15
+ lucroReal: boolean;
16
+ industria: boolean;
17
+ grupo: string;
18
+ regimeTributario: RegimeEnum;
19
+ }
@@ -0,0 +1 @@
1
+ export * from "./IncluirEmpresaRootResponse";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./IncluirEmpresaRootResponse"), exports);
@@ -0,0 +1 @@
1
+ export * from "./Request";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./Request"), exports);
@@ -2,4 +2,4 @@ export * from "./Pessoas";
2
2
  export * from "./Usuarios";
3
3
  export * from "./Produtos";
4
4
  export * from "./Enderecos";
5
- export * from "./PortalContador";
5
+ export * from "../PortalContador";
@@ -18,4 +18,4 @@ __exportStar(require("./Pessoas"), exports);
18
18
  __exportStar(require("./Usuarios"), exports);
19
19
  __exportStar(require("./Produtos"), exports);
20
20
  __exportStar(require("./Enderecos"), exports);
21
- __exportStar(require("./PortalContador"), exports);
21
+ __exportStar(require("../PortalContador"), exports);
@@ -1,6 +1,7 @@
1
1
  import { RegimeEnum } from "../../RegimeEnum";
2
2
  export interface PessoaCnpjResponse {
3
3
  pessoaCnpjId: number;
4
+ pessoaId: number;
4
5
  numero: string;
5
6
  ie: string;
6
7
  regimeTributario: RegimeEnum;
package/dist/index.d.ts CHANGED
@@ -7,3 +7,4 @@ export * from "./SistemasEnum";
7
7
  export * from "./PessoaRelacaoGrupoEnum";
8
8
  export * from "./Request";
9
9
  export * from "./Response";
10
+ export * from "./PortalContador";
package/dist/index.js CHANGED
@@ -25,3 +25,4 @@ __exportStar(require("./PessoaRelacaoGrupoEnum"), exports);
25
25
  /* exports dos request e response */
26
26
  __exportStar(require("./Request"), exports);
27
27
  __exportStar(require("./Response"), exports);
28
+ __exportStar(require("./PortalContador"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "7vdomain",
3
- "version": "1.2.8",
3
+ "version": "1.3.0",
4
4
  "description": "Entidades de contrato para a 7Virtual Sistemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,12 +0,0 @@
1
- import { UfEnum } from "../../UfEnum";
2
- import { RegimeEnum } from "../../RegimeEnum";
3
- export interface EmpresaRequest {
4
- grupo: string;
5
- cnpj: string;
6
- razaoSocial: string;
7
- nomeFantasia: string;
8
- inscricaoEstadual: string;
9
- regimeTributario: RegimeEnum;
10
- cidade: string;
11
- estado: UfEnum;
12
- }
@@ -1,15 +0,0 @@
1
- import { RegimeEnum } from "../../RegimeEnum";
2
- export interface ImpostoEstadualRequest {
3
- empresaEstadualId: number;
4
- contadorId: string;
5
- empresaId: string;
6
- codBarra: string;
7
- nome: string;
8
- ncm: string;
9
- cfop: string;
10
- cstIcms: string;
11
- aliqIcms: number;
12
- percMva: number;
13
- percRedBci: number;
14
- regime: RegimeEnum;
15
- }
@@ -1,16 +0,0 @@
1
- import { RegimeEnum } from "../../RegimeEnum";
2
- export interface ImpostoFederalRequest {
3
- empresaId: string;
4
- codBarra: string;
5
- nome: string;
6
- ncm: string;
7
- cstPisCofins: string;
8
- aliqPis: number;
9
- aliqCofins: number;
10
- aliqIpi: number;
11
- consumidorFinal: number;
12
- regimes: RegimeEnum;
13
- codNadReceita: string;
14
- cstIps: string;
15
- uf: string;
16
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +0,0 @@
1
- export * from "./EmpresaRequest";
2
- export * from "./ImpostoEstadualRequest";
3
- export * from "./ImpostoFederalRequest";