@arrowsphere/api-client 3.210.0 → 3.212.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 +12 -0
- package/build/licenses/entities/getLicense/actionsGetResult.d.ts +14 -1
- package/build/licenses/entities/getLicense/actionsGetResult.js +17 -3
- package/build/supportCenter/entities/topic.d.ts +4 -1
- package/build/supportCenter/entities/topic.js +9 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.212.0] - 2025.07.29
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- [supportCenter] add field `classification` to TopicType
|
|
11
|
+
|
|
12
|
+
## [3.211.0] - 2025.07.29
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- [license] add field `actions.scheduledTaskDetails`
|
|
17
|
+
|
|
6
18
|
## [3.210.0] - 2025.07.29
|
|
7
19
|
|
|
8
20
|
### Added
|
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
import { AbstractEntity } from '../../../abstractEntity';
|
|
2
|
+
export declare enum ScheduledTaskDetailsFields {
|
|
3
|
+
COLUMN_CREATE = "create",
|
|
4
|
+
COLUMN_DELETE = "delete",
|
|
5
|
+
COLUMN_UPDATE = "update"
|
|
6
|
+
}
|
|
7
|
+
export declare type ScheduledTaskDetailsType = {
|
|
8
|
+
[ScheduledTaskDetailsFields.COLUMN_CREATE]?: string;
|
|
9
|
+
[ScheduledTaskDetailsFields.COLUMN_DELETE]?: string;
|
|
10
|
+
[ScheduledTaskDetailsFields.COLUMN_UPDATE]?: string;
|
|
11
|
+
};
|
|
2
12
|
export declare enum ActionsGetFields {
|
|
3
13
|
COLUMN_HISTORY = "history",
|
|
4
14
|
COLUMN_UPDATE = "update",
|
|
@@ -14,7 +24,8 @@ export declare enum ActionsGetFields {
|
|
|
14
24
|
COLUMN_PAUSE = "pause",
|
|
15
25
|
COLUMN_UPGRADE = "upgrade",
|
|
16
26
|
COLUMN_UPDATE_FRIENDLY_NAME = "updateFriendlyName",
|
|
17
|
-
COLUMN_SCHEDULED_TASK = "scheduledTask"
|
|
27
|
+
COLUMN_SCHEDULED_TASK = "scheduledTask",
|
|
28
|
+
COLUMN_SCHEDULED_TASK_DETAILS = "scheduledTaskDetails"
|
|
18
29
|
}
|
|
19
30
|
export declare type ActionsGetData = {
|
|
20
31
|
[ActionsGetFields.COLUMN_HISTORY]: string;
|
|
@@ -32,6 +43,7 @@ export declare type ActionsGetData = {
|
|
|
32
43
|
[ActionsGetFields.COLUMN_UPGRADE]?: string;
|
|
33
44
|
[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]?: string;
|
|
34
45
|
[ActionsGetFields.COLUMN_SCHEDULED_TASK]?: string;
|
|
46
|
+
[ActionsGetFields.COLUMN_SCHEDULED_TASK_DETAILS]?: ScheduledTaskDetailsType;
|
|
35
47
|
};
|
|
36
48
|
export declare class ActionsGetResult extends AbstractEntity<ActionsGetData> {
|
|
37
49
|
#private;
|
|
@@ -51,5 +63,6 @@ export declare class ActionsGetResult extends AbstractEntity<ActionsGetData> {
|
|
|
51
63
|
get upgrade(): string | undefined;
|
|
52
64
|
get updateFriendlyName(): string | undefined;
|
|
53
65
|
get scheduledTask(): string | undefined;
|
|
66
|
+
get scheduledTaskDetails(): Record<string, string> | undefined;
|
|
54
67
|
toJSON(): ActionsGetData;
|
|
55
68
|
}
|
|
@@ -10,10 +10,16 @@ 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 _ActionsGetResult_history, _ActionsGetResult_update, _ActionsGetResult_increaseSeats, _ActionsGetResult_decreaseSeats, _ActionsGetResult_addons_catalog, _ActionsGetResult_suspend, _ActionsGetResult_reactivate, _ActionsGetResult_autoRenewOff, _ActionsGetResult_autoRenewOn, _ActionsGetResult_cancel, _ActionsGetResult_conversion, _ActionsGetResult_pause, _ActionsGetResult_upgrade, _ActionsGetResult_updateFriendlyName, _ActionsGetResult_scheduledTask;
|
|
13
|
+
var _ActionsGetResult_history, _ActionsGetResult_update, _ActionsGetResult_increaseSeats, _ActionsGetResult_decreaseSeats, _ActionsGetResult_addons_catalog, _ActionsGetResult_suspend, _ActionsGetResult_reactivate, _ActionsGetResult_autoRenewOff, _ActionsGetResult_autoRenewOn, _ActionsGetResult_cancel, _ActionsGetResult_conversion, _ActionsGetResult_pause, _ActionsGetResult_upgrade, _ActionsGetResult_updateFriendlyName, _ActionsGetResult_scheduledTask, _ActionsGetResult_scheduledTaskDetails;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.ActionsGetResult = exports.ActionsGetFields = void 0;
|
|
15
|
+
exports.ActionsGetResult = exports.ActionsGetFields = exports.ScheduledTaskDetailsFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../../abstractEntity");
|
|
17
|
+
var ScheduledTaskDetailsFields;
|
|
18
|
+
(function (ScheduledTaskDetailsFields) {
|
|
19
|
+
ScheduledTaskDetailsFields["COLUMN_CREATE"] = "create";
|
|
20
|
+
ScheduledTaskDetailsFields["COLUMN_DELETE"] = "delete";
|
|
21
|
+
ScheduledTaskDetailsFields["COLUMN_UPDATE"] = "update";
|
|
22
|
+
})(ScheduledTaskDetailsFields = exports.ScheduledTaskDetailsFields || (exports.ScheduledTaskDetailsFields = {}));
|
|
17
23
|
var ActionsGetFields;
|
|
18
24
|
(function (ActionsGetFields) {
|
|
19
25
|
ActionsGetFields["COLUMN_HISTORY"] = "history";
|
|
@@ -31,6 +37,7 @@ var ActionsGetFields;
|
|
|
31
37
|
ActionsGetFields["COLUMN_UPGRADE"] = "upgrade";
|
|
32
38
|
ActionsGetFields["COLUMN_UPDATE_FRIENDLY_NAME"] = "updateFriendlyName";
|
|
33
39
|
ActionsGetFields["COLUMN_SCHEDULED_TASK"] = "scheduledTask";
|
|
40
|
+
ActionsGetFields["COLUMN_SCHEDULED_TASK_DETAILS"] = "scheduledTaskDetails";
|
|
34
41
|
})(ActionsGetFields = exports.ActionsGetFields || (exports.ActionsGetFields = {}));
|
|
35
42
|
class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
36
43
|
constructor(data) {
|
|
@@ -50,6 +57,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
50
57
|
_ActionsGetResult_upgrade.set(this, void 0);
|
|
51
58
|
_ActionsGetResult_updateFriendlyName.set(this, void 0);
|
|
52
59
|
_ActionsGetResult_scheduledTask.set(this, void 0);
|
|
60
|
+
_ActionsGetResult_scheduledTaskDetails.set(this, void 0);
|
|
53
61
|
__classPrivateFieldSet(this, _ActionsGetResult_history, data[ActionsGetFields.COLUMN_HISTORY], "f");
|
|
54
62
|
__classPrivateFieldSet(this, _ActionsGetResult_update, data[ActionsGetFields.COLUMN_UPDATE], "f");
|
|
55
63
|
__classPrivateFieldSet(this, _ActionsGetResult_increaseSeats, data[ActionsGetFields.COLUMN_INCREASE_SEATS], "f");
|
|
@@ -65,6 +73,7 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
65
73
|
__classPrivateFieldSet(this, _ActionsGetResult_upgrade, data[ActionsGetFields.COLUMN_UPGRADE], "f");
|
|
66
74
|
__classPrivateFieldSet(this, _ActionsGetResult_updateFriendlyName, data[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME], "f");
|
|
67
75
|
__classPrivateFieldSet(this, _ActionsGetResult_scheduledTask, data[ActionsGetFields.COLUMN_SCHEDULED_TASK], "f");
|
|
76
|
+
__classPrivateFieldSet(this, _ActionsGetResult_scheduledTaskDetails, data[ActionsGetFields.COLUMN_SCHEDULED_TASK_DETAILS], "f");
|
|
68
77
|
}
|
|
69
78
|
get history() {
|
|
70
79
|
return __classPrivateFieldGet(this, _ActionsGetResult_history, "f");
|
|
@@ -111,6 +120,9 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
111
120
|
get scheduledTask() {
|
|
112
121
|
return __classPrivateFieldGet(this, _ActionsGetResult_scheduledTask, "f");
|
|
113
122
|
}
|
|
123
|
+
get scheduledTaskDetails() {
|
|
124
|
+
return __classPrivateFieldGet(this, _ActionsGetResult_scheduledTaskDetails, "f");
|
|
125
|
+
}
|
|
114
126
|
toJSON() {
|
|
115
127
|
return {
|
|
116
128
|
[ActionsGetFields.COLUMN_HISTORY]: this.history,
|
|
@@ -128,9 +140,11 @@ class ActionsGetResult extends abstractEntity_1.AbstractEntity {
|
|
|
128
140
|
[ActionsGetFields.COLUMN_UPGRADE]: this.upgrade,
|
|
129
141
|
[ActionsGetFields.COLUMN_UPDATE_FRIENDLY_NAME]: this.updateFriendlyName,
|
|
130
142
|
[ActionsGetFields.COLUMN_SCHEDULED_TASK]: this.scheduledTask,
|
|
143
|
+
[ActionsGetFields.COLUMN_SCHEDULED_TASK_DETAILS]: this
|
|
144
|
+
.scheduledTaskDetails,
|
|
131
145
|
};
|
|
132
146
|
}
|
|
133
147
|
}
|
|
134
148
|
exports.ActionsGetResult = ActionsGetResult;
|
|
135
|
-
_ActionsGetResult_history = new WeakMap(), _ActionsGetResult_update = new WeakMap(), _ActionsGetResult_increaseSeats = new WeakMap(), _ActionsGetResult_decreaseSeats = new WeakMap(), _ActionsGetResult_addons_catalog = new WeakMap(), _ActionsGetResult_suspend = new WeakMap(), _ActionsGetResult_reactivate = new WeakMap(), _ActionsGetResult_autoRenewOff = new WeakMap(), _ActionsGetResult_autoRenewOn = new WeakMap(), _ActionsGetResult_cancel = new WeakMap(), _ActionsGetResult_conversion = new WeakMap(), _ActionsGetResult_pause = new WeakMap(), _ActionsGetResult_upgrade = new WeakMap(), _ActionsGetResult_updateFriendlyName = new WeakMap(), _ActionsGetResult_scheduledTask = new WeakMap();
|
|
149
|
+
_ActionsGetResult_history = new WeakMap(), _ActionsGetResult_update = new WeakMap(), _ActionsGetResult_increaseSeats = new WeakMap(), _ActionsGetResult_decreaseSeats = new WeakMap(), _ActionsGetResult_addons_catalog = new WeakMap(), _ActionsGetResult_suspend = new WeakMap(), _ActionsGetResult_reactivate = new WeakMap(), _ActionsGetResult_autoRenewOff = new WeakMap(), _ActionsGetResult_autoRenewOn = new WeakMap(), _ActionsGetResult_cancel = new WeakMap(), _ActionsGetResult_conversion = new WeakMap(), _ActionsGetResult_pause = new WeakMap(), _ActionsGetResult_upgrade = new WeakMap(), _ActionsGetResult_updateFriendlyName = new WeakMap(), _ActionsGetResult_scheduledTask = new WeakMap(), _ActionsGetResult_scheduledTaskDetails = new WeakMap();
|
|
136
150
|
//# sourceMappingURL=actionsGetResult.js.map
|
|
@@ -4,7 +4,8 @@ export declare enum TopicFields {
|
|
|
4
4
|
COLUMN_NAME = "name",
|
|
5
5
|
COLUMN_LABEL = "label",
|
|
6
6
|
COLUMN_PREMIUM = "premium",
|
|
7
|
-
COLUMN_DESCRIPTION = "content"
|
|
7
|
+
COLUMN_DESCRIPTION = "content",
|
|
8
|
+
COLUMN_CLASSIFICATION = "classification"
|
|
8
9
|
}
|
|
9
10
|
export declare type TopicType = {
|
|
10
11
|
[TopicFields.COLUMN_ID]: number;
|
|
@@ -12,6 +13,7 @@ export declare type TopicType = {
|
|
|
12
13
|
[TopicFields.COLUMN_LABEL]: string;
|
|
13
14
|
[TopicFields.COLUMN_PREMIUM]: boolean;
|
|
14
15
|
[TopicFields.COLUMN_DESCRIPTION]: string;
|
|
16
|
+
[TopicFields.COLUMN_CLASSIFICATION]: string;
|
|
15
17
|
};
|
|
16
18
|
export declare class Topic extends AbstractEntity<TopicType> {
|
|
17
19
|
#private;
|
|
@@ -21,6 +23,7 @@ export declare class Topic extends AbstractEntity<TopicType> {
|
|
|
21
23
|
get label(): string;
|
|
22
24
|
get premium(): boolean;
|
|
23
25
|
get description(): string;
|
|
26
|
+
get classification(): string;
|
|
24
27
|
toJSON(): TopicType;
|
|
25
28
|
}
|
|
26
29
|
export declare type TopicsType = Array<TopicType>;
|
|
@@ -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 _Topic_id, _Topic_name, _Topic_label, _Topic_premium, _Topic_description, _Topics_list;
|
|
13
|
+
var _Topic_id, _Topic_name, _Topic_label, _Topic_premium, _Topic_description, _Topic_classification, _Topics_list;
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
15
|
exports.Topics = exports.Topic = exports.TopicFields = void 0;
|
|
16
16
|
const abstractEntity_1 = require("../../abstractEntity");
|
|
@@ -21,6 +21,7 @@ var TopicFields;
|
|
|
21
21
|
TopicFields["COLUMN_LABEL"] = "label";
|
|
22
22
|
TopicFields["COLUMN_PREMIUM"] = "premium";
|
|
23
23
|
TopicFields["COLUMN_DESCRIPTION"] = "content";
|
|
24
|
+
TopicFields["COLUMN_CLASSIFICATION"] = "classification";
|
|
24
25
|
})(TopicFields = exports.TopicFields || (exports.TopicFields = {}));
|
|
25
26
|
class Topic extends abstractEntity_1.AbstractEntity {
|
|
26
27
|
constructor(input) {
|
|
@@ -30,11 +31,13 @@ class Topic extends abstractEntity_1.AbstractEntity {
|
|
|
30
31
|
_Topic_label.set(this, void 0);
|
|
31
32
|
_Topic_premium.set(this, void 0);
|
|
32
33
|
_Topic_description.set(this, void 0);
|
|
34
|
+
_Topic_classification.set(this, void 0);
|
|
33
35
|
__classPrivateFieldSet(this, _Topic_id, input[TopicFields.COLUMN_ID], "f");
|
|
34
36
|
__classPrivateFieldSet(this, _Topic_name, input[TopicFields.COLUMN_NAME], "f");
|
|
35
37
|
__classPrivateFieldSet(this, _Topic_label, input[TopicFields.COLUMN_LABEL], "f");
|
|
36
38
|
__classPrivateFieldSet(this, _Topic_premium, input[TopicFields.COLUMN_PREMIUM], "f");
|
|
37
39
|
__classPrivateFieldSet(this, _Topic_description, input[TopicFields.COLUMN_DESCRIPTION], "f");
|
|
40
|
+
__classPrivateFieldSet(this, _Topic_classification, input[TopicFields.COLUMN_CLASSIFICATION], "f");
|
|
38
41
|
}
|
|
39
42
|
get id() {
|
|
40
43
|
return __classPrivateFieldGet(this, _Topic_id, "f");
|
|
@@ -51,6 +54,9 @@ class Topic extends abstractEntity_1.AbstractEntity {
|
|
|
51
54
|
get description() {
|
|
52
55
|
return __classPrivateFieldGet(this, _Topic_description, "f");
|
|
53
56
|
}
|
|
57
|
+
get classification() {
|
|
58
|
+
return __classPrivateFieldGet(this, _Topic_classification, "f");
|
|
59
|
+
}
|
|
54
60
|
toJSON() {
|
|
55
61
|
return {
|
|
56
62
|
[TopicFields.COLUMN_ID]: this.id,
|
|
@@ -58,11 +64,12 @@ class Topic extends abstractEntity_1.AbstractEntity {
|
|
|
58
64
|
[TopicFields.COLUMN_LABEL]: this.label,
|
|
59
65
|
[TopicFields.COLUMN_PREMIUM]: this.premium,
|
|
60
66
|
[TopicFields.COLUMN_DESCRIPTION]: this.description,
|
|
67
|
+
[TopicFields.COLUMN_CLASSIFICATION]: this.classification,
|
|
61
68
|
};
|
|
62
69
|
}
|
|
63
70
|
}
|
|
64
71
|
exports.Topic = Topic;
|
|
65
|
-
_Topic_id = new WeakMap(), _Topic_name = new WeakMap(), _Topic_label = new WeakMap(), _Topic_premium = new WeakMap(), _Topic_description = new WeakMap();
|
|
72
|
+
_Topic_id = new WeakMap(), _Topic_name = new WeakMap(), _Topic_label = new WeakMap(), _Topic_premium = new WeakMap(), _Topic_description = new WeakMap(), _Topic_classification = new WeakMap();
|
|
66
73
|
class Topics extends abstractEntity_1.AbstractEntity {
|
|
67
74
|
constructor(input) {
|
|
68
75
|
super(input);
|
package/package.json
CHANGED