@orpc/shared 0.0.0-next.f47352c → 0.0.0-next.f4ed9ab

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
@@ -26,28 +26,24 @@
26
26
 
27
27
  <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
28
28
 
29
- **oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards, ensuring a smooth and enjoyable developer experience.
29
+ **oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards
30
30
 
31
31
  ---
32
32
 
33
33
  ## Highlights
34
34
 
35
- - **End-to-End Type Safety 🔒**: Ensure complete type safety from inputs to outputs and errors, bridging server and client seamlessly.
36
- - **First-Class OpenAPI 📄**: Adheres to the OpenAPI standard out of the box, ensuring seamless integration and comprehensive API documentation.
37
- - **Contract-First Development 📜**: (Optional) Define your API contract upfront and implement it with confidence.
38
- - **Exceptional Developer Experience ✨**: Enjoy a streamlined workflow with robust typing and clear, in-code documentation.
39
- - **Multi-Runtime Support 🌍**: Run your code seamlessly on Cloudflare, Deno, Bun, Node.js, and more.
40
- - **Framework Integrations 🧩**: Supports Tanstack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
41
- - **Server Actions ⚡️**: Fully compatible with React Server Actions on Next.js, TanStack Start, and more.
42
- - **Standard Schema Support 🗂️**: Effortlessly work with Zod, Valibot, ArkType, and others right out of the box.
43
- - **Fast & Lightweight 💨**: Built on native APIs across all runtimes – optimized for speed and efficiency.
44
- - **Native Types 📦**: Enjoy built-in support for Date, File, Blob, BigInt, URL and more with no extra setup.
45
- - **Lazy Router ⏱️**: Improve cold start times with our lazy routing feature.
46
- - **SSE & Streaming 📡**: Provides SSE and streaming features – perfect for real-time notifications and AI-powered streaming responses.
47
- - **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
48
- - **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
49
- - **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
50
- - **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
35
+ - **🔗 End-to-End Type Safety**: Ensure type-safe inputs, outputs, and errors from client to server.
36
+ - **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
37
+ - **📝 Contract-First Development**: Optionally define your API contract before implementation.
38
+ - **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte), Pinia Colada, and more.
39
+ - **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
40
+ - **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
41
+ - **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
42
+ - **⏱️ Lazy Router**: Enhance cold start times with our lazy routing feature.
43
+ - **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
44
+ - **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
45
+ - **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
46
+ - **🛡️ Reliability**: Well-tested, TypeScript-based, production-ready, and MIT licensed.
51
47
 
52
48
  ## Documentation
53
49
 
@@ -58,6 +54,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
58
54
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
59
55
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
60
56
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
57
+ - [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with NestJS.
61
58
  - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
62
59
  - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
63
60
  - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
package/dist/index.d.mts CHANGED
@@ -5,15 +5,22 @@ export { group, guard, mapEntries, mapValues, omit } from 'radash';
5
5
  type MaybeOptionalOptions<TOptions> = Record<never, never> extends TOptions ? [options?: TOptions] : [options: TOptions];
6
6
  declare function resolveMaybeOptionalOptions<T>(rest: MaybeOptionalOptions<T>): T;
7
7
 
8
- declare function toArray<T>(value: T | T[] | null | undefined): T[];
8
+ declare function toArray<T>(value: T): T extends readonly any[] ? T : Exclude<T, undefined | null>[];
9
+ declare function splitInHalf<T>(arr: readonly T[]): [T[], T[]];
9
10
 
10
11
  type AnyFunction = (...args: any[]) => any;
11
12
  declare function once<T extends () => any>(fn: T): () => ReturnType<T>;
13
+ declare function sequential<A extends any[], R>(fn: (...args: A) => Promise<R>): (...args: A) => Promise<R>;
12
14
 
13
15
  type OmitChainMethodDeep<T extends object, K extends keyof any> = {
14
16
  [P in keyof Omit<T, K>]: T[P] extends AnyFunction ? ((...args: Parameters<T[P]>) => OmitChainMethodDeep<ReturnType<T[P]>, K>) : T[P];
15
17
  };
16
18
 
19
+ declare class SequentialIdGenerator {
20
+ private nextId;
21
+ generate(): number;
22
+ }
23
+
17
24
  type SetOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
18
25
  type IntersectPick<T, U> = Pick<T, keyof T & keyof U>;
19
26
  type PromiseWithError<T, TError> = Promise<T> & {
@@ -36,35 +43,39 @@ type InterceptableOptions = Record<string, any>;
36
43
  type InterceptorOptions<TOptions extends InterceptableOptions, TResult, TError> = Omit<TOptions, 'next'> & {
37
44
  next(options?: TOptions): PromiseWithError<TResult, TError>;
38
45
  };
39
- type Interceptor<TOptions extends InterceptableOptions, TResult, TError> = (options: InterceptorOptions<TOptions, TResult, TError>) => PromiseWithError<TResult, TError>;
46
+ type Interceptor<TOptions extends InterceptableOptions, TResult, TError> = (options: InterceptorOptions<TOptions, TResult, TError>) => Promisable<TResult>;
40
47
  /**
41
48
  * Can used for interceptors or middlewares
42
49
  */
43
- declare function onStart<TOptions extends {
50
+ declare function onStart<T, TOptions extends {
44
51
  next(): any;
45
- }, TRest extends any[]>(callback: NoInfer<(options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
52
+ }, TRest extends any[]>(callback: NoInfer<(options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
46
53
  /**
47
54
  * Can used for interceptors or middlewares
48
55
  */
49
- declare function onSuccess<TOptions extends {
56
+ declare function onSuccess<T, TOptions extends {
50
57
  next(): any;
51
- }, TRest extends any[]>(callback: NoInfer<(result: Awaited<ReturnType<TOptions['next']>>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
58
+ }, TRest extends any[]>(callback: NoInfer<(result: Awaited<ReturnType<TOptions['next']>>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
52
59
  /**
53
60
  * Can used for interceptors or middlewares
54
61
  */
55
- declare function onError<TOptions extends {
62
+ declare function onError<T, TOptions extends {
56
63
  next(): any;
57
- }, TRest extends any[]>(callback: NoInfer<(error: ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
58
- type OnFinishState<TResult, TError> = [TResult, null, 'success'] | [undefined, TError, 'error'];
64
+ }, TRest extends any[]>(callback: NoInfer<(error: ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
65
+ type OnFinishState<TResult, TError> = [error: TError, data: undefined, isSuccess: false] | [error: null, data: TResult, isSuccess: true];
59
66
  /**
60
67
  * Can used for interceptors or middlewares
61
68
  */
62
- declare function onFinish<TOptions extends {
69
+ declare function onFinish<T, TOptions extends {
63
70
  next(): any;
64
- }, TRest extends any[]>(callback: NoInfer<(state: OnFinishState<Awaited<ReturnType<TOptions['next']>>, ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
71
+ }, TRest extends any[]>(callback: NoInfer<(state: OnFinishState<Awaited<ReturnType<TOptions['next']>>, ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
65
72
  declare function intercept<TOptions extends InterceptableOptions, TResult, TError>(interceptors: Interceptor<TOptions, TResult, TError>[], options: NoInfer<TOptions>, main: NoInfer<(options: TOptions) => Promisable<TResult>>): Promise<TResult>;
66
73
 
67
74
  declare function isAsyncIteratorObject(maybe: unknown): maybe is AsyncIteratorObject<any, any, any>;
75
+ interface CreateAsyncIteratorObjectCleanupFn {
76
+ (reason: 'return' | 'throw' | 'next' | 'dispose'): Promise<void>;
77
+ }
78
+ declare function createAsyncIteratorObject<T, TReturn, TNext>(next: () => Promise<IteratorResult<T, TReturn>>, cleanup: CreateAsyncIteratorObjectCleanupFn): AsyncIteratorObject<T, TReturn, TNext> & AsyncGenerator<T, TReturn, TNext>;
68
79
 
69
80
  declare function parseEmptyableJSON(text: string | null | undefined): unknown;
70
81
  declare function stringifyJSON<T>(value: T): undefined extends T ? undefined | string : string;
@@ -84,8 +95,27 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
84
95
  declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
85
96
  declare function clone<T>(value: T): T;
86
97
  declare function get(object: object, path: readonly string[]): unknown;
98
+ declare function isPropertyKey(value: unknown): value is PropertyKey;
99
+
100
+ interface AsyncIdQueueCloseOptions {
101
+ id?: number;
102
+ reason?: Error;
103
+ }
104
+ declare class AsyncIdQueue<T> {
105
+ private readonly openIds;
106
+ private readonly items;
107
+ private readonly pendingPulls;
108
+ get length(): number;
109
+ open(id: number): void;
110
+ isOpen(id: number): boolean;
111
+ push(id: number, item: T): void;
112
+ pull(id: number): Promise<T>;
113
+ close({ id, reason }?: AsyncIdQueueCloseOptions): void;
114
+ assertOpen(id: number): void;
115
+ }
87
116
 
88
117
  type Value<T, TArgs extends any[] = []> = T | ((...args: TArgs) => Promisable<T>);
89
118
  declare function value<T, TArgs extends any[]>(value: Value<T, TArgs>, ...args: NoInfer<TArgs>): Promise<T extends Value<infer U, any> ? U : never>;
90
119
 
91
- export { type AnyFunction, type InterceptableOptions, type Interceptor, type InterceptorOptions, type IntersectPick, type MaybeOptionalOptions, type OmitChainMethodDeep, type OnFinishState, type PromiseWithError, type Registry, type Segment, type SetOptional, type ThrowableError, type Value, clone, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, stringifyJSON, toArray, value };
120
+ export { AsyncIdQueue, SequentialIdGenerator, clone, createAsyncIteratorObject, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, sequential, splitInHalf, stringifyJSON, toArray, value };
121
+ export type { AnyFunction, AsyncIdQueueCloseOptions, CreateAsyncIteratorObjectCleanupFn, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, MaybeOptionalOptions, OmitChainMethodDeep, OnFinishState, PromiseWithError, Registry, Segment, SetOptional, ThrowableError, Value };
package/dist/index.d.ts CHANGED
@@ -5,15 +5,22 @@ export { group, guard, mapEntries, mapValues, omit } from 'radash';
5
5
  type MaybeOptionalOptions<TOptions> = Record<never, never> extends TOptions ? [options?: TOptions] : [options: TOptions];
6
6
  declare function resolveMaybeOptionalOptions<T>(rest: MaybeOptionalOptions<T>): T;
7
7
 
8
- declare function toArray<T>(value: T | T[] | null | undefined): T[];
8
+ declare function toArray<T>(value: T): T extends readonly any[] ? T : Exclude<T, undefined | null>[];
9
+ declare function splitInHalf<T>(arr: readonly T[]): [T[], T[]];
9
10
 
10
11
  type AnyFunction = (...args: any[]) => any;
11
12
  declare function once<T extends () => any>(fn: T): () => ReturnType<T>;
13
+ declare function sequential<A extends any[], R>(fn: (...args: A) => Promise<R>): (...args: A) => Promise<R>;
12
14
 
13
15
  type OmitChainMethodDeep<T extends object, K extends keyof any> = {
14
16
  [P in keyof Omit<T, K>]: T[P] extends AnyFunction ? ((...args: Parameters<T[P]>) => OmitChainMethodDeep<ReturnType<T[P]>, K>) : T[P];
15
17
  };
16
18
 
19
+ declare class SequentialIdGenerator {
20
+ private nextId;
21
+ generate(): number;
22
+ }
23
+
17
24
  type SetOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
18
25
  type IntersectPick<T, U> = Pick<T, keyof T & keyof U>;
19
26
  type PromiseWithError<T, TError> = Promise<T> & {
@@ -36,35 +43,39 @@ type InterceptableOptions = Record<string, any>;
36
43
  type InterceptorOptions<TOptions extends InterceptableOptions, TResult, TError> = Omit<TOptions, 'next'> & {
37
44
  next(options?: TOptions): PromiseWithError<TResult, TError>;
38
45
  };
39
- type Interceptor<TOptions extends InterceptableOptions, TResult, TError> = (options: InterceptorOptions<TOptions, TResult, TError>) => PromiseWithError<TResult, TError>;
46
+ type Interceptor<TOptions extends InterceptableOptions, TResult, TError> = (options: InterceptorOptions<TOptions, TResult, TError>) => Promisable<TResult>;
40
47
  /**
41
48
  * Can used for interceptors or middlewares
42
49
  */
43
- declare function onStart<TOptions extends {
50
+ declare function onStart<T, TOptions extends {
44
51
  next(): any;
45
- }, TRest extends any[]>(callback: NoInfer<(options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
52
+ }, TRest extends any[]>(callback: NoInfer<(options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
46
53
  /**
47
54
  * Can used for interceptors or middlewares
48
55
  */
49
- declare function onSuccess<TOptions extends {
56
+ declare function onSuccess<T, TOptions extends {
50
57
  next(): any;
51
- }, TRest extends any[]>(callback: NoInfer<(result: Awaited<ReturnType<TOptions['next']>>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
58
+ }, TRest extends any[]>(callback: NoInfer<(result: Awaited<ReturnType<TOptions['next']>>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
52
59
  /**
53
60
  * Can used for interceptors or middlewares
54
61
  */
55
- declare function onError<TOptions extends {
62
+ declare function onError<T, TOptions extends {
56
63
  next(): any;
57
- }, TRest extends any[]>(callback: NoInfer<(error: ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
58
- type OnFinishState<TResult, TError> = [TResult, null, 'success'] | [undefined, TError, 'error'];
64
+ }, TRest extends any[]>(callback: NoInfer<(error: ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
65
+ type OnFinishState<TResult, TError> = [error: TError, data: undefined, isSuccess: false] | [error: null, data: TResult, isSuccess: true];
59
66
  /**
60
67
  * Can used for interceptors or middlewares
61
68
  */
62
- declare function onFinish<TOptions extends {
69
+ declare function onFinish<T, TOptions extends {
63
70
  next(): any;
64
- }, TRest extends any[]>(callback: NoInfer<(state: OnFinishState<Awaited<ReturnType<TOptions['next']>>, ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => Promise<Awaited<ReturnType<TOptions['next']>>>;
71
+ }, TRest extends any[]>(callback: NoInfer<(state: OnFinishState<Awaited<ReturnType<TOptions['next']>>, ReturnType<TOptions['next']> extends PromiseWithError<any, infer E> ? E : ThrowableError>, options: TOptions, ...rest: TRest) => Promisable<void>>): (options: TOptions, ...rest: TRest) => T | Promise<Awaited<ReturnType<TOptions['next']>>>;
65
72
  declare function intercept<TOptions extends InterceptableOptions, TResult, TError>(interceptors: Interceptor<TOptions, TResult, TError>[], options: NoInfer<TOptions>, main: NoInfer<(options: TOptions) => Promisable<TResult>>): Promise<TResult>;
66
73
 
67
74
  declare function isAsyncIteratorObject(maybe: unknown): maybe is AsyncIteratorObject<any, any, any>;
75
+ interface CreateAsyncIteratorObjectCleanupFn {
76
+ (reason: 'return' | 'throw' | 'next' | 'dispose'): Promise<void>;
77
+ }
78
+ declare function createAsyncIteratorObject<T, TReturn, TNext>(next: () => Promise<IteratorResult<T, TReturn>>, cleanup: CreateAsyncIteratorObjectCleanupFn): AsyncIteratorObject<T, TReturn, TNext> & AsyncGenerator<T, TReturn, TNext>;
68
79
 
69
80
  declare function parseEmptyableJSON(text: string | null | undefined): unknown;
70
81
  declare function stringifyJSON<T>(value: T): undefined extends T ? undefined | string : string;
@@ -84,8 +95,27 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
84
95
  declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
85
96
  declare function clone<T>(value: T): T;
86
97
  declare function get(object: object, path: readonly string[]): unknown;
98
+ declare function isPropertyKey(value: unknown): value is PropertyKey;
99
+
100
+ interface AsyncIdQueueCloseOptions {
101
+ id?: number;
102
+ reason?: Error;
103
+ }
104
+ declare class AsyncIdQueue<T> {
105
+ private readonly openIds;
106
+ private readonly items;
107
+ private readonly pendingPulls;
108
+ get length(): number;
109
+ open(id: number): void;
110
+ isOpen(id: number): boolean;
111
+ push(id: number, item: T): void;
112
+ pull(id: number): Promise<T>;
113
+ close({ id, reason }?: AsyncIdQueueCloseOptions): void;
114
+ assertOpen(id: number): void;
115
+ }
87
116
 
88
117
  type Value<T, TArgs extends any[] = []> = T | ((...args: TArgs) => Promisable<T>);
89
118
  declare function value<T, TArgs extends any[]>(value: Value<T, TArgs>, ...args: NoInfer<TArgs>): Promise<T extends Value<infer U, any> ? U : never>;
90
119
 
91
- export { type AnyFunction, type InterceptableOptions, type Interceptor, type InterceptorOptions, type IntersectPick, type MaybeOptionalOptions, type OmitChainMethodDeep, type OnFinishState, type PromiseWithError, type Registry, type Segment, type SetOptional, type ThrowableError, type Value, clone, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, stringifyJSON, toArray, value };
120
+ export { AsyncIdQueue, SequentialIdGenerator, clone, createAsyncIteratorObject, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, sequential, splitInHalf, stringifyJSON, toArray, value };
121
+ export type { AnyFunction, AsyncIdQueueCloseOptions, CreateAsyncIteratorObjectCleanupFn, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, MaybeOptionalOptions, OmitChainMethodDeep, OnFinishState, PromiseWithError, Registry, Segment, SetOptional, ThrowableError, Value };
package/dist/index.mjs CHANGED
@@ -7,6 +7,10 @@ function resolveMaybeOptionalOptions(rest) {
7
7
  function toArray(value) {
8
8
  return Array.isArray(value) ? value : value === void 0 || value === null ? [] : [value];
9
9
  }
10
+ function splitInHalf(arr) {
11
+ const half = Math.ceil(arr.length / 2);
12
+ return [arr.slice(0, half), arr.slice(half)];
13
+ }
10
14
 
11
15
  function once(fn) {
12
16
  let cached;
@@ -19,6 +23,26 @@ function once(fn) {
19
23
  return result;
20
24
  };
21
25
  }
26
+ function sequential(fn) {
27
+ let lastOperationPromise = Promise.resolve();
28
+ return (...args) => {
29
+ return lastOperationPromise = lastOperationPromise.catch(() => {
30
+ }).then(() => {
31
+ return fn(...args);
32
+ });
33
+ };
34
+ }
35
+
36
+ class SequentialIdGenerator {
37
+ nextId = 0;
38
+ generate() {
39
+ if (this.nextId === Number.MAX_SAFE_INTEGER) {
40
+ this.nextId = 0;
41
+ return Number.MAX_SAFE_INTEGER;
42
+ }
43
+ return this.nextId++;
44
+ }
45
+ }
22
46
 
23
47
  function onStart(callback) {
24
48
  return async (options, ...rest) => {
@@ -48,10 +72,10 @@ function onFinish(callback) {
48
72
  return async (options, ...rest) => {
49
73
  try {
50
74
  const result = await options.next();
51
- state = [result, null, "success"];
75
+ state = [null, result, true];
52
76
  return result;
53
77
  } catch (error) {
54
- state = [void 0, error, "error"];
78
+ state = [error, void 0, false];
55
79
  throw error;
56
80
  } finally {
57
81
  await callback(state, options, ...rest);
@@ -59,18 +83,17 @@ function onFinish(callback) {
59
83
  };
60
84
  }
61
85
  async function intercept(interceptors, options, main) {
62
- let index = 0;
63
- const next = async (options2) => {
64
- const interceptor = interceptors[index++];
86
+ const next = async (options2, index) => {
87
+ const interceptor = interceptors[index];
65
88
  if (!interceptor) {
66
89
  return await main(options2);
67
90
  }
68
91
  return await interceptor({
69
92
  ...options2,
70
- next: (newOptions = options2) => next(newOptions)
93
+ next: (newOptions = options2) => next(newOptions, index + 1)
71
94
  });
72
95
  };
73
- return await next(options);
96
+ return next(options, 0);
74
97
  }
75
98
 
76
99
  function isAsyncIteratorObject(maybe) {
@@ -79,6 +102,62 @@ function isAsyncIteratorObject(maybe) {
79
102
  }
80
103
  return Symbol.asyncIterator in maybe && typeof maybe[Symbol.asyncIterator] === "function";
81
104
  }
105
+ function createAsyncIteratorObject(next, cleanup) {
106
+ let isExecuteComplete = false;
107
+ let isDone = false;
108
+ const iterator = {
109
+ next: sequential(async () => {
110
+ if (isDone) {
111
+ return { done: true, value: void 0 };
112
+ }
113
+ try {
114
+ const result = await next();
115
+ if (result.done) {
116
+ isDone = true;
117
+ }
118
+ return result;
119
+ } catch (err) {
120
+ isDone = true;
121
+ throw err;
122
+ } finally {
123
+ if (isDone && !isExecuteComplete) {
124
+ isExecuteComplete = true;
125
+ await cleanup("next");
126
+ }
127
+ }
128
+ }),
129
+ async return(value) {
130
+ isDone = true;
131
+ if (!isExecuteComplete) {
132
+ isExecuteComplete = true;
133
+ await cleanup("return");
134
+ }
135
+ return { done: true, value };
136
+ },
137
+ async throw(err) {
138
+ isDone = true;
139
+ if (!isExecuteComplete) {
140
+ isExecuteComplete = true;
141
+ await cleanup("throw");
142
+ }
143
+ throw err;
144
+ },
145
+ /**
146
+ * asyncDispose symbol only available in esnext, we should fallback to Symbol.for('asyncDispose')
147
+ */
148
+ async [Symbol.asyncDispose ?? Symbol.for("asyncDispose")]() {
149
+ isDone = true;
150
+ if (!isExecuteComplete) {
151
+ isExecuteComplete = true;
152
+ await cleanup("dispose");
153
+ }
154
+ },
155
+ [Symbol.asyncIterator]() {
156
+ return iterator;
157
+ }
158
+ };
159
+ return iterator;
160
+ }
82
161
 
83
162
  function parseEmptyableJSON(text) {
84
163
  if (!text) {
@@ -138,6 +217,86 @@ function get(object, path) {
138
217
  }
139
218
  return current;
140
219
  }
220
+ function isPropertyKey(value) {
221
+ const type = typeof value;
222
+ return type === "string" || type === "number" || type === "symbol";
223
+ }
224
+
225
+ class AsyncIdQueue {
226
+ openIds = /* @__PURE__ */ new Set();
227
+ items = /* @__PURE__ */ new Map();
228
+ pendingPulls = /* @__PURE__ */ new Map();
229
+ get length() {
230
+ return this.openIds.size;
231
+ }
232
+ open(id) {
233
+ this.openIds.add(id);
234
+ }
235
+ isOpen(id) {
236
+ return this.openIds.has(id);
237
+ }
238
+ push(id, item) {
239
+ this.assertOpen(id);
240
+ const pending = this.pendingPulls.get(id);
241
+ if (pending?.length) {
242
+ pending.shift()[0](item);
243
+ if (pending.length === 0) {
244
+ this.pendingPulls.delete(id);
245
+ }
246
+ } else {
247
+ const items = this.items.get(id);
248
+ if (items) {
249
+ items.push(item);
250
+ } else {
251
+ this.items.set(id, [item]);
252
+ }
253
+ }
254
+ }
255
+ async pull(id) {
256
+ this.assertOpen(id);
257
+ const items = this.items.get(id);
258
+ if (items?.length) {
259
+ const item = items.shift();
260
+ if (items.length === 0) {
261
+ this.items.delete(id);
262
+ }
263
+ return item;
264
+ }
265
+ return new Promise((resolve, reject) => {
266
+ const waitingPulls = this.pendingPulls.get(id);
267
+ const pending = [resolve, reject];
268
+ if (waitingPulls) {
269
+ waitingPulls.push(pending);
270
+ } else {
271
+ this.pendingPulls.set(id, [pending]);
272
+ }
273
+ });
274
+ }
275
+ close({ id, reason } = {}) {
276
+ if (id === void 0) {
277
+ this.pendingPulls.forEach((pendingPulls, id2) => {
278
+ pendingPulls.forEach(([, reject]) => {
279
+ reject(reason ?? new Error(`[AsyncIdQueue] Queue[${id2}] was closed or aborted while waiting for pulling.`));
280
+ });
281
+ });
282
+ this.pendingPulls.clear();
283
+ this.openIds.clear();
284
+ this.items.clear();
285
+ return;
286
+ }
287
+ this.pendingPulls.get(id)?.forEach(([, reject]) => {
288
+ reject(reason ?? new Error(`[AsyncIdQueue] Queue[${id}] was closed or aborted while waiting for pulling.`));
289
+ });
290
+ this.pendingPulls.delete(id);
291
+ this.openIds.delete(id);
292
+ this.items.delete(id);
293
+ }
294
+ assertOpen(id) {
295
+ if (!this.isOpen(id)) {
296
+ throw new Error(`[AsyncIdQueue] Cannot access queue[${id}] because it is not open or aborted.`);
297
+ }
298
+ }
299
+ }
141
300
 
142
301
  function value(value2, ...args) {
143
302
  if (typeof value2 === "function") {
@@ -146,4 +305,4 @@ function value(value2, ...args) {
146
305
  return value2;
147
306
  }
148
307
 
149
- export { clone, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, stringifyJSON, toArray, value };
308
+ export { AsyncIdQueue, SequentialIdGenerator, clone, createAsyncIteratorObject, findDeepMatches, get, intercept, isAsyncIteratorObject, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, parseEmptyableJSON, resolveMaybeOptionalOptions, sequential, splitInHalf, stringifyJSON, toArray, value };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/shared",
3
3
  "type": "module",
4
- "version": "0.0.0-next.f47352c",
4
+ "version": "0.0.0-next.f4ed9ab",
5
5
  "license": "MIT",
6
6
  "homepage": "https://orpc.unnoq.com",
7
7
  "repository": {
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "radash": "^12.1.0",
28
- "type-fest": "^4.26.1"
28
+ "type-fest": "^4.39.1"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "unbuild",