@lunora/runtime 1.0.0-alpha.100 → 1.0.0-alpha.101
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/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4515,8 +4515,10 @@ interface CrossShardRelationOptions {
|
|
|
4515
4515
|
/** Forwarded identity claims (the `x-lunora-identity` envelope), when present. */
|
|
4516
4516
|
identity?: Record<string, unknown>;
|
|
4517
4517
|
/**
|
|
4518
|
-
* Origin the worker is reachable at
|
|
4519
|
-
*
|
|
4518
|
+
* Origin the worker is reachable at. The DO issues a loopback subrequest to
|
|
4519
|
+
* `${origin}/_lunora/rpc`, so this is the app's own public URL — the same
|
|
4520
|
+
* value the SchedulerDO dispatches from, which is why apps wire
|
|
4521
|
+
* `.global({ origin })` to the `LUNORA_ORIGIN_URL` binding.
|
|
4520
4522
|
*/
|
|
4521
4523
|
origin: string;
|
|
4522
4524
|
/** Forwarded user id (the `x-lunora-userid` header), when authenticated. */
|
package/dist/index.d.ts
CHANGED
|
@@ -4515,8 +4515,10 @@ interface CrossShardRelationOptions {
|
|
|
4515
4515
|
/** Forwarded identity claims (the `x-lunora-identity` envelope), when present. */
|
|
4516
4516
|
identity?: Record<string, unknown>;
|
|
4517
4517
|
/**
|
|
4518
|
-
* Origin the worker is reachable at
|
|
4519
|
-
*
|
|
4518
|
+
* Origin the worker is reachable at. The DO issues a loopback subrequest to
|
|
4519
|
+
* `${origin}/_lunora/rpc`, so this is the app's own public URL — the same
|
|
4520
|
+
* value the SchedulerDO dispatches from, which is why apps wire
|
|
4521
|
+
* `.global({ origin })` to the `LUNORA_ORIGIN_URL` binding.
|
|
4520
4522
|
*/
|
|
4521
4523
|
origin: string;
|
|
4522
4524
|
/** Forwarded user id (the `x-lunora-userid` header), when authenticated. */
|