@cosmicdrift/kumiko-headless 0.20.0 → 0.21.0
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/LICENSE +1 -1
- package/package.json +2 -2
- package/src/dispatcher/types.ts +1 -1
package/LICENSE
CHANGED
|
@@ -21,7 +21,7 @@ managed offering of the Licensed Work.
|
|
|
21
21
|
This restriction does not apply to the Licensor, any entity controlled by,
|
|
22
22
|
controlling, or under common control with the Licensor ("Affiliates"), or
|
|
23
23
|
contractors acting on their behalf. The Licensor remains free to use the
|
|
24
|
-
Licensed Work for any purpose, including for the operation of kumiko.
|
|
24
|
+
Licensed Work for any purpose, including for the operation of kumiko.rocks.
|
|
25
25
|
|
|
26
26
|
Change Date: 2030-05-05
|
|
27
27
|
Change License: Apache License, Version 2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-headless",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"description": "Headless UI logic for Kumiko — Dispatcher contract, Form-Controller, View-Model, Nav-Resolver. Plattform- und React-frei; jeder Renderer (renderer, renderer-web, renderer-native, …) komponiert darauf.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"bugs": {
|
|
13
13
|
"url": "https://github.com/CosmicDriftGameStudio/kumiko-framework/issues"
|
|
14
14
|
},
|
|
15
|
-
"homepage": "https://kumiko.
|
|
15
|
+
"homepage": "https://kumiko.rocks",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"kumiko": {
|
|
18
18
|
"runtime": "client"
|
package/src/dispatcher/types.ts
CHANGED
|
@@ -51,7 +51,7 @@ export type DispatcherError = {
|
|
|
51
51
|
readonly details?: {
|
|
52
52
|
readonly fields?: readonly FieldIssue[];
|
|
53
53
|
} & Record<string, unknown>;
|
|
54
|
-
// Self-service deep-link to docs.kumiko.
|
|
54
|
+
// Self-service deep-link to docs.kumiko.rocks/errors/<reason>. Always set on
|
|
55
55
|
// server-side errors (computed from details.reason or code by KumikoError).
|
|
56
56
|
// Optional only because client-synthesized errors (network drop, savable-
|
|
57
57
|
// queue rejection before transport) can't compute a meaningful docs URL.
|