@orpc/standard-server-peer 1.8.3 → 1.8.4
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 +3 -3
package/dist/index.d.mts
CHANGED
@@ -79,9 +79,11 @@ interface AsyncIdQueueCloseOptions {
|
|
79
79
|
}
|
80
80
|
declare class AsyncIdQueue<T> {
|
81
81
|
private readonly openIds;
|
82
|
-
private readonly
|
83
|
-
private readonly
|
82
|
+
private readonly queues;
|
83
|
+
private readonly waiters;
|
84
84
|
get length(): number;
|
85
|
+
get waiterIds(): string[];
|
86
|
+
hasBufferedItems(id: string): boolean;
|
85
87
|
open(id: string): void;
|
86
88
|
isOpen(id: string): boolean;
|
87
89
|
push(id: string, item: T): void;
|
package/dist/index.d.ts
CHANGED
@@ -79,9 +79,11 @@ interface AsyncIdQueueCloseOptions {
|
|
79
79
|
}
|
80
80
|
declare class AsyncIdQueue<T> {
|
81
81
|
private readonly openIds;
|
82
|
-
private readonly
|
83
|
-
private readonly
|
82
|
+
private readonly queues;
|
83
|
+
private readonly waiters;
|
84
84
|
get length(): number;
|
85
|
+
get waiterIds(): string[];
|
86
|
+
hasBufferedItems(id: string): boolean;
|
85
87
|
open(id: string): void;
|
86
88
|
isOpen(id: string): boolean;
|
87
89
|
push(id: string, item: T): void;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orpc/standard-server-peer",
|
3
3
|
"type": "module",
|
4
|
-
"version": "1.8.
|
4
|
+
"version": "1.8.4",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://unnoq.com",
|
7
7
|
"repository": {
|
@@ -23,8 +23,8 @@
|
|
23
23
|
"dist"
|
24
24
|
],
|
25
25
|
"dependencies": {
|
26
|
-
"@orpc/
|
27
|
-
"@orpc/
|
26
|
+
"@orpc/shared": "1.8.4",
|
27
|
+
"@orpc/standard-server": "1.8.4"
|
28
28
|
},
|
29
29
|
"scripts": {
|
30
30
|
"build": "unbuild",
|