@arrowsphere/api-client 1.0.1 → 2.0.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.
Files changed (43) hide show
  1. package/CHANGELOG.md +70 -2
  2. package/UPGRADING.md +43 -0
  3. package/build/licenses/entities/filterFindResult.d.ts +2 -2
  4. package/build/licenses/entities/findResult.d.ts +17 -9
  5. package/build/licenses/entities/findResult.js +4 -4
  6. package/build/licenses/entities/license/activeSeatsFindResult.d.ts +29 -0
  7. package/build/licenses/entities/license/activeSeatsFindResult.js +47 -0
  8. package/build/licenses/entities/license/configFindResult.d.ts +37 -0
  9. package/build/licenses/entities/license/configFindResult.js +59 -0
  10. package/build/licenses/entities/license/licenseFindResult.d.ts +266 -13
  11. package/build/licenses/entities/license/licenseFindResult.js +324 -13
  12. package/build/licenses/entities/license/priceFindResult.d.ts +54 -0
  13. package/build/licenses/entities/license/priceFindResult.js +76 -0
  14. package/build/licenses/entities/license/warningFindResult.d.ts +33 -0
  15. package/build/licenses/entities/license/warningFindResult.js +51 -0
  16. package/build/licenses/entities/offer/actionFlagsFindResult.d.ts +37 -0
  17. package/build/licenses/entities/offer/actionFlagsFindResult.js +59 -0
  18. package/build/licenses/entities/offer/offerFindResult.d.ts +63 -0
  19. package/build/licenses/entities/offer/offerFindResult.js +109 -0
  20. package/build/licenses/entities/offer/priceBandFindResult.d.ts +72 -0
  21. package/build/licenses/entities/offer/priceBandFindResult.js +131 -0
  22. package/build/licenses/entities/offer/priceband/billingFindResult.d.ts +37 -0
  23. package/build/licenses/entities/offer/priceband/billingFindResult.js +59 -0
  24. package/build/licenses/entities/offer/priceband/identifiers/arrowsphereFindResult.d.ts +25 -0
  25. package/build/licenses/entities/offer/priceband/identifiers/arrowsphereFindResult.js +43 -0
  26. package/build/licenses/entities/offer/priceband/identifiersFindResult.d.ts +25 -0
  27. package/build/licenses/entities/offer/priceband/identifiersFindResult.js +47 -0
  28. package/build/licenses/entities/offer/priceband/priceBandActionFlagsFindResult.d.ts +49 -0
  29. package/build/licenses/entities/offer/priceband/priceBandActionFlagsFindResult.js +80 -0
  30. package/build/licenses/entities/offer/priceband/priceBandPriceFindResult.d.ts +37 -0
  31. package/build/licenses/entities/offer/priceband/priceBandPriceFindResult.js +59 -0
  32. package/build/licenses/entities/offer/priceband/saleConstraintsFindResult.d.ts +29 -0
  33. package/build/licenses/entities/offer/priceband/saleConstraintsFindResult.js +47 -0
  34. package/build/licenses/index.d.ts +14 -3
  35. package/build/licenses/index.js +14 -3
  36. package/build/licenses/licensesClient.d.ts +96 -18
  37. package/build/licenses/licensesClient.js +95 -3
  38. package/build/publicApiClient.js +3 -1
  39. package/package.json +2 -2
  40. package/build/licenses/entities/license/abstractLicense.d.ts +0 -177
  41. package/build/licenses/entities/license/abstractLicense.js +0 -363
  42. package/build/licenses/entities/offer/licenseOfferFindResult.d.ts +0 -108
  43. package/build/licenses/entities/offer/licenseOfferFindResult.js +0 -232
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {
3
+ if (!privateMap.has(receiver)) {
4
+ throw new TypeError("attempted to set private field on non-instance");
5
+ }
6
+ privateMap.set(receiver, value);
7
+ return value;
8
+ };
9
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {
10
+ if (!privateMap.has(receiver)) {
11
+ throw new TypeError("attempted to get private field on non-instance");
12
+ }
13
+ return privateMap.get(receiver);
14
+ };
15
+ var _isAutoRenew, _isManualProvisioning, _renewalSku;
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.ActionFlagsFindResult = exports.ActionFlagsFindResultFields = void 0;
18
+ const abstractEntity_1 = require("../../../abstractEntity");
19
+ var ActionFlagsFindResultFields;
20
+ (function (ActionFlagsFindResultFields) {
21
+ ActionFlagsFindResultFields["COLUMN_IS_AUTO_RENEW"] = "isAutoRenew";
22
+ ActionFlagsFindResultFields["COLUMN_MANUAL_PROVISIONING"] = "isManualProvisioning";
23
+ ActionFlagsFindResultFields["COLUMN_RENEWAL_SKU"] = "renewalSku";
24
+ })(ActionFlagsFindResultFields = exports.ActionFlagsFindResultFields || (exports.ActionFlagsFindResultFields = {}));
25
+ class ActionFlagsFindResult extends abstractEntity_1.AbstractEntity {
26
+ constructor(data) {
27
+ super(data);
28
+ this.VALIDATION_RULES = {
29
+ [ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW]: 'required|boolean',
30
+ [ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING]: 'required|boolean',
31
+ [ActionFlagsFindResultFields.COLUMN_RENEWAL_SKU]: 'boolean',
32
+ };
33
+ _isAutoRenew.set(this, void 0);
34
+ _isManualProvisioning.set(this, void 0);
35
+ _renewalSku.set(this, void 0);
36
+ __classPrivateFieldSet(this, _isAutoRenew, data[ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW]);
37
+ __classPrivateFieldSet(this, _isManualProvisioning, data[ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING]);
38
+ __classPrivateFieldSet(this, _renewalSku, data[ActionFlagsFindResultFields.COLUMN_RENEWAL_SKU]);
39
+ }
40
+ isAutoRenew() {
41
+ return __classPrivateFieldGet(this, _isAutoRenew);
42
+ }
43
+ isManualProvisioning() {
44
+ return __classPrivateFieldGet(this, _isManualProvisioning);
45
+ }
46
+ renewalSku() {
47
+ return __classPrivateFieldGet(this, _renewalSku);
48
+ }
49
+ toJSON() {
50
+ return {
51
+ [ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW]: this.isAutoRenew(),
52
+ [ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING]: this.isManualProvisioning(),
53
+ [ActionFlagsFindResultFields.COLUMN_RENEWAL_SKU]: this.renewalSku(),
54
+ };
55
+ }
56
+ }
57
+ exports.ActionFlagsFindResult = ActionFlagsFindResult;
58
+ _isAutoRenew = new WeakMap(), _isManualProvisioning = new WeakMap(), _renewalSku = new WeakMap();
59
+ //# sourceMappingURL=actionFlagsFindResult.js.map
@@ -0,0 +1,63 @@
1
+ import { AbstractEntity } from '../../../abstractEntity';
2
+ import { Rules } from 'validatorjs';
3
+ import { DataKeywords, FiltersParameters, SortParameters } from '../../licensesClient';
4
+ import { ActionFlagsFindResult, ActionFlagsFindResultData, ActionFlagsFindResultDataFiltersParameters, ActionFlagsFindResultDataKeywords, ActionFlagsFindResultDataSortParameters } from './actionFlagsFindResult';
5
+ import { PriceBandFindResult, PriceBandFindResultData, PriceBandFindResultDataFiltersParameters, PriceBandFindResultDataKeywords, PriceBandFindResultDataSortParameters } from './priceBandFindResult';
6
+ export declare enum OfferFindResultFields {
7
+ COLUMN_ACTION_FLAGS = "actionFlags",
8
+ COLUMN_CLASSIFICATION = "classification",
9
+ COLUMN_IS_ENABLED = "isEnabled",
10
+ COLUMN_LAST_UPDATE = "lastUpdate",
11
+ COLUMN_NAME = "name",
12
+ COLUMN_PRICE_BAND = "priceBand",
13
+ COLUMN_ARROW_SUB_CATEGORIES = "arrowSubCategories"
14
+ }
15
+ export declare type OfferFindResultData = {
16
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]: ActionFlagsFindResultData;
17
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]: string;
18
+ [OfferFindResultFields.COLUMN_IS_ENABLED]: boolean;
19
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]: string;
20
+ [OfferFindResultFields.COLUMN_NAME]: string;
21
+ [OfferFindResultFields.COLUMN_PRICE_BAND]: PriceBandFindResultData;
22
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]: Array<string> | null;
23
+ };
24
+ export declare type OfferFindResultDataKeywords = {
25
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataKeywords;
26
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]?: DataKeywords;
27
+ [OfferFindResultFields.COLUMN_IS_ENABLED]?: DataKeywords;
28
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]?: DataKeywords;
29
+ [OfferFindResultFields.COLUMN_NAME]?: DataKeywords;
30
+ [OfferFindResultFields.COLUMN_PRICE_BAND]?: PriceBandFindResultDataKeywords;
31
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]?: DataKeywords;
32
+ };
33
+ export declare type OfferFindResultDataSortParameters = {
34
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataSortParameters;
35
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]?: SortParameters;
36
+ [OfferFindResultFields.COLUMN_IS_ENABLED]?: SortParameters;
37
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]?: SortParameters;
38
+ [OfferFindResultFields.COLUMN_NAME]?: SortParameters;
39
+ [OfferFindResultFields.COLUMN_PRICE_BAND]?: PriceBandFindResultDataSortParameters;
40
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]?: SortParameters;
41
+ };
42
+ export declare type OfferFindResultDataFiltersParameters = {
43
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]?: ActionFlagsFindResultDataFiltersParameters;
44
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]?: FiltersParameters;
45
+ [OfferFindResultFields.COLUMN_IS_ENABLED]?: FiltersParameters;
46
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]?: FiltersParameters;
47
+ [OfferFindResultFields.COLUMN_NAME]?: FiltersParameters;
48
+ [OfferFindResultFields.COLUMN_PRICE_BAND]?: PriceBandFindResultDataFiltersParameters;
49
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]?: FiltersParameters;
50
+ };
51
+ export declare class OfferFindResult extends AbstractEntity<OfferFindResultData> {
52
+ #private;
53
+ protected VALIDATION_RULES: Rules;
54
+ constructor(data: OfferFindResultData);
55
+ get actionFlags(): ActionFlagsFindResult;
56
+ get classification(): string;
57
+ get isEnabled(): boolean;
58
+ get lastUpdate(): string;
59
+ get name(): string;
60
+ get priceBand(): PriceBandFindResult;
61
+ get arrowSubCategories(): Array<string> | null;
62
+ toJSON(): OfferFindResultData;
63
+ }
@@ -0,0 +1,109 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {
3
+ if (!privateMap.has(receiver)) {
4
+ throw new TypeError("attempted to set private field on non-instance");
5
+ }
6
+ privateMap.set(receiver, value);
7
+ return value;
8
+ };
9
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {
10
+ if (!privateMap.has(receiver)) {
11
+ throw new TypeError("attempted to get private field on non-instance");
12
+ }
13
+ return privateMap.get(receiver);
14
+ };
15
+ var _actionFlags, _classification, _isEnabled, _lastUpdate, _name, _priceBand, _arrowSubCategories;
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.OfferFindResult = exports.OfferFindResultFields = void 0;
18
+ const abstractEntity_1 = require("../../../abstractEntity");
19
+ const actionFlagsFindResult_1 = require("./actionFlagsFindResult");
20
+ const priceBandFindResult_1 = require("./priceBandFindResult");
21
+ var OfferFindResultFields;
22
+ (function (OfferFindResultFields) {
23
+ OfferFindResultFields["COLUMN_ACTION_FLAGS"] = "actionFlags";
24
+ OfferFindResultFields["COLUMN_CLASSIFICATION"] = "classification";
25
+ OfferFindResultFields["COLUMN_IS_ENABLED"] = "isEnabled";
26
+ OfferFindResultFields["COLUMN_LAST_UPDATE"] = "lastUpdate";
27
+ OfferFindResultFields["COLUMN_NAME"] = "name";
28
+ OfferFindResultFields["COLUMN_PRICE_BAND"] = "priceBand";
29
+ OfferFindResultFields["COLUMN_ARROW_SUB_CATEGORIES"] = "arrowSubCategories";
30
+ })(OfferFindResultFields = exports.OfferFindResultFields || (exports.OfferFindResultFields = {}));
31
+ class OfferFindResult extends abstractEntity_1.AbstractEntity {
32
+ constructor(data) {
33
+ super(data);
34
+ this.VALIDATION_RULES = {
35
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]: 'required|array',
36
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]: 'required|string',
37
+ [OfferFindResultFields.COLUMN_IS_ENABLED]: 'required|boolean',
38
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]: 'required|string',
39
+ [OfferFindResultFields.COLUMN_NAME]: 'required|string',
40
+ [OfferFindResultFields.COLUMN_PRICE_BAND]: 'required|array',
41
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]: 'required',
42
+ };
43
+ _actionFlags.set(this, void 0);
44
+ _classification.set(this, void 0);
45
+ _isEnabled.set(this, void 0);
46
+ _lastUpdate.set(this, void 0);
47
+ _name.set(this, void 0);
48
+ _priceBand.set(this, void 0);
49
+ _arrowSubCategories.set(this, void 0);
50
+ const actionFlags = {
51
+ [actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW]: data[OfferFindResultFields.COLUMN_ACTION_FLAGS][actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_IS_AUTO_RENEW],
52
+ [actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING]: data[OfferFindResultFields.COLUMN_ACTION_FLAGS][actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_MANUAL_PROVISIONING],
53
+ [actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_RENEWAL_SKU]: data[OfferFindResultFields.COLUMN_ACTION_FLAGS][actionFlagsFindResult_1.ActionFlagsFindResultFields.COLUMN_RENEWAL_SKU],
54
+ };
55
+ __classPrivateFieldSet(this, _actionFlags, new actionFlagsFindResult_1.ActionFlagsFindResult(actionFlags));
56
+ __classPrivateFieldSet(this, _classification, data[OfferFindResultFields.COLUMN_CLASSIFICATION]);
57
+ __classPrivateFieldSet(this, _isEnabled, data[OfferFindResultFields.COLUMN_IS_ENABLED]);
58
+ __classPrivateFieldSet(this, _lastUpdate, data[OfferFindResultFields.COLUMN_LAST_UPDATE]);
59
+ __classPrivateFieldSet(this, _name, data[OfferFindResultFields.COLUMN_NAME]);
60
+ const priceBand = {
61
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_ACTION_FLAGS]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_ACTION_FLAGS],
62
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_BILLING]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_BILLING],
63
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_CURRENCY]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_CURRENCY],
64
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_IS_ENABLED]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_IS_ENABLED],
65
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_MARKETPLACE]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_MARKETPLACE],
66
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_PRICES]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_PRICES],
67
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS],
68
+ [priceBandFindResult_1.PriceBandFindResultFields.COLUMN_IDENTIFIERS]: data[OfferFindResultFields.COLUMN_PRICE_BAND][priceBandFindResult_1.PriceBandFindResultFields.COLUMN_IDENTIFIERS],
69
+ };
70
+ __classPrivateFieldSet(this, _priceBand, new priceBandFindResult_1.PriceBandFindResult(priceBand));
71
+ __classPrivateFieldSet(this, _arrowSubCategories, data[OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]);
72
+ }
73
+ get actionFlags() {
74
+ return __classPrivateFieldGet(this, _actionFlags);
75
+ }
76
+ get classification() {
77
+ return __classPrivateFieldGet(this, _classification);
78
+ }
79
+ get isEnabled() {
80
+ return __classPrivateFieldGet(this, _isEnabled);
81
+ }
82
+ get lastUpdate() {
83
+ return __classPrivateFieldGet(this, _lastUpdate);
84
+ }
85
+ get name() {
86
+ return __classPrivateFieldGet(this, _name);
87
+ }
88
+ get priceBand() {
89
+ return __classPrivateFieldGet(this, _priceBand);
90
+ }
91
+ get arrowSubCategories() {
92
+ return __classPrivateFieldGet(this, _arrowSubCategories);
93
+ }
94
+ toJSON() {
95
+ return {
96
+ [OfferFindResultFields.COLUMN_ACTION_FLAGS]: this.actionFlags.toJSON(),
97
+ [OfferFindResultFields.COLUMN_CLASSIFICATION]: this.classification,
98
+ [OfferFindResultFields.COLUMN_IS_ENABLED]: this.isEnabled,
99
+ [OfferFindResultFields.COLUMN_LAST_UPDATE]: this.lastUpdate,
100
+ [OfferFindResultFields.COLUMN_NAME]: this.name,
101
+ [OfferFindResultFields.COLUMN_PRICE_BAND]: this.priceBand.toJSON(),
102
+ [OfferFindResultFields.COLUMN_ARROW_SUB_CATEGORIES]: this
103
+ .arrowSubCategories,
104
+ };
105
+ }
106
+ }
107
+ exports.OfferFindResult = OfferFindResult;
108
+ _actionFlags = new WeakMap(), _classification = new WeakMap(), _isEnabled = new WeakMap(), _lastUpdate = new WeakMap(), _name = new WeakMap(), _priceBand = new WeakMap(), _arrowSubCategories = new WeakMap();
109
+ //# sourceMappingURL=offerFindResult.js.map
@@ -0,0 +1,72 @@
1
+ import { AbstractEntity } from '../../../abstractEntity';
2
+ import { Rules } from 'validatorjs';
3
+ import { DataKeywords, FiltersParameters, SortParameters } from '../../licensesClient';
4
+ import { PriceBandActionFlagsFindResultDataKeywords, PriceBandActionFlagsFindResultData, PriceBandActionFlagsDataFindResultSortParameters, PriceBandActionFlagsFindResultDataFiltersParameters, PriceBandActionFlagsFindResult } from './priceband/priceBandActionFlagsFindResult';
5
+ import { BillingFindResult, BillingFindResultData, BillingFindResultDataFiltersParameters, BillingFindResultDataKeywords, BillingFindResultDataSortParameters } from './priceband/billingFindResult';
6
+ import { PriceBandPriceFindResult, PriceBandPriceFindResultData, PriceBandPriceFindResultDataFiltersParameters, PriceBandPriceFindResultDataKeywords, PriceBandPriceFindResultDataSortParameters } from './priceband/priceBandPriceFindResult';
7
+ import { SaleConstraintsFindResult, SaleConstraintsFindResultData, SaleConstraintsFindResultDataFiltersParameters, SaleConstraintsFindResultDataKeywords, SaleConstraintsFindResultDataSortParameters } from './priceband/saleConstraintsFindResult';
8
+ import { IdentifiersFindResult, IdentifiersFindResultData, IdentifiersFindResultDataFiltersParameters, IdentifiersFindResultDataKeywords, IdentifiersFindResultDataSortParameters } from './priceband/identifiersFindResult';
9
+ export declare enum PriceBandFindResultFields {
10
+ COLUMN_ACTION_FLAGS = "actionFlags",
11
+ COLUMN_BILLING = "billing",
12
+ COLUMN_CURRENCY = "currency",
13
+ COLUMN_IS_ENABLED = "isEnabled",
14
+ COLUMN_MARKETPLACE = "marketplace",
15
+ COLUMN_PRICES = "prices",
16
+ COLUMN_SALE_CONSTRAINTS = "saleConstraints",
17
+ COLUMN_IDENTIFIERS = "identifiers"
18
+ }
19
+ export declare type PriceBandFindResultData = {
20
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]: PriceBandActionFlagsFindResultData;
21
+ [PriceBandFindResultFields.COLUMN_BILLING]: BillingFindResultData;
22
+ [PriceBandFindResultFields.COLUMN_CURRENCY]: string;
23
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]: boolean;
24
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]: string;
25
+ [PriceBandFindResultFields.COLUMN_PRICES]: PriceBandPriceFindResultData;
26
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]: SaleConstraintsFindResultData;
27
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]: IdentifiersFindResultData;
28
+ };
29
+ export declare type PriceBandFindResultDataKeywords = {
30
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]?: PriceBandActionFlagsFindResultDataKeywords;
31
+ [PriceBandFindResultFields.COLUMN_BILLING]?: BillingFindResultDataKeywords;
32
+ [PriceBandFindResultFields.COLUMN_CURRENCY]?: DataKeywords;
33
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]?: DataKeywords;
34
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]?: DataKeywords;
35
+ [PriceBandFindResultFields.COLUMN_PRICES]?: PriceBandPriceFindResultDataKeywords;
36
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]?: SaleConstraintsFindResultDataKeywords;
37
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]?: IdentifiersFindResultDataKeywords;
38
+ };
39
+ export declare type PriceBandFindResultDataSortParameters = {
40
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]?: PriceBandActionFlagsDataFindResultSortParameters;
41
+ [PriceBandFindResultFields.COLUMN_BILLING]?: BillingFindResultDataSortParameters;
42
+ [PriceBandFindResultFields.COLUMN_CURRENCY]?: SortParameters;
43
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]?: SortParameters;
44
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]?: SortParameters;
45
+ [PriceBandFindResultFields.COLUMN_PRICES]?: PriceBandPriceFindResultDataSortParameters;
46
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]?: SaleConstraintsFindResultDataSortParameters;
47
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]?: IdentifiersFindResultDataSortParameters;
48
+ };
49
+ export declare type PriceBandFindResultDataFiltersParameters = {
50
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]?: PriceBandActionFlagsFindResultDataFiltersParameters;
51
+ [PriceBandFindResultFields.COLUMN_BILLING]?: BillingFindResultDataFiltersParameters;
52
+ [PriceBandFindResultFields.COLUMN_CURRENCY]?: FiltersParameters;
53
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]?: FiltersParameters;
54
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]?: FiltersParameters;
55
+ [PriceBandFindResultFields.COLUMN_PRICES]?: PriceBandPriceFindResultDataFiltersParameters;
56
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]?: SaleConstraintsFindResultDataFiltersParameters;
57
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]?: IdentifiersFindResultDataFiltersParameters;
58
+ };
59
+ export declare class PriceBandFindResult extends AbstractEntity<PriceBandFindResultData> {
60
+ #private;
61
+ protected VALIDATION_RULES: Rules;
62
+ constructor(data: PriceBandFindResultData);
63
+ get actionFlags(): PriceBandActionFlagsFindResult;
64
+ get billing(): BillingFindResult;
65
+ get currency(): string;
66
+ get isEnabled(): boolean;
67
+ get marketplace(): string;
68
+ get prices(): PriceBandPriceFindResult;
69
+ get saleConstraints(): SaleConstraintsFindResult;
70
+ get identifiers(): IdentifiersFindResult;
71
+ toJSON(): PriceBandFindResultData;
72
+ }
@@ -0,0 +1,131 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {
3
+ if (!privateMap.has(receiver)) {
4
+ throw new TypeError("attempted to set private field on non-instance");
5
+ }
6
+ privateMap.set(receiver, value);
7
+ return value;
8
+ };
9
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {
10
+ if (!privateMap.has(receiver)) {
11
+ throw new TypeError("attempted to get private field on non-instance");
12
+ }
13
+ return privateMap.get(receiver);
14
+ };
15
+ var _actionFlags, _billing, _currency, _isEnabled, _marketplace, _prices, _saleConstraints, _identifiers;
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.PriceBandFindResult = exports.PriceBandFindResultFields = void 0;
18
+ const abstractEntity_1 = require("../../../abstractEntity");
19
+ const priceBandActionFlagsFindResult_1 = require("./priceband/priceBandActionFlagsFindResult");
20
+ const billingFindResult_1 = require("./priceband/billingFindResult");
21
+ const priceBandPriceFindResult_1 = require("./priceband/priceBandPriceFindResult");
22
+ const saleConstraintsFindResult_1 = require("./priceband/saleConstraintsFindResult");
23
+ const identifiersFindResult_1 = require("./priceband/identifiersFindResult");
24
+ const arrowsphereFindResult_1 = require("./priceband/identifiers/arrowsphereFindResult");
25
+ var PriceBandFindResultFields;
26
+ (function (PriceBandFindResultFields) {
27
+ PriceBandFindResultFields["COLUMN_ACTION_FLAGS"] = "actionFlags";
28
+ PriceBandFindResultFields["COLUMN_BILLING"] = "billing";
29
+ PriceBandFindResultFields["COLUMN_CURRENCY"] = "currency";
30
+ PriceBandFindResultFields["COLUMN_IS_ENABLED"] = "isEnabled";
31
+ PriceBandFindResultFields["COLUMN_MARKETPLACE"] = "marketplace";
32
+ PriceBandFindResultFields["COLUMN_PRICES"] = "prices";
33
+ PriceBandFindResultFields["COLUMN_SALE_CONSTRAINTS"] = "saleConstraints";
34
+ PriceBandFindResultFields["COLUMN_IDENTIFIERS"] = "identifiers";
35
+ })(PriceBandFindResultFields = exports.PriceBandFindResultFields || (exports.PriceBandFindResultFields = {}));
36
+ class PriceBandFindResult extends abstractEntity_1.AbstractEntity {
37
+ constructor(data) {
38
+ super(data);
39
+ this.VALIDATION_RULES = {
40
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]: 'required|array',
41
+ [PriceBandFindResultFields.COLUMN_BILLING]: 'required|array',
42
+ [PriceBandFindResultFields.COLUMN_CURRENCY]: 'required',
43
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]: 'required|boolean',
44
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]: 'required',
45
+ [PriceBandFindResultFields.COLUMN_PRICES]: 'required|array',
46
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]: 'required|array',
47
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]: 'required|array',
48
+ };
49
+ _actionFlags.set(this, void 0);
50
+ _billing.set(this, void 0);
51
+ _currency.set(this, void 0);
52
+ _isEnabled.set(this, void 0);
53
+ _marketplace.set(this, void 0);
54
+ _prices.set(this, void 0);
55
+ _saleConstraints.set(this, void 0);
56
+ _identifiers.set(this, void 0);
57
+ const actionFlags = {
58
+ [priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_CANCELLED]: data[PriceBandFindResultFields.COLUMN_ACTION_FLAGS][priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_CANCELLED],
59
+ [priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_REACTIVATED]: data[PriceBandFindResultFields.COLUMN_ACTION_FLAGS][priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_REACTIVATED],
60
+ [priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_SUSPENDED]: data[PriceBandFindResultFields.COLUMN_ACTION_FLAGS][priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_BE_SUSPENDED],
61
+ [priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_DECREASE_SEATS]: data[PriceBandFindResultFields.COLUMN_ACTION_FLAGS][priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_DECREASE_SEATS],
62
+ [priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_INCREASE_SEATS]: data[PriceBandFindResultFields.COLUMN_ACTION_FLAGS][priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResultFields.COLUMN_CAN_INCREASE_SEATS],
63
+ };
64
+ __classPrivateFieldSet(this, _actionFlags, new priceBandActionFlagsFindResult_1.PriceBandActionFlagsFindResult(actionFlags));
65
+ const billing = {
66
+ [billingFindResult_1.BillingFindResultFields.COLUMN_CYCLE]: data[PriceBandFindResultFields.COLUMN_BILLING][billingFindResult_1.BillingFindResultFields.COLUMN_CYCLE],
67
+ [billingFindResult_1.BillingFindResultFields.COLUMN_TERM]: data[PriceBandFindResultFields.COLUMN_BILLING][billingFindResult_1.BillingFindResultFields.COLUMN_TERM],
68
+ [billingFindResult_1.BillingFindResultFields.COLUMN_TYPE]: data[PriceBandFindResultFields.COLUMN_BILLING][billingFindResult_1.BillingFindResultFields.COLUMN_TYPE],
69
+ };
70
+ __classPrivateFieldSet(this, _billing, new billingFindResult_1.BillingFindResult(billing));
71
+ __classPrivateFieldSet(this, _currency, data[PriceBandFindResultFields.COLUMN_CURRENCY]);
72
+ __classPrivateFieldSet(this, _isEnabled, data[PriceBandFindResultFields.COLUMN_IS_ENABLED]);
73
+ __classPrivateFieldSet(this, _marketplace, data[PriceBandFindResultFields.COLUMN_MARKETPLACE]);
74
+ const prices = {
75
+ [priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_BUY]: data[PriceBandFindResultFields.COLUMN_PRICES][priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_BUY],
76
+ [priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_SELL]: data[PriceBandFindResultFields.COLUMN_PRICES][priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_SELL],
77
+ [priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_PUBLIC]: data[PriceBandFindResultFields.COLUMN_PRICES][priceBandPriceFindResult_1.PriceBandPriceFindResultFields.COLUMN_PUBLIC],
78
+ };
79
+ __classPrivateFieldSet(this, _prices, new priceBandPriceFindResult_1.PriceBandPriceFindResult(prices));
80
+ const saleConstraints = {
81
+ [saleConstraintsFindResult_1.SaleConstraintsFindResultFields.COLUMN_MIN_QUANTITY]: data[PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS][saleConstraintsFindResult_1.SaleConstraintsFindResultFields.COLUMN_MIN_QUANTITY],
82
+ [saleConstraintsFindResult_1.SaleConstraintsFindResultFields.COLUMN_MAX_QUANTITY]: data[PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS][saleConstraintsFindResult_1.SaleConstraintsFindResultFields.COLUMN_MAX_QUANTITY],
83
+ };
84
+ __classPrivateFieldSet(this, _saleConstraints, new saleConstraintsFindResult_1.SaleConstraintsFindResult(saleConstraints));
85
+ const identifiers = {
86
+ [identifiersFindResult_1.IdentifiersFindResultFields.COLUMN_ARROWSPHERE]: {
87
+ [arrowsphereFindResult_1.ArrowsphereFindResultFields.COLUMN_SKU]: data[PriceBandFindResultFields.COLUMN_IDENTIFIERS][identifiersFindResult_1.IdentifiersFindResultFields.COLUMN_ARROWSPHERE][arrowsphereFindResult_1.ArrowsphereFindResultFields.COLUMN_SKU],
88
+ },
89
+ };
90
+ __classPrivateFieldSet(this, _identifiers, new identifiersFindResult_1.IdentifiersFindResult(identifiers));
91
+ }
92
+ get actionFlags() {
93
+ return __classPrivateFieldGet(this, _actionFlags);
94
+ }
95
+ get billing() {
96
+ return __classPrivateFieldGet(this, _billing);
97
+ }
98
+ get currency() {
99
+ return __classPrivateFieldGet(this, _currency);
100
+ }
101
+ get isEnabled() {
102
+ return __classPrivateFieldGet(this, _isEnabled);
103
+ }
104
+ get marketplace() {
105
+ return __classPrivateFieldGet(this, _marketplace);
106
+ }
107
+ get prices() {
108
+ return __classPrivateFieldGet(this, _prices);
109
+ }
110
+ get saleConstraints() {
111
+ return __classPrivateFieldGet(this, _saleConstraints);
112
+ }
113
+ get identifiers() {
114
+ return __classPrivateFieldGet(this, _identifiers);
115
+ }
116
+ toJSON() {
117
+ return {
118
+ [PriceBandFindResultFields.COLUMN_ACTION_FLAGS]: this.actionFlags.toJSON(),
119
+ [PriceBandFindResultFields.COLUMN_BILLING]: this.billing.toJSON(),
120
+ [PriceBandFindResultFields.COLUMN_CURRENCY]: this.currency,
121
+ [PriceBandFindResultFields.COLUMN_IS_ENABLED]: this.isEnabled,
122
+ [PriceBandFindResultFields.COLUMN_MARKETPLACE]: this.marketplace,
123
+ [PriceBandFindResultFields.COLUMN_PRICES]: this.prices.toJSON(),
124
+ [PriceBandFindResultFields.COLUMN_SALE_CONSTRAINTS]: this.saleConstraints.toJSON(),
125
+ [PriceBandFindResultFields.COLUMN_IDENTIFIERS]: this.identifiers.toJSON(),
126
+ };
127
+ }
128
+ }
129
+ exports.PriceBandFindResult = PriceBandFindResult;
130
+ _actionFlags = new WeakMap(), _billing = new WeakMap(), _currency = new WeakMap(), _isEnabled = new WeakMap(), _marketplace = new WeakMap(), _prices = new WeakMap(), _saleConstraints = new WeakMap(), _identifiers = new WeakMap();
131
+ //# sourceMappingURL=priceBandFindResult.js.map
@@ -0,0 +1,37 @@
1
+ import { DataKeywords, FiltersParameters, SortParameters } from '../../../licensesClient';
2
+ import { AbstractEntity } from '../../../../abstractEntity';
3
+ import { Rules } from 'validatorjs';
4
+ export declare enum BillingFindResultFields {
5
+ COLUMN_CYCLE = "cycle",
6
+ COLUMN_TERM = "term",
7
+ COLUMN_TYPE = "type"
8
+ }
9
+ export declare type BillingFindResultData = {
10
+ [BillingFindResultFields.COLUMN_CYCLE]: number;
11
+ [BillingFindResultFields.COLUMN_TERM]: number;
12
+ [BillingFindResultFields.COLUMN_TYPE]: string;
13
+ };
14
+ export declare type BillingFindResultDataKeywords = {
15
+ [BillingFindResultFields.COLUMN_CYCLE]?: DataKeywords;
16
+ [BillingFindResultFields.COLUMN_TERM]?: DataKeywords;
17
+ [BillingFindResultFields.COLUMN_TYPE]?: DataKeywords;
18
+ };
19
+ export declare type BillingFindResultDataSortParameters = {
20
+ [BillingFindResultFields.COLUMN_CYCLE]?: SortParameters;
21
+ [BillingFindResultFields.COLUMN_TERM]?: SortParameters;
22
+ [BillingFindResultFields.COLUMN_TYPE]?: SortParameters;
23
+ };
24
+ export declare type BillingFindResultDataFiltersParameters = {
25
+ [BillingFindResultFields.COLUMN_CYCLE]?: FiltersParameters;
26
+ [BillingFindResultFields.COLUMN_TERM]?: FiltersParameters;
27
+ [BillingFindResultFields.COLUMN_TYPE]?: FiltersParameters;
28
+ };
29
+ export declare class BillingFindResult extends AbstractEntity<BillingFindResultData> {
30
+ #private;
31
+ protected VALIDATION_RULES: Rules;
32
+ constructor(data: BillingFindResultData);
33
+ get cycle(): number;
34
+ get term(): number;
35
+ get type(): string;
36
+ toJSON(): BillingFindResultData;
37
+ }
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {
3
+ if (!privateMap.has(receiver)) {
4
+ throw new TypeError("attempted to set private field on non-instance");
5
+ }
6
+ privateMap.set(receiver, value);
7
+ return value;
8
+ };
9
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {
10
+ if (!privateMap.has(receiver)) {
11
+ throw new TypeError("attempted to get private field on non-instance");
12
+ }
13
+ return privateMap.get(receiver);
14
+ };
15
+ var _cycle, _term, _type;
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.BillingFindResult = exports.BillingFindResultFields = void 0;
18
+ const abstractEntity_1 = require("../../../../abstractEntity");
19
+ var BillingFindResultFields;
20
+ (function (BillingFindResultFields) {
21
+ BillingFindResultFields["COLUMN_CYCLE"] = "cycle";
22
+ BillingFindResultFields["COLUMN_TERM"] = "term";
23
+ BillingFindResultFields["COLUMN_TYPE"] = "type";
24
+ })(BillingFindResultFields = exports.BillingFindResultFields || (exports.BillingFindResultFields = {}));
25
+ class BillingFindResult extends abstractEntity_1.AbstractEntity {
26
+ constructor(data) {
27
+ super(data);
28
+ this.VALIDATION_RULES = {
29
+ [BillingFindResultFields.COLUMN_CYCLE]: 'required|numeric',
30
+ [BillingFindResultFields.COLUMN_TERM]: 'required|numeric',
31
+ [BillingFindResultFields.COLUMN_TYPE]: 'required|string',
32
+ };
33
+ _cycle.set(this, void 0);
34
+ _term.set(this, void 0);
35
+ _type.set(this, void 0);
36
+ __classPrivateFieldSet(this, _cycle, data[BillingFindResultFields.COLUMN_CYCLE]);
37
+ __classPrivateFieldSet(this, _term, data[BillingFindResultFields.COLUMN_TERM]);
38
+ __classPrivateFieldSet(this, _type, data[BillingFindResultFields.COLUMN_TYPE]);
39
+ }
40
+ get cycle() {
41
+ return __classPrivateFieldGet(this, _cycle);
42
+ }
43
+ get term() {
44
+ return __classPrivateFieldGet(this, _term);
45
+ }
46
+ get type() {
47
+ return __classPrivateFieldGet(this, _type);
48
+ }
49
+ toJSON() {
50
+ return {
51
+ [BillingFindResultFields.COLUMN_CYCLE]: this.cycle,
52
+ [BillingFindResultFields.COLUMN_TERM]: this.term,
53
+ [BillingFindResultFields.COLUMN_TYPE]: this.type,
54
+ };
55
+ }
56
+ }
57
+ exports.BillingFindResult = BillingFindResult;
58
+ _cycle = new WeakMap(), _term = new WeakMap(), _type = new WeakMap();
59
+ //# sourceMappingURL=billingFindResult.js.map
@@ -0,0 +1,25 @@
1
+ import { AbstractEntity } from '../../../../../abstractEntity';
2
+ import { Rules } from 'validatorjs';
3
+ import { DataKeywords, FiltersParameters, SortParameters } from '../../../../licensesClient';
4
+ export declare enum ArrowsphereFindResultFields {
5
+ COLUMN_SKU = "sku"
6
+ }
7
+ export declare type ArrowsphereFindResultData = {
8
+ [ArrowsphereFindResultFields.COLUMN_SKU]: string;
9
+ };
10
+ export declare type ArrowsphereFindResultDataKeywords = {
11
+ [ArrowsphereFindResultFields.COLUMN_SKU]?: DataKeywords;
12
+ };
13
+ export declare type ArrowsphereFindResultDataSortParameters = {
14
+ [ArrowsphereFindResultFields.COLUMN_SKU]?: SortParameters;
15
+ };
16
+ export declare type ArrowsphereFindResultDataFiltersParameters = {
17
+ [ArrowsphereFindResultFields.COLUMN_SKU]?: FiltersParameters;
18
+ };
19
+ export declare class ArrowsphereFindResult extends AbstractEntity<ArrowsphereFindResultData> {
20
+ #private;
21
+ protected VALIDATION_RULES: Rules;
22
+ constructor(data: ArrowsphereFindResultData);
23
+ get arrowsphereSku(): string;
24
+ toJSON(): ArrowsphereFindResultData;
25
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, privateMap, value) {
3
+ if (!privateMap.has(receiver)) {
4
+ throw new TypeError("attempted to set private field on non-instance");
5
+ }
6
+ privateMap.set(receiver, value);
7
+ return value;
8
+ };
9
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, privateMap) {
10
+ if (!privateMap.has(receiver)) {
11
+ throw new TypeError("attempted to get private field on non-instance");
12
+ }
13
+ return privateMap.get(receiver);
14
+ };
15
+ var _arrowsphereSku;
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.ArrowsphereFindResult = exports.ArrowsphereFindResultFields = void 0;
18
+ const abstractEntity_1 = require("../../../../../abstractEntity");
19
+ var ArrowsphereFindResultFields;
20
+ (function (ArrowsphereFindResultFields) {
21
+ ArrowsphereFindResultFields["COLUMN_SKU"] = "sku";
22
+ })(ArrowsphereFindResultFields = exports.ArrowsphereFindResultFields || (exports.ArrowsphereFindResultFields = {}));
23
+ class ArrowsphereFindResult extends abstractEntity_1.AbstractEntity {
24
+ constructor(data) {
25
+ super(data);
26
+ this.VALIDATION_RULES = {
27
+ [ArrowsphereFindResultFields.COLUMN_SKU]: 'present|string',
28
+ };
29
+ _arrowsphereSku.set(this, void 0);
30
+ __classPrivateFieldSet(this, _arrowsphereSku, data[ArrowsphereFindResultFields.COLUMN_SKU]);
31
+ }
32
+ get arrowsphereSku() {
33
+ return __classPrivateFieldGet(this, _arrowsphereSku);
34
+ }
35
+ toJSON() {
36
+ return {
37
+ [ArrowsphereFindResultFields.COLUMN_SKU]: this.arrowsphereSku,
38
+ };
39
+ }
40
+ }
41
+ exports.ArrowsphereFindResult = ArrowsphereFindResult;
42
+ _arrowsphereSku = new WeakMap();
43
+ //# sourceMappingURL=arrowsphereFindResult.js.map
@@ -0,0 +1,25 @@
1
+ import { AbstractEntity } from '../../../../abstractEntity';
2
+ import { Rules } from 'validatorjs';
3
+ import { ArrowsphereFindResult, ArrowsphereFindResultData, ArrowsphereFindResultDataFiltersParameters, ArrowsphereFindResultDataKeywords, ArrowsphereFindResultDataSortParameters } from './identifiers/arrowsphereFindResult';
4
+ export declare enum IdentifiersFindResultFields {
5
+ COLUMN_ARROWSPHERE = "arrowsphere"
6
+ }
7
+ export declare type IdentifiersFindResultData = {
8
+ [IdentifiersFindResultFields.COLUMN_ARROWSPHERE]: ArrowsphereFindResultData;
9
+ };
10
+ export declare type IdentifiersFindResultDataKeywords = {
11
+ [IdentifiersFindResultFields.COLUMN_ARROWSPHERE]: ArrowsphereFindResultDataKeywords;
12
+ };
13
+ export declare type IdentifiersFindResultDataSortParameters = {
14
+ [IdentifiersFindResultFields.COLUMN_ARROWSPHERE]: ArrowsphereFindResultDataSortParameters;
15
+ };
16
+ export declare type IdentifiersFindResultDataFiltersParameters = {
17
+ [IdentifiersFindResultFields.COLUMN_ARROWSPHERE]: ArrowsphereFindResultDataFiltersParameters;
18
+ };
19
+ export declare class IdentifiersFindResult extends AbstractEntity<IdentifiersFindResultData> {
20
+ #private;
21
+ protected VALIDATION_RULES: Rules;
22
+ constructor(data: IdentifiersFindResultData);
23
+ get arrowsphere(): ArrowsphereFindResult;
24
+ toJSON(): IdentifiersFindResultData;
25
+ }