@stemy/ngx-utils 19.6.0 → 19.6.2
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.
|
@@ -3434,15 +3434,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
3434
3434
|
}] });
|
|
3435
3435
|
|
|
3436
3436
|
class StaticAuthService {
|
|
3437
|
-
|
|
3438
|
-
|
|
3437
|
+
get isAuthenticated() {
|
|
3438
|
+
return false;
|
|
3439
3439
|
}
|
|
3440
3440
|
checkAuthenticated() {
|
|
3441
3441
|
return Promise.resolve(this.isAuthenticated);
|
|
3442
3442
|
}
|
|
3443
|
-
getReturnState(route) {
|
|
3444
|
-
return null;
|
|
3445
|
-
}
|
|
3446
3443
|
}
|
|
3447
3444
|
|
|
3448
3445
|
class ConfigService {
|
|
@@ -4063,7 +4060,7 @@ class OpenApiService {
|
|
|
4063
4060
|
const props = !property.items ? [property] : [property, property.items];
|
|
4064
4061
|
const references = [];
|
|
4065
4062
|
for (const prop of props) {
|
|
4066
|
-
if (this.isDynamicSchema(prop)) {
|
|
4063
|
+
if (this.isDynamicSchema(prop) || ObjectUtils.isStringWithValue(prop.$ref)) {
|
|
4067
4064
|
references.push(prop);
|
|
4068
4065
|
continue;
|
|
4069
4066
|
}
|