@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.
Files changed (47) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/dist/apis/AdminApi.d.ts +5 -5
  3. package/dist/apis/AdminApi.js +2 -2
  4. package/dist/apis/StagesApi.d.ts +3 -3
  5. package/dist/apis/StagesApi.js +3 -3
  6. package/dist/esm/apis/AdminApi.d.ts +5 -5
  7. package/dist/esm/apis/AdminApi.js +3 -3
  8. package/dist/esm/apis/StagesApi.d.ts +3 -3
  9. package/dist/esm/apis/StagesApi.js +3 -3
  10. package/dist/esm/models/DigitsEnum.d.ts +3 -3
  11. package/dist/esm/models/DigitsEnum.js +3 -3
  12. package/dist/esm/models/IdentificationStage.d.ts +6 -0
  13. package/dist/esm/models/IdentificationStage.js +2 -0
  14. package/dist/esm/models/IdentificationStageRequest.d.ts +6 -0
  15. package/dist/esm/models/IdentificationStageRequest.js +2 -0
  16. package/dist/esm/models/PatchedIdentificationStageRequest.d.ts +6 -0
  17. package/dist/esm/models/PatchedIdentificationStageRequest.js +2 -0
  18. package/dist/esm/models/{System.d.ts → SystemInfo.d.ts} +17 -17
  19. package/dist/esm/models/{System.js → SystemInfo.js} +9 -9
  20. package/dist/{models/SystemRuntime.d.ts → esm/models/SystemInfoRuntime.d.ts} +13 -13
  21. package/dist/esm/models/{SystemRuntime.js → SystemInfoRuntime.js} +6 -6
  22. package/dist/esm/models/index.d.ts +2 -2
  23. package/dist/esm/models/index.js +2 -2
  24. package/dist/models/DigitsEnum.d.ts +3 -3
  25. package/dist/models/DigitsEnum.js +3 -3
  26. package/dist/models/IdentificationStage.d.ts +6 -0
  27. package/dist/models/IdentificationStage.js +2 -0
  28. package/dist/models/IdentificationStageRequest.d.ts +6 -0
  29. package/dist/models/IdentificationStageRequest.js +2 -0
  30. package/dist/models/PatchedIdentificationStageRequest.d.ts +6 -0
  31. package/dist/models/PatchedIdentificationStageRequest.js +2 -0
  32. package/dist/models/{System.d.ts → SystemInfo.d.ts} +17 -17
  33. package/dist/models/{System.js → SystemInfo.js} +14 -14
  34. package/dist/{esm/models/SystemRuntime.d.ts → models/SystemInfoRuntime.d.ts} +13 -13
  35. package/dist/models/{SystemRuntime.js → SystemInfoRuntime.js} +11 -11
  36. package/dist/models/index.d.ts +2 -2
  37. package/dist/models/index.js +2 -2
  38. package/package.json +1 -1
  39. package/src/apis/AdminApi.ts +9 -9
  40. package/src/apis/StagesApi.ts +3 -3
  41. package/src/models/DigitsEnum.ts +3 -3
  42. package/src/models/IdentificationStage.ts +8 -0
  43. package/src/models/IdentificationStageRequest.ts +8 -0
  44. package/src/models/PatchedIdentificationStageRequest.ts +8 -0
  45. package/src/models/{System.ts → SystemInfo.ts} +24 -24
  46. package/src/models/{SystemRuntime.ts → SystemInfoRuntime.ts} +14 -14
  47. 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 SystemRuntime
19
+ * @interface SystemInfoRuntime
20
20
  */
21
- export interface SystemRuntime {
21
+ export interface SystemInfoRuntime {
22
22
  /**
23
23
  *
24
24
  * @type {string}
25
- * @memberof SystemRuntime
25
+ * @memberof SystemInfoRuntime
26
26
  */
27
27
  pythonVersion: string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
31
- * @memberof SystemRuntime
31
+ * @memberof SystemInfoRuntime
32
32
  */
33
33
  gunicornVersion: string;
34
34
  /**
35
35
  *
36
36
  * @type {string}
37
- * @memberof SystemRuntime
37
+ * @memberof SystemInfoRuntime
38
38
  */
39
39
  environment: string;
40
40
  /**
41
41
  *
42
42
  * @type {string}
43
- * @memberof SystemRuntime
43
+ * @memberof SystemInfoRuntime
44
44
  */
45
45
  architecture: string;
46
46
  /**
47
47
  *
48
48
  * @type {string}
49
- * @memberof SystemRuntime
49
+ * @memberof SystemInfoRuntime
50
50
  */
51
51
  platform: string;
52
52
  /**
53
53
  *
54
54
  * @type {string}
55
- * @memberof SystemRuntime
55
+ * @memberof SystemInfoRuntime
56
56
  */
57
57
  uname: string;
58
58
  }
59
59
 
60
60
  /**
61
- * Check if a given object implements the SystemRuntime interface.
61
+ * Check if a given object implements the SystemInfoRuntime interface.
62
62
  */
63
- export function instanceOfSystemRuntime(value: object): boolean {
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 SystemRuntimeFromJSON(json: any): SystemRuntime {
76
- return SystemRuntimeFromJSONTyped(json, false);
75
+ export function SystemInfoRuntimeFromJSON(json: any): SystemInfoRuntime {
76
+ return SystemInfoRuntimeFromJSONTyped(json, false);
77
77
  }
78
78
 
79
- export function SystemRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemRuntime {
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 SystemRuntimeToJSON(value?: SystemRuntime | null): any {
94
+ export function SystemInfoRuntimeToJSON(value?: SystemInfoRuntime | null): any {
95
95
  if (value === undefined) {
96
96
  return undefined;
97
97
  }
@@ -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 './System';
448
- export * from './SystemRuntime';
447
+ export * from './SystemInfo';
448
+ export * from './SystemInfoRuntime';
449
449
  export * from './TOTPDevice';
450
450
  export * from './TOTPDeviceRequest';
451
451
  export * from './Task';