@goauthentik/api 2022.12.2-1673461163 → 2022.12.2-1673612527

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.
@@ -34,6 +34,12 @@ export interface Task {
34
34
  * @memberof Task
35
35
  */
36
36
  taskFinishTimestamp: Date;
37
+ /**
38
+ *
39
+ * @type {number}
40
+ * @memberof Task
41
+ */
42
+ readonly taskDuration: number;
37
43
  /**
38
44
  *
39
45
  * @type {TaskStatusEnum}
@@ -23,6 +23,7 @@ export function TaskFromJSONTyped(json, ignoreDiscriminator) {
23
23
  'taskName': json['task_name'],
24
24
  'taskDescription': json['task_description'],
25
25
  'taskFinishTimestamp': (new Date(json['task_finish_timestamp'])),
26
+ 'taskDuration': json['task_duration'],
26
27
  'status': TaskStatusEnumFromJSON(json['status']),
27
28
  'messages': json['messages'],
28
29
  };
@@ -34,6 +34,12 @@ export interface Task {
34
34
  * @memberof Task
35
35
  */
36
36
  taskFinishTimestamp: Date;
37
+ /**
38
+ *
39
+ * @type {number}
40
+ * @memberof Task
41
+ */
42
+ readonly taskDuration: number;
37
43
  /**
38
44
  *
39
45
  * @type {TaskStatusEnum}
@@ -27,6 +27,7 @@ function TaskFromJSONTyped(json, ignoreDiscriminator) {
27
27
  'taskName': json['task_name'],
28
28
  'taskDescription': json['task_description'],
29
29
  'taskFinishTimestamp': (new Date(json['task_finish_timestamp'])),
30
+ 'taskDuration': json['task_duration'],
30
31
  'status': (0, TaskStatusEnum_1.TaskStatusEnumFromJSON)(json['status']),
31
32
  'messages': json['messages'],
32
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2022.12.2-1673461163",
3
+ "version": "2022.12.2-1673612527",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -44,6 +44,12 @@ export interface Task {
44
44
  * @memberof Task
45
45
  */
46
46
  taskFinishTimestamp: Date;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof Task
51
+ */
52
+ readonly taskDuration: number;
47
53
  /**
48
54
  *
49
55
  * @type {TaskStatusEnum}
@@ -71,6 +77,7 @@ export function TaskFromJSONTyped(json: any, ignoreDiscriminator: boolean): Task
71
77
  'taskName': json['task_name'],
72
78
  'taskDescription': json['task_description'],
73
79
  'taskFinishTimestamp': (new Date(json['task_finish_timestamp'])),
80
+ 'taskDuration': json['task_duration'],
74
81
  'status': TaskStatusEnumFromJSON(json['status']),
75
82
  'messages': json['messages'],
76
83
  };