7vdomain 1.5.1 → 1.5.3
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.
- package/dist/PortalContador/Request/ImpostoEstadualProdutoRequest.d.ts +2 -11
- package/dist/PortalContador/Request/ImpostoEstadualProdutoRequest.js +13 -0
- package/dist/PortalContador/Request/ImpostoFederalProdutoRequest.d.ts +0 -9
- package/dist/PortalContador/Request/ImpostoProdutoBaseRequest.d.ts +2 -2
- package/dist/PortalContador/Request/ImpostoProdutoBaseRequest.js +15 -0
- package/dist/PortalContador/Response/ImpostoEstadualProdutoResponse.d.ts +8 -11
- package/dist/PortalContador/Response/ImpostoEstadualProdutoResponse.js +21 -0
- package/dist/PortalContador/Response/ImpostoFederalProdutoResponse.d.ts +16 -20
- package/dist/PortalContador/Response/ImpostoFederalProdutoResponse.js +29 -0
- package/dist/PortalDoContador/ImpostoProdutoBase.d.ts +12 -0
- package/dist/PortalDoContador/ImpostoProdutoBase.js +19 -0
- package/dist/PortalDoContador/Request/ImpostoEstadualProdutoRequest.d.ts +8 -0
- package/dist/PortalDoContador/Request/ImpostoEstadualProdutoRequest.js +15 -0
- package/dist/PortalDoContador/Request/ImpostoFederalProdutoRequest.d.ts +12 -0
- package/dist/PortalDoContador/Request/ImpostoFederalProdutoRequest.js +2 -0
- package/dist/PortalDoContador/Request/IncluirEmpresaRootRequest.d.ts +14 -0
- package/dist/PortalDoContador/Request/IncluirEmpresaRootRequest.js +2 -0
- package/dist/PortalDoContador/Request/index.d.ts +3 -0
- package/dist/PortalDoContador/Request/index.js +19 -0
- package/dist/PortalDoContador/Response/EmpresaRootResponse.d.ts +20 -0
- package/dist/PortalDoContador/Response/EmpresaRootResponse.js +2 -0
- package/dist/PortalDoContador/Response/ImpostoEstadualProdutoResponse.d.ts +8 -0
- package/dist/PortalDoContador/Response/ImpostoEstadualProdutoResponse.js +15 -0
- package/dist/PortalDoContador/Response/ImpostoFederalProdutoResponse.d.ts +13 -0
- package/dist/PortalDoContador/Response/ImpostoFederalProdutoResponse.js +23 -0
- package/dist/PortalDoContador/Response/index.d.ts +3 -0
- package/dist/PortalDoContador/Response/index.js +19 -0
- package/dist/PortalDoContador/index.d.ts +3 -0
- package/dist/PortalDoContador/index.js +19 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -1,17 +1,8 @@
|
|
|
1
1
|
import { ImpostoProdutoBaseRequest } from "./ImpostoProdutoBaseRequest";
|
|
2
|
-
export
|
|
3
|
-
codigoDeBarras: string;
|
|
4
|
-
produtoNome: string;
|
|
5
|
-
produtoUnMedidaPadrao: string;
|
|
6
|
-
produtoOrigemMercadoria: number;
|
|
7
|
-
ncm: string;
|
|
8
|
-
ncmDescricao: string;
|
|
2
|
+
export declare class ImpostoProdutoEstadualRequest extends ImpostoProdutoBaseRequest {
|
|
9
3
|
cest: string;
|
|
10
|
-
|
|
11
|
-
cstIcms: number | string;
|
|
4
|
+
cstIcms: number;
|
|
12
5
|
aliqIcms: number;
|
|
13
6
|
percMva: number;
|
|
14
7
|
percRedBci: number;
|
|
15
|
-
consumidorFinal: boolean;
|
|
16
|
-
ufDestino: number;
|
|
17
8
|
}
|
|
@@ -1,2 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
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,21 +1,12 @@
|
|
|
1
1
|
import { ImpostoProdutoBaseRequest } from "./ImpostoProdutoBaseRequest";
|
|
2
2
|
export interface ImpostoProdutoFederalArquivoRequest extends ImpostoProdutoBaseRequest {
|
|
3
|
-
codigoDeBarras: string;
|
|
4
|
-
produtoNome: string;
|
|
5
|
-
produtoUnMedidaPadrao: string;
|
|
6
|
-
produtoOrigemMercadoria: number;
|
|
7
|
-
ncm: string;
|
|
8
|
-
ncmDescricao: string;
|
|
9
3
|
cstPis: string;
|
|
10
4
|
aliqPis: number;
|
|
11
5
|
codNatReceitaPis: string;
|
|
12
|
-
cfop: string;
|
|
13
6
|
codNatReceitaCofins: string;
|
|
14
7
|
codigoEnquadramento: string;
|
|
15
8
|
cstIpi: string;
|
|
16
9
|
aliqIpi: number;
|
|
17
10
|
cstCofins: string;
|
|
18
11
|
aliqCofins: number;
|
|
19
|
-
ufDestino: number;
|
|
20
|
-
consumidorFinal: boolean;
|
|
21
12
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export declare class ImpostoProdutoBaseRequest {
|
|
2
2
|
codigoDeBarras: string;
|
|
3
3
|
produtoNome: string;
|
|
4
4
|
produtoUnMedidaPadrao: string;
|
|
@@ -6,6 +6,6 @@ export interface ImpostoProdutoBaseRequest {
|
|
|
6
6
|
ncm: string;
|
|
7
7
|
ncmDescricao: string;
|
|
8
8
|
cfop: string;
|
|
9
|
-
consumidorFinal: boolean;
|
|
10
9
|
ufDestino: number;
|
|
10
|
+
consumidorFinal: boolean;
|
|
11
11
|
}
|
|
@@ -1,2 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
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,20 +1,17 @@
|
|
|
1
|
-
export
|
|
2
|
-
pessoaGuid: string;
|
|
1
|
+
export declare class ImpostoEstadualProdutoResponse {
|
|
3
2
|
pessoaEmpresaGuid: string;
|
|
4
3
|
produtoGuid: string;
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
produtoUnMedidaPadrao: string;
|
|
8
|
-
produtoOrigemMercadoria: number;
|
|
9
|
-
ncm: string;
|
|
10
|
-
ncmDescricao: string;
|
|
11
|
-
cest: string;
|
|
4
|
+
codBarras: string;
|
|
5
|
+
nomeProduto: string;
|
|
12
6
|
cfop: string;
|
|
13
|
-
|
|
7
|
+
ncmId: number;
|
|
8
|
+
cest: string;
|
|
9
|
+
ncmCodigo: string;
|
|
10
|
+
cstIcms: number;
|
|
14
11
|
aliqIcms: number;
|
|
15
12
|
percMva: number;
|
|
16
13
|
percRedBci: number;
|
|
17
14
|
consumidorFinal: boolean;
|
|
18
|
-
regimeTributario: number;
|
|
19
15
|
ufDestino: number;
|
|
16
|
+
regimeTributarioPessoaRegistradora: number;
|
|
20
17
|
}
|
|
@@ -1,2 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
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,26 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
pessoaGuid: string;
|
|
4
|
-
pessoaEmpresaGuid: string;
|
|
1
|
+
export declare class ImpostoFederalProdutoResponse {
|
|
2
|
+
pessoaRegistradoraGuid: string;
|
|
5
3
|
produtoGuid: string;
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
ncmDescricao: string;
|
|
12
|
-
cstPis: string;
|
|
4
|
+
codBarras: string;
|
|
5
|
+
nomeProduto: string;
|
|
6
|
+
ncmId: number;
|
|
7
|
+
ncmCodigo: string;
|
|
8
|
+
cstPis: number;
|
|
13
9
|
aliqPis: number;
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
codNatReceitaCofins: string;
|
|
17
|
-
codigoEnquadramentoIpi: string;
|
|
18
|
-
cstIpi: string;
|
|
10
|
+
cst: number;
|
|
11
|
+
cstIpi: number;
|
|
19
12
|
aliqIpi: number;
|
|
20
|
-
|
|
13
|
+
codigoEnquadramentoIpi: string;
|
|
14
|
+
cfop: string;
|
|
15
|
+
codNatReceitaPis: string;
|
|
21
16
|
aliqCofins: number;
|
|
22
|
-
|
|
23
|
-
|
|
17
|
+
cstCofins: number;
|
|
18
|
+
codNatReceitaCofins: string;
|
|
24
19
|
consumidorFinal: boolean;
|
|
25
|
-
|
|
20
|
+
ufDestino: number;
|
|
21
|
+
regimeTributarioPessoaRegistradora: number;
|
|
26
22
|
}
|
|
@@ -1,2 +1,31 @@
|
|
|
1
1
|
"use strict";
|
|
2
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;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class ImpostoProdutoBase {
|
|
2
|
+
pessoaGuid: string;
|
|
3
|
+
produtoGuid: string;
|
|
4
|
+
codigoDeBarras: string;
|
|
5
|
+
nomeProduto: string;
|
|
6
|
+
ncmId: number;
|
|
7
|
+
ncmCodigo: string;
|
|
8
|
+
cfop: string;
|
|
9
|
+
consumidorFinal: boolean;
|
|
10
|
+
ufDestino: number;
|
|
11
|
+
regimeTributarioPessoaRegistradora: number;
|
|
12
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImpostoProdutoBase = void 0;
|
|
4
|
+
class ImpostoProdutoBase {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.pessoaGuid = '';
|
|
7
|
+
this.produtoGuid = '';
|
|
8
|
+
this.codigoDeBarras = '';
|
|
9
|
+
this.nomeProduto = '';
|
|
10
|
+
this.ncmId = 0;
|
|
11
|
+
this.ncmCodigo = '';
|
|
12
|
+
this.cfop = '';
|
|
13
|
+
this.consumidorFinal = false;
|
|
14
|
+
this.ufDestino = 0;
|
|
15
|
+
this.regimeTributarioPessoaRegistradora = 0;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.ImpostoProdutoBase = ImpostoProdutoBase;
|
|
19
|
+
// Estadual herda a base
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImpostoProdutoEstadualRequest = void 0;
|
|
4
|
+
const ImpostoProdutoBase_1 = require("../ImpostoProdutoBase");
|
|
5
|
+
class ImpostoProdutoEstadualRequest extends ImpostoProdutoBase_1.ImpostoProdutoBase {
|
|
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;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ImpostoProdutoBase } from "../ImpostoProdutoBase";
|
|
2
|
+
export interface ImpostoProdutoFederalArquivoRequest extends ImpostoProdutoBase {
|
|
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
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./IncluirEmpresaRootRequest"), exports);
|
|
18
|
+
__exportStar(require("./ImpostoEstadualProdutoRequest"), exports);
|
|
19
|
+
__exportStar(require("./ImpostoFederalProdutoRequest"), exports);
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImpostoEstadualProdutoResponse = void 0;
|
|
4
|
+
const ImpostoProdutoBase_1 = require("../ImpostoProdutoBase");
|
|
5
|
+
class ImpostoEstadualProdutoResponse extends ImpostoProdutoBase_1.ImpostoProdutoBase {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(...arguments);
|
|
8
|
+
this.cest = '';
|
|
9
|
+
this.cstIcms = 0; // ou enum
|
|
10
|
+
this.aliqIcms = 0;
|
|
11
|
+
this.percMva = 0;
|
|
12
|
+
this.percRedBci = 0;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
exports.ImpostoEstadualProdutoResponse = ImpostoEstadualProdutoResponse;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ImpostoProdutoBase } from "../ImpostoProdutoBase";
|
|
2
|
+
export declare class ImpostoFederalProdutoResponse extends ImpostoProdutoBase {
|
|
3
|
+
cstPis: number;
|
|
4
|
+
aliqPis: number;
|
|
5
|
+
cst: number;
|
|
6
|
+
cstIpi: number;
|
|
7
|
+
aliqIpi: number;
|
|
8
|
+
codigoEnquadramentoIpi: string;
|
|
9
|
+
codNatReceitaPis: string;
|
|
10
|
+
aliqCofins: number;
|
|
11
|
+
cstCofins: number;
|
|
12
|
+
codNatReceitaCofins: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ImpostoFederalProdutoResponse = void 0;
|
|
4
|
+
const ImpostoProdutoBase_1 = require("../ImpostoProdutoBase");
|
|
5
|
+
class ImpostoFederalProdutoResponse extends ImpostoProdutoBase_1.ImpostoProdutoBase {
|
|
6
|
+
constructor() {
|
|
7
|
+
super(...arguments);
|
|
8
|
+
// PIS
|
|
9
|
+
this.cstPis = 0;
|
|
10
|
+
this.aliqPis = 0;
|
|
11
|
+
this.cst = 0;
|
|
12
|
+
// IPI
|
|
13
|
+
this.cstIpi = 0;
|
|
14
|
+
this.aliqIpi = 0;
|
|
15
|
+
this.codigoEnquadramentoIpi = '';
|
|
16
|
+
this.codNatReceitaPis = '';
|
|
17
|
+
// COFINS
|
|
18
|
+
this.aliqCofins = 0;
|
|
19
|
+
this.cstCofins = 0;
|
|
20
|
+
this.codNatReceitaCofins = '';
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.ImpostoFederalProdutoResponse = ImpostoFederalProdutoResponse;
|
|
@@ -0,0 +1,19 @@
|
|
|
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);
|
|
@@ -0,0 +1,19 @@
|
|
|
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("./ImpostoProdutoBase"), exports);
|
|
18
|
+
__exportStar(require("./Request"), exports);
|
|
19
|
+
__exportStar(require("./Response"), exports);
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -20,4 +20,4 @@ __exportStar(require("./Enums"), exports);
|
|
|
20
20
|
/* exports dos request e response */
|
|
21
21
|
__exportStar(require("./Request"), exports);
|
|
22
22
|
__exportStar(require("./Response"), exports);
|
|
23
|
-
__exportStar(require("./
|
|
23
|
+
__exportStar(require("./PortalDoContador"), exports);
|