@praxisui/core 9.0.19 → 9.0.21
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-25T20:56:01.702Z",
|
|
4
4
|
"packageName": "@praxisui/core",
|
|
5
|
-
"packageVersion": "9.0.
|
|
5
|
+
"packageVersion": "9.0.21",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 4,
|
|
@@ -4908,8 +4908,8 @@ class GenericCrudService {
|
|
|
4908
4908
|
if (params.schemaType) {
|
|
4909
4909
|
httpParams = httpParams.set('schemaType', params.schemaType);
|
|
4910
4910
|
}
|
|
4911
|
-
if (params.includeInternalSchemas
|
|
4912
|
-
httpParams = httpParams.set('includeInternalSchemas',
|
|
4911
|
+
if (params.includeInternalSchemas === true) {
|
|
4912
|
+
httpParams = httpParams.set('includeInternalSchemas', 'true');
|
|
4913
4913
|
}
|
|
4914
4914
|
if (params.idField) {
|
|
4915
4915
|
httpParams = httpParams.set('idField', params.idField);
|
|
@@ -5581,13 +5581,14 @@ class GenericCrudService {
|
|
|
5581
5581
|
return cached;
|
|
5582
5582
|
}
|
|
5583
5583
|
}
|
|
5584
|
-
const
|
|
5584
|
+
const schemaRequest = {
|
|
5585
5585
|
path,
|
|
5586
5586
|
operation: 'post',
|
|
5587
5587
|
schemaType: 'request',
|
|
5588
|
-
includeInternalSchemas: includeInternal,
|
|
5589
5588
|
endpointKey,
|
|
5590
|
-
|
|
5589
|
+
...(includeInternal ? { includeInternalSchemas: true } : {}),
|
|
5590
|
+
};
|
|
5591
|
+
const request$ = this.getFilteredSchema(schemaRequest).pipe(tap((fields) => this.updateRangeFieldHints(fields)), shareReplay(1), catchError((err) => {
|
|
5591
5592
|
if (cacheEnabled) {
|
|
5592
5593
|
this._filterSchemaCache.delete(cacheKey);
|
|
5593
5594
|
}
|
|
@@ -17650,7 +17651,9 @@ class SchemaMetadataClient {
|
|
|
17650
17651
|
u.searchParams.set('path', params.path);
|
|
17651
17652
|
u.searchParams.set('operation', (params.operation || 'get').toLowerCase());
|
|
17652
17653
|
u.searchParams.set('schemaType', (params.schemaType || 'response').toLowerCase());
|
|
17653
|
-
|
|
17654
|
+
if (params.includeInternalSchemas === true) {
|
|
17655
|
+
u.searchParams.set('includeInternalSchemas', 'true');
|
|
17656
|
+
}
|
|
17654
17657
|
if (params.idField) {
|
|
17655
17658
|
u.searchParams.set('idField', params.idField);
|
|
17656
17659
|
}
|
package/package.json
CHANGED