@arrowsphere/api-client 3.201.0-rc-bdj-2 → 3.201.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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.201.0] - 2025.06.26
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- [campaign] Add some missing types in the Campaign Input Types
|
|
10
|
+
|
|
6
11
|
## [3.200.0] - 2025.06.02
|
|
7
12
|
|
|
8
13
|
### Fix
|
|
@@ -15,45 +15,45 @@ export declare type PostEmailCampaignType = {
|
|
|
15
15
|
[PostEmailCampaignFields.COLUMN_METADATA]: PostEmailCampaignMetadataType;
|
|
16
16
|
};
|
|
17
17
|
export declare enum CampaignInputFields {
|
|
18
|
-
|
|
18
|
+
COLUMN_BANNER = "banner",
|
|
19
19
|
COLUMN_CATEGORY = "category",
|
|
20
|
+
COLUMN_END_DATE = "endDate",
|
|
20
21
|
COLUMN_IS_ACTIVATED = "isActivated",
|
|
21
|
-
|
|
22
|
+
COLUMN_LANDING_PAGE = "landingPage",
|
|
23
|
+
COLUMN_NAME = "name",
|
|
22
24
|
COLUMN_RULES = "rules",
|
|
23
25
|
COLUMN_START_DATE = "startDate",
|
|
24
|
-
|
|
25
|
-
COLUMN_BANNER = "banner",
|
|
26
|
-
COLUMN_LANDING_PAGE = "landingPage"
|
|
26
|
+
COLUMN_STATUS = "status"
|
|
27
27
|
}
|
|
28
28
|
export declare enum RulesInputFields {
|
|
29
|
+
COLUMN_END_CUSTOMERS = "endCustomers",
|
|
29
30
|
COLUMN_LOCATIONS = "locations",
|
|
30
|
-
COLUMN_ROLES = "roles",
|
|
31
31
|
COLUMN_MARKETPLACES = "marketplaces",
|
|
32
|
-
COLUMN_SUBSCRIPTIONS = "subscriptions",
|
|
33
32
|
COLUMN_RESELLERS = "resellers",
|
|
34
|
-
|
|
33
|
+
COLUMN_ROLES = "roles",
|
|
34
|
+
COLUMN_SUBSCRIPTIONS = "subscriptions"
|
|
35
35
|
}
|
|
36
36
|
export declare type RulesInputType = {
|
|
37
|
+
[RulesInputFields.COLUMN_END_CUSTOMERS]?: string[];
|
|
37
38
|
[RulesInputFields.COLUMN_LOCATIONS]?: string[];
|
|
38
|
-
[RulesInputFields.COLUMN_ROLES]?: string[];
|
|
39
39
|
[RulesInputFields.COLUMN_MARKETPLACES]?: string[];
|
|
40
|
-
[RulesInputFields.COLUMN_SUBSCRIPTIONS]?: string[];
|
|
41
40
|
[RulesInputFields.COLUMN_RESELLERS]?: string[];
|
|
42
|
-
[RulesInputFields.
|
|
41
|
+
[RulesInputFields.COLUMN_ROLES]?: string[];
|
|
42
|
+
[RulesInputFields.COLUMN_SUBSCRIPTIONS]?: string[];
|
|
43
43
|
};
|
|
44
44
|
export declare enum BannerInputFields {
|
|
45
|
-
COLUMN_TYPE = "type",
|
|
46
45
|
COLUMN_BUTTON_PLACEMENT = "buttonPlacement",
|
|
47
46
|
COLUMN_BUTTON_TEXT = "buttonText",
|
|
48
47
|
COLUMN_TEXT = "text",
|
|
49
|
-
COLUMN_TEXT_COLOR = "textColor"
|
|
48
|
+
COLUMN_TEXT_COLOR = "textColor",
|
|
49
|
+
COLUMN_TYPE = "type"
|
|
50
50
|
}
|
|
51
51
|
export declare type BannerInputType = {
|
|
52
|
-
[BannerInputFields.COLUMN_TYPE]?: string;
|
|
53
52
|
[BannerInputFields.COLUMN_BUTTON_PLACEMENT]?: string;
|
|
54
53
|
[BannerInputFields.COLUMN_BUTTON_TEXT]?: string;
|
|
55
54
|
[BannerInputFields.COLUMN_TEXT]?: string;
|
|
56
55
|
[BannerInputFields.COLUMN_TEXT_COLOR]?: string;
|
|
56
|
+
[BannerInputFields.COLUMN_TYPE]?: string;
|
|
57
57
|
};
|
|
58
58
|
export declare enum LandingPageHeaderInputFields {
|
|
59
59
|
COLUMN_BACKGROUND_COLOR = "backgroundColor",
|
|
@@ -65,11 +65,12 @@ export declare enum LandingPageHeaderInputFields {
|
|
|
65
65
|
export declare type LandingPageHeaderInputType = {
|
|
66
66
|
[LandingPageHeaderInputFields.COLUMN_BACKGROUND_COLOR]?: string;
|
|
67
67
|
[LandingPageHeaderInputFields.COLUMN_BASELINE]?: string;
|
|
68
|
-
[LandingPageHeaderInputFields.COLUMN_TEXT_COLOR]?: string;
|
|
69
68
|
[LandingPageHeaderInputFields.COLUMN_CIRCLE_COLOR]?: string;
|
|
69
|
+
[LandingPageHeaderInputFields.COLUMN_TEXT_COLOR]?: string;
|
|
70
70
|
[LandingPageHeaderInputFields.COLUMN_TITLE]?: string;
|
|
71
71
|
};
|
|
72
72
|
export declare enum LandingPageBodyInputFields {
|
|
73
|
+
COLUMN_BACKGROUND_COLOR = "backgroundColor",
|
|
73
74
|
COLUMN_BUTTON_TEXT = "buttonText",
|
|
74
75
|
COLUMN_CONTACT_EMAIL = "contactEmail",
|
|
75
76
|
COLUMN_DESCRIPTION = "description",
|
|
@@ -78,6 +79,7 @@ export declare enum LandingPageBodyInputFields {
|
|
|
78
79
|
COLUMN_VIDEO_URL = "videoUrl"
|
|
79
80
|
}
|
|
80
81
|
export declare type LandingPageBodyInputType = {
|
|
82
|
+
[LandingPageBodyInputFields.COLUMN_BACKGROUND_COLOR]?: string;
|
|
81
83
|
[LandingPageBodyInputFields.COLUMN_BUTTON_TEXT]?: string;
|
|
82
84
|
[LandingPageBodyInputFields.COLUMN_CONTACT_EMAIL]?: string;
|
|
83
85
|
[LandingPageBodyInputFields.COLUMN_DESCRIPTION]?: string;
|
|
@@ -86,18 +88,70 @@ export declare type LandingPageBodyInputType = {
|
|
|
86
88
|
[LandingPageBodyInputFields.COLUMN_VIDEO_URL]?: string;
|
|
87
89
|
};
|
|
88
90
|
export declare enum LandingPageFooterInputFields {
|
|
89
|
-
COLUMN_TITLE = "title",
|
|
90
91
|
COLUMN_BACKGROUND_COLOR = "backgroundColor",
|
|
91
92
|
COLUMN_BUTTON_TEXT = "buttonText",
|
|
92
93
|
COLUMN_BUTTON_URL = "buttonUrl",
|
|
93
|
-
|
|
94
|
+
COLUMN_FEATURE = "feature",
|
|
95
|
+
COLUMN_MARKETING_FEATURE = "marketingFeature",
|
|
96
|
+
COLUMN_TEXT_COLOR = "textColor",
|
|
97
|
+
COLUMN_TITLE = "title"
|
|
94
98
|
}
|
|
95
99
|
export declare type LandingPageFooterInputType = {
|
|
96
|
-
[LandingPageFooterInputFields.COLUMN_TITLE]?: string;
|
|
97
100
|
[LandingPageFooterInputFields.COLUMN_BACKGROUND_COLOR]?: string;
|
|
98
101
|
[LandingPageFooterInputFields.COLUMN_BUTTON_TEXT]?: string;
|
|
99
102
|
[LandingPageFooterInputFields.COLUMN_BUTTON_URL]?: string;
|
|
103
|
+
[LandingPageFooterInputFields.COLUMN_FEATURE]?: LandingPageFooterFeatureInputType[];
|
|
104
|
+
[LandingPageFooterInputFields.COLUMN_MARKETING_FEATURE]?: LandingPageFooterMarketingFeatureInputFields[];
|
|
100
105
|
[LandingPageFooterInputFields.COLUMN_TEXT_COLOR]?: string;
|
|
106
|
+
[LandingPageFooterInputFields.COLUMN_TITLE]?: string;
|
|
107
|
+
};
|
|
108
|
+
export declare enum LandingPageFooterFeatureInputFields {
|
|
109
|
+
COLUMN_DESCRIPTION = "description",
|
|
110
|
+
COLUMN_ITEMS = "items",
|
|
111
|
+
COLUMN_TITLE = "title"
|
|
112
|
+
}
|
|
113
|
+
export declare type LandingPageFooterFeatureInputType = {
|
|
114
|
+
[LandingPageFooterFeatureInputFields.COLUMN_DESCRIPTION]?: string;
|
|
115
|
+
[LandingPageFooterFeatureInputFields.COLUMN_ITEMS]?: LandingPageFooterFeatureItemInputType[];
|
|
116
|
+
[LandingPageFooterFeatureInputFields.COLUMN_TITLE]?: string;
|
|
117
|
+
};
|
|
118
|
+
export declare enum LandingPageFooterMarketingFeatureInputFields {
|
|
119
|
+
COLUMN_DESCRIPTION = "description",
|
|
120
|
+
COLUMN_ITEMS = "items",
|
|
121
|
+
COLUMN_TITLE = "title"
|
|
122
|
+
}
|
|
123
|
+
export declare type LandingPageFooterMarketingFeatureInputType = {
|
|
124
|
+
[LandingPageFooterFeatureInputFields.COLUMN_DESCRIPTION]?: string;
|
|
125
|
+
[LandingPageFooterFeatureInputFields.COLUMN_ITEMS]?: LandingPageFooterMarketingFeatureItemInputType[];
|
|
126
|
+
[LandingPageFooterFeatureInputFields.COLUMN_TITLE]?: string;
|
|
127
|
+
};
|
|
128
|
+
export declare enum LandingPageFooterFeatureItemInputFields {
|
|
129
|
+
COLUMN_BUTTON_TEXT = "buttonText",
|
|
130
|
+
COLUMN_BUTTON_URL = "buttonUrl",
|
|
131
|
+
COLUMN_DESCRIPTION = "description",
|
|
132
|
+
COLUMN_ICON = "icon",
|
|
133
|
+
COLUMN_TITLE = "title"
|
|
134
|
+
}
|
|
135
|
+
export declare type LandingPageFooterFeatureItemInputType = {
|
|
136
|
+
[LandingPageFooterFeatureItemInputFields.COLUMN_BUTTON_TEXT]?: string;
|
|
137
|
+
[LandingPageFooterFeatureItemInputFields.COLUMN_BUTTON_URL]?: string;
|
|
138
|
+
[LandingPageFooterFeatureItemInputFields.COLUMN_DESCRIPTION]?: string;
|
|
139
|
+
[LandingPageFooterFeatureItemInputFields.COLUMN_ICON]?: string;
|
|
140
|
+
[LandingPageFooterFeatureItemInputFields.COLUMN_TITLE]?: string;
|
|
141
|
+
};
|
|
142
|
+
export declare enum LandingPageFooterMarketingFeatureItemInputFields {
|
|
143
|
+
COLUMN_BUTTON_TEXT = "buttonText",
|
|
144
|
+
COLUMN_BUTTON_URL = "buttonUrl",
|
|
145
|
+
COLUMN_DESCRIPTION = "description",
|
|
146
|
+
COLUMN_SIZE = "size",
|
|
147
|
+
COLUMN_TITLE = "title"
|
|
148
|
+
}
|
|
149
|
+
export declare type LandingPageFooterMarketingFeatureItemInputType = {
|
|
150
|
+
[LandingPageFooterMarketingFeatureItemInputFields.COLUMN_BUTTON_TEXT]?: string;
|
|
151
|
+
[LandingPageFooterMarketingFeatureItemInputFields.COLUMN_BUTTON_URL]?: string;
|
|
152
|
+
[LandingPageFooterMarketingFeatureItemInputFields.COLUMN_DESCRIPTION]?: string;
|
|
153
|
+
[LandingPageFooterMarketingFeatureItemInputFields.COLUMN_SIZE]?: string;
|
|
154
|
+
[LandingPageFooterMarketingFeatureItemInputFields.COLUMN_TITLE]?: string;
|
|
101
155
|
};
|
|
102
156
|
export declare enum LandingPageInputFields {
|
|
103
157
|
COLUMN_URL = "url",
|
|
@@ -106,21 +160,21 @@ export declare enum LandingPageInputFields {
|
|
|
106
160
|
COLUMN_FOOTER = "footer"
|
|
107
161
|
}
|
|
108
162
|
export declare type LandingPageInputType = {
|
|
109
|
-
[LandingPageInputFields.COLUMN_URL]?: string;
|
|
110
|
-
[LandingPageInputFields.COLUMN_HEADER]: LandingPageHeaderInputType;
|
|
111
163
|
[LandingPageInputFields.COLUMN_BODY]: LandingPageBodyInputType;
|
|
112
164
|
[LandingPageInputFields.COLUMN_FOOTER]?: LandingPageFooterInputType;
|
|
165
|
+
[LandingPageInputFields.COLUMN_HEADER]: LandingPageHeaderInputType;
|
|
166
|
+
[LandingPageInputFields.COLUMN_URL]?: string;
|
|
113
167
|
};
|
|
114
168
|
export declare type CampaignInputType = {
|
|
115
|
-
[CampaignInputFields.
|
|
169
|
+
[CampaignInputFields.COLUMN_BANNER]?: BannerInputType;
|
|
116
170
|
[CampaignInputFields.COLUMN_CATEGORY]?: string;
|
|
171
|
+
[CampaignInputFields.COLUMN_END_DATE]?: string;
|
|
117
172
|
[CampaignInputFields.COLUMN_IS_ACTIVATED]?: boolean;
|
|
118
|
-
[CampaignInputFields.
|
|
173
|
+
[CampaignInputFields.COLUMN_LANDING_PAGE]?: LandingPageInputType;
|
|
174
|
+
[CampaignInputFields.COLUMN_NAME]: string;
|
|
119
175
|
[CampaignInputFields.COLUMN_RULES]?: RulesInputType;
|
|
120
176
|
[CampaignInputFields.COLUMN_START_DATE]?: string;
|
|
121
|
-
[CampaignInputFields.
|
|
122
|
-
[CampaignInputFields.COLUMN_BANNER]?: BannerInputType;
|
|
123
|
-
[CampaignInputFields.COLUMN_LANDING_PAGE]?: LandingPageInputType;
|
|
177
|
+
[CampaignInputFields.COLUMN_STATUS]?: string;
|
|
124
178
|
};
|
|
125
179
|
export declare type PostEmailCampaignMetadataType = {
|
|
126
180
|
[keys in string]: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CampaignClient = exports.LandingPageInputFields = exports.LandingPageFooterInputFields = exports.LandingPageBodyInputFields = exports.LandingPageHeaderInputFields = exports.BannerInputFields = exports.RulesInputFields = exports.CampaignInputFields = exports.PostEmailCampaignFields = void 0;
|
|
3
|
+
exports.CampaignClient = exports.LandingPageInputFields = exports.LandingPageFooterMarketingFeatureItemInputFields = exports.LandingPageFooterFeatureItemInputFields = exports.LandingPageFooterMarketingFeatureInputFields = exports.LandingPageFooterFeatureInputFields = exports.LandingPageFooterInputFields = exports.LandingPageBodyInputFields = exports.LandingPageHeaderInputFields = exports.BannerInputFields = exports.RulesInputFields = exports.CampaignInputFields = exports.PostEmailCampaignFields = void 0;
|
|
4
4
|
const abstractRestfulClient_1 = require("../abstractRestfulClient");
|
|
5
5
|
const getResult_1 = require("../getResult");
|
|
6
6
|
const campaign_1 = require("./entities/campaign/campaign");
|
|
@@ -16,32 +16,32 @@ var PostEmailCampaignFields;
|
|
|
16
16
|
})(PostEmailCampaignFields = exports.PostEmailCampaignFields || (exports.PostEmailCampaignFields = {}));
|
|
17
17
|
var CampaignInputFields;
|
|
18
18
|
(function (CampaignInputFields) {
|
|
19
|
-
CampaignInputFields["
|
|
19
|
+
CampaignInputFields["COLUMN_BANNER"] = "banner";
|
|
20
20
|
CampaignInputFields["COLUMN_CATEGORY"] = "category";
|
|
21
|
+
CampaignInputFields["COLUMN_END_DATE"] = "endDate";
|
|
21
22
|
CampaignInputFields["COLUMN_IS_ACTIVATED"] = "isActivated";
|
|
22
|
-
CampaignInputFields["
|
|
23
|
+
CampaignInputFields["COLUMN_LANDING_PAGE"] = "landingPage";
|
|
24
|
+
CampaignInputFields["COLUMN_NAME"] = "name";
|
|
23
25
|
CampaignInputFields["COLUMN_RULES"] = "rules";
|
|
24
26
|
CampaignInputFields["COLUMN_START_DATE"] = "startDate";
|
|
25
|
-
CampaignInputFields["
|
|
26
|
-
CampaignInputFields["COLUMN_BANNER"] = "banner";
|
|
27
|
-
CampaignInputFields["COLUMN_LANDING_PAGE"] = "landingPage";
|
|
27
|
+
CampaignInputFields["COLUMN_STATUS"] = "status";
|
|
28
28
|
})(CampaignInputFields = exports.CampaignInputFields || (exports.CampaignInputFields = {}));
|
|
29
29
|
var RulesInputFields;
|
|
30
30
|
(function (RulesInputFields) {
|
|
31
|
+
RulesInputFields["COLUMN_END_CUSTOMERS"] = "endCustomers";
|
|
31
32
|
RulesInputFields["COLUMN_LOCATIONS"] = "locations";
|
|
32
|
-
RulesInputFields["COLUMN_ROLES"] = "roles";
|
|
33
33
|
RulesInputFields["COLUMN_MARKETPLACES"] = "marketplaces";
|
|
34
|
-
RulesInputFields["COLUMN_SUBSCRIPTIONS"] = "subscriptions";
|
|
35
34
|
RulesInputFields["COLUMN_RESELLERS"] = "resellers";
|
|
36
|
-
RulesInputFields["
|
|
35
|
+
RulesInputFields["COLUMN_ROLES"] = "roles";
|
|
36
|
+
RulesInputFields["COLUMN_SUBSCRIPTIONS"] = "subscriptions";
|
|
37
37
|
})(RulesInputFields = exports.RulesInputFields || (exports.RulesInputFields = {}));
|
|
38
38
|
var BannerInputFields;
|
|
39
39
|
(function (BannerInputFields) {
|
|
40
|
-
BannerInputFields["COLUMN_TYPE"] = "type";
|
|
41
40
|
BannerInputFields["COLUMN_BUTTON_PLACEMENT"] = "buttonPlacement";
|
|
42
41
|
BannerInputFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
43
42
|
BannerInputFields["COLUMN_TEXT"] = "text";
|
|
44
43
|
BannerInputFields["COLUMN_TEXT_COLOR"] = "textColor";
|
|
44
|
+
BannerInputFields["COLUMN_TYPE"] = "type";
|
|
45
45
|
})(BannerInputFields = exports.BannerInputFields || (exports.BannerInputFields = {}));
|
|
46
46
|
var LandingPageHeaderInputFields;
|
|
47
47
|
(function (LandingPageHeaderInputFields) {
|
|
@@ -53,6 +53,7 @@ var LandingPageHeaderInputFields;
|
|
|
53
53
|
})(LandingPageHeaderInputFields = exports.LandingPageHeaderInputFields || (exports.LandingPageHeaderInputFields = {}));
|
|
54
54
|
var LandingPageBodyInputFields;
|
|
55
55
|
(function (LandingPageBodyInputFields) {
|
|
56
|
+
LandingPageBodyInputFields["COLUMN_BACKGROUND_COLOR"] = "backgroundColor";
|
|
56
57
|
LandingPageBodyInputFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
57
58
|
LandingPageBodyInputFields["COLUMN_CONTACT_EMAIL"] = "contactEmail";
|
|
58
59
|
LandingPageBodyInputFields["COLUMN_DESCRIPTION"] = "description";
|
|
@@ -62,12 +63,42 @@ var LandingPageBodyInputFields;
|
|
|
62
63
|
})(LandingPageBodyInputFields = exports.LandingPageBodyInputFields || (exports.LandingPageBodyInputFields = {}));
|
|
63
64
|
var LandingPageFooterInputFields;
|
|
64
65
|
(function (LandingPageFooterInputFields) {
|
|
65
|
-
LandingPageFooterInputFields["COLUMN_TITLE"] = "title";
|
|
66
66
|
LandingPageFooterInputFields["COLUMN_BACKGROUND_COLOR"] = "backgroundColor";
|
|
67
67
|
LandingPageFooterInputFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
68
68
|
LandingPageFooterInputFields["COLUMN_BUTTON_URL"] = "buttonUrl";
|
|
69
|
+
LandingPageFooterInputFields["COLUMN_FEATURE"] = "feature";
|
|
70
|
+
LandingPageFooterInputFields["COLUMN_MARKETING_FEATURE"] = "marketingFeature";
|
|
69
71
|
LandingPageFooterInputFields["COLUMN_TEXT_COLOR"] = "textColor";
|
|
72
|
+
LandingPageFooterInputFields["COLUMN_TITLE"] = "title";
|
|
70
73
|
})(LandingPageFooterInputFields = exports.LandingPageFooterInputFields || (exports.LandingPageFooterInputFields = {}));
|
|
74
|
+
var LandingPageFooterFeatureInputFields;
|
|
75
|
+
(function (LandingPageFooterFeatureInputFields) {
|
|
76
|
+
LandingPageFooterFeatureInputFields["COLUMN_DESCRIPTION"] = "description";
|
|
77
|
+
LandingPageFooterFeatureInputFields["COLUMN_ITEMS"] = "items";
|
|
78
|
+
LandingPageFooterFeatureInputFields["COLUMN_TITLE"] = "title";
|
|
79
|
+
})(LandingPageFooterFeatureInputFields = exports.LandingPageFooterFeatureInputFields || (exports.LandingPageFooterFeatureInputFields = {}));
|
|
80
|
+
var LandingPageFooterMarketingFeatureInputFields;
|
|
81
|
+
(function (LandingPageFooterMarketingFeatureInputFields) {
|
|
82
|
+
LandingPageFooterMarketingFeatureInputFields["COLUMN_DESCRIPTION"] = "description";
|
|
83
|
+
LandingPageFooterMarketingFeatureInputFields["COLUMN_ITEMS"] = "items";
|
|
84
|
+
LandingPageFooterMarketingFeatureInputFields["COLUMN_TITLE"] = "title";
|
|
85
|
+
})(LandingPageFooterMarketingFeatureInputFields = exports.LandingPageFooterMarketingFeatureInputFields || (exports.LandingPageFooterMarketingFeatureInputFields = {}));
|
|
86
|
+
var LandingPageFooterFeatureItemInputFields;
|
|
87
|
+
(function (LandingPageFooterFeatureItemInputFields) {
|
|
88
|
+
LandingPageFooterFeatureItemInputFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
89
|
+
LandingPageFooterFeatureItemInputFields["COLUMN_BUTTON_URL"] = "buttonUrl";
|
|
90
|
+
LandingPageFooterFeatureItemInputFields["COLUMN_DESCRIPTION"] = "description";
|
|
91
|
+
LandingPageFooterFeatureItemInputFields["COLUMN_ICON"] = "icon";
|
|
92
|
+
LandingPageFooterFeatureItemInputFields["COLUMN_TITLE"] = "title";
|
|
93
|
+
})(LandingPageFooterFeatureItemInputFields = exports.LandingPageFooterFeatureItemInputFields || (exports.LandingPageFooterFeatureItemInputFields = {}));
|
|
94
|
+
var LandingPageFooterMarketingFeatureItemInputFields;
|
|
95
|
+
(function (LandingPageFooterMarketingFeatureItemInputFields) {
|
|
96
|
+
LandingPageFooterMarketingFeatureItemInputFields["COLUMN_BUTTON_TEXT"] = "buttonText";
|
|
97
|
+
LandingPageFooterMarketingFeatureItemInputFields["COLUMN_BUTTON_URL"] = "buttonUrl";
|
|
98
|
+
LandingPageFooterMarketingFeatureItemInputFields["COLUMN_DESCRIPTION"] = "description";
|
|
99
|
+
LandingPageFooterMarketingFeatureItemInputFields["COLUMN_SIZE"] = "size";
|
|
100
|
+
LandingPageFooterMarketingFeatureItemInputFields["COLUMN_TITLE"] = "title";
|
|
101
|
+
})(LandingPageFooterMarketingFeatureItemInputFields = exports.LandingPageFooterMarketingFeatureItemInputFields || (exports.LandingPageFooterMarketingFeatureItemInputFields = {}));
|
|
71
102
|
var LandingPageInputFields;
|
|
72
103
|
(function (LandingPageInputFields) {
|
|
73
104
|
LandingPageInputFields["COLUMN_URL"] = "url";
|
|
@@ -1,36 +1,18 @@
|
|
|
1
1
|
import { PartnerType } from './company';
|
|
2
2
|
import { ContactsType } from './contact';
|
|
3
|
-
import { PartnertagType } from './partnertag';
|
|
4
3
|
import { GraphqlApiProgramLevelType, GraphqlApiProgramType } from './program';
|
|
5
4
|
export declare type SubscriptionType = {
|
|
6
5
|
id?: number;
|
|
7
|
-
agreement?: GraphqlApiSubscriptionAgreementType;
|
|
8
6
|
autoReporting?: boolean;
|
|
9
|
-
clicktoAccept?: boolean;
|
|
10
7
|
company?: PartnerType;
|
|
11
|
-
ctaValidatedAt?: string;
|
|
12
|
-
demandedAt?: string;
|
|
13
|
-
enabled?: boolean;
|
|
14
8
|
endedAt?: string;
|
|
15
9
|
level?: GraphqlApiProgramLevelType;
|
|
16
10
|
localContact?: ContactsType;
|
|
17
11
|
orderId?: string;
|
|
18
12
|
partnerContact?: ContactsType;
|
|
19
13
|
partnerId?: string;
|
|
20
|
-
partnerTags?: PartnertagType[];
|
|
21
14
|
program?: GraphqlApiProgramType;
|
|
22
15
|
startedAt?: string;
|
|
23
|
-
status?: GraphqlApiSubscriptionStatusType;
|
|
24
|
-
updatedAt?: string;
|
|
25
16
|
userNote?: string;
|
|
26
17
|
validatedAt?: string;
|
|
27
18
|
};
|
|
28
|
-
export declare type GraphqlApiSubscriptionStatusType = {
|
|
29
|
-
id?: number;
|
|
30
|
-
name?: string;
|
|
31
|
-
};
|
|
32
|
-
export declare type GraphqlApiSubscriptionAgreementType = {
|
|
33
|
-
id?: number;
|
|
34
|
-
lastVersion?: number;
|
|
35
|
-
total?: number;
|
|
36
|
-
};
|
|
@@ -137,13 +137,10 @@ declare type MissingFieldsOfStaffSchema = {
|
|
|
137
137
|
};
|
|
138
138
|
export declare type GraphqlApiStaffSchema = Merge<Schema<GraphqlApiStaffType, boolean>, MissingFieldsOfStaffSchema>;
|
|
139
139
|
export declare type GraphqlApiContributorRoleSchema = Schema<GraphqlApiContributorRoleType, boolean>;
|
|
140
|
-
declare type MissingFieldsOfSubscriptionSchema = {
|
|
141
|
-
partnerTags?: PartnertagSchema;
|
|
142
|
-
};
|
|
143
|
-
export declare type SubscriptionSchema = Merge<Schema<SubscriptionType, boolean>, MissingFieldsOfSubscriptionSchema>;
|
|
144
140
|
export declare type ReportStatusSchema = Schema<GraphqlApiReportStatusType, boolean>;
|
|
145
141
|
export declare type SpecialPriceRateSchema = Schema<SpecialPriceRateType, boolean>;
|
|
146
142
|
export declare type SubscribedProgramSchema = Schema<SubscribedProgramType, boolean>;
|
|
143
|
+
export declare type SubscriptionSchema = Schema<SubscriptionType, boolean>;
|
|
147
144
|
export declare type UserHistorySchema = Schema<UserHistoryType, boolean>;
|
|
148
145
|
export declare type WorkgroupSchema = Schema<WorkgroupType, boolean>;
|
|
149
146
|
export declare type SelectAllResultSchema = {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.201.0
|
|
7
|
+
"version": "3.201.0",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|
|
@@ -90,4 +90,4 @@
|
|
|
90
90
|
"type-fest": "^2.19.0",
|
|
91
91
|
"validatorjs": "3.22.1"
|
|
92
92
|
}
|
|
93
|
-
}
|
|
93
|
+
}
|