@arrowsphere/api-client 3.210.0 → 3.211.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,12 @@
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.211.0] - 2025.07.29
7
+
8
+ ### Added
9
+
10
+ - [license] add field `actions.scheduledTaskDetails`
11
+
6
12
  ## [3.210.0] - 2025.07.29
7
13
 
8
14
  ### 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
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.210.0",
7
+ "version": "3.211.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",