@arrowsphere/api-client 3.20.0-rc.3 → 3.20.0
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.
|
@@ -2,6 +2,7 @@ import { AbstractEntity } from '../../../../../../abstractEntity';
|
|
|
2
2
|
export declare enum LandingPageFooterFeatureItemFields {
|
|
3
3
|
COLUMN_TITLE = "title",
|
|
4
4
|
COLUMN_DESCRIPTION = "description",
|
|
5
|
+
COLUMN_IMAGE_UUID = "imageUuid",
|
|
5
6
|
COLUMN_BUTTON_TEXT = "buttonText",
|
|
6
7
|
COLUMN_BUTTON_URL = "buttonUrl",
|
|
7
8
|
COLUMN_ICON = "icon",
|
|
@@ -10,6 +11,7 @@ export declare enum LandingPageFooterFeatureItemFields {
|
|
|
10
11
|
export declare type LandingPageFooterFeatureItemType = {
|
|
11
12
|
[LandingPageFooterFeatureItemFields.COLUMN_TITLE]?: string | undefined;
|
|
12
13
|
[LandingPageFooterFeatureItemFields.COLUMN_DESCRIPTION]?: string | undefined;
|
|
14
|
+
[LandingPageFooterFeatureItemFields.COLUMN_IMAGE_UUID]?: string | undefined;
|
|
13
15
|
[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_TEXT]?: string | undefined;
|
|
14
16
|
[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_URL]?: string | undefined;
|
|
15
17
|
[LandingPageFooterFeatureItemFields.COLUMN_ICON]?: string | undefined;
|
|
@@ -20,6 +22,7 @@ export declare class LandingPageFooterFeatureItem extends AbstractEntity<Landing
|
|
|
20
22
|
constructor(landingPageFooterFeatureItemInput: LandingPageFooterFeatureItemType);
|
|
21
23
|
get title(): string | undefined;
|
|
22
24
|
get description(): string | undefined;
|
|
25
|
+
get imageUuid(): string | undefined;
|
|
23
26
|
get buttonText(): string | undefined;
|
|
24
27
|
get buttonUrl(): string | undefined;
|
|
25
28
|
get icon(): string | undefined;
|
|
@@ -12,7 +12,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
12
12
|
}
|
|
13
13
|
return privateMap.get(receiver);
|
|
14
14
|
};
|
|
15
|
-
var _title, _description, _buttonText, _buttonUrl, _icon, _size;
|
|
15
|
+
var _title, _description, _imageUuid, _buttonText, _buttonUrl, _icon, _size;
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.LandingPageFooterFeatureItem = exports.LandingPageFooterFeatureItemFields = void 0;
|
|
18
18
|
const abstractEntity_1 = require("../../../../../../abstractEntity");
|
|
@@ -20,6 +20,7 @@ var LandingPageFooterFeatureItemFields;
|
|
|
20
20
|
(function (LandingPageFooterFeatureItemFields) {
|
|
21
21
|
LandingPageFooterFeatureItemFields["COLUMN_TITLE"] = "title";
|
|
22
22
|
LandingPageFooterFeatureItemFields["COLUMN_DESCRIPTION"] = "description";
|
|
23
|
+
LandingPageFooterFeatureItemFields["COLUMN_IMAGE_UUID"] = "imageUuid";
|
|
23
24
|
LandingPageFooterFeatureItemFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
24
25
|
LandingPageFooterFeatureItemFields["COLUMN_BUTTON_URL"] = "buttonUrl";
|
|
25
26
|
LandingPageFooterFeatureItemFields["COLUMN_ICON"] = "icon";
|
|
@@ -30,12 +31,14 @@ class LandingPageFooterFeatureItem extends abstractEntity_1.AbstractEntity {
|
|
|
30
31
|
super(landingPageFooterFeatureItemInput);
|
|
31
32
|
_title.set(this, void 0);
|
|
32
33
|
_description.set(this, void 0);
|
|
34
|
+
_imageUuid.set(this, void 0);
|
|
33
35
|
_buttonText.set(this, void 0);
|
|
34
36
|
_buttonUrl.set(this, void 0);
|
|
35
37
|
_icon.set(this, void 0);
|
|
36
38
|
_size.set(this, void 0);
|
|
37
39
|
__classPrivateFieldSet(this, _title, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_TITLE]);
|
|
38
40
|
__classPrivateFieldSet(this, _description, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_DESCRIPTION]);
|
|
41
|
+
__classPrivateFieldSet(this, _imageUuid, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_IMAGE_UUID]);
|
|
39
42
|
__classPrivateFieldSet(this, _buttonText, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_TEXT]);
|
|
40
43
|
__classPrivateFieldSet(this, _buttonUrl, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_URL]);
|
|
41
44
|
__classPrivateFieldSet(this, _icon, landingPageFooterFeatureItemInput[LandingPageFooterFeatureItemFields.COLUMN_ICON]);
|
|
@@ -47,6 +50,9 @@ class LandingPageFooterFeatureItem extends abstractEntity_1.AbstractEntity {
|
|
|
47
50
|
get description() {
|
|
48
51
|
return __classPrivateFieldGet(this, _description);
|
|
49
52
|
}
|
|
53
|
+
get imageUuid() {
|
|
54
|
+
return __classPrivateFieldGet(this, _imageUuid);
|
|
55
|
+
}
|
|
50
56
|
get buttonText() {
|
|
51
57
|
return __classPrivateFieldGet(this, _buttonText);
|
|
52
58
|
}
|
|
@@ -63,6 +69,7 @@ class LandingPageFooterFeatureItem extends abstractEntity_1.AbstractEntity {
|
|
|
63
69
|
return {
|
|
64
70
|
[LandingPageFooterFeatureItemFields.COLUMN_TITLE]: this.title,
|
|
65
71
|
[LandingPageFooterFeatureItemFields.COLUMN_DESCRIPTION]: this.description,
|
|
72
|
+
[LandingPageFooterFeatureItemFields.COLUMN_IMAGE_UUID]: this.imageUuid,
|
|
66
73
|
[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_TEXT]: this.buttonText,
|
|
67
74
|
[LandingPageFooterFeatureItemFields.COLUMN_BUTTON_URL]: this.buttonUrl,
|
|
68
75
|
[LandingPageFooterFeatureItemFields.COLUMN_ICON]: this.icon,
|
|
@@ -71,5 +78,5 @@ class LandingPageFooterFeatureItem extends abstractEntity_1.AbstractEntity {
|
|
|
71
78
|
}
|
|
72
79
|
}
|
|
73
80
|
exports.LandingPageFooterFeatureItem = LandingPageFooterFeatureItem;
|
|
74
|
-
_title = new WeakMap(), _description = new WeakMap(), _buttonText = new WeakMap(), _buttonUrl = new WeakMap(), _icon = new WeakMap(), _size = new WeakMap();
|
|
81
|
+
_title = new WeakMap(), _description = new WeakMap(), _imageUuid = new WeakMap(), _buttonText = new WeakMap(), _buttonUrl = new WeakMap(), _icon = new WeakMap(), _size = new WeakMap();
|
|
75
82
|
//# sourceMappingURL=landingPageFooterFeatureItem.js.map
|
package/package.json
CHANGED