[add] more repos and generic filtering

This commit is contained in:
2025-08-11 13:56:13 +01:00
parent aa21c1d866
commit b044536a3b
9 changed files with 5320 additions and 27 deletions

View File

@@ -80,7 +80,11 @@ export class LibraryTypesRecorder {
return literalValue;
} else if (type.isUndefined()) {
return undefined;
} else if (type.isString()) {
} else if(type.isNull()){
return null;
} else if(type.isBigInt()){
return simpleFaker.number.bigInt();
}else if (type.isString()) {
return simpleFaker.string.alphanumeric();
} else if (type.isNumber()) {