sim-node-lib 0.4.35 → 0.4.37

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,5 @@
1
+ export declare enum RpaAuthEnum {
2
+ Bus = "B",
3
+ ApiAuth = "A",
4
+ Publico = "P"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RpaAuthEnum = void 0;
4
+ var RpaAuthEnum;
5
+ (function (RpaAuthEnum) {
6
+ RpaAuthEnum["Bus"] = "B";
7
+ RpaAuthEnum["ApiAuth"] = "A";
8
+ RpaAuthEnum["Publico"] = "P";
9
+ })(RpaAuthEnum = exports.RpaAuthEnum || (exports.RpaAuthEnum = {}));
@@ -0,0 +1,5 @@
1
+ export declare enum RpaTarefaStatusEnum {
2
+ Executando = "E",
3
+ Pendente = "P",
4
+ Agendado = "A"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RpaTarefaStatusEnum = void 0;
4
+ var RpaTarefaStatusEnum;
5
+ (function (RpaTarefaStatusEnum) {
6
+ RpaTarefaStatusEnum["Executando"] = "E";
7
+ RpaTarefaStatusEnum["Pendente"] = "P";
8
+ RpaTarefaStatusEnum["Agendado"] = "A";
9
+ })(RpaTarefaStatusEnum = exports.RpaTarefaStatusEnum || (exports.RpaTarefaStatusEnum = {}));
@@ -8,4 +8,5 @@ export declare class SimUrl {
8
8
  URL_APIVENDAS: string;
9
9
  URL_APICOMUNICACAO: string;
10
10
  URL_APIAUTENTICACAO: string;
11
+ URL_APIRETAGUARDA: string;
11
12
  }
@@ -12,6 +12,7 @@ class SimUrl {
12
12
  this.URL_APIVENDAS = `${this.urlPublic}/vendas`;
13
13
  this.URL_APICOMUNICACAO = `${this.urlPrivate}/comunicacao`;
14
14
  this.URL_APIAUTENTICACAO = `${this.urlPrivate}/auth`;
15
+ this.URL_APIRETAGUARDA = `${this.urlPrivate}/retaguarda`;
15
16
  }
16
17
  }
17
18
  exports.SimUrl = SimUrl;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sim-node-lib",
3
- "version": "0.4.35",
3
+ "version": "0.4.37",
4
4
  "description": "Library from SIMLabs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",