7vdomain 1.5.3 → 1.5.5

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.
Files changed (33) hide show
  1. package/package.json +1 -1
  2. package/dist/PortalContador/Request/ImpostoEstadualProdutoArquivoDto.d.ts +0 -16
  3. package/dist/PortalContador/Request/ImpostoEstadualProdutoArquivoDto.js +0 -2
  4. package/dist/PortalContador/Request/ImpostoEstadualProdutoRequest.d.ts +0 -8
  5. package/dist/PortalContador/Request/ImpostoEstadualProdutoRequest.js +0 -15
  6. package/dist/PortalContador/Request/ImpostoFederalProdutoArquivoDto.d.ts +0 -19
  7. package/dist/PortalContador/Request/ImpostoFederalProdutoArquivoDto.js +0 -2
  8. package/dist/PortalContador/Request/ImpostoFederalProdutoRequest.d.ts +0 -12
  9. package/dist/PortalContador/Request/ImpostoFederalProdutoRequest.js +0 -2
  10. package/dist/PortalContador/Request/ImpostoProdutoBaseRequest.d.ts +0 -11
  11. package/dist/PortalContador/Request/ImpostoProdutoBaseRequest.js +0 -17
  12. package/dist/PortalContador/Request/IncluirEmpresaRootRequest.d.ts +0 -14
  13. package/dist/PortalContador/Request/IncluirEmpresaRootRequest.js +0 -2
  14. package/dist/PortalContador/Request/index.d.ts +0 -4
  15. package/dist/PortalContador/Request/index.js +0 -20
  16. package/dist/PortalContador/Response/EmpresaRootResponse.d.ts +0 -20
  17. package/dist/PortalContador/Response/EmpresaRootResponse.js +0 -2
  18. package/dist/PortalContador/Response/ImpostoEstadualProdutoResponse.d.ts +0 -17
  19. package/dist/PortalContador/Response/ImpostoEstadualProdutoResponse.js +0 -23
  20. package/dist/PortalContador/Response/ImpostoFederalProdutoResponse.d.ts +0 -22
  21. package/dist/PortalContador/Response/ImpostoFederalProdutoResponse.js +0 -31
  22. package/dist/PortalContador/Response/index.d.ts +0 -3
  23. package/dist/PortalContador/Response/index.js +0 -19
  24. package/dist/PortalContador/index.d.ts +0 -2
  25. package/dist/PortalContador/index.js +0 -18
  26. package/dist/Response/PortalContador/EmpresaResponse.d.ts +0 -14
  27. package/dist/Response/PortalContador/EmpresaResponse.js +0 -2
  28. package/dist/Response/PortalContador/ImpostoEstadualResponse.d.ts +0 -17
  29. package/dist/Response/PortalContador/ImpostoEstadualResponse.js +0 -2
  30. package/dist/Response/PortalContador/ImpostoFederalResponse.d.ts +0 -17
  31. package/dist/Response/PortalContador/ImpostoFederalResponse.js +0 -2
  32. package/dist/Response/PortalContador/index.d.ts +0 -3
  33. package/dist/Response/PortalContador/index.js +0 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "7vdomain",
3
- "version": "1.5.3",
3
+ "version": "1.5.5",
4
4
  "description": "Entidades de contrato para a 7Virtual Sistemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,16 +0,0 @@
1
- export interface ImpostoProdutoEstadualArquivoRequest {
2
- codigoDeBarras: string;
3
- produtoNome: string;
4
- produtoUnMedidaPadrao: string;
5
- produtoOrigemMercadoria: number;
6
- ncm: string;
7
- ncmDescricao: string;
8
- cest: string;
9
- cfop: string;
10
- cstIcms: string;
11
- aliqIcms: number;
12
- percMva: number;
13
- percRedBci: number;
14
- consumidorFinal: boolean;
15
- ufDestino: number;
16
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,8 +0,0 @@
1
- import { ImpostoProdutoBaseRequest } from "./ImpostoProdutoBaseRequest";
2
- export declare class ImpostoProdutoEstadualRequest extends ImpostoProdutoBaseRequest {
3
- cest: string;
4
- cstIcms: number;
5
- aliqIcms: number;
6
- percMva: number;
7
- percRedBci: number;
8
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ImpostoProdutoEstadualRequest = void 0;
4
- const ImpostoProdutoBaseRequest_1 = require("./ImpostoProdutoBaseRequest");
5
- class ImpostoProdutoEstadualRequest extends ImpostoProdutoBaseRequest_1.ImpostoProdutoBaseRequest {
6
- constructor() {
7
- super(...arguments);
8
- this.cest = '';
9
- this.cstIcms = 0; // pode usar enum ou number
10
- this.aliqIcms = 0;
11
- this.percMva = 0;
12
- this.percRedBci = 0;
13
- }
14
- }
15
- exports.ImpostoProdutoEstadualRequest = ImpostoProdutoEstadualRequest;
@@ -1,19 +0,0 @@
1
- export interface ImpostoProdutoFederalArquivoRequest {
2
- codigoDeBarras: string;
3
- produtoNome: string;
4
- produtoUnMedidaPadrao: string;
5
- produtoOrigemMercadoria: number;
6
- ncm: string;
7
- ncmDescricao: string;
8
- cstPis: string;
9
- aliqPis: number;
10
- codNatReceitaPis: string;
11
- cfop: string;
12
- codNatReceitaCofins: string;
13
- cstIpi: string;
14
- aliqIpi: number;
15
- cstCofins: string;
16
- aliqCofins: number;
17
- ufDestino: number;
18
- consumidorFinal: boolean;
19
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,12 +0,0 @@
1
- import { ImpostoProdutoBaseRequest } from "./ImpostoProdutoBaseRequest";
2
- export interface ImpostoProdutoFederalArquivoRequest extends ImpostoProdutoBaseRequest {
3
- cstPis: string;
4
- aliqPis: number;
5
- codNatReceitaPis: string;
6
- codNatReceitaCofins: string;
7
- codigoEnquadramento: string;
8
- cstIpi: string;
9
- aliqIpi: number;
10
- cstCofins: string;
11
- aliqCofins: number;
12
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,11 +0,0 @@
1
- export declare class ImpostoProdutoBaseRequest {
2
- codigoDeBarras: string;
3
- produtoNome: string;
4
- produtoUnMedidaPadrao: string;
5
- produtoOrigemMercadoria: number;
6
- ncm: string;
7
- ncmDescricao: string;
8
- cfop: string;
9
- ufDestino: number;
10
- consumidorFinal: boolean;
11
- }
@@ -1,17 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ImpostoProdutoBaseRequest = void 0;
4
- class ImpostoProdutoBaseRequest {
5
- constructor() {
6
- this.codigoDeBarras = '';
7
- this.produtoNome = '';
8
- this.produtoUnMedidaPadrao = '';
9
- this.produtoOrigemMercadoria = 0;
10
- this.ncm = '';
11
- this.ncmDescricao = '';
12
- this.cfop = '';
13
- this.ufDestino = 0;
14
- this.consumidorFinal = false;
15
- }
16
- }
17
- exports.ImpostoProdutoBaseRequest = ImpostoProdutoBaseRequest;
@@ -1,14 +0,0 @@
1
- import { RegimeEnum } from "../../Enums/RegimeEnum";
2
- import { SistemasEnum } from "../../Enums/SistemasEnum";
3
- export interface IncluirEmpresaRootRequest {
4
- pessoaRegistradoraId: string;
5
- sistema: SistemasEnum;
6
- numeroCnpj: string;
7
- ie: string;
8
- razaoSocial: string;
9
- nomeFantasia: string;
10
- lucroReal: boolean;
11
- industria: boolean;
12
- grupo: string;
13
- regimeTributario: RegimeEnum;
14
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +0,0 @@
1
- export * from "./ImpostoProdutoBaseRequest";
2
- export * from "./IncluirEmpresaRootRequest";
3
- export * from "./ImpostoEstadualProdutoRequest";
4
- export * from "./ImpostoFederalProdutoRequest";
@@ -1,20 +0,0 @@
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("./ImpostoProdutoBaseRequest"), exports);
18
- __exportStar(require("./IncluirEmpresaRootRequest"), exports);
19
- __exportStar(require("./ImpostoEstadualProdutoRequest"), exports);
20
- __exportStar(require("./ImpostoFederalProdutoRequest"), exports);
@@ -1,20 +0,0 @@
1
- import { EnderecoCidadeResponse, PessoaTelefoneResponse } from "../../Response";
2
- import { RegimeEnum } from "../../Enums/RegimeEnum";
3
- import { SistemasEnum } from "../../Enums/SistemasEnum";
4
- export interface EmpresaRootResponse {
5
- pessoaEmpresaGuid: string;
6
- empresaCnpjId: number;
7
- pessoaCnpjId: number;
8
- pessoaRegistradoraId: string;
9
- sistema: SistemasEnum;
10
- numeroCnpj: string;
11
- ie: string;
12
- razaoSocial: string;
13
- cidades: EnderecoCidadeResponse[];
14
- telefones: PessoaTelefoneResponse[];
15
- nomeFantasia: string;
16
- lucroReal: boolean;
17
- industria: boolean;
18
- grupo: string;
19
- regimeTributario: RegimeEnum;
20
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,17 +0,0 @@
1
- export declare class ImpostoEstadualProdutoResponse {
2
- pessoaEmpresaGuid: string;
3
- produtoGuid: string;
4
- codBarras: string;
5
- nomeProduto: string;
6
- cfop: string;
7
- ncmId: number;
8
- cest: string;
9
- ncmCodigo: string;
10
- cstIcms: number;
11
- aliqIcms: number;
12
- percMva: number;
13
- percRedBci: number;
14
- consumidorFinal: boolean;
15
- ufDestino: number;
16
- regimeTributarioPessoaRegistradora: number;
17
- }
@@ -1,23 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ImpostoEstadualProdutoResponse = void 0;
4
- class ImpostoEstadualProdutoResponse {
5
- constructor() {
6
- this.pessoaEmpresaGuid = ''; // Guid em TS normalmente string
7
- this.produtoGuid = '';
8
- this.codBarras = '';
9
- this.nomeProduto = '';
10
- this.cfop = '';
11
- this.ncmId = 0;
12
- this.cest = '';
13
- this.ncmCodigo = '';
14
- this.cstIcms = 0; // pode ser enum ou number
15
- this.aliqIcms = 0;
16
- this.percMva = 0;
17
- this.percRedBci = 0;
18
- this.consumidorFinal = false;
19
- this.ufDestino = 0;
20
- this.regimeTributarioPessoaRegistradora = 0;
21
- }
22
- }
23
- exports.ImpostoEstadualProdutoResponse = ImpostoEstadualProdutoResponse;
@@ -1,22 +0,0 @@
1
- export declare class ImpostoFederalProdutoResponse {
2
- pessoaRegistradoraGuid: string;
3
- produtoGuid: string;
4
- codBarras: string;
5
- nomeProduto: string;
6
- ncmId: number;
7
- ncmCodigo: string;
8
- cstPis: number;
9
- aliqPis: number;
10
- cst: number;
11
- cstIpi: number;
12
- aliqIpi: number;
13
- codigoEnquadramentoIpi: string;
14
- cfop: string;
15
- codNatReceitaPis: string;
16
- aliqCofins: number;
17
- cstCofins: number;
18
- codNatReceitaCofins: string;
19
- consumidorFinal: boolean;
20
- ufDestino: number;
21
- regimeTributarioPessoaRegistradora: number;
22
- }
@@ -1,31 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ImpostoFederalProdutoResponse = void 0;
4
- class ImpostoFederalProdutoResponse {
5
- constructor() {
6
- this.pessoaRegistradoraGuid = ''; // Guid → string
7
- this.produtoGuid = '';
8
- this.codBarras = '';
9
- this.nomeProduto = '';
10
- this.ncmId = 0;
11
- this.ncmCodigo = '';
12
- // PIS
13
- this.cstPis = 0; // pode ser enum ou number
14
- this.aliqPis = 0;
15
- this.cst = 0;
16
- // IPI
17
- this.cstIpi = 0;
18
- this.aliqIpi = 0;
19
- this.codigoEnquadramentoIpi = '';
20
- this.cfop = '';
21
- this.codNatReceitaPis = '';
22
- // COFINS
23
- this.aliqCofins = 0;
24
- this.cstCofins = 0;
25
- this.codNatReceitaCofins = '';
26
- this.consumidorFinal = false;
27
- this.ufDestino = 0;
28
- this.regimeTributarioPessoaRegistradora = 0;
29
- }
30
- }
31
- exports.ImpostoFederalProdutoResponse = ImpostoFederalProdutoResponse;
@@ -1,3 +0,0 @@
1
- export * from "./EmpresaRootResponse";
2
- export * from "./ImpostoEstadualProdutoResponse";
3
- export * from "./ImpostoFederalProdutoResponse";
@@ -1,19 +0,0 @@
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("./EmpresaRootResponse"), exports);
18
- __exportStar(require("./ImpostoEstadualProdutoResponse"), exports);
19
- __exportStar(require("./ImpostoFederalProdutoResponse"), exports);
@@ -1,2 +0,0 @@
1
- export * from "./Request";
2
- export * from "./Response";
@@ -1,18 +0,0 @@
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);
18
- __exportStar(require("./Response"), exports);
@@ -1,14 +0,0 @@
1
- import { UfEnum } from "../../Enums/UfEnum";
2
- import { RegimeEnum } from "../../Enums/RegimeEnum";
3
- export interface EmpresaResponse {
4
- id: string;
5
- pessoaId: number;
6
- grupo: string;
7
- cnpj: string;
8
- razaoSocial: string;
9
- nomeFantasia: string;
10
- inscricaoEstadual: string;
11
- regimeTributario: RegimeEnum;
12
- cidade: string;
13
- estado: UfEnum;
14
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,17 +0,0 @@
1
- import { RegimeEnum } from "../../Enums/RegimeEnum";
2
- export interface ImpostoEstadualResponse {
3
- impostoEstadualId: number;
4
- codBarra: string;
5
- nome: string;
6
- ncm: string;
7
- cfop: string;
8
- cstIcms: string;
9
- aliqIcms: number;
10
- oercMva: number;
11
- oercRedBci: number;
12
- regime: RegimeEnum;
13
- consumidorFinal: boolean;
14
- uf: string;
15
- contadorId: string;
16
- empresaId: string;
17
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,17 +0,0 @@
1
- import { RegimeEnum } from "../../Enums/RegimeEnum";
2
- export interface ImpostoFederalResponse {
3
- impostoFederalId: number;
4
- codBarra: string;
5
- nome: string;
6
- cstPisCofins: string;
7
- aliqPis: number;
8
- aliqCofins: number;
9
- codNadReceita: string;
10
- cstIps: string;
11
- aliqIpi: number;
12
- consumidorFinal: boolean;
13
- regime: RegimeEnum;
14
- uf: string;
15
- contadorId: string;
16
- empresaId: string;
17
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,3 +0,0 @@
1
- export * from "./EmpresaResponse";
2
- export * from "./ImpostoEstadualResponse";
3
- export * from "./ImpostoFederalResponse";
@@ -1,19 +0,0 @@
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("./EmpresaResponse"), exports);
18
- __exportStar(require("./ImpostoEstadualResponse"), exports);
19
- __exportStar(require("./ImpostoFederalResponse"), exports);