sim-node-lib 0.4.26 → 0.4.28
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
class
|
|
3
|
+
exports.SimUrl = void 0;
|
|
4
|
+
class SimUrl {
|
|
5
5
|
constructor() {
|
|
6
6
|
this.urlPublic = process.env.PUBLIC_URL;
|
|
7
7
|
this.urlPrivate = process.env.PRIVATE_URL;
|
|
@@ -9,6 +9,7 @@ class ApiUrl {
|
|
|
9
9
|
this.URL_APIB2B = `${this.urlPublic}/b2b`;
|
|
10
10
|
this.URL_APIPRECO = `${this.urlPrivate}/preco`;
|
|
11
11
|
this.URL_APIPRECIFICACAO = `${this.urlPrivate}/precificacao`;
|
|
12
|
+
this.URL_APIVENDAS = `${this.urlPublic}/vendas`;
|
|
12
13
|
}
|
|
13
14
|
}
|
|
14
|
-
exports.
|
|
15
|
+
exports.SimUrl = SimUrl;
|
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { AxiosModel } from './Models/AxiosModel';
|
|
|
16
16
|
export { PriceToConsult } from './Models/PriceToConsult';
|
|
17
17
|
export { PriceToSale } from './Models/PriceToSale';
|
|
18
18
|
export { SMS } from './Models/SMS';
|
|
19
|
+
export { SimUrl } from './Models/SimUrl';
|
|
19
20
|
export { VendaFormaPagamentoReduzida } from './Models/VendaFormaPagamentoReduzida';
|
|
20
21
|
export { VendaItemReduzido } from './Models/VendaItemReduzido';
|
|
21
22
|
export { VendaOrigem } from './Models/VendaOrigem';
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
35
35
|
});
|
|
36
36
|
};
|
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
|
-
exports.CombustivelService = exports.AxiosService = exports.VendaReduzidaV2 = exports.VendaReduzida = exports.VendaPortal = exports.VendaOrigem = exports.VendaItemReduzido = exports.VendaFormaPagamentoReduzida = exports.SMS = exports.PriceToSale = exports.PriceToConsult = exports.AxiosModel = exports.UpdateUtil = exports.StringHelper = exports.PromiseHelper = exports.NumberHelper = exports.HashHelper = exports.DateHelper = exports.CryptHelper = exports.PubSubHandlerAction = exports.BasicPubSubRepo = exports.GooglePubSubSubscription = exports.GooglePubSubPublish = exports.GooglePubSubCreateSubscription = void 0;
|
|
38
|
+
exports.CombustivelService = exports.AxiosService = exports.VendaReduzidaV2 = exports.VendaReduzida = exports.VendaPortal = exports.VendaOrigem = exports.VendaItemReduzido = exports.VendaFormaPagamentoReduzida = exports.SimUrl = exports.SMS = exports.PriceToSale = exports.PriceToConsult = exports.AxiosModel = exports.UpdateUtil = exports.StringHelper = exports.PromiseHelper = exports.NumberHelper = exports.HashHelper = exports.DateHelper = exports.CryptHelper = exports.PubSubHandlerAction = exports.BasicPubSubRepo = exports.GooglePubSubSubscription = exports.GooglePubSubPublish = exports.GooglePubSubCreateSubscription = void 0;
|
|
39
39
|
var GooglePubSubCreateSubscription_1 = require("./Class/GooglePubSubCreateSubscription");
|
|
40
40
|
Object.defineProperty(exports, "GooglePubSubCreateSubscription", { enumerable: true, get: function () { return GooglePubSubCreateSubscription_1.GooglePubSubCreateSubscription; } });
|
|
41
41
|
var GooglePubSubPublish_1 = require("./Class/GooglePubSubPublish");
|
|
@@ -69,6 +69,8 @@ var PriceToSale_1 = require("./Models/PriceToSale");
|
|
|
69
69
|
Object.defineProperty(exports, "PriceToSale", { enumerable: true, get: function () { return PriceToSale_1.PriceToSale; } });
|
|
70
70
|
var SMS_1 = require("./Models/SMS");
|
|
71
71
|
Object.defineProperty(exports, "SMS", { enumerable: true, get: function () { return SMS_1.SMS; } });
|
|
72
|
+
var SimUrl_1 = require("./Models/SimUrl");
|
|
73
|
+
Object.defineProperty(exports, "SimUrl", { enumerable: true, get: function () { return SimUrl_1.SimUrl; } });
|
|
72
74
|
var VendaFormaPagamentoReduzida_1 = require("./Models/VendaFormaPagamentoReduzida");
|
|
73
75
|
Object.defineProperty(exports, "VendaFormaPagamentoReduzida", { enumerable: true, get: function () { return VendaFormaPagamentoReduzida_1.VendaFormaPagamentoReduzida; } });
|
|
74
76
|
var VendaItemReduzido_1 = require("./Models/VendaItemReduzido");
|