@goauthentik/api 2022.12.2-1673461163 → 2022.12.2-1673623274

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,7 +34,7 @@ export interface PatchedScopeMappingRequest {
34
34
  */
35
35
  expression?: string;
36
36
  /**
37
- * Scope used by the client
37
+ * Scope name requested by the client
38
38
  * @type {string}
39
39
  * @memberof PatchedScopeMappingRequest
40
40
  */
@@ -64,7 +64,7 @@ export interface ScopeMapping {
64
64
  */
65
65
  readonly metaModelName: string;
66
66
  /**
67
- * Scope used by the client
67
+ * Scope name requested by the client
68
68
  * @type {string}
69
69
  * @memberof ScopeMapping
70
70
  */
@@ -34,7 +34,7 @@ export interface ScopeMappingRequest {
34
34
  */
35
35
  expression: string;
36
36
  /**
37
- * Scope used by the client
37
+ * Scope name requested by the client
38
38
  * @type {string}
39
39
  * @memberof ScopeMappingRequest
40
40
  */
@@ -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,7 +34,7 @@ export interface PatchedScopeMappingRequest {
34
34
  */
35
35
  expression?: string;
36
36
  /**
37
- * Scope used by the client
37
+ * Scope name requested by the client
38
38
  * @type {string}
39
39
  * @memberof PatchedScopeMappingRequest
40
40
  */
@@ -64,7 +64,7 @@ export interface ScopeMapping {
64
64
  */
65
65
  readonly metaModelName: string;
66
66
  /**
67
- * Scope used by the client
67
+ * Scope name requested by the client
68
68
  * @type {string}
69
69
  * @memberof ScopeMapping
70
70
  */
@@ -34,7 +34,7 @@ export interface ScopeMappingRequest {
34
34
  */
35
35
  expression: string;
36
36
  /**
37
- * Scope used by the client
37
+ * Scope name requested by the client
38
38
  * @type {string}
39
39
  * @memberof ScopeMappingRequest
40
40
  */
@@ -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-1673623274",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -38,7 +38,7 @@ export interface PatchedScopeMappingRequest {
38
38
  */
39
39
  expression?: string;
40
40
  /**
41
- * Scope used by the client
41
+ * Scope name requested by the client
42
42
  * @type {string}
43
43
  * @memberof PatchedScopeMappingRequest
44
44
  */
@@ -68,7 +68,7 @@ export interface ScopeMapping {
68
68
  */
69
69
  readonly metaModelName: string;
70
70
  /**
71
- * Scope used by the client
71
+ * Scope name requested by the client
72
72
  * @type {string}
73
73
  * @memberof ScopeMapping
74
74
  */
@@ -38,7 +38,7 @@ export interface ScopeMappingRequest {
38
38
  */
39
39
  expression: string;
40
40
  /**
41
- * Scope used by the client
41
+ * Scope name requested by the client
42
42
  * @type {string}
43
43
  * @memberof ScopeMappingRequest
44
44
  */
@@ -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
  };