7vdomain 1.2.9 → 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.
- package/dist/PortalContador/Request/IncluirEmpresaRootRequest.d.ts +17 -0
- package/dist/PortalContador/Request/index.d.ts +1 -0
- package/dist/{Request/PortalContador → PortalContador/Request}/index.js +1 -3
- package/dist/PortalContador/Response/IncluirEmpresaRootResponse.d.ts +19 -0
- package/dist/PortalContador/Response/index.d.ts +1 -0
- package/dist/PortalContador/Response/index.js +17 -0
- package/dist/PortalContador/index.d.ts +1 -0
- package/dist/PortalContador/index.js +17 -0
- package/dist/Request/index.d.ts +1 -1
- package/dist/Request/index.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
- package/dist/Request/PortalContador/EmpresaRequest.d.ts +0 -12
- package/dist/Request/PortalContador/ImpostoEstadualRequest.d.ts +0 -15
- package/dist/Request/PortalContador/ImpostoFederalRequest.d.ts +0 -16
- package/dist/Request/PortalContador/ImpostoFederalRequest.js +0 -2
- package/dist/Request/PortalContador/index.d.ts +0 -3
- /package/dist/{Request/PortalContador/EmpresaRequest.js → PortalContador/Request/IncluirEmpresaRootRequest.js} +0 -0
- /package/dist/{Request/PortalContador/ImpostoEstadualRequest.js → PortalContador/Response/IncluirEmpresaRootResponse.js} +0 -0
|
@@ -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("./
|
|
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);
|
package/dist/Request/index.d.ts
CHANGED
package/dist/Request/index.js
CHANGED
|
@@ -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("
|
|
21
|
+
__exportStar(require("../PortalContador"), exports);
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -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
|
-
}
|
|
File without changes
|