@cloudflare/workers-types 4.20250820.0 → 4.20250822.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/experimental/index.d.ts +1 -0
- package/experimental/index.ts +1 -0
- package/package.json +1 -1
package/experimental/index.d.ts
CHANGED
|
@@ -525,6 +525,7 @@ interface DurableObjectId {
|
|
|
525
525
|
toString(): string;
|
|
526
526
|
equals(other: DurableObjectId): boolean;
|
|
527
527
|
readonly name?: string;
|
|
528
|
+
readonly jurisdiction?: string;
|
|
528
529
|
}
|
|
529
530
|
interface DurableObjectNamespace<
|
|
530
531
|
T extends Rpc.DurableObjectBranded | undefined = undefined,
|
package/experimental/index.ts
CHANGED
|
@@ -530,6 +530,7 @@ export interface DurableObjectId {
|
|
|
530
530
|
toString(): string;
|
|
531
531
|
equals(other: DurableObjectId): boolean;
|
|
532
532
|
readonly name?: string;
|
|
533
|
+
readonly jurisdiction?: string;
|
|
533
534
|
}
|
|
534
535
|
export interface DurableObjectNamespace<
|
|
535
536
|
T extends Rpc.DurableObjectBranded | undefined = undefined,
|
package/package.json
CHANGED