@arrowsphere/api-client 3.78.0 → 3.79.0-rc.bdj.1
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/build/licenses/entities/getLicense/buySellFindResult.d.ts +4 -1
- package/build/licenses/entities/getLicense/buySellFindResult.js +9 -2
- package/build/licenses/entities/getLicense/licensePriceGetResult.d.ts +3 -0
- package/build/licenses/entities/getLicense/licensePriceGetResult.js +9 -2
- package/package.json +1 -1
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { AbstractEntity } from '../../../abstractEntity';
|
|
2
2
|
export declare enum BuySellFields {
|
|
3
3
|
COLUMN_BUY = "buy",
|
|
4
|
-
COLUMN_SELL = "sell"
|
|
4
|
+
COLUMN_SELL = "sell",
|
|
5
|
+
COLUMN_LIST = "list"
|
|
5
6
|
}
|
|
6
7
|
export declare type BuySellData = {
|
|
7
8
|
[BuySellFields.COLUMN_BUY]?: number;
|
|
8
9
|
[BuySellFields.COLUMN_SELL]?: number;
|
|
10
|
+
[BuySellFields.COLUMN_LIST]?: number;
|
|
9
11
|
};
|
|
10
12
|
export declare class BuySellFindResult extends AbstractEntity<BuySellData> {
|
|
11
13
|
#private;
|
|
12
14
|
constructor(data: BuySellData);
|
|
13
15
|
get buy(): number | undefined;
|
|
14
16
|
get sell(): number | undefined;
|
|
17
|
+
get list(): number | undefined;
|
|
15
18
|
toJSON(): BuySellData;
|
|
16
19
|
}
|
|
@@ -10,7 +10,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
10
10
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
11
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
12
|
};
|
|
13
|
-
var _BuySellFindResult_buy, _BuySellFindResult_sell;
|
|
13
|
+
var _BuySellFindResult_buy, _BuySellFindResult_sell, _BuySellFindResult_list;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.BuySellFindResult = exports.BuySellFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../../abstractEntity");
|
|
@@ -18,14 +18,17 @@ var BuySellFields;
|
|
|
18
18
|
(function (BuySellFields) {
|
|
19
19
|
BuySellFields["COLUMN_BUY"] = "buy";
|
|
20
20
|
BuySellFields["COLUMN_SELL"] = "sell";
|
|
21
|
+
BuySellFields["COLUMN_LIST"] = "list";
|
|
21
22
|
})(BuySellFields = exports.BuySellFields || (exports.BuySellFields = {}));
|
|
22
23
|
class BuySellFindResult extends abstractEntity_1.AbstractEntity {
|
|
23
24
|
constructor(data) {
|
|
24
25
|
super(data);
|
|
25
26
|
_BuySellFindResult_buy.set(this, void 0);
|
|
26
27
|
_BuySellFindResult_sell.set(this, void 0);
|
|
28
|
+
_BuySellFindResult_list.set(this, void 0);
|
|
27
29
|
__classPrivateFieldSet(this, _BuySellFindResult_buy, data[BuySellFields.COLUMN_BUY], "f");
|
|
28
30
|
__classPrivateFieldSet(this, _BuySellFindResult_sell, data[BuySellFields.COLUMN_SELL], "f");
|
|
31
|
+
__classPrivateFieldSet(this, _BuySellFindResult_list, data[BuySellFields.COLUMN_LIST], "f");
|
|
29
32
|
}
|
|
30
33
|
get buy() {
|
|
31
34
|
return __classPrivateFieldGet(this, _BuySellFindResult_buy, "f");
|
|
@@ -33,13 +36,17 @@ class BuySellFindResult extends abstractEntity_1.AbstractEntity {
|
|
|
33
36
|
get sell() {
|
|
34
37
|
return __classPrivateFieldGet(this, _BuySellFindResult_sell, "f");
|
|
35
38
|
}
|
|
39
|
+
get list() {
|
|
40
|
+
return __classPrivateFieldGet(this, _BuySellFindResult_list, "f");
|
|
41
|
+
}
|
|
36
42
|
toJSON() {
|
|
37
43
|
return {
|
|
38
44
|
[BuySellFields.COLUMN_BUY]: this.buy,
|
|
39
45
|
[BuySellFields.COLUMN_SELL]: this.sell,
|
|
46
|
+
[BuySellFields.COLUMN_LIST]: this.list,
|
|
40
47
|
};
|
|
41
48
|
}
|
|
42
49
|
}
|
|
43
50
|
exports.BuySellFindResult = BuySellFindResult;
|
|
44
|
-
_BuySellFindResult_buy = new WeakMap(), _BuySellFindResult_sell = new WeakMap();
|
|
51
|
+
_BuySellFindResult_buy = new WeakMap(), _BuySellFindResult_sell = new WeakMap(), _BuySellFindResult_list = new WeakMap();
|
|
45
52
|
//# sourceMappingURL=buySellFindResult.js.map
|
|
@@ -2,11 +2,13 @@ import { BuySellData, BuySellFindResult } from './buySellFindResult';
|
|
|
2
2
|
import { AbstractEntity } from '../../../abstractEntity';
|
|
3
3
|
export declare enum LicensePriceGetFields {
|
|
4
4
|
COLUMN_CURRENCY = "currency",
|
|
5
|
+
COLUMN_PRICEBAND_ARROWSPHERE_SKU = "priceBandArrowsphereSku",
|
|
5
6
|
COLUMN_UNIT = "unit",
|
|
6
7
|
COLUMN_TOTAL = "total"
|
|
7
8
|
}
|
|
8
9
|
export declare type LicensePriceGetData = {
|
|
9
10
|
[LicensePriceGetFields.COLUMN_CURRENCY]: string;
|
|
11
|
+
[LicensePriceGetFields.COLUMN_PRICEBAND_ARROWSPHERE_SKU]: string;
|
|
10
12
|
[LicensePriceGetFields.COLUMN_UNIT]: BuySellData;
|
|
11
13
|
[LicensePriceGetFields.COLUMN_TOTAL]: BuySellData;
|
|
12
14
|
};
|
|
@@ -14,6 +16,7 @@ export declare class LicensePriceGetResult extends AbstractEntity<LicensePriceGe
|
|
|
14
16
|
#private;
|
|
15
17
|
constructor(data: LicensePriceGetData);
|
|
16
18
|
get currency(): string;
|
|
19
|
+
get priceBandArrowsphereSku(): string;
|
|
17
20
|
get unit(): BuySellFindResult;
|
|
18
21
|
get total(): BuySellFindResult;
|
|
19
22
|
toJSON(): LicensePriceGetData;
|
|
@@ -10,7 +10,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
10
10
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
11
11
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
12
12
|
};
|
|
13
|
-
var _LicensePriceGetResult_currency, _LicensePriceGetResult_unit, _LicensePriceGetResult_total;
|
|
13
|
+
var _LicensePriceGetResult_currency, _LicensePriceGetResult_priceBandArrowsphereSku, _LicensePriceGetResult_unit, _LicensePriceGetResult_total;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.LicensePriceGetResult = exports.LicensePriceGetFields = void 0;
|
|
16
16
|
const buySellFindResult_1 = require("./buySellFindResult");
|
|
@@ -18,6 +18,7 @@ const abstractEntity_1 = require("../../../abstractEntity");
|
|
|
18
18
|
var LicensePriceGetFields;
|
|
19
19
|
(function (LicensePriceGetFields) {
|
|
20
20
|
LicensePriceGetFields["COLUMN_CURRENCY"] = "currency";
|
|
21
|
+
LicensePriceGetFields["COLUMN_PRICEBAND_ARROWSPHERE_SKU"] = "priceBandArrowsphereSku";
|
|
21
22
|
LicensePriceGetFields["COLUMN_UNIT"] = "unit";
|
|
22
23
|
LicensePriceGetFields["COLUMN_TOTAL"] = "total";
|
|
23
24
|
})(LicensePriceGetFields = exports.LicensePriceGetFields || (exports.LicensePriceGetFields = {}));
|
|
@@ -25,15 +26,20 @@ class LicensePriceGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
25
26
|
constructor(data) {
|
|
26
27
|
super(data);
|
|
27
28
|
_LicensePriceGetResult_currency.set(this, void 0);
|
|
29
|
+
_LicensePriceGetResult_priceBandArrowsphereSku.set(this, void 0);
|
|
28
30
|
_LicensePriceGetResult_unit.set(this, void 0);
|
|
29
31
|
_LicensePriceGetResult_total.set(this, void 0);
|
|
30
32
|
__classPrivateFieldSet(this, _LicensePriceGetResult_currency, data[LicensePriceGetFields.COLUMN_CURRENCY], "f");
|
|
33
|
+
__classPrivateFieldSet(this, _LicensePriceGetResult_priceBandArrowsphereSku, data[LicensePriceGetFields.COLUMN_PRICEBAND_ARROWSPHERE_SKU], "f");
|
|
31
34
|
__classPrivateFieldSet(this, _LicensePriceGetResult_unit, new buySellFindResult_1.BuySellFindResult(data[LicensePriceGetFields.COLUMN_UNIT]), "f");
|
|
32
35
|
__classPrivateFieldSet(this, _LicensePriceGetResult_total, new buySellFindResult_1.BuySellFindResult(data[LicensePriceGetFields.COLUMN_TOTAL]), "f");
|
|
33
36
|
}
|
|
34
37
|
get currency() {
|
|
35
38
|
return __classPrivateFieldGet(this, _LicensePriceGetResult_currency, "f");
|
|
36
39
|
}
|
|
40
|
+
get priceBandArrowsphereSku() {
|
|
41
|
+
return __classPrivateFieldGet(this, _LicensePriceGetResult_priceBandArrowsphereSku, "f");
|
|
42
|
+
}
|
|
37
43
|
get unit() {
|
|
38
44
|
return __classPrivateFieldGet(this, _LicensePriceGetResult_unit, "f");
|
|
39
45
|
}
|
|
@@ -43,11 +49,12 @@ class LicensePriceGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
43
49
|
toJSON() {
|
|
44
50
|
return {
|
|
45
51
|
[LicensePriceGetFields.COLUMN_CURRENCY]: this.currency,
|
|
52
|
+
[LicensePriceGetFields.COLUMN_PRICEBAND_ARROWSPHERE_SKU]: __classPrivateFieldGet(this, _LicensePriceGetResult_priceBandArrowsphereSku, "f"),
|
|
46
53
|
[LicensePriceGetFields.COLUMN_UNIT]: this.unit.toJSON(),
|
|
47
54
|
[LicensePriceGetFields.COLUMN_TOTAL]: this.total.toJSON(),
|
|
48
55
|
};
|
|
49
56
|
}
|
|
50
57
|
}
|
|
51
58
|
exports.LicensePriceGetResult = LicensePriceGetResult;
|
|
52
|
-
_LicensePriceGetResult_currency = new WeakMap(), _LicensePriceGetResult_unit = new WeakMap(), _LicensePriceGetResult_total = new WeakMap();
|
|
59
|
+
_LicensePriceGetResult_currency = new WeakMap(), _LicensePriceGetResult_priceBandArrowsphereSku = new WeakMap(), _LicensePriceGetResult_unit = new WeakMap(), _LicensePriceGetResult_total = new WeakMap();
|
|
53
60
|
//# sourceMappingURL=licensePriceGetResult.js.map
|
package/package.json
CHANGED