@temporary-name/shared 1.9.3-alpha.5c041722542bb790586629fc98d4c72d9f6ee65e → 1.9.3-alpha.5dc8b200530586870ac736830d4584e0333cfd05
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 +43 -4
- package/dist/index.d.ts +43 -4
- package/dist/index.mjs +14 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3,6 +3,7 @@ import { Tracer, TraceAPI, ContextAPI, PropagationAPI, SpanOptions, Context, Spa
|
|
|
3
3
|
export { group, guard, mapEntries, mapValues, omit, retry, sleep } from 'radash';
|
|
4
4
|
|
|
5
5
|
type MaybeOptionalOptions<TOptions> = Record<never, never> extends TOptions ? [options?: TOptions] : [options: TOptions];
|
|
6
|
+
type OptionalIfEmpty<TOptions> = {} extends TOptions ? [options?: TOptions] : [options: TOptions];
|
|
6
7
|
declare function resolveMaybeOptionalOptions<T>(rest: MaybeOptionalOptions<T>): T;
|
|
7
8
|
|
|
8
9
|
declare function toArray<T>(value: T): T extends readonly any[] ? T : Exclude<T, undefined | null>[];
|
|
@@ -29,7 +30,7 @@ type OmitChainMethodDeep<T extends object, K extends keyof any> = {
|
|
|
29
30
|
|
|
30
31
|
declare const ORPC_NAME = "orpc";
|
|
31
32
|
declare const ORPC_SHARED_PACKAGE_NAME = "@temporary-name/shared";
|
|
32
|
-
declare const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.
|
|
33
|
+
declare const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.5dc8b200530586870ac736830d4584e0333cfd05";
|
|
33
34
|
|
|
34
35
|
declare const ORPC_CLIENT_PACKAGE_NAME = "__ORPC_CLIENT_PACKAGE_NAME_PLACEHOLDER__";
|
|
35
36
|
declare const ORPC_CLIENT_PACKAGE_VERSION = "__ORPC_CLIENT_PACKAGE_VERSION_PLACEHOLDER__";
|
|
@@ -223,10 +224,46 @@ declare class SequentialIdGenerator {
|
|
|
223
224
|
generate(): string;
|
|
224
225
|
}
|
|
225
226
|
|
|
227
|
+
type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
|
|
228
|
+
interface StandardRequest {
|
|
229
|
+
method: string;
|
|
230
|
+
url: URL;
|
|
231
|
+
headers: Headers;
|
|
232
|
+
/**
|
|
233
|
+
* The body has been parsed based on the content-type header.
|
|
234
|
+
*/
|
|
235
|
+
body: StandardBody;
|
|
236
|
+
signal: AbortSignal | undefined;
|
|
237
|
+
}
|
|
238
|
+
interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
|
|
239
|
+
/**
|
|
240
|
+
* The body has been parsed based on the content-type header.
|
|
241
|
+
* This method can safely call multiple times (cached).
|
|
242
|
+
*/
|
|
243
|
+
body: () => Promise<StandardBody>;
|
|
244
|
+
}
|
|
245
|
+
interface StandardResponse {
|
|
246
|
+
status: number;
|
|
247
|
+
headers: Headers;
|
|
248
|
+
/**
|
|
249
|
+
* The body has been parsed based on the content-type header.
|
|
250
|
+
*/
|
|
251
|
+
body: StandardBody;
|
|
252
|
+
}
|
|
253
|
+
interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
|
|
254
|
+
/**
|
|
255
|
+
* The body has been parsed based on the content-type header.
|
|
256
|
+
* This method can safely call multiple times (cached).
|
|
257
|
+
*/
|
|
258
|
+
body: () => Promise<StandardBody>;
|
|
259
|
+
}
|
|
226
260
|
type HTTPPath = `/${string}`;
|
|
227
|
-
|
|
261
|
+
declare const HTTPMethods: readonly ["HEAD", "GET", "POST", "PUT", "DELETE", "PATCH"];
|
|
262
|
+
type HTTPMethod = (typeof HTTPMethods)[number];
|
|
263
|
+
type HTTPEndpoint = `${HTTPMethod} ${HTTPPath}`;
|
|
228
264
|
type ClientContext = Record<PropertyKey, any>;
|
|
229
265
|
interface ClientOptions<T extends ClientContext> {
|
|
266
|
+
request?: StandardLazyRequest;
|
|
230
267
|
signal?: AbortSignal;
|
|
231
268
|
lastEventId?: string | undefined;
|
|
232
269
|
context: T;
|
|
@@ -504,6 +541,8 @@ type SafeResult<TOutput, TError> = ([error: null, data: TOutput, isDefined: fals
|
|
|
504
541
|
*/
|
|
505
542
|
declare function safe<TOutput, TError = ThrowableError$1>(promise: ClientPromiseResult<TOutput, TError>): Promise<SafeResult<TOutput, TError>>;
|
|
506
543
|
declare function toHttpPath(path: readonly string[]): HTTPPath;
|
|
544
|
+
declare function splitFirst(str: string, separator: string): [string, string];
|
|
545
|
+
declare function assertNever(value: never): never;
|
|
507
546
|
|
|
508
|
-
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
|
509
|
-
export type { AnyFunction, AsyncIdQueueCloseOptions, AsyncIteratorClassCleanupFn, AsyncIteratorClassNextFn, AsyncIteratorWithSpanOptions, Client, ClientContext, ClientLink, ClientOptions, ClientPromiseResult, ClientRest, CommonORPCErrorCode, EventPublisherOptions, EventPublisherSubscribeIteratorOptions, FriendlyClientOptions, HTTPMethod, HTTPPath, InferAsyncIterableYield, InferClientContext, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, IsEqual, MaybeOptionalOptions, NestedClient, ORPCErrorCode, ORPCErrorJSON, ORPCErrorOptions, OmitChainMethodDeep, OnFinishState, OtelConfig, Promisable, PromiseWithError, Registry, RunWithSpanOptions, SafeResult, Segment, SetOptional, SetSpanErrorOptions, ThrowableError, Value };
|
|
547
|
+
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, HTTPMethods, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, assertNever, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitFirst, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
|
548
|
+
export type { AnyFunction, AsyncIdQueueCloseOptions, AsyncIteratorClassCleanupFn, AsyncIteratorClassNextFn, AsyncIteratorWithSpanOptions, Client, ClientContext, ClientLink, ClientOptions, ClientPromiseResult, ClientRest, CommonORPCErrorCode, EventPublisherOptions, EventPublisherSubscribeIteratorOptions, FriendlyClientOptions, HTTPEndpoint, HTTPMethod, HTTPPath, InferAsyncIterableYield, InferClientContext, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, IsEqual, MaybeOptionalOptions, NestedClient, ORPCErrorCode, ORPCErrorJSON, ORPCErrorOptions, OmitChainMethodDeep, OnFinishState, OptionalIfEmpty, OtelConfig, Promisable, PromiseWithError, Registry, RunWithSpanOptions, SafeResult, Segment, SetOptional, SetSpanErrorOptions, StandardBody, StandardLazyRequest, StandardLazyResponse, StandardRequest, StandardResponse, ThrowableError, Value };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { Tracer, TraceAPI, ContextAPI, PropagationAPI, SpanOptions, Context, Spa
|
|
|
3
3
|
export { group, guard, mapEntries, mapValues, omit, retry, sleep } from 'radash';
|
|
4
4
|
|
|
5
5
|
type MaybeOptionalOptions<TOptions> = Record<never, never> extends TOptions ? [options?: TOptions] : [options: TOptions];
|
|
6
|
+
type OptionalIfEmpty<TOptions> = {} extends TOptions ? [options?: TOptions] : [options: TOptions];
|
|
6
7
|
declare function resolveMaybeOptionalOptions<T>(rest: MaybeOptionalOptions<T>): T;
|
|
7
8
|
|
|
8
9
|
declare function toArray<T>(value: T): T extends readonly any[] ? T : Exclude<T, undefined | null>[];
|
|
@@ -29,7 +30,7 @@ type OmitChainMethodDeep<T extends object, K extends keyof any> = {
|
|
|
29
30
|
|
|
30
31
|
declare const ORPC_NAME = "orpc";
|
|
31
32
|
declare const ORPC_SHARED_PACKAGE_NAME = "@temporary-name/shared";
|
|
32
|
-
declare const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.
|
|
33
|
+
declare const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.5dc8b200530586870ac736830d4584e0333cfd05";
|
|
33
34
|
|
|
34
35
|
declare const ORPC_CLIENT_PACKAGE_NAME = "__ORPC_CLIENT_PACKAGE_NAME_PLACEHOLDER__";
|
|
35
36
|
declare const ORPC_CLIENT_PACKAGE_VERSION = "__ORPC_CLIENT_PACKAGE_VERSION_PLACEHOLDER__";
|
|
@@ -223,10 +224,46 @@ declare class SequentialIdGenerator {
|
|
|
223
224
|
generate(): string;
|
|
224
225
|
}
|
|
225
226
|
|
|
227
|
+
type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
|
|
228
|
+
interface StandardRequest {
|
|
229
|
+
method: string;
|
|
230
|
+
url: URL;
|
|
231
|
+
headers: Headers;
|
|
232
|
+
/**
|
|
233
|
+
* The body has been parsed based on the content-type header.
|
|
234
|
+
*/
|
|
235
|
+
body: StandardBody;
|
|
236
|
+
signal: AbortSignal | undefined;
|
|
237
|
+
}
|
|
238
|
+
interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
|
|
239
|
+
/**
|
|
240
|
+
* The body has been parsed based on the content-type header.
|
|
241
|
+
* This method can safely call multiple times (cached).
|
|
242
|
+
*/
|
|
243
|
+
body: () => Promise<StandardBody>;
|
|
244
|
+
}
|
|
245
|
+
interface StandardResponse {
|
|
246
|
+
status: number;
|
|
247
|
+
headers: Headers;
|
|
248
|
+
/**
|
|
249
|
+
* The body has been parsed based on the content-type header.
|
|
250
|
+
*/
|
|
251
|
+
body: StandardBody;
|
|
252
|
+
}
|
|
253
|
+
interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
|
|
254
|
+
/**
|
|
255
|
+
* The body has been parsed based on the content-type header.
|
|
256
|
+
* This method can safely call multiple times (cached).
|
|
257
|
+
*/
|
|
258
|
+
body: () => Promise<StandardBody>;
|
|
259
|
+
}
|
|
226
260
|
type HTTPPath = `/${string}`;
|
|
227
|
-
|
|
261
|
+
declare const HTTPMethods: readonly ["HEAD", "GET", "POST", "PUT", "DELETE", "PATCH"];
|
|
262
|
+
type HTTPMethod = (typeof HTTPMethods)[number];
|
|
263
|
+
type HTTPEndpoint = `${HTTPMethod} ${HTTPPath}`;
|
|
228
264
|
type ClientContext = Record<PropertyKey, any>;
|
|
229
265
|
interface ClientOptions<T extends ClientContext> {
|
|
266
|
+
request?: StandardLazyRequest;
|
|
230
267
|
signal?: AbortSignal;
|
|
231
268
|
lastEventId?: string | undefined;
|
|
232
269
|
context: T;
|
|
@@ -504,6 +541,8 @@ type SafeResult<TOutput, TError> = ([error: null, data: TOutput, isDefined: fals
|
|
|
504
541
|
*/
|
|
505
542
|
declare function safe<TOutput, TError = ThrowableError$1>(promise: ClientPromiseResult<TOutput, TError>): Promise<SafeResult<TOutput, TError>>;
|
|
506
543
|
declare function toHttpPath(path: readonly string[]): HTTPPath;
|
|
544
|
+
declare function splitFirst(str: string, separator: string): [string, string];
|
|
545
|
+
declare function assertNever(value: never): never;
|
|
507
546
|
|
|
508
|
-
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
|
509
|
-
export type { AnyFunction, AsyncIdQueueCloseOptions, AsyncIteratorClassCleanupFn, AsyncIteratorClassNextFn, AsyncIteratorWithSpanOptions, Client, ClientContext, ClientLink, ClientOptions, ClientPromiseResult, ClientRest, CommonORPCErrorCode, EventPublisherOptions, EventPublisherSubscribeIteratorOptions, FriendlyClientOptions, HTTPMethod, HTTPPath, InferAsyncIterableYield, InferClientContext, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, IsEqual, MaybeOptionalOptions, NestedClient, ORPCErrorCode, ORPCErrorJSON, ORPCErrorOptions, OmitChainMethodDeep, OnFinishState, OtelConfig, Promisable, PromiseWithError, Registry, RunWithSpanOptions, SafeResult, Segment, SetOptional, SetSpanErrorOptions, ThrowableError, Value };
|
|
547
|
+
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, HTTPMethods, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, assertNever, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitFirst, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
|
548
|
+
export type { AnyFunction, AsyncIdQueueCloseOptions, AsyncIteratorClassCleanupFn, AsyncIteratorClassNextFn, AsyncIteratorWithSpanOptions, Client, ClientContext, ClientLink, ClientOptions, ClientPromiseResult, ClientRest, CommonORPCErrorCode, EventPublisherOptions, EventPublisherSubscribeIteratorOptions, FriendlyClientOptions, HTTPEndpoint, HTTPMethod, HTTPPath, InferAsyncIterableYield, InferClientContext, InterceptableOptions, Interceptor, InterceptorOptions, IntersectPick, IsEqual, MaybeOptionalOptions, NestedClient, ORPCErrorCode, ORPCErrorJSON, ORPCErrorOptions, OmitChainMethodDeep, OnFinishState, OptionalIfEmpty, OtelConfig, Promisable, PromiseWithError, Registry, RunWithSpanOptions, SafeResult, Segment, SetOptional, SetSpanErrorOptions, StandardBody, StandardLazyRequest, StandardLazyResponse, StandardRequest, StandardResponse, ThrowableError, Value };
|
package/dist/index.mjs
CHANGED
|
@@ -22,7 +22,7 @@ function readAsBuffer(source) {
|
|
|
22
22
|
|
|
23
23
|
const ORPC_NAME = "orpc";
|
|
24
24
|
const ORPC_SHARED_PACKAGE_NAME = "@temporary-name/shared";
|
|
25
|
-
const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.
|
|
25
|
+
const ORPC_SHARED_PACKAGE_VERSION = "1.9.3-alpha.5dc8b200530586870ac736830d4584e0333cfd05";
|
|
26
26
|
|
|
27
27
|
const ORPC_CLIENT_PACKAGE_NAME = "__ORPC_CLIENT_PACKAGE_NAME_PLACEHOLDER__";
|
|
28
28
|
const ORPC_CLIENT_PACKAGE_VERSION = "__ORPC_CLIENT_PACKAGE_VERSION_PLACEHOLDER__";
|
|
@@ -852,6 +852,8 @@ function asyncIteratorToStream(iterator) {
|
|
|
852
852
|
});
|
|
853
853
|
}
|
|
854
854
|
|
|
855
|
+
const HTTPMethods = ["HEAD", "GET", "POST", "PUT", "DELETE", "PATCH"];
|
|
856
|
+
|
|
855
857
|
function tryDecodeURIComponent(value) {
|
|
856
858
|
try {
|
|
857
859
|
return decodeURIComponent(value);
|
|
@@ -893,5 +895,15 @@ async function safe(promise) {
|
|
|
893
895
|
function toHttpPath(path) {
|
|
894
896
|
return `/${path.map(encodeURIComponent).join("/")}`;
|
|
895
897
|
}
|
|
898
|
+
function splitFirst(str, separator) {
|
|
899
|
+
const index = str.indexOf(separator);
|
|
900
|
+
if (index === -1) {
|
|
901
|
+
return [str, ""];
|
|
902
|
+
}
|
|
903
|
+
return [str.slice(0, index), str.slice(index + separator.length)];
|
|
904
|
+
}
|
|
905
|
+
function assertNever(value) {
|
|
906
|
+
throw new Error(`Unexpected value: ${value}`);
|
|
907
|
+
}
|
|
896
908
|
|
|
897
|
-
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
|
909
|
+
export { AbortError, AsyncIdQueue, AsyncIteratorClass, COMMON_ORPC_ERROR_DEFS, EventPublisher, HTTPMethods, NullProtoObj, ORPCError, ORPC_CLIENT_PACKAGE_NAME, ORPC_CLIENT_PACKAGE_VERSION, ORPC_NAME, ORPC_SHARED_PACKAGE_NAME, ORPC_SHARED_PACKAGE_VERSION, SequentialIdGenerator, assertNever, asyncIteratorToStream, asyncIteratorWithSpan, clone, createORPCErrorFromJson, defer, fallback, fallbackORPCErrorMessage, fallbackORPCErrorStatus, findDeepMatches, get, getConstructor, getGlobalOtelConfig, intercept, isAsyncIteratorObject, isDefinedError, isORPCErrorJson, isORPCErrorStatus, isObject, isPropertyKey, isTypescriptObject, onError, onFinish, onStart, onSuccess, once, overlayProxy, parseEmptyableJSON, preventNativeAwait, readAsBuffer, replicateAsyncIterator, resolveMaybeOptionalOptions, runInSpanContext, runWithSpan, safe, sequential, setGlobalOtelConfig, setSpanAttribute, setSpanError, splitFirst, splitInHalf, startSpan, streamToAsyncIteratorClass, stringifyJSON, toArray, toHttpPath, toORPCError, toOtelException, toSpanAttributeValue, tryDecodeURIComponent, value };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@temporary-name/shared",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.9.3-alpha.
|
|
4
|
+
"version": "1.9.3-alpha.5dc8b200530586870ac736830d4584e0333cfd05",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://www.stainless.com/",
|
|
7
7
|
"repository": {
|