@edgeiq/edgeiq-api-js 1.5.3 → 1.5.4

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.
@@ -16,6 +16,8 @@ export interface ScheduledJobInput {
16
16
  company_id: string;
17
17
  }
18
18
  export interface ScheduledJob extends ScheduledJobInput, Base {
19
+ next_run_time: string;
20
+ last_run_time: string;
19
21
  }
20
22
  export interface ScheduledJobsFilters extends Filters {
21
23
  name?: Filter;
@@ -356,4 +356,4 @@ exports.TestScheduledJob = {
356
356
  command_id: '648a07c58fc32100018b1d34',
357
357
  company_id: parentCompanyId,
358
358
  };
359
- exports.EmptyScheduledJob = __assign(__assign({}, exports.TestScheduledJob), baseModel);
359
+ exports.EmptyScheduledJob = __assign(__assign(__assign({}, exports.TestScheduledJob), baseModel), { last_run_time: '', next_run_time: '' });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeiq/edgeiq-api-js",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "author": "EdgeIQ",
5
5
  "license": "ISC",
6
6
  "description": "This project presents EdgeIQ API SDK.",