sim-node-lib 0.4.25 → 0.4.27
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/Models/ApiUrl.d.ts +9 -0
- package/dist/Models/ApiUrl.js +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ApiUrl = void 0;
|
|
4
|
+
class ApiUrl {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.urlPublic = process.env.PUBLIC_URL;
|
|
7
|
+
this.urlPrivate = process.env.PRIVATE_URL;
|
|
8
|
+
this.URL_APIAPP = `${this.urlPublic}/app`;
|
|
9
|
+
this.URL_APIB2B = `${this.urlPublic}/b2b`;
|
|
10
|
+
this.URL_APIPRECO = `${this.urlPrivate}/preco`;
|
|
11
|
+
this.URL_APIPRECIFICACAO = `${this.urlPrivate}/precificacao`;
|
|
12
|
+
this.URL_APIVENDAS = `${this.urlPublic}/vendas`;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
exports.ApiUrl = ApiUrl;
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export { NumberHelper } from './Helpers/NumberHelper';
|
|
|
12
12
|
export { PromiseHelper } from './Helpers/PromiseHelper';
|
|
13
13
|
export { StringHelper } from './Helpers/StringHelper';
|
|
14
14
|
export { UpdateUtil } from './Helpers/UpdateUtil';
|
|
15
|
+
export { ApiUrl } from './Models/ApiUrl';
|
|
15
16
|
export { AxiosModel } from './Models/AxiosModel';
|
|
16
17
|
export { PriceToConsult } from './Models/PriceToConsult';
|
|
17
18
|
export { PriceToSale } from './Models/PriceToSale';
|
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.SMS = exports.PriceToSale = exports.PriceToConsult = exports.AxiosModel = exports.ApiUrl = 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");
|
|
@@ -61,6 +61,8 @@ var StringHelper_1 = require("./Helpers/StringHelper");
|
|
|
61
61
|
Object.defineProperty(exports, "StringHelper", { enumerable: true, get: function () { return StringHelper_1.StringHelper; } });
|
|
62
62
|
var UpdateUtil_1 = require("./Helpers/UpdateUtil");
|
|
63
63
|
Object.defineProperty(exports, "UpdateUtil", { enumerable: true, get: function () { return UpdateUtil_1.UpdateUtil; } });
|
|
64
|
+
var ApiUrl_1 = require("./Models/ApiUrl");
|
|
65
|
+
Object.defineProperty(exports, "ApiUrl", { enumerable: true, get: function () { return ApiUrl_1.ApiUrl; } });
|
|
64
66
|
var AxiosModel_1 = require("./Models/AxiosModel");
|
|
65
67
|
Object.defineProperty(exports, "AxiosModel", { enumerable: true, get: function () { return AxiosModel_1.AxiosModel; } });
|
|
66
68
|
var PriceToConsult_1 = require("./Models/PriceToConsult");
|