@arqel-dev/types 0.9.4 → 0.10.1
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.
- package/dist/resources.d.ts +9 -0
- package/package.json +1 -1
package/dist/resources.d.ts
CHANGED
|
@@ -29,6 +29,15 @@ interface ResourceMeta {
|
|
|
29
29
|
pluralLabel: string;
|
|
30
30
|
navigationIcon: string | null;
|
|
31
31
|
navigationGroup: string | null;
|
|
32
|
+
/**
|
|
33
|
+
* Panel base path (leading slash, no trailing). Server emits this
|
|
34
|
+
* via `InertiaDataBuilder::resolvePanelPath`. Edit/Create pages
|
|
35
|
+
* use it to construct absolute submit URLs.
|
|
36
|
+
*
|
|
37
|
+
* Optional for backwards compatibility with v0.9.x payloads that
|
|
38
|
+
* predate this field.
|
|
39
|
+
*/
|
|
40
|
+
panelPath?: string;
|
|
32
41
|
}
|
|
33
42
|
/**
|
|
34
43
|
* Pagination payload (`Illuminate\Pagination\LengthAwarePaginator`
|
package/package.json
CHANGED