@goauthentik/api 2023.10.3-1699884123 → 2023.10.3-1700268969
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.
- package/.openapi-generator/FILES +2 -2
- package/dist/apis/AdminApi.d.ts +5 -5
- package/dist/apis/AdminApi.js +2 -2
- package/dist/apis/StagesApi.d.ts +3 -3
- package/dist/apis/StagesApi.js +3 -3
- package/dist/esm/apis/AdminApi.d.ts +5 -5
- package/dist/esm/apis/AdminApi.js +3 -3
- package/dist/esm/apis/StagesApi.d.ts +3 -3
- package/dist/esm/apis/StagesApi.js +3 -3
- package/dist/esm/models/DigitsEnum.d.ts +3 -3
- package/dist/esm/models/DigitsEnum.js +3 -3
- package/dist/esm/models/IdentificationStage.d.ts +6 -0
- package/dist/esm/models/IdentificationStage.js +2 -0
- package/dist/esm/models/IdentificationStageRequest.d.ts +6 -0
- package/dist/esm/models/IdentificationStageRequest.js +2 -0
- package/dist/esm/models/PatchedIdentificationStageRequest.d.ts +6 -0
- package/dist/esm/models/PatchedIdentificationStageRequest.js +2 -0
- package/dist/esm/models/{System.d.ts → SystemInfo.d.ts} +17 -17
- package/dist/esm/models/{System.js → SystemInfo.js} +9 -9
- package/dist/{models/SystemRuntime.d.ts → esm/models/SystemInfoRuntime.d.ts} +13 -13
- package/dist/esm/models/{SystemRuntime.js → SystemInfoRuntime.js} +6 -6
- package/dist/esm/models/index.d.ts +2 -2
- package/dist/esm/models/index.js +2 -2
- package/dist/models/DigitsEnum.d.ts +3 -3
- package/dist/models/DigitsEnum.js +3 -3
- package/dist/models/IdentificationStage.d.ts +6 -0
- package/dist/models/IdentificationStage.js +2 -0
- package/dist/models/IdentificationStageRequest.d.ts +6 -0
- package/dist/models/IdentificationStageRequest.js +2 -0
- package/dist/models/PatchedIdentificationStageRequest.d.ts +6 -0
- package/dist/models/PatchedIdentificationStageRequest.js +2 -0
- package/dist/models/{System.d.ts → SystemInfo.d.ts} +17 -17
- package/dist/models/{System.js → SystemInfo.js} +14 -14
- package/dist/{esm/models/SystemRuntime.d.ts → models/SystemInfoRuntime.d.ts} +13 -13
- package/dist/models/{SystemRuntime.js → SystemInfoRuntime.js} +11 -11
- package/dist/models/index.d.ts +2 -2
- package/dist/models/index.js +2 -2
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +9 -9
- package/src/apis/StagesApi.ts +3 -3
- package/src/models/DigitsEnum.ts +3 -3
- package/src/models/IdentificationStage.ts +8 -0
- package/src/models/IdentificationStageRequest.ts +8 -0
- package/src/models/PatchedIdentificationStageRequest.ts +8 -0
- package/src/models/{System.ts → SystemInfo.ts} +24 -24
- package/src/models/{SystemRuntime.ts → SystemInfoRuntime.ts} +14 -14
- package/src/models/index.ts +2 -2
|
@@ -16,51 +16,51 @@ import { exists, mapValues } from '../runtime';
|
|
|
16
16
|
/**
|
|
17
17
|
* Get versions
|
|
18
18
|
* @export
|
|
19
|
-
* @interface
|
|
19
|
+
* @interface SystemInfoRuntime
|
|
20
20
|
*/
|
|
21
|
-
export interface
|
|
21
|
+
export interface SystemInfoRuntime {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
24
|
* @type {string}
|
|
25
|
-
* @memberof
|
|
25
|
+
* @memberof SystemInfoRuntime
|
|
26
26
|
*/
|
|
27
27
|
pythonVersion: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
31
|
-
* @memberof
|
|
31
|
+
* @memberof SystemInfoRuntime
|
|
32
32
|
*/
|
|
33
33
|
gunicornVersion: string;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
37
|
-
* @memberof
|
|
37
|
+
* @memberof SystemInfoRuntime
|
|
38
38
|
*/
|
|
39
39
|
environment: string;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {string}
|
|
43
|
-
* @memberof
|
|
43
|
+
* @memberof SystemInfoRuntime
|
|
44
44
|
*/
|
|
45
45
|
architecture: string;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
48
|
* @type {string}
|
|
49
|
-
* @memberof
|
|
49
|
+
* @memberof SystemInfoRuntime
|
|
50
50
|
*/
|
|
51
51
|
platform: string;
|
|
52
52
|
/**
|
|
53
53
|
*
|
|
54
54
|
* @type {string}
|
|
55
|
-
* @memberof
|
|
55
|
+
* @memberof SystemInfoRuntime
|
|
56
56
|
*/
|
|
57
57
|
uname: string;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
/**
|
|
61
|
-
* Check if a given object implements the
|
|
61
|
+
* Check if a given object implements the SystemInfoRuntime interface.
|
|
62
62
|
*/
|
|
63
|
-
export function
|
|
63
|
+
export function instanceOfSystemInfoRuntime(value: object): boolean {
|
|
64
64
|
let isInstance = true;
|
|
65
65
|
isInstance = isInstance && "pythonVersion" in value;
|
|
66
66
|
isInstance = isInstance && "gunicornVersion" in value;
|
|
@@ -72,11 +72,11 @@ export function instanceOfSystemRuntime(value: object): boolean {
|
|
|
72
72
|
return isInstance;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
export function
|
|
76
|
-
return
|
|
75
|
+
export function SystemInfoRuntimeFromJSON(json: any): SystemInfoRuntime {
|
|
76
|
+
return SystemInfoRuntimeFromJSONTyped(json, false);
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
-
export function
|
|
79
|
+
export function SystemInfoRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemInfoRuntime {
|
|
80
80
|
if ((json === undefined) || (json === null)) {
|
|
81
81
|
return json;
|
|
82
82
|
}
|
|
@@ -91,7 +91,7 @@ export function SystemRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
export function
|
|
94
|
+
export function SystemInfoRuntimeToJSON(value?: SystemInfoRuntime | null): any {
|
|
95
95
|
if (value === undefined) {
|
|
96
96
|
return undefined;
|
|
97
97
|
}
|
package/src/models/index.ts
CHANGED
|
@@ -444,8 +444,8 @@ export * from './StaticDeviceRequest';
|
|
|
444
444
|
export * from './StaticDeviceToken';
|
|
445
445
|
export * from './StaticDeviceTokenRequest';
|
|
446
446
|
export * from './SubModeEnum';
|
|
447
|
-
export * from './
|
|
448
|
-
export * from './
|
|
447
|
+
export * from './SystemInfo';
|
|
448
|
+
export * from './SystemInfoRuntime';
|
|
449
449
|
export * from './TOTPDevice';
|
|
450
450
|
export * from './TOTPDeviceRequest';
|
|
451
451
|
export * from './Task';
|