sim-node-lib 0.4.31 → 0.4.33

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,15 @@
1
+ export declare enum RpaHistoricoStatusEnum {
2
+ Bloqueado = "A",
3
+ Deletado = "B",
4
+ Descartado = "C",
5
+ DocumentoPublicoGerado = "D",
6
+ DocumentoNaoPublico = "E",
7
+ EmAndamento = "F",
8
+ Falha = "G",
9
+ Incompleto = "H",
10
+ NaoProcesso = "I",
11
+ Pendencia = "J",
12
+ Processando = "K",
13
+ Rejeitado = "L",
14
+ Sucesso = "M"
15
+ }
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RpaHistoricoStatusEnum = void 0;
4
+ var RpaHistoricoStatusEnum;
5
+ (function (RpaHistoricoStatusEnum) {
6
+ RpaHistoricoStatusEnum["Bloqueado"] = "A";
7
+ RpaHistoricoStatusEnum["Deletado"] = "B";
8
+ RpaHistoricoStatusEnum["Descartado"] = "C";
9
+ RpaHistoricoStatusEnum["DocumentoPublicoGerado"] = "D";
10
+ RpaHistoricoStatusEnum["DocumentoNaoPublico"] = "E";
11
+ RpaHistoricoStatusEnum["EmAndamento"] = "F";
12
+ RpaHistoricoStatusEnum["Falha"] = "G";
13
+ RpaHistoricoStatusEnum["Incompleto"] = "H";
14
+ RpaHistoricoStatusEnum["NaoProcesso"] = "I";
15
+ RpaHistoricoStatusEnum["Pendencia"] = "J";
16
+ RpaHistoricoStatusEnum["Processando"] = "K";
17
+ RpaHistoricoStatusEnum["Rejeitado"] = "L";
18
+ RpaHistoricoStatusEnum["Sucesso"] = "M";
19
+ })(RpaHistoricoStatusEnum = exports.RpaHistoricoStatusEnum || (exports.RpaHistoricoStatusEnum = {}));
@@ -0,0 +1,8 @@
1
+ export declare enum RpaProcessoCampoTipoEnum {
2
+ String = "S",
3
+ Boolean = "B",
4
+ Date = "D",
5
+ Number = "N",
6
+ Time = "T",
7
+ DateTime = "U"
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RpaProcessoCampoTipoEnum = void 0;
4
+ var RpaProcessoCampoTipoEnum;
5
+ (function (RpaProcessoCampoTipoEnum) {
6
+ RpaProcessoCampoTipoEnum["String"] = "S";
7
+ RpaProcessoCampoTipoEnum["Boolean"] = "B";
8
+ RpaProcessoCampoTipoEnum["Date"] = "D";
9
+ RpaProcessoCampoTipoEnum["Number"] = "N";
10
+ RpaProcessoCampoTipoEnum["Time"] = "T";
11
+ RpaProcessoCampoTipoEnum["DateTime"] = "U";
12
+ })(RpaProcessoCampoTipoEnum = exports.RpaProcessoCampoTipoEnum || (exports.RpaProcessoCampoTipoEnum = {}));
@@ -91,5 +91,7 @@ export declare enum PubSubTableEnum {
91
91
  voucherDescontoLote = "voucher_desconto_lote",
92
92
  voucherIndividual = "voucher_individual",
93
93
  voucherMigracao = "voucher_migracao",
94
- voucherMigracaoLote = "voucher_migracao_lote"
94
+ voucherMigracaoLote = "voucher_migracao_lote",
95
+ rpaFeriado = "rpa_feriado",
96
+ rpaTime = "rpa_time"
95
97
  }
@@ -96,4 +96,6 @@ var PubSubTableEnum;
96
96
  PubSubTableEnum["voucherIndividual"] = "voucher_individual";
97
97
  PubSubTableEnum["voucherMigracao"] = "voucher_migracao";
98
98
  PubSubTableEnum["voucherMigracaoLote"] = "voucher_migracao_lote";
99
+ PubSubTableEnum["rpaFeriado"] = "rpa_feriado";
100
+ PubSubTableEnum["rpaTime"] = "rpa_time";
99
101
  })(PubSubTableEnum = exports.PubSubTableEnum || (exports.PubSubTableEnum = {}));
@@ -6,4 +6,6 @@ export declare class SimUrl {
6
6
  URL_APIPRECO: string;
7
7
  URL_APIPRECIFICACAO: string;
8
8
  URL_APIVENDAS: string;
9
+ URL_APICOMUNICACAO: string;
10
+ URL_APIAUTENTICACAO: string;
9
11
  }
@@ -10,6 +10,8 @@ class SimUrl {
10
10
  this.URL_APIPRECO = `${this.urlPrivate}/preco`;
11
11
  this.URL_APIPRECIFICACAO = `${this.urlPrivate}/precificacao`;
12
12
  this.URL_APIVENDAS = `${this.urlPublic}/vendas`;
13
+ this.URL_APICOMUNICACAO = `${this.urlPrivate}/comunicacao`;
14
+ this.URL_APIAUTENTICACAO = `${this.urlPrivate}/auth`;
13
15
  }
14
16
  }
15
17
  exports.SimUrl = SimUrl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-node-lib",
3
- "version": "0.4.31",
3
+ "version": "0.4.33",
4
4
  "description": "Library from SIMLabs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",