@goauthentik/api 2022.3.3-1648843682 → 2022.3.3-1648933813

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.
@@ -83,6 +83,12 @@ export interface Application {
83
83
  * @memberof Application
84
84
  */
85
85
  policyEngineMode?: PolicyEngineMode;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof Application
90
+ */
91
+ group?: string;
86
92
  }
87
93
  export declare function ApplicationFromJSON(json: any): Application;
88
94
  export declare function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Application;
@@ -33,6 +33,7 @@ export function ApplicationFromJSONTyped(json, ignoreDiscriminator) {
33
33
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
34
34
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
35
35
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
36
+ 'group': !exists(json, 'group') ? undefined : json['group'],
36
37
  };
37
38
  }
38
39
  export function ApplicationToJSON(value) {
@@ -51,5 +52,6 @@ export function ApplicationToJSON(value) {
51
52
  'meta_description': value.metaDescription,
52
53
  'meta_publisher': value.metaPublisher,
53
54
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
55
+ 'group': value.group,
54
56
  };
55
57
  }
@@ -65,6 +65,12 @@ export interface ApplicationRequest {
65
65
  * @memberof ApplicationRequest
66
66
  */
67
67
  policyEngineMode?: PolicyEngineMode;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof ApplicationRequest
72
+ */
73
+ group?: string;
68
74
  }
69
75
  export declare function ApplicationRequestFromJSON(json: any): ApplicationRequest;
70
76
  export declare function ApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationRequest;
@@ -30,6 +30,7 @@ export function ApplicationRequestFromJSONTyped(json, ignoreDiscriminator) {
30
30
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
31
31
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
32
32
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
33
+ 'group': !exists(json, 'group') ? undefined : json['group'],
33
34
  };
34
35
  }
35
36
  export function ApplicationRequestToJSON(value) {
@@ -48,5 +49,6 @@ export function ApplicationRequestToJSON(value) {
48
49
  'meta_description': value.metaDescription,
49
50
  'meta_publisher': value.metaPublisher,
50
51
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
52
+ 'group': value.group,
51
53
  };
52
54
  }
@@ -65,6 +65,12 @@ export interface PatchedApplicationRequest {
65
65
  * @memberof PatchedApplicationRequest
66
66
  */
67
67
  policyEngineMode?: PolicyEngineMode;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof PatchedApplicationRequest
72
+ */
73
+ group?: string;
68
74
  }
69
75
  export declare function PatchedApplicationRequestFromJSON(json: any): PatchedApplicationRequest;
70
76
  export declare function PatchedApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedApplicationRequest;
@@ -30,6 +30,7 @@ export function PatchedApplicationRequestFromJSONTyped(json, ignoreDiscriminator
30
30
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
31
31
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
32
32
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
33
+ 'group': !exists(json, 'group') ? undefined : json['group'],
33
34
  };
34
35
  }
35
36
  export function PatchedApplicationRequestToJSON(value) {
@@ -48,5 +49,6 @@ export function PatchedApplicationRequestToJSON(value) {
48
49
  'meta_description': value.metaDescription,
49
50
  'meta_publisher': value.metaPublisher,
50
51
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
52
+ 'group': value.group,
51
53
  };
52
54
  }
@@ -83,6 +83,12 @@ export interface Application {
83
83
  * @memberof Application
84
84
  */
85
85
  policyEngineMode?: PolicyEngineMode;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof Application
90
+ */
91
+ group?: string;
86
92
  }
87
93
  export declare function ApplicationFromJSON(json: any): Application;
88
94
  export declare function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Application;
@@ -37,6 +37,7 @@ function ApplicationFromJSONTyped(json, ignoreDiscriminator) {
37
37
  'metaDescription': !runtime_1.exists(json, 'meta_description') ? undefined : json['meta_description'],
38
38
  'metaPublisher': !runtime_1.exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
39
39
  'policyEngineMode': !runtime_1.exists(json, 'policy_engine_mode') ? undefined : PolicyEngineMode_1.PolicyEngineModeFromJSON(json['policy_engine_mode']),
40
+ 'group': !runtime_1.exists(json, 'group') ? undefined : json['group'],
40
41
  };
41
42
  }
42
43
  exports.ApplicationFromJSONTyped = ApplicationFromJSONTyped;
@@ -56,6 +57,7 @@ function ApplicationToJSON(value) {
56
57
  'meta_description': value.metaDescription,
57
58
  'meta_publisher': value.metaPublisher,
58
59
  'policy_engine_mode': PolicyEngineMode_1.PolicyEngineModeToJSON(value.policyEngineMode),
60
+ 'group': value.group,
59
61
  };
60
62
  }
61
63
  exports.ApplicationToJSON = ApplicationToJSON;
@@ -65,6 +65,12 @@ export interface ApplicationRequest {
65
65
  * @memberof ApplicationRequest
66
66
  */
67
67
  policyEngineMode?: PolicyEngineMode;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof ApplicationRequest
72
+ */
73
+ group?: string;
68
74
  }
69
75
  export declare function ApplicationRequestFromJSON(json: any): ApplicationRequest;
70
76
  export declare function ApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationRequest;
@@ -34,6 +34,7 @@ function ApplicationRequestFromJSONTyped(json, ignoreDiscriminator) {
34
34
  'metaDescription': !runtime_1.exists(json, 'meta_description') ? undefined : json['meta_description'],
35
35
  'metaPublisher': !runtime_1.exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
36
36
  'policyEngineMode': !runtime_1.exists(json, 'policy_engine_mode') ? undefined : PolicyEngineMode_1.PolicyEngineModeFromJSON(json['policy_engine_mode']),
37
+ 'group': !runtime_1.exists(json, 'group') ? undefined : json['group'],
37
38
  };
38
39
  }
39
40
  exports.ApplicationRequestFromJSONTyped = ApplicationRequestFromJSONTyped;
@@ -53,6 +54,7 @@ function ApplicationRequestToJSON(value) {
53
54
  'meta_description': value.metaDescription,
54
55
  'meta_publisher': value.metaPublisher,
55
56
  'policy_engine_mode': PolicyEngineMode_1.PolicyEngineModeToJSON(value.policyEngineMode),
57
+ 'group': value.group,
56
58
  };
57
59
  }
58
60
  exports.ApplicationRequestToJSON = ApplicationRequestToJSON;
@@ -65,6 +65,12 @@ export interface PatchedApplicationRequest {
65
65
  * @memberof PatchedApplicationRequest
66
66
  */
67
67
  policyEngineMode?: PolicyEngineMode;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof PatchedApplicationRequest
72
+ */
73
+ group?: string;
68
74
  }
69
75
  export declare function PatchedApplicationRequestFromJSON(json: any): PatchedApplicationRequest;
70
76
  export declare function PatchedApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedApplicationRequest;
@@ -34,6 +34,7 @@ function PatchedApplicationRequestFromJSONTyped(json, ignoreDiscriminator) {
34
34
  'metaDescription': !runtime_1.exists(json, 'meta_description') ? undefined : json['meta_description'],
35
35
  'metaPublisher': !runtime_1.exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
36
36
  'policyEngineMode': !runtime_1.exists(json, 'policy_engine_mode') ? undefined : PolicyEngineMode_1.PolicyEngineModeFromJSON(json['policy_engine_mode']),
37
+ 'group': !runtime_1.exists(json, 'group') ? undefined : json['group'],
37
38
  };
38
39
  }
39
40
  exports.PatchedApplicationRequestFromJSONTyped = PatchedApplicationRequestFromJSONTyped;
@@ -53,6 +54,7 @@ function PatchedApplicationRequestToJSON(value) {
53
54
  'meta_description': value.metaDescription,
54
55
  'meta_publisher': value.metaPublisher,
55
56
  'policy_engine_mode': PolicyEngineMode_1.PolicyEngineModeToJSON(value.policyEngineMode),
57
+ 'group': value.group,
56
58
  };
57
59
  }
58
60
  exports.PatchedApplicationRequestToJSON = PatchedApplicationRequestToJSON;
package/package.json CHANGED
@@ -1 +1 @@
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}
1
+ {"name": "@goauthentik/api", "version": "2022.3.3-1648933813", "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}
@@ -98,6 +98,12 @@ export interface Application {
98
98
  * @memberof Application
99
99
  */
100
100
  policyEngineMode?: PolicyEngineMode;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof Application
105
+ */
106
+ group?: string;
101
107
  }
102
108
 
103
109
  export function ApplicationFromJSON(json: any): Application {
@@ -121,6 +127,7 @@ export function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean
121
127
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
122
128
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
123
129
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
130
+ 'group': !exists(json, 'group') ? undefined : json['group'],
124
131
  };
125
132
  }
126
133
 
@@ -141,6 +148,7 @@ export function ApplicationToJSON(value?: Application | null): any {
141
148
  'meta_description': value.metaDescription,
142
149
  'meta_publisher': value.metaPublisher,
143
150
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
151
+ 'group': value.group,
144
152
  };
145
153
  }
146
154
 
@@ -80,6 +80,12 @@ export interface ApplicationRequest {
80
80
  * @memberof ApplicationRequest
81
81
  */
82
82
  policyEngineMode?: PolicyEngineMode;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof ApplicationRequest
87
+ */
88
+ group?: string;
83
89
  }
84
90
 
85
91
  export function ApplicationRequestFromJSON(json: any): ApplicationRequest {
@@ -100,6 +106,7 @@ export function ApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator:
100
106
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
101
107
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
102
108
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
109
+ 'group': !exists(json, 'group') ? undefined : json['group'],
103
110
  };
104
111
  }
105
112
 
@@ -120,6 +127,7 @@ export function ApplicationRequestToJSON(value?: ApplicationRequest | null): any
120
127
  'meta_description': value.metaDescription,
121
128
  'meta_publisher': value.metaPublisher,
122
129
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
130
+ 'group': value.group,
123
131
  };
124
132
  }
125
133
 
@@ -80,6 +80,12 @@ export interface PatchedApplicationRequest {
80
80
  * @memberof PatchedApplicationRequest
81
81
  */
82
82
  policyEngineMode?: PolicyEngineMode;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof PatchedApplicationRequest
87
+ */
88
+ group?: string;
83
89
  }
84
90
 
85
91
  export function PatchedApplicationRequestFromJSON(json: any): PatchedApplicationRequest {
@@ -100,6 +106,7 @@ export function PatchedApplicationRequestFromJSONTyped(json: any, ignoreDiscrimi
100
106
  'metaDescription': !exists(json, 'meta_description') ? undefined : json['meta_description'],
101
107
  'metaPublisher': !exists(json, 'meta_publisher') ? undefined : json['meta_publisher'],
102
108
  'policyEngineMode': !exists(json, 'policy_engine_mode') ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']),
109
+ 'group': !exists(json, 'group') ? undefined : json['group'],
103
110
  };
104
111
  }
105
112
 
@@ -120,6 +127,7 @@ export function PatchedApplicationRequestToJSON(value?: PatchedApplicationReques
120
127
  'meta_description': value.metaDescription,
121
128
  'meta_publisher': value.metaPublisher,
122
129
  'policy_engine_mode': PolicyEngineModeToJSON(value.policyEngineMode),
130
+ 'group': value.group,
123
131
  };
124
132
  }
125
133