@orpc/experimental-durable-iterator 1.12.0 → 1.12.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/README.md +2 -2
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<image align="center" src="https://orpc.
|
|
2
|
+
<image align="center" src="https://orpc.dev/logo.webp" width=280 alt="oRPC logo" />
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
<h1></h1>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
## Documentation
|
|
47
47
|
|
|
48
|
-
You can find the full documentation [here](https://orpc.
|
|
48
|
+
You can find the full documentation [here](https://orpc.dev).
|
|
49
49
|
|
|
50
50
|
## Packages
|
|
51
51
|
|
package/dist/client/index.d.mts
CHANGED
|
@@ -47,7 +47,7 @@ interface DurableIteratorLinkPluginOptions<T extends ClientContext> extends Omit
|
|
|
47
47
|
refreshTokenDelayInSeconds?: Value<Promisable<number>, [tokenPayload: DurableIteratorTokenPayload, options: StandardLinkInterceptorOptions<T>]>;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* @see {@link https://orpc.
|
|
50
|
+
* @see {@link https://orpc.dev/docs/integrations/durable-iterator Durable Iterator Integration}
|
|
51
51
|
*/
|
|
52
52
|
declare class DurableIteratorLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
53
53
|
readonly CONTEXT_SYMBOL: symbol;
|
package/dist/client/index.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ interface DurableIteratorLinkPluginOptions<T extends ClientContext> extends Omit
|
|
|
47
47
|
refreshTokenDelayInSeconds?: Value<Promisable<number>, [tokenPayload: DurableIteratorTokenPayload, options: StandardLinkInterceptorOptions<T>]>;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* @see {@link https://orpc.
|
|
50
|
+
* @see {@link https://orpc.dev/docs/integrations/durable-iterator Durable Iterator Integration}
|
|
51
51
|
*/
|
|
52
52
|
declare class DurableIteratorLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
|
|
53
53
|
readonly CONTEXT_SYMBOL: symbol;
|
package/dist/index.d.mts
CHANGED
|
@@ -70,7 +70,7 @@ interface DurableIteratorHandlerPluginContext {
|
|
|
70
70
|
isClientDurableIteratorOutput?: boolean;
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
|
-
* @see {@link https://orpc.
|
|
73
|
+
* @see {@link https://orpc.dev/docs/integrations/durable-iterator Durable Iterator Integration}
|
|
74
74
|
*/
|
|
75
75
|
declare class DurableIteratorHandlerPlugin<T extends Context> implements StandardHandlerPlugin<T> {
|
|
76
76
|
readonly CONTEXT_SYMBOL: symbol;
|
package/dist/index.d.ts
CHANGED
|
@@ -70,7 +70,7 @@ interface DurableIteratorHandlerPluginContext {
|
|
|
70
70
|
isClientDurableIteratorOutput?: boolean;
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
|
-
* @see {@link https://orpc.
|
|
73
|
+
* @see {@link https://orpc.dev/docs/integrations/durable-iterator Durable Iterator Integration}
|
|
74
74
|
*/
|
|
75
75
|
declare class DurableIteratorHandlerPlugin<T extends Context> implements StandardHandlerPlugin<T> {
|
|
76
76
|
readonly CONTEXT_SYMBOL: symbol;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/experimental-durable-iterator",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.1",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"homepage": "https://orpc.
|
|
6
|
+
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/unnoq/orpc.git",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"partysocket": "^1.1.6",
|
|
38
38
|
"valibot": "^1.2.0",
|
|
39
|
-
"@orpc/client": "1.12.
|
|
40
|
-
"@orpc/
|
|
41
|
-
"@orpc/
|
|
42
|
-
"@orpc/
|
|
39
|
+
"@orpc/client": "1.12.1",
|
|
40
|
+
"@orpc/server": "1.12.1",
|
|
41
|
+
"@orpc/shared": "1.12.1",
|
|
42
|
+
"@orpc/contract": "1.12.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@cloudflare/workers-types": "^4.20251121.0",
|
|
46
46
|
"@types/node": "^22.15.30",
|
|
47
|
-
"@orpc/standard-server-peer": "1.12.
|
|
47
|
+
"@orpc/standard-server-peer": "1.12.1"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "unbuild",
|