@goauthentik/api 2024.6.3-1723234818 → 2024.6.3-1723497462
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/dist/apis/PropertymappingsApi.d.ts +105 -105
- package/dist/apis/PropertymappingsApi.js +175 -175
- package/dist/esm/apis/PropertymappingsApi.d.ts +105 -105
- package/dist/esm/apis/PropertymappingsApi.js +175 -175
- package/dist/esm/models/Version.d.ts +6 -0
- package/dist/esm/models/Version.js +2 -0
- package/dist/models/Version.d.ts +6 -0
- package/dist/models/Version.js +2 -0
- package/package.json +1 -1
- package/src/apis/PropertymappingsApi.ts +210 -210
- package/src/models/Version.ts +8 -0
package/src/models/Version.ts
CHANGED
|
@@ -49,6 +49,12 @@ export interface Version {
|
|
|
49
49
|
* @memberof Version
|
|
50
50
|
*/
|
|
51
51
|
readonly outdated: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Check if any outpost is outdated/has a version mismatch
|
|
54
|
+
* @type {boolean}
|
|
55
|
+
* @memberof Version
|
|
56
|
+
*/
|
|
57
|
+
readonly outpostOutdated: boolean;
|
|
52
58
|
}
|
|
53
59
|
|
|
54
60
|
/**
|
|
@@ -61,6 +67,7 @@ export function instanceOfVersion(value: object): boolean {
|
|
|
61
67
|
isInstance = isInstance && "versionLatestValid" in value;
|
|
62
68
|
isInstance = isInstance && "buildHash" in value;
|
|
63
69
|
isInstance = isInstance && "outdated" in value;
|
|
70
|
+
isInstance = isInstance && "outpostOutdated" in value;
|
|
64
71
|
|
|
65
72
|
return isInstance;
|
|
66
73
|
}
|
|
@@ -80,6 +87,7 @@ export function VersionFromJSONTyped(json: any, ignoreDiscriminator: boolean): V
|
|
|
80
87
|
'versionLatestValid': json['version_latest_valid'],
|
|
81
88
|
'buildHash': json['build_hash'],
|
|
82
89
|
'outdated': json['outdated'],
|
|
90
|
+
'outpostOutdated': json['outpost_outdated'],
|
|
83
91
|
};
|
|
84
92
|
}
|
|
85
93
|
|