@goauthentik/api 2024.2.2-1711369360 → 2024.2.2-1711460547
Sign up to get free protection for your applications and to get access to all the features.
@@ -29,10 +29,10 @@ export interface Version {
|
|
29
29
|
readonly versionLatest: string;
|
30
30
|
/**
|
31
31
|
* Check if latest version is valid
|
32
|
-
* @type {
|
32
|
+
* @type {boolean}
|
33
33
|
* @memberof Version
|
34
34
|
*/
|
35
|
-
readonly versionLatestValid:
|
35
|
+
readonly versionLatestValid: boolean;
|
36
36
|
/**
|
37
37
|
* Get build hash, if version is not latest or released
|
38
38
|
* @type {string}
|
package/dist/models/Version.d.ts
CHANGED
@@ -29,10 +29,10 @@ export interface Version {
|
|
29
29
|
readonly versionLatest: string;
|
30
30
|
/**
|
31
31
|
* Check if latest version is valid
|
32
|
-
* @type {
|
32
|
+
* @type {boolean}
|
33
33
|
* @memberof Version
|
34
34
|
*/
|
35
|
-
readonly versionLatestValid:
|
35
|
+
readonly versionLatestValid: boolean;
|
36
36
|
/**
|
37
37
|
* Get build hash, if version is not latest or released
|
38
38
|
* @type {string}
|
package/package.json
CHANGED
package/src/models/Version.ts
CHANGED
@@ -33,10 +33,10 @@ export interface Version {
|
|
33
33
|
readonly versionLatest: string;
|
34
34
|
/**
|
35
35
|
* Check if latest version is valid
|
36
|
-
* @type {
|
36
|
+
* @type {boolean}
|
37
37
|
* @memberof Version
|
38
38
|
*/
|
39
|
-
readonly versionLatestValid:
|
39
|
+
readonly versionLatestValid: boolean;
|
40
40
|
/**
|
41
41
|
* Get build hash, if version is not latest or released
|
42
42
|
* @type {string}
|