@praxisui/core 8.0.0-beta.74 → 8.0.0-beta.76
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.
|
@@ -11861,6 +11861,7 @@ class ResourceSurfaceOpenAdapterService {
|
|
|
11861
11861
|
...(options.apiUrlEntry ? { apiUrlEntry: options.apiUrlEntry } : {}),
|
|
11862
11862
|
}
|
|
11863
11863
|
: undefined;
|
|
11864
|
+
const resolvedApiEntry = this.discovery.resolveApiEntry(discoveryOptions);
|
|
11864
11865
|
const resolvedSchemaUrl = this.discovery.resolveHref(surface.schemaUrl, discoveryOptions);
|
|
11865
11866
|
const resolvedSubmitUrl = this.isWritableFormSurface(surface.kind)
|
|
11866
11867
|
? this.discovery.resolveHref(surface.path, discoveryOptions)
|
|
@@ -11911,7 +11912,7 @@ class ResourceSurfaceOpenAdapterService {
|
|
|
11911
11912
|
mode,
|
|
11912
11913
|
schemaUrl: resolvedSchemaUrl,
|
|
11913
11914
|
apiEndpointKey: options.endpointKey ?? null,
|
|
11914
|
-
apiUrlEntry: options.apiUrlEntry ??
|
|
11915
|
+
apiUrlEntry: options.apiUrlEntry ?? resolvedApiEntry,
|
|
11915
11916
|
};
|
|
11916
11917
|
if (surface.scope === 'ITEM' && this.isReadableFormSurface(surface.kind)) {
|
|
11917
11918
|
payload.widget.inputs['customEndpoints'] = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.76",
|
|
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",
|