@goauthentik/api 2022.3.3-1648750781 → 2022.3.3-1648843682

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.
@@ -27,6 +27,14 @@ export interface PolicyTestResult {
27
27
  * @memberof PolicyTestResult
28
28
  */
29
29
  readonly messages: Array<string>;
30
+ /**
31
+ *
32
+ * @type {Array<{ [key: string]: any; }>}
33
+ * @memberof PolicyTestResult
34
+ */
35
+ readonly logMessages: Array<{
36
+ [key: string]: any;
37
+ }>;
30
38
  }
31
39
  export declare function PolicyTestResultFromJSON(json: any): PolicyTestResult;
32
40
  export declare function PolicyTestResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyTestResult;
@@ -21,6 +21,7 @@ export function PolicyTestResultFromJSONTyped(json, ignoreDiscriminator) {
21
21
  return {
22
22
  'passing': json['passing'],
23
23
  'messages': json['messages'],
24
+ 'logMessages': json['log_messages'],
24
25
  };
25
26
  }
26
27
  export function PolicyTestResultToJSON(value) {
@@ -27,6 +27,14 @@ export interface PolicyTestResult {
27
27
  * @memberof PolicyTestResult
28
28
  */
29
29
  readonly messages: Array<string>;
30
+ /**
31
+ *
32
+ * @type {Array<{ [key: string]: any; }>}
33
+ * @memberof PolicyTestResult
34
+ */
35
+ readonly logMessages: Array<{
36
+ [key: string]: any;
37
+ }>;
30
38
  }
31
39
  export declare function PolicyTestResultFromJSON(json: any): PolicyTestResult;
32
40
  export declare function PolicyTestResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyTestResult;
@@ -25,6 +25,7 @@ function PolicyTestResultFromJSONTyped(json, ignoreDiscriminator) {
25
25
  return {
26
26
  'passing': json['passing'],
27
27
  'messages': json['messages'],
28
+ 'logMessages': json['log_messages'],
28
29
  };
29
30
  }
30
31
  exports.PolicyTestResultFromJSONTyped = PolicyTestResultFromJSONTyped;
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name": "@goauthentik/api", "version": "2022.3.3-1648750781", "description": "OpenAPI client for @goauthentik/api", "author": "OpenAPI-Generator", "main": "./dist/index.js", "typings": "./dist/index.d.ts", "scripts": {"build": "tsc && tsc --project tsconfig.esm.json", "prepare": "npm run build"}, "devDependencies": {"typescript": "^3.9.5"}, "license": "GPL-3.0-only", "module": "./dist/esm/index.js", "sideEffects": false}
1
+ {"name": "@goauthentik/api", "version": "2022.3.3-1648843682", "description": "OpenAPI client for @goauthentik/api", "author": "OpenAPI-Generator", "main": "./dist/index.js", "typings": "./dist/index.d.ts", "scripts": {"build": "tsc && tsc --project tsconfig.esm.json", "prepare": "npm run build"}, "devDependencies": {"typescript": "^3.9.5"}, "license": "GPL-3.0-only", "module": "./dist/esm/index.js", "sideEffects": false}
@@ -31,6 +31,12 @@ export interface PolicyTestResult {
31
31
  * @memberof PolicyTestResult
32
32
  */
33
33
  readonly messages: Array<string>;
34
+ /**
35
+ *
36
+ * @type {Array<{ [key: string]: any; }>}
37
+ * @memberof PolicyTestResult
38
+ */
39
+ readonly logMessages: Array<{ [key: string]: any; }>;
34
40
  }
35
41
 
36
42
  export function PolicyTestResultFromJSON(json: any): PolicyTestResult {
@@ -45,6 +51,7 @@ export function PolicyTestResultFromJSONTyped(json: any, ignoreDiscriminator: bo
45
51
 
46
52
  'passing': json['passing'],
47
53
  'messages': json['messages'],
54
+ 'logMessages': json['log_messages'],
48
55
  };
49
56
  }
50
57