@orpc/tanstack-query 0.0.0-next.2fa71ec → 0.0.0-next.31773de

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 CHANGED
@@ -17,6 +17,9 @@
17
17
  <a href="https://discord.gg/TXEbwRBvQn">
18
18
  <img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
19
19
  </a>
20
+ <a href="https://deepwiki.com/unnoq/orpc">
21
+ <img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
22
+ </a>
20
23
  </div>
21
24
 
22
25
  <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
@@ -30,7 +33,8 @@
30
33
  - **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
31
34
  - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
32
35
  - **📝 Contract-First Development**: Optionally define your API contract before implementation.
33
- - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
36
+ - **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
37
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
34
38
  - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
35
39
  - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
36
40
  - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
@@ -38,7 +42,6 @@
38
42
  - **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
39
43
  - **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
40
44
  - **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
41
- - **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
42
45
 
43
46
  ## Documentation
44
47
 
@@ -49,14 +52,14 @@ You can find the full documentation [here](https://orpc.unnoq.com).
49
52
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
50
53
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
51
54
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
52
- - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
55
+ - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
56
+ - [@orpc/otel](https://www.npmjs.com/package/@orpc/otel): [OpenTelemetry](https://opentelemetry.io/) integration for observability.
57
+ - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
53
58
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
54
- - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
55
- - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
56
- - [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
57
- - [@orpc/svelte-query](https://www.npmjs.com/package/@orpc/svelte-query): Integration with [Svelte Query](https://tanstack.com/query/latest/docs/framework/svelte/overview).
59
+ - [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
60
+ - [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
58
61
  - [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
59
- - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
62
+ - [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
60
63
  - [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
61
64
  - [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): OpenAPI spec generation from [Valibot](https://valibot.dev/).
62
65
  - [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): OpenAPI spec generation from [ArkType](https://arktype.io/).
package/dist/index.d.mts CHANGED
@@ -1,28 +1,40 @@
1
- import { OperationType as OperationType$1, OperationKeyOptions as OperationKeyOptions$1, OperationKey as OperationKey$1 } from '@orpc/tanstack-query';
2
1
  import { ClientContext, Client, NestedClient } from '@orpc/client';
3
- import { SetOptional, PartialDeep, MaybeOptionalOptions } from '@orpc/shared';
4
- import { SkipToken, QueryObserverOptions, QueryKey, QueryFunction, experimental_streamedQuery, InfiniteQueryObserverOptions, InfiniteData, MutationObserverOptions } from '@tanstack/query-core';
2
+ import { Promisable, SetOptional, PartialDeep, MaybeOptionalOptions } from '@orpc/shared';
3
+ import { QueryKey, QueryFunctionContext, QueryFunction, SkipToken, QueryObserverOptions, DataTag, InfiniteQueryObserverOptions, InfiniteData, MutationObserverOptions } from '@tanstack/query-core';
5
4
 
6
- /**
7
- * Utils at any level (procedure or router)
8
- */
9
- interface GeneralUtils<TInput> {
5
+ interface experimental_SerializableStreamedQueryOptions {
10
6
  /**
11
- * Generate a query/mutation key for checking status, invalidate, set, get, etc.
7
+ * Determines how data is handled when the query is refetched.
8
+ *
9
+ * - `'reset'`: Clears existing data and sets the query back to a pending state.
10
+ * - `'append'`: Appends new data chunks to the existing data.
11
+ * - `'replace'`: Collects all streamed data and replaces the cache once the stream finishes.
12
12
  *
13
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-mutation-key Tanstack Query/Mutation Key Docs}
13
+ * @default 'reset'
14
14
  */
15
- key<TType extends OperationType$1>(options?: OperationKeyOptions$1<TType, TInput>): OperationKey$1<TType, TInput>;
15
+ refetchMode?: 'append' | 'reset' | 'replace';
16
+ /**
17
+ * Limits the number of data chunks stored in the query result.
18
+ * Older chunks are removed when the limit is reached.
19
+ *
20
+ * @default Number.POSITIVE_INFINITY (unlimited)
21
+ */
22
+ maxChunks?: number;
16
23
  }
17
- declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
24
+ /**
25
+ * A variant of `streamedQuery` where:
26
+ * - Options are serializable
27
+ * - The output is predictable
28
+ */
29
+ declare function experimental_serializableStreamedQuery<TQueryFnData = unknown, TQueryKey extends QueryKey = QueryKey>(queryFn: (context: QueryFunctionContext<TQueryKey>) => Promisable<AsyncIterable<TQueryFnData>>, { refetchMode, maxChunks }?: experimental_SerializableStreamedQueryOptions): QueryFunction<Array<TQueryFnData>, TQueryKey>;
18
30
 
19
31
  type experimental_StreamedQueryOutput<TOutput> = TOutput extends AsyncIterable<infer U> ? U[] : never;
20
- type experimental_StreamedQueryOptions = Omit<Parameters<typeof experimental_streamedQuery>[0], 'queryFn'>;
21
- type OperationType = 'query' | 'streamed' | 'infinite' | 'mutation';
32
+ type experimental_LiveQueryOutput<TOutput> = TOutput extends AsyncIterable<infer U> ? U : never;
33
+ type OperationType = 'query' | 'streamed' | 'live' | 'infinite' | 'mutation';
22
34
  type OperationKeyOptions<TType extends OperationType, TInput> = {
23
35
  type?: TType;
24
36
  input?: TType extends 'mutation' ? never : PartialDeep<TInput>;
25
- fnOptions?: TType extends 'streamed' ? experimental_StreamedQueryOptions : never;
37
+ fnOptions?: TType extends 'streamed' ? experimental_SerializableStreamedQueryOptions : never;
26
38
  };
27
39
  type OperationKey<TType extends OperationType, TInput> = [path: readonly string[], options: OperationKeyOptions<TType, TInput>];
28
40
  declare const OPERATION_CONTEXT_SYMBOL: unique symbol;
@@ -32,24 +44,30 @@ interface OperationContext {
32
44
  type: OperationType;
33
45
  };
34
46
  }
35
- type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = (undefined extends TInput ? {
47
+ type QueryKeyOptions<TInput> = (undefined extends TInput ? {
36
48
  input?: TInput | SkipToken;
37
49
  } : {
38
50
  input: TInput | SkipToken;
39
- }) & (Record<never, never> extends TClientContext ? {
51
+ }) & {
52
+ queryKey?: QueryKey;
53
+ };
54
+ type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryKeyOptions<TInput> & (Record<never, never> extends TClientContext ? {
40
55
  context?: TClientContext;
41
56
  } : {
42
57
  context: TClientContext;
43
- }) & SetOptional<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
58
+ }) & Omit<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
44
59
  interface QueryOptionsBase<TOutput, TError> {
45
- queryKey: QueryKey;
60
+ queryKey: DataTag<QueryKey, TOutput, TError>;
46
61
  queryFn: QueryFunction<TOutput>;
47
62
  throwOnError?: (error: TError) => boolean;
48
63
  retryDelay?: (count: number, error: TError) => number;
49
- enabled: boolean;
64
+ enabled?: boolean;
50
65
  }
66
+ type experimental_StreamedKeyOptions<TInput> = QueryKeyOptions<TInput> & {
67
+ queryFnOptions?: experimental_SerializableStreamedQueryOptions;
68
+ };
51
69
  type experimental_StreamedOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryOptionsIn<TClientContext, TInput, TOutput, TError, TSelectData> & {
52
- queryFnOptions?: experimental_StreamedQueryOptions;
70
+ queryFnOptions?: experimental_SerializableStreamedQueryOptions;
53
71
  };
54
72
  interface experimental_StreamedOptionsBase<TOutput, TError> extends QueryOptionsBase<TOutput, TError> {
55
73
  }
@@ -61,12 +79,12 @@ type InfiniteOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TE
61
79
  context: TClientContext;
62
80
  }) & SetOptional<InfiniteQueryObserverOptions<TOutput, TError, TSelectData, QueryKey, TPageParam>, 'queryKey'>;
63
81
  interface InfiniteOptionsBase<TOutput, TError, TPageParam> {
64
- queryKey: QueryKey;
82
+ queryKey: DataTag<QueryKey, InfiniteData<TOutput, TPageParam>, TError>;
65
83
  queryFn: QueryFunction<TOutput, QueryKey, TPageParam>;
66
84
  select?(): InfiniteData<TOutput, TPageParam>;
67
85
  throwOnError?: (error: TError) => boolean;
68
86
  retryDelay?: (count: number, error: TError) => number;
69
- enabled: boolean;
87
+ enabled?: boolean;
70
88
  }
71
89
  type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TMutationContext> = (Record<never, never> extends TClientContext ? {
72
90
  context?: TClientContext;
@@ -75,38 +93,90 @@ type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TE
75
93
  }) & MutationOptions<TInput, TOutput, TError, TMutationContext>;
76
94
  type MutationOptions<TInput, TOutput, TError, TMutationContext> = MutationObserverOptions<TOutput, TError, TInput, TMutationContext>;
77
95
 
96
+ /**
97
+ * Utils at any level (procedure or router)
98
+ */
99
+ interface GeneralUtils<TInput> {
100
+ /**
101
+ * Generate a **partial matching** key for actions like revalidating queries, checking mutation status, etc.
102
+ *
103
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
104
+ */
105
+ key<TType extends OperationType>(options?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
106
+ }
107
+ declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
108
+
78
109
  declare function generateOperationKey<TType extends OperationType, TInput>(path: readonly string[], state?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
79
110
 
80
111
  interface ProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError> {
81
112
  /**
82
113
  * Calling corresponding procedure client
83
114
  *
84
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#calling-procedure-clients Tanstack Calling Procedure Client Docs}
115
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#calling-clients Tanstack Calling Procedure Client Docs}
85
116
  */
86
117
  call: Client<TClientContext, TInput, TOutput, TError>;
118
+ /**
119
+ * Generate a **full matching** key for [Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#query-options).
120
+ *
121
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
122
+ */
123
+ queryKey(...rest: MaybeOptionalOptions<QueryKeyOptions<TInput>>): DataTag<QueryKey, TOutput, TError>;
87
124
  /**
88
125
  * Generate options used for useQuery/useSuspenseQuery/prefetchQuery/...
89
126
  *
90
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-options-utility Tanstack Query Options Utility Docs}
127
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-options Tanstack Query Options Utility Docs}
91
128
  */
92
129
  queryOptions<U, USelectData = TOutput>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, TOutput, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<TOutput, TError>, keyof U>>;
93
130
  /**
94
- * Generate [Event Iterator](https://orpc.unnoq.com/docs/event-iterator) options used for useQuery/useSuspenseQuery/prefetchQuery/...
95
- * Built on top of [steamedQuery](https://tanstack.com/query/latest/docs/reference/streamedQuery)
131
+ * Generate a **full matching** key for [Streamed Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#streamed-query-options).
96
132
  *
97
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#streamed-query-options-utility Tanstack Streamed Query Options Utility Docs}
133
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
134
+ */
135
+ experimental_streamedKey(...rest: MaybeOptionalOptions<experimental_StreamedKeyOptions<TInput>>): DataTag<QueryKey, experimental_StreamedQueryOutput<TOutput>, TError>;
136
+ /**
137
+ * Configure queries for [Event Iterator](https://orpc.unnoq.com/docs/event-iterator).
138
+ * This is built on [TanStack Query streamedQuery](https://tanstack.com/query/latest/docs/reference/streamedQuery)
139
+ * and works with hooks like `useQuery`, `useSuspenseQuery`, or `prefetchQuery`.
140
+ *
141
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#streamed-query-options Tanstack Streamed Query Options Utility Docs}
98
142
  */
99
143
  experimental_streamedOptions<U, USelectData = experimental_StreamedQueryOutput<TOutput>>(...rest: MaybeOptionalOptions<U & experimental_StreamedOptionsIn<TClientContext, TInput, experimental_StreamedQueryOutput<TOutput>, TError, USelectData>>): NoInfer<U & Omit<experimental_StreamedOptionsBase<experimental_StreamedQueryOutput<TOutput>, TError>, keyof U>>;
144
+ /**
145
+ * Generate a **full matching** key for [Live Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#live-query-options).
146
+ *
147
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
148
+ */
149
+ experimental_liveKey(...rest: MaybeOptionalOptions<QueryKeyOptions<TInput>>): DataTag<QueryKey, experimental_LiveQueryOutput<TOutput>, TError>;
150
+ /**
151
+ * Configure live queries for [Event Iterator](https://orpc.unnoq.com/docs/event-iterator).
152
+ * Unlike `.streamedOptions` which accumulates chunks, live queries replace the entire result with each new chunk received.
153
+ * Works with hooks like `useQuery`, `useSuspenseQuery`, or `prefetchQuery`.
154
+ *
155
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#live-query-options Tanstack Live Query Options Utility Docs}
156
+ */
157
+ experimental_liveOptions<U, USelectData = experimental_LiveQueryOutput<TOutput>>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, experimental_LiveQueryOutput<TOutput>, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<experimental_LiveQueryOutput<TOutput>, TError>, keyof U>>;
158
+ /**
159
+ * Generate a **full matching** key for [Infinite Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#infinite-query-options).
160
+ *
161
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
162
+ */
163
+ infiniteKey<UPageParam>(options: Pick<InfiniteOptionsIn<TClientContext, TInput, TOutput, TError, InfiniteData<TOutput, UPageParam>, UPageParam>, 'input' | 'initialPageParam' | 'queryKey'>): DataTag<QueryKey, InfiniteData<TOutput, UPageParam>, TError>;
100
164
  /**
101
165
  * Generate options used for useInfiniteQuery/useSuspenseInfiniteQuery/prefetchInfiniteQuery/...
102
166
  *
103
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#infinite-query-options-utility Tanstack Infinite Query Options Utility Docs}
167
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#infinite-query-options Tanstack Infinite Query Options Utility Docs}
104
168
  */
105
169
  infiniteOptions<U, UPageParam, USelectData = InfiniteData<TOutput, UPageParam>>(options: U & InfiniteOptionsIn<TClientContext, TInput, TOutput, TError, USelectData, UPageParam>): NoInfer<U & Omit<InfiniteOptionsBase<TOutput, TError, UPageParam>, keyof U>>;
170
+ /**
171
+ * Generate a **full matching** key for [Mutation Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#mutation-options).
172
+ *
173
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
174
+ */
175
+ mutationKey(options?: Pick<MutationOptionsIn<TClientContext, TInput, TOutput, TError, any>, 'mutationKey'>): DataTag<QueryKey, TOutput, TError>;
106
176
  /**
107
177
  * Generate options used for useMutation/...
108
178
  *
109
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#mutation-options Tanstack Mutation Options Docs}
179
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#mutation-options Tanstack Mutation Options Docs}
110
180
  */
111
181
  mutationOptions<UMutationContext>(...rest: MaybeOptionalOptions<MutationOptionsIn<TClientContext, TInput, TOutput, TError, UMutationContext>>): NoInfer<MutationOptions<TInput, TOutput, TError, UMutationContext>>;
112
182
  }
@@ -129,5 +199,5 @@ interface CreateRouterUtilsOptions {
129
199
  */
130
200
  declare function createRouterUtils<T extends NestedClient<any>>(client: T, options?: CreateRouterUtilsOptions): RouterUtils<T>;
131
201
 
132
- export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, generateOperationKey };
133
- export type { CreateProcedureUtilsOptions, CreateRouterUtilsOptions, GeneralUtils, InfiniteOptionsBase, InfiniteOptionsIn, MutationOptions, MutationOptionsIn, OperationContext, OperationKey, OperationKeyOptions, OperationType, ProcedureUtils, QueryOptionsBase, QueryOptionsIn, RouterUtils, OperationContext as TanstackQueryOperationContext, experimental_StreamedOptionsBase, experimental_StreamedOptionsIn, experimental_StreamedQueryOutput };
202
+ export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, experimental_serializableStreamedQuery, generateOperationKey };
203
+ export type { CreateProcedureUtilsOptions, CreateRouterUtilsOptions, GeneralUtils, InfiniteOptionsBase, InfiniteOptionsIn, MutationOptions, MutationOptionsIn, OperationContext, OperationKey, OperationKeyOptions, OperationType, ProcedureUtils, QueryKeyOptions, QueryOptionsBase, QueryOptionsIn, RouterUtils, OperationContext as TanstackQueryOperationContext, experimental_LiveQueryOutput, experimental_SerializableStreamedQueryOptions, experimental_StreamedKeyOptions, experimental_StreamedOptionsBase, experimental_StreamedOptionsIn, experimental_StreamedQueryOutput };
package/dist/index.d.ts CHANGED
@@ -1,28 +1,40 @@
1
- import { OperationType as OperationType$1, OperationKeyOptions as OperationKeyOptions$1, OperationKey as OperationKey$1 } from '@orpc/tanstack-query';
2
1
  import { ClientContext, Client, NestedClient } from '@orpc/client';
3
- import { SetOptional, PartialDeep, MaybeOptionalOptions } from '@orpc/shared';
4
- import { SkipToken, QueryObserverOptions, QueryKey, QueryFunction, experimental_streamedQuery, InfiniteQueryObserverOptions, InfiniteData, MutationObserverOptions } from '@tanstack/query-core';
2
+ import { Promisable, SetOptional, PartialDeep, MaybeOptionalOptions } from '@orpc/shared';
3
+ import { QueryKey, QueryFunctionContext, QueryFunction, SkipToken, QueryObserverOptions, DataTag, InfiniteQueryObserverOptions, InfiniteData, MutationObserverOptions } from '@tanstack/query-core';
5
4
 
6
- /**
7
- * Utils at any level (procedure or router)
8
- */
9
- interface GeneralUtils<TInput> {
5
+ interface experimental_SerializableStreamedQueryOptions {
10
6
  /**
11
- * Generate a query/mutation key for checking status, invalidate, set, get, etc.
7
+ * Determines how data is handled when the query is refetched.
8
+ *
9
+ * - `'reset'`: Clears existing data and sets the query back to a pending state.
10
+ * - `'append'`: Appends new data chunks to the existing data.
11
+ * - `'replace'`: Collects all streamed data and replaces the cache once the stream finishes.
12
12
  *
13
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-mutation-key Tanstack Query/Mutation Key Docs}
13
+ * @default 'reset'
14
14
  */
15
- key<TType extends OperationType$1>(options?: OperationKeyOptions$1<TType, TInput>): OperationKey$1<TType, TInput>;
15
+ refetchMode?: 'append' | 'reset' | 'replace';
16
+ /**
17
+ * Limits the number of data chunks stored in the query result.
18
+ * Older chunks are removed when the limit is reached.
19
+ *
20
+ * @default Number.POSITIVE_INFINITY (unlimited)
21
+ */
22
+ maxChunks?: number;
16
23
  }
17
- declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
24
+ /**
25
+ * A variant of `streamedQuery` where:
26
+ * - Options are serializable
27
+ * - The output is predictable
28
+ */
29
+ declare function experimental_serializableStreamedQuery<TQueryFnData = unknown, TQueryKey extends QueryKey = QueryKey>(queryFn: (context: QueryFunctionContext<TQueryKey>) => Promisable<AsyncIterable<TQueryFnData>>, { refetchMode, maxChunks }?: experimental_SerializableStreamedQueryOptions): QueryFunction<Array<TQueryFnData>, TQueryKey>;
18
30
 
19
31
  type experimental_StreamedQueryOutput<TOutput> = TOutput extends AsyncIterable<infer U> ? U[] : never;
20
- type experimental_StreamedQueryOptions = Omit<Parameters<typeof experimental_streamedQuery>[0], 'queryFn'>;
21
- type OperationType = 'query' | 'streamed' | 'infinite' | 'mutation';
32
+ type experimental_LiveQueryOutput<TOutput> = TOutput extends AsyncIterable<infer U> ? U : never;
33
+ type OperationType = 'query' | 'streamed' | 'live' | 'infinite' | 'mutation';
22
34
  type OperationKeyOptions<TType extends OperationType, TInput> = {
23
35
  type?: TType;
24
36
  input?: TType extends 'mutation' ? never : PartialDeep<TInput>;
25
- fnOptions?: TType extends 'streamed' ? experimental_StreamedQueryOptions : never;
37
+ fnOptions?: TType extends 'streamed' ? experimental_SerializableStreamedQueryOptions : never;
26
38
  };
27
39
  type OperationKey<TType extends OperationType, TInput> = [path: readonly string[], options: OperationKeyOptions<TType, TInput>];
28
40
  declare const OPERATION_CONTEXT_SYMBOL: unique symbol;
@@ -32,24 +44,30 @@ interface OperationContext {
32
44
  type: OperationType;
33
45
  };
34
46
  }
35
- type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = (undefined extends TInput ? {
47
+ type QueryKeyOptions<TInput> = (undefined extends TInput ? {
36
48
  input?: TInput | SkipToken;
37
49
  } : {
38
50
  input: TInput | SkipToken;
39
- }) & (Record<never, never> extends TClientContext ? {
51
+ }) & {
52
+ queryKey?: QueryKey;
53
+ };
54
+ type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryKeyOptions<TInput> & (Record<never, never> extends TClientContext ? {
40
55
  context?: TClientContext;
41
56
  } : {
42
57
  context: TClientContext;
43
- }) & SetOptional<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
58
+ }) & Omit<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
44
59
  interface QueryOptionsBase<TOutput, TError> {
45
- queryKey: QueryKey;
60
+ queryKey: DataTag<QueryKey, TOutput, TError>;
46
61
  queryFn: QueryFunction<TOutput>;
47
62
  throwOnError?: (error: TError) => boolean;
48
63
  retryDelay?: (count: number, error: TError) => number;
49
- enabled: boolean;
64
+ enabled?: boolean;
50
65
  }
66
+ type experimental_StreamedKeyOptions<TInput> = QueryKeyOptions<TInput> & {
67
+ queryFnOptions?: experimental_SerializableStreamedQueryOptions;
68
+ };
51
69
  type experimental_StreamedOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryOptionsIn<TClientContext, TInput, TOutput, TError, TSelectData> & {
52
- queryFnOptions?: experimental_StreamedQueryOptions;
70
+ queryFnOptions?: experimental_SerializableStreamedQueryOptions;
53
71
  };
54
72
  interface experimental_StreamedOptionsBase<TOutput, TError> extends QueryOptionsBase<TOutput, TError> {
55
73
  }
@@ -61,12 +79,12 @@ type InfiniteOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TE
61
79
  context: TClientContext;
62
80
  }) & SetOptional<InfiniteQueryObserverOptions<TOutput, TError, TSelectData, QueryKey, TPageParam>, 'queryKey'>;
63
81
  interface InfiniteOptionsBase<TOutput, TError, TPageParam> {
64
- queryKey: QueryKey;
82
+ queryKey: DataTag<QueryKey, InfiniteData<TOutput, TPageParam>, TError>;
65
83
  queryFn: QueryFunction<TOutput, QueryKey, TPageParam>;
66
84
  select?(): InfiniteData<TOutput, TPageParam>;
67
85
  throwOnError?: (error: TError) => boolean;
68
86
  retryDelay?: (count: number, error: TError) => number;
69
- enabled: boolean;
87
+ enabled?: boolean;
70
88
  }
71
89
  type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TMutationContext> = (Record<never, never> extends TClientContext ? {
72
90
  context?: TClientContext;
@@ -75,38 +93,90 @@ type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TE
75
93
  }) & MutationOptions<TInput, TOutput, TError, TMutationContext>;
76
94
  type MutationOptions<TInput, TOutput, TError, TMutationContext> = MutationObserverOptions<TOutput, TError, TInput, TMutationContext>;
77
95
 
96
+ /**
97
+ * Utils at any level (procedure or router)
98
+ */
99
+ interface GeneralUtils<TInput> {
100
+ /**
101
+ * Generate a **partial matching** key for actions like revalidating queries, checking mutation status, etc.
102
+ *
103
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
104
+ */
105
+ key<TType extends OperationType>(options?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
106
+ }
107
+ declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
108
+
78
109
  declare function generateOperationKey<TType extends OperationType, TInput>(path: readonly string[], state?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
79
110
 
80
111
  interface ProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError> {
81
112
  /**
82
113
  * Calling corresponding procedure client
83
114
  *
84
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#calling-procedure-clients Tanstack Calling Procedure Client Docs}
115
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#calling-clients Tanstack Calling Procedure Client Docs}
85
116
  */
86
117
  call: Client<TClientContext, TInput, TOutput, TError>;
118
+ /**
119
+ * Generate a **full matching** key for [Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#query-options).
120
+ *
121
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
122
+ */
123
+ queryKey(...rest: MaybeOptionalOptions<QueryKeyOptions<TInput>>): DataTag<QueryKey, TOutput, TError>;
87
124
  /**
88
125
  * Generate options used for useQuery/useSuspenseQuery/prefetchQuery/...
89
126
  *
90
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-options-utility Tanstack Query Options Utility Docs}
127
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-options Tanstack Query Options Utility Docs}
91
128
  */
92
129
  queryOptions<U, USelectData = TOutput>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, TOutput, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<TOutput, TError>, keyof U>>;
93
130
  /**
94
- * Generate [Event Iterator](https://orpc.unnoq.com/docs/event-iterator) options used for useQuery/useSuspenseQuery/prefetchQuery/...
95
- * Built on top of [steamedQuery](https://tanstack.com/query/latest/docs/reference/streamedQuery)
131
+ * Generate a **full matching** key for [Streamed Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#streamed-query-options).
96
132
  *
97
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#streamed-query-options-utility Tanstack Streamed Query Options Utility Docs}
133
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
134
+ */
135
+ experimental_streamedKey(...rest: MaybeOptionalOptions<experimental_StreamedKeyOptions<TInput>>): DataTag<QueryKey, experimental_StreamedQueryOutput<TOutput>, TError>;
136
+ /**
137
+ * Configure queries for [Event Iterator](https://orpc.unnoq.com/docs/event-iterator).
138
+ * This is built on [TanStack Query streamedQuery](https://tanstack.com/query/latest/docs/reference/streamedQuery)
139
+ * and works with hooks like `useQuery`, `useSuspenseQuery`, or `prefetchQuery`.
140
+ *
141
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#streamed-query-options Tanstack Streamed Query Options Utility Docs}
98
142
  */
99
143
  experimental_streamedOptions<U, USelectData = experimental_StreamedQueryOutput<TOutput>>(...rest: MaybeOptionalOptions<U & experimental_StreamedOptionsIn<TClientContext, TInput, experimental_StreamedQueryOutput<TOutput>, TError, USelectData>>): NoInfer<U & Omit<experimental_StreamedOptionsBase<experimental_StreamedQueryOutput<TOutput>, TError>, keyof U>>;
144
+ /**
145
+ * Generate a **full matching** key for [Live Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#live-query-options).
146
+ *
147
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
148
+ */
149
+ experimental_liveKey(...rest: MaybeOptionalOptions<QueryKeyOptions<TInput>>): DataTag<QueryKey, experimental_LiveQueryOutput<TOutput>, TError>;
150
+ /**
151
+ * Configure live queries for [Event Iterator](https://orpc.unnoq.com/docs/event-iterator).
152
+ * Unlike `.streamedOptions` which accumulates chunks, live queries replace the entire result with each new chunk received.
153
+ * Works with hooks like `useQuery`, `useSuspenseQuery`, or `prefetchQuery`.
154
+ *
155
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#live-query-options Tanstack Live Query Options Utility Docs}
156
+ */
157
+ experimental_liveOptions<U, USelectData = experimental_LiveQueryOutput<TOutput>>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, experimental_LiveQueryOutput<TOutput>, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<experimental_LiveQueryOutput<TOutput>, TError>, keyof U>>;
158
+ /**
159
+ * Generate a **full matching** key for [Infinite Query Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#infinite-query-options).
160
+ *
161
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
162
+ */
163
+ infiniteKey<UPageParam>(options: Pick<InfiniteOptionsIn<TClientContext, TInput, TOutput, TError, InfiniteData<TOutput, UPageParam>, UPageParam>, 'input' | 'initialPageParam' | 'queryKey'>): DataTag<QueryKey, InfiniteData<TOutput, UPageParam>, TError>;
100
164
  /**
101
165
  * Generate options used for useInfiniteQuery/useSuspenseInfiniteQuery/prefetchInfiniteQuery/...
102
166
  *
103
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#infinite-query-options-utility Tanstack Infinite Query Options Utility Docs}
167
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#infinite-query-options Tanstack Infinite Query Options Utility Docs}
104
168
  */
105
169
  infiniteOptions<U, UPageParam, USelectData = InfiniteData<TOutput, UPageParam>>(options: U & InfiniteOptionsIn<TClientContext, TInput, TOutput, TError, USelectData, UPageParam>): NoInfer<U & Omit<InfiniteOptionsBase<TOutput, TError, UPageParam>, keyof U>>;
170
+ /**
171
+ * Generate a **full matching** key for [Mutation Options](https://orpc.unnoq.com/docs/integrations/tanstack-query#mutation-options).
172
+ *
173
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#query-mutation-key Tanstack Query/Mutation Key Docs}
174
+ */
175
+ mutationKey(options?: Pick<MutationOptionsIn<TClientContext, TInput, TOutput, TError, any>, 'mutationKey'>): DataTag<QueryKey, TOutput, TError>;
106
176
  /**
107
177
  * Generate options used for useMutation/...
108
178
  *
109
- * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#mutation-options Tanstack Mutation Options Docs}
179
+ * @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query#mutation-options Tanstack Mutation Options Docs}
110
180
  */
111
181
  mutationOptions<UMutationContext>(...rest: MaybeOptionalOptions<MutationOptionsIn<TClientContext, TInput, TOutput, TError, UMutationContext>>): NoInfer<MutationOptions<TInput, TOutput, TError, UMutationContext>>;
112
182
  }
@@ -129,5 +199,5 @@ interface CreateRouterUtilsOptions {
129
199
  */
130
200
  declare function createRouterUtils<T extends NestedClient<any>>(client: T, options?: CreateRouterUtilsOptions): RouterUtils<T>;
131
201
 
132
- export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, generateOperationKey };
133
- export type { CreateProcedureUtilsOptions, CreateRouterUtilsOptions, GeneralUtils, InfiniteOptionsBase, InfiniteOptionsIn, MutationOptions, MutationOptionsIn, OperationContext, OperationKey, OperationKeyOptions, OperationType, ProcedureUtils, QueryOptionsBase, QueryOptionsIn, RouterUtils, OperationContext as TanstackQueryOperationContext, experimental_StreamedOptionsBase, experimental_StreamedOptionsIn, experimental_StreamedQueryOutput };
202
+ export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, experimental_serializableStreamedQuery, generateOperationKey };
203
+ export type { CreateProcedureUtilsOptions, CreateRouterUtilsOptions, GeneralUtils, InfiniteOptionsBase, InfiniteOptionsIn, MutationOptions, MutationOptionsIn, OperationContext, OperationKey, OperationKeyOptions, OperationType, ProcedureUtils, QueryKeyOptions, QueryOptionsBase, QueryOptionsIn, RouterUtils, OperationContext as TanstackQueryOperationContext, experimental_LiveQueryOutput, experimental_SerializableStreamedQueryOptions, experimental_StreamedKeyOptions, experimental_StreamedOptionsBase, experimental_StreamedOptionsIn, experimental_StreamedQueryOutput };
package/dist/index.mjs CHANGED
@@ -1,30 +1,96 @@
1
- import { generateOperationKey as generateOperationKey$1 } from '@orpc/tanstack-query';
2
- import { isAsyncIteratorObject, toArray } from '@orpc/shared';
3
- import { skipToken, experimental_streamedQuery } from '@tanstack/query-core';
1
+ import { stringifyJSON, isAsyncIteratorObject, toArray } from '@orpc/shared';
2
+ import { skipToken } from '@tanstack/query-core';
3
+
4
+ function generateOperationKey(path, state = {}) {
5
+ return [path, {
6
+ ...state.input !== void 0 ? { input: state.input } : {},
7
+ ...state.type !== void 0 ? { type: state.type } : {},
8
+ ...state.fnOptions !== void 0 ? { fnOptions: state.fnOptions } : {}
9
+ }];
10
+ }
4
11
 
5
12
  function createGeneralUtils(path) {
6
13
  return {
7
14
  key(options) {
8
- return generateOperationKey$1(path, options);
15
+ return generateOperationKey(path, options);
9
16
  }
10
17
  };
11
18
  }
12
19
 
13
- function generateOperationKey(path, state = {}) {
14
- return [path, {
15
- ...state.input !== void 0 ? { input: state.input } : {},
16
- ...state.type !== void 0 ? { type: state.type } : {},
17
- ...state.fnOptions !== void 0 ? { fnOptions: state.fnOptions } : {}
18
- }];
20
+ function experimental_liveQuery(queryFn) {
21
+ return async (context) => {
22
+ const stream = await queryFn(context);
23
+ let last;
24
+ for await (const chunk of stream) {
25
+ if (context.signal.aborted) {
26
+ throw context.signal.reason;
27
+ }
28
+ last = { chunk };
29
+ context.client.setQueryData(context.queryKey, chunk);
30
+ }
31
+ if (!last) {
32
+ throw new Error(
33
+ `Live query for ${stringifyJSON(context.queryKey)} did not yield any data. Ensure the query function returns an AsyncIterable with at least one chunk.`
34
+ );
35
+ }
36
+ return last.chunk;
37
+ };
38
+ }
39
+
40
+ function experimental_serializableStreamedQuery(queryFn, { refetchMode = "reset", maxChunks = Number.POSITIVE_INFINITY } = {}) {
41
+ return async (context) => {
42
+ const query = context.client.getQueryCache().find({ queryKey: context.queryKey, exact: true });
43
+ const isRefetch = !!query && query.state.data !== void 0;
44
+ if (isRefetch && refetchMode === "reset") {
45
+ query.setState({
46
+ status: "pending",
47
+ data: void 0,
48
+ error: null,
49
+ fetchStatus: "fetching"
50
+ });
51
+ }
52
+ let result = [];
53
+ const stream = await queryFn(context);
54
+ for await (const chunk of stream) {
55
+ if (context.signal.aborted) {
56
+ throw context.signal.reason;
57
+ }
58
+ if (!isRefetch || refetchMode !== "replace") {
59
+ context.client.setQueryData(
60
+ context.queryKey,
61
+ (prev = []) => {
62
+ return addToEnd(prev, chunk, maxChunks);
63
+ }
64
+ );
65
+ }
66
+ result = addToEnd(result, chunk, maxChunks);
67
+ }
68
+ if (isRefetch && refetchMode === "replace") {
69
+ context.client.setQueryData(context.queryKey, result);
70
+ }
71
+ const currentResult = context.client.getQueryData(context.queryKey);
72
+ if (!Array.isArray(currentResult)) {
73
+ return result;
74
+ }
75
+ return currentResult;
76
+ };
77
+ }
78
+ function addToEnd(items, item, max) {
79
+ const newItems = [...items, item];
80
+ return newItems.length > max ? newItems.slice(newItems.length - max) : newItems;
19
81
  }
20
82
 
21
83
  const OPERATION_CONTEXT_SYMBOL = Symbol("ORPC_OPERATION_CONTEXT");
22
84
 
23
85
  function createProcedureUtils(client, options) {
24
- return {
86
+ const utils = {
25
87
  call: client,
26
- queryOptions(...[optionsIn = {}]) {
88
+ queryKey(...[optionsIn = {}]) {
27
89
  const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, { type: "query", input: optionsIn.input });
90
+ return queryKey;
91
+ },
92
+ queryOptions(...[optionsIn = {}]) {
93
+ const queryKey = utils.queryKey(optionsIn);
28
94
  return {
29
95
  queryFn: ({ signal }) => {
30
96
  if (optionsIn.input === skipToken) {
@@ -41,17 +107,20 @@ function createProcedureUtils(client, options) {
41
107
  }
42
108
  });
43
109
  },
44
- enabled: optionsIn.input !== skipToken,
110
+ ...optionsIn.input === skipToken ? { enabled: false } : {},
45
111
  ...optionsIn,
46
112
  queryKey
47
113
  };
48
114
  },
49
- experimental_streamedOptions(...[optionsIn = {}]) {
115
+ experimental_streamedKey(...[optionsIn = {}]) {
50
116
  const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, { type: "streamed", input: optionsIn.input, fnOptions: optionsIn.queryFnOptions });
117
+ return queryKey;
118
+ },
119
+ experimental_streamedOptions(...[optionsIn = {}]) {
120
+ const queryKey = utils.experimental_streamedKey(optionsIn);
51
121
  return {
52
- enabled: optionsIn.input !== skipToken,
53
- queryFn: experimental_streamedQuery({
54
- queryFn: async ({ signal }) => {
122
+ queryFn: experimental_serializableStreamedQuery(
123
+ async ({ signal }) => {
55
124
  if (optionsIn.input === skipToken) {
56
125
  throw new Error("queryFn should not be called with skipToken used as input");
57
126
  }
@@ -70,17 +139,53 @@ function createProcedureUtils(client, options) {
70
139
  }
71
140
  return output;
72
141
  },
73
- ...optionsIn.queryFnOptions
142
+ optionsIn.queryFnOptions
143
+ ),
144
+ ...optionsIn.input === skipToken ? { enabled: false } : {},
145
+ ...optionsIn,
146
+ queryKey
147
+ };
148
+ },
149
+ experimental_liveKey(...[optionsIn = {}]) {
150
+ const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, { type: "live", input: optionsIn.input });
151
+ return queryKey;
152
+ },
153
+ experimental_liveOptions(...[optionsIn = {}]) {
154
+ const queryKey = utils.experimental_liveKey(optionsIn);
155
+ return {
156
+ queryFn: experimental_liveQuery(async ({ signal }) => {
157
+ if (optionsIn.input === skipToken) {
158
+ throw new Error("queryFn should not be called with skipToken used as input");
159
+ }
160
+ const output = await client(optionsIn.input, {
161
+ signal,
162
+ context: {
163
+ [OPERATION_CONTEXT_SYMBOL]: {
164
+ key: queryKey,
165
+ type: "live"
166
+ },
167
+ ...optionsIn.context
168
+ }
169
+ });
170
+ if (!isAsyncIteratorObject(output)) {
171
+ throw new Error("liveQuery requires an event iterator output");
172
+ }
173
+ return output;
74
174
  }),
175
+ ...optionsIn.input === skipToken ? { enabled: false } : {},
75
176
  ...optionsIn,
76
177
  queryKey
77
178
  };
78
179
  },
79
- infiniteOptions(optionsIn) {
180
+ infiniteKey(optionsIn) {
80
181
  const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, {
81
182
  type: "infinite",
82
183
  input: optionsIn.input === skipToken ? skipToken : optionsIn.input(optionsIn.initialPageParam)
83
184
  });
185
+ return queryKey;
186
+ },
187
+ infiniteOptions(optionsIn) {
188
+ const queryKey = utils.infiniteKey(optionsIn);
84
189
  return {
85
190
  queryFn: ({ pageParam, signal }) => {
86
191
  if (optionsIn.input === skipToken) {
@@ -97,13 +202,17 @@ function createProcedureUtils(client, options) {
97
202
  }
98
203
  });
99
204
  },
100
- enabled: optionsIn.input !== skipToken,
205
+ ...optionsIn.input === skipToken ? { enabled: false } : {},
101
206
  ...optionsIn,
102
207
  queryKey
103
208
  };
104
209
  },
105
- mutationOptions(...[optionsIn = {}]) {
210
+ mutationKey(...[optionsIn = {}]) {
106
211
  const mutationKey = optionsIn.mutationKey ?? generateOperationKey(options.path, { type: "mutation" });
212
+ return mutationKey;
213
+ },
214
+ mutationOptions(...[optionsIn = {}]) {
215
+ const mutationKey = utils.mutationKey(optionsIn);
107
216
  return {
108
217
  mutationFn: (input) => client(input, {
109
218
  context: {
@@ -119,6 +228,7 @@ function createProcedureUtils(client, options) {
119
228
  };
120
229
  }
121
230
  };
231
+ return utils;
122
232
  }
123
233
 
124
234
  function createRouterUtils(client, options = {}) {
@@ -148,4 +258,4 @@ function createRouterUtils(client, options = {}) {
148
258
  return recursive;
149
259
  }
150
260
 
151
- export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, generateOperationKey };
261
+ export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, experimental_serializableStreamedQuery, generateOperationKey };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/tanstack-query",
3
3
  "type": "module",
4
- "version": "0.0.0-next.2fa71ec",
4
+ "version": "0.0.0-next.31773de",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -25,22 +25,22 @@
25
25
  ],
26
26
  "peerDependencies": {
27
27
  "@tanstack/query-core": ">=5.80.2",
28
- "@orpc/client": "0.0.0-next.2fa71ec"
28
+ "@orpc/client": "0.0.0-next.31773de"
29
29
  },
30
30
  "dependencies": {
31
- "@orpc/shared": "0.0.0-next.2fa71ec"
31
+ "@orpc/shared": "0.0.0-next.31773de"
32
32
  },
33
33
  "devDependencies": {
34
- "@angular/core": "^20.0.0",
35
- "@tanstack/angular-query-experimental": "^5.80.2",
36
- "@tanstack/query-core": "^5.80.2",
37
- "@tanstack/react-query": "^5.80.5",
38
- "@tanstack/solid-query": "^5.80.2",
39
- "@tanstack/svelte-query": "^5.80.2",
40
- "@tanstack/vue-query": "^5.80.2",
41
- "svelte": "^5.26.2",
42
- "vue": "^3.5.16",
43
- "zod": "^3.25.49"
34
+ "@angular/core": "^20.3.2",
35
+ "@tanstack/angular-query-experimental": "^5.90.2",
36
+ "@tanstack/query-core": "^5.90.2",
37
+ "@tanstack/react-query": "^5.90.2",
38
+ "@tanstack/solid-query": "^5.90.3",
39
+ "@tanstack/svelte-query": "^5.90.2",
40
+ "@tanstack/vue-query": "^5.90.2",
41
+ "svelte": "^5.39.6",
42
+ "vue": "^3.5.22",
43
+ "zod": "^4.1.11"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "unbuild",