cecon-interfaces 1.8.46 → 1.8.49
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/binance/enums/index.d.ts +1 -0
- package/dist/binance/enums/index.js +5 -0
- package/dist/binance/enums/symbol.enum.d.ts +12 -0
- package/dist/binance/enums/symbol.enum.js +16 -0
- package/dist/binance/index.d.ts +2 -0
- package/dist/binance/index.js +18 -0
- package/dist/binance/interfaces/i-ticker-24h.d.ts +24 -0
- package/dist/binance/interfaces/i-ticker-24h.js +2 -0
- package/dist/binance/interfaces/i-ticker.d.ts +5 -0
- package/dist/binance/interfaces/i-ticker.js +2 -0
- package/dist/binance/interfaces/index.d.ts +2 -0
- package/dist/binance/interfaces/index.js +2 -0
- package/dist/esm2022/binance/enums/index.mjs +2 -0
- package/dist/esm2022/binance/enums/symbol.enum.mjs +14 -0
- package/dist/esm2022/binance/index.mjs +3 -0
- package/dist/esm2022/binance/interfaces/i-ticker-24h.mjs +2 -0
- package/dist/esm2022/binance/interfaces/i-ticker.mjs +2 -0
- package/dist/esm2022/binance/interfaces/index.mjs +2 -0
- package/dist/esm2022/global-settings/entities/global-setting-binance.entity.mjs +2 -1
- package/dist/esm2022/global-settings/entities/global-setting-blockchain.entity.mjs +16 -0
- package/dist/esm2022/global-settings/entities/index.mjs +2 -1
- package/dist/esm2022/global-settings/interfaces/i-global-setting-binance.mjs +1 -1
- package/dist/esm2022/global-settings/interfaces/i-global-setting-blockchain.mjs +2 -0
- package/dist/esm2022/global-settings/interfaces/index.mjs +1 -1
- package/dist/esm2022/index.mjs +2 -1
- package/dist/fesm2022/cecon-interfaces.mjs +32 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/global-settings/entities/global-setting-binance.entity.d.ts +1 -0
- package/dist/global-settings/entities/global-setting-binance.entity.js +1 -0
- package/dist/global-settings/entities/global-setting-blockchain.entity.d.ts +8 -0
- package/dist/global-settings/entities/global-setting-blockchain.entity.js +20 -0
- package/dist/global-settings/entities/index.d.ts +1 -0
- package/dist/global-settings/entities/index.js +3 -1
- package/dist/global-settings/interfaces/i-global-setting-binance.d.ts +1 -0
- package/dist/global-settings/interfaces/i-global-setting-blockchain.d.ts +6 -0
- package/dist/global-settings/interfaces/i-global-setting-blockchain.js +2 -0
- package/dist/global-settings/interfaces/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
@@ -2,6 +2,7 @@ import { BinanceAmountMode, BinanceStatus } from '../enums';
|
|
2
2
|
import { IGlobalSettingBinance, IGlobalSettingBinanceRate } from '../interfaces';
|
3
3
|
export declare class GlobalSettingBinanceEntity implements IGlobalSettingBinance {
|
4
4
|
id: string;
|
5
|
+
key: string;
|
5
6
|
rate: GlobalSettingBinanceRateEntity;
|
6
7
|
constructor(data?: Partial<GlobalSettingBinanceEntity>);
|
7
8
|
}
|
@@ -5,6 +5,7 @@ var enums_1 = require("../enums");
|
|
5
5
|
var GlobalSettingBinanceEntity = /** @class */ (function () {
|
6
6
|
function GlobalSettingBinanceEntity(data) {
|
7
7
|
this.id = 'binance';
|
8
|
+
this.key = '';
|
8
9
|
this.rate = new GlobalSettingBinanceRateEntity();
|
9
10
|
if (data) {
|
10
11
|
for (var key in data) {
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { IGlobalSettingBlockchain } from '../interfaces';
|
2
|
+
export declare class GlobalSettingBlockchainEntity implements IGlobalSettingBlockchain {
|
3
|
+
id: string;
|
4
|
+
key: string;
|
5
|
+
password: string;
|
6
|
+
user: string;
|
7
|
+
constructor(data?: Partial<GlobalSettingBlockchainEntity>);
|
8
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.GlobalSettingBlockchainEntity = void 0;
|
4
|
+
var GlobalSettingBlockchainEntity = /** @class */ (function () {
|
5
|
+
function GlobalSettingBlockchainEntity(data) {
|
6
|
+
this.id = 'blockchain';
|
7
|
+
this.key = '';
|
8
|
+
this.password = '';
|
9
|
+
this.user = '';
|
10
|
+
if (data) {
|
11
|
+
for (var key in data) {
|
12
|
+
if (data.hasOwnProperty(key) && key in this) {
|
13
|
+
this[key] = data[key];
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
return GlobalSettingBlockchainEntity;
|
19
|
+
}());
|
20
|
+
exports.GlobalSettingBlockchainEntity = GlobalSettingBlockchainEntity;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export * from './global-setting-binance.entity';
|
2
|
+
export { GlobalSettingBlockchainEntity } from './global-setting-blockchain.entity';
|
2
3
|
export { GlobalSettingFirebankEntity } from './global-setting-firebank.entity';
|
3
4
|
export * from './global-setting-ifood.entity';
|
4
5
|
export { GlobalSettingIuguEntity } from './global-setting-iugu.entity';
|
@@ -14,8 +14,10 @@ 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
|
-
exports.GlobalSettingEntity = exports.GlobalSettingTaxesEntity = exports.GlobalSettingNatiPayEntity = exports.GlobalSettingMercadoPagoEntity = exports.GlobalSettingMasterEntity = exports.GlobalSettingIuguEntity = exports.GlobalSettingFirebankEntity = void 0;
|
17
|
+
exports.GlobalSettingEntity = exports.GlobalSettingTaxesEntity = exports.GlobalSettingNatiPayEntity = exports.GlobalSettingMercadoPagoEntity = exports.GlobalSettingMasterEntity = exports.GlobalSettingIuguEntity = exports.GlobalSettingFirebankEntity = exports.GlobalSettingBlockchainEntity = void 0;
|
18
18
|
__exportStar(require("./global-setting-binance.entity"), exports);
|
19
|
+
var global_setting_blockchain_entity_1 = require("./global-setting-blockchain.entity");
|
20
|
+
Object.defineProperty(exports, "GlobalSettingBlockchainEntity", { enumerable: true, get: function () { return global_setting_blockchain_entity_1.GlobalSettingBlockchainEntity; } });
|
19
21
|
var global_setting_firebank_entity_1 = require("./global-setting-firebank.entity");
|
20
22
|
Object.defineProperty(exports, "GlobalSettingFirebankEntity", { enumerable: true, get: function () { return global_setting_firebank_entity_1.GlobalSettingFirebankEntity; } });
|
21
23
|
__exportStar(require("./global-setting-ifood.entity"), exports);
|
@@ -7,3 +7,4 @@ export { IGlobalSettingNatiPay } from './i-global-setting-nati-pay';
|
|
7
7
|
export * from './i-global-setting-binance';
|
8
8
|
export * from './i-global-setting-ifood';
|
9
9
|
export { IGlobalSettingTaxes } from './i-global-setting-taxes';
|
10
|
+
export { IGlobalSettingBlockchain } from './i-global-setting-blockchain';
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED