@goauthentik/api 2023.10.7-1706550558 → 2023.10.7-1707321538

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.
@@ -22,6 +22,7 @@ export interface CoreApplicationsDestroyRequest {
22
22
  slug: string;
23
23
  }
24
24
  export interface CoreApplicationsListRequest {
25
+ forUser?: number;
25
26
  group?: string;
26
27
  metaDescription?: string;
27
28
  metaLaunchUrl?: string;
@@ -132,6 +132,9 @@ class CoreApi extends runtime.BaseAPI {
132
132
  coreApplicationsListRaw(requestParameters, initOverrides) {
133
133
  return __awaiter(this, void 0, void 0, function* () {
134
134
  const queryParameters = {};
135
+ if (requestParameters.forUser !== undefined) {
136
+ queryParameters['for_user'] = requestParameters.forUser;
137
+ }
135
138
  if (requestParameters.group !== undefined) {
136
139
  queryParameters['group'] = requestParameters.group;
137
140
  }
@@ -22,6 +22,7 @@ export interface CoreApplicationsDestroyRequest {
22
22
  slug: string;
23
23
  }
24
24
  export interface CoreApplicationsListRequest {
25
+ forUser?: number;
25
26
  group?: string;
26
27
  metaDescription?: string;
27
28
  metaLaunchUrl?: string;
@@ -129,6 +129,9 @@ export class CoreApi extends runtime.BaseAPI {
129
129
  coreApplicationsListRaw(requestParameters, initOverrides) {
130
130
  return __awaiter(this, void 0, void 0, function* () {
131
131
  const queryParameters = {};
132
+ if (requestParameters.forUser !== undefined) {
133
+ queryParameters['for_user'] = requestParameters.forUser;
134
+ }
132
135
  if (requestParameters.group !== undefined) {
133
136
  queryParameters['group'] = requestParameters.group;
134
137
  }
@@ -47,19 +47,19 @@ export interface SystemTask {
47
47
  */
48
48
  description: string;
49
49
  /**
50
- * Timestamp when the task started
50
+ *
51
51
  * @type {Date}
52
52
  * @memberof SystemTask
53
53
  */
54
54
  readonly startTimestamp: Date;
55
55
  /**
56
- * Timestamp when the task finished
56
+ *
57
57
  * @type {Date}
58
58
  * @memberof SystemTask
59
59
  */
60
60
  readonly finishTimestamp: Date;
61
61
  /**
62
- * Get the duration a task took to run
62
+ *
63
63
  * @type {number}
64
64
  * @memberof SystemTask
65
65
  */
@@ -72,7 +72,7 @@ export interface User {
72
72
  */
73
73
  email?: string;
74
74
  /**
75
- *
75
+ * User's avatar, either a http/https URL or a data URI
76
76
  * @type {string}
77
77
  * @memberof User
78
78
  */
@@ -60,7 +60,7 @@ export interface UserSelf {
60
60
  */
61
61
  email?: string;
62
62
  /**
63
- *
63
+ * User's avatar, either a http/https URL or a data URI
64
64
  * @type {string}
65
65
  * @memberof UserSelf
66
66
  */
@@ -47,19 +47,19 @@ export interface SystemTask {
47
47
  */
48
48
  description: string;
49
49
  /**
50
- * Timestamp when the task started
50
+ *
51
51
  * @type {Date}
52
52
  * @memberof SystemTask
53
53
  */
54
54
  readonly startTimestamp: Date;
55
55
  /**
56
- * Timestamp when the task finished
56
+ *
57
57
  * @type {Date}
58
58
  * @memberof SystemTask
59
59
  */
60
60
  readonly finishTimestamp: Date;
61
61
  /**
62
- * Get the duration a task took to run
62
+ *
63
63
  * @type {number}
64
64
  * @memberof SystemTask
65
65
  */
@@ -72,7 +72,7 @@ export interface User {
72
72
  */
73
73
  email?: string;
74
74
  /**
75
- *
75
+ * User's avatar, either a http/https URL or a data URI
76
76
  * @type {string}
77
77
  * @memberof User
78
78
  */
@@ -60,7 +60,7 @@ export interface UserSelf {
60
60
  */
61
61
  email?: string;
62
62
  /**
63
- *
63
+ * User's avatar, either a http/https URL or a data URI
64
64
  * @type {string}
65
65
  * @memberof UserSelf
66
66
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2023.10.7-1706550558",
3
+ "version": "2023.10.7-1707321538",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -162,6 +162,7 @@ export interface CoreApplicationsDestroyRequest {
162
162
  }
163
163
 
164
164
  export interface CoreApplicationsListRequest {
165
+ forUser?: number;
165
166
  group?: string;
166
167
  metaDescription?: string;
167
168
  metaLaunchUrl?: string;
@@ -592,6 +593,10 @@ export class CoreApi extends runtime.BaseAPI {
592
593
  async coreApplicationsListRaw(requestParameters: CoreApplicationsListRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedApplicationList>> {
593
594
  const queryParameters: any = {};
594
595
 
596
+ if (requestParameters.forUser !== undefined) {
597
+ queryParameters['for_user'] = requestParameters.forUser;
598
+ }
599
+
595
600
  if (requestParameters.group !== undefined) {
596
601
  queryParameters['group'] = requestParameters.group;
597
602
  }
@@ -57,19 +57,19 @@ export interface SystemTask {
57
57
  */
58
58
  description: string;
59
59
  /**
60
- * Timestamp when the task started
60
+ *
61
61
  * @type {Date}
62
62
  * @memberof SystemTask
63
63
  */
64
64
  readonly startTimestamp: Date;
65
65
  /**
66
- * Timestamp when the task finished
66
+ *
67
67
  * @type {Date}
68
68
  * @memberof SystemTask
69
69
  */
70
70
  readonly finishTimestamp: Date;
71
71
  /**
72
- * Get the duration a task took to run
72
+ *
73
73
  * @type {number}
74
74
  * @memberof SystemTask
75
75
  */
@@ -87,7 +87,7 @@ export interface User {
87
87
  */
88
88
  email?: string;
89
89
  /**
90
- *
90
+ * User's avatar, either a http/https URL or a data URI
91
91
  * @type {string}
92
92
  * @memberof User
93
93
  */
@@ -75,7 +75,7 @@ export interface UserSelf {
75
75
  */
76
76
  email?: string;
77
77
  /**
78
- *
78
+ * User's avatar, either a http/https URL or a data URI
79
79
  * @type {string}
80
80
  * @memberof UserSelf
81
81
  */