@praxisui/core 9.0.19 → 9.0.20

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-25T03:30:16.706Z",
3
+ "generatedAt": "2026-08-25T15:08:43.145Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.19",
5
+ "packageVersion": "9.0.20",
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 !== undefined) {
4912
- httpParams = httpParams.set('includeInternalSchemas', String(params.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 request$ = this.getFilteredSchema({
5584
+ const schemaRequest = {
5585
5585
  path,
5586
5586
  operation: 'post',
5587
5587
  schemaType: 'request',
5588
- includeInternalSchemas: includeInternal,
5589
5588
  endpointKey,
5590
- }).pipe(tap((fields) => this.updateRangeFieldHints(fields)), shareReplay(1), catchError((err) => {
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
- u.searchParams.set('includeInternalSchemas', String(!!params.includeInternalSchemas));
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.19",
3
+ "version": "9.0.20",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",