@orpc/tanstack-query 0.0.0 → 1.4.0
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 +133 -0
- package/dist/index.d.ts +133 -0
- package/dist/index.mjs +151 -0
- package/package.json +14 -6
- package/dist/src/index.d.ts +0 -3
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/key.d.ts +0 -9
- package/dist/src/key.d.ts.map +0 -1
- package/dist/src/types.d.ts +0 -2
- package/dist/src/types.d.ts.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { OperationType as OperationType$1, OperationKeyOptions as OperationKeyOptions$1, OperationKey as OperationKey$1 } from '@orpc/tanstack-query';
|
|
2
|
+
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';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Utils at any level (procedure or router)
|
|
8
|
+
*/
|
|
9
|
+
interface GeneralUtils<TInput> {
|
|
10
|
+
/**
|
|
11
|
+
* Generate a query/mutation key for checking status, invalidate, set, get, etc.
|
|
12
|
+
*
|
|
13
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-mutation-key Tanstack Query/Mutation Key Docs}
|
|
14
|
+
*/
|
|
15
|
+
key<TType extends OperationType$1>(options?: OperationKeyOptions$1<TType, TInput>): OperationKey$1<TType, TInput>;
|
|
16
|
+
}
|
|
17
|
+
declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
|
|
18
|
+
|
|
19
|
+
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';
|
|
22
|
+
type OperationKeyOptions<TType extends OperationType, TInput> = {
|
|
23
|
+
type?: TType;
|
|
24
|
+
input?: TType extends 'mutation' ? never : PartialDeep<TInput>;
|
|
25
|
+
fnOptions?: TType extends 'streamed' ? experimental_StreamedQueryOptions : never;
|
|
26
|
+
};
|
|
27
|
+
type OperationKey<TType extends OperationType, TInput> = [path: readonly string[], options: OperationKeyOptions<TType, TInput>];
|
|
28
|
+
declare const OPERATION_CONTEXT_SYMBOL: unique symbol;
|
|
29
|
+
interface OperationContext {
|
|
30
|
+
[OPERATION_CONTEXT_SYMBOL]?: {
|
|
31
|
+
key: QueryKey;
|
|
32
|
+
type: OperationType;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = (undefined extends TInput ? {
|
|
36
|
+
input?: TInput | SkipToken;
|
|
37
|
+
} : {
|
|
38
|
+
input: TInput | SkipToken;
|
|
39
|
+
}) & (Record<never, never> extends TClientContext ? {
|
|
40
|
+
context?: TClientContext;
|
|
41
|
+
} : {
|
|
42
|
+
context: TClientContext;
|
|
43
|
+
}) & SetOptional<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
|
|
44
|
+
interface QueryOptionsBase<TOutput, TError> {
|
|
45
|
+
queryKey: QueryKey;
|
|
46
|
+
queryFn: QueryFunction<TOutput>;
|
|
47
|
+
throwOnError?: (error: TError) => boolean;
|
|
48
|
+
retryDelay?: (count: number, error: TError) => number;
|
|
49
|
+
enabled: boolean;
|
|
50
|
+
}
|
|
51
|
+
type experimental_StreamedOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryOptionsIn<TClientContext, TInput, TOutput, TError, TSelectData> & {
|
|
52
|
+
queryFnOptions?: experimental_StreamedQueryOptions;
|
|
53
|
+
};
|
|
54
|
+
interface experimental_StreamedOptionsBase<TOutput, TError> extends QueryOptionsBase<TOutput, TError> {
|
|
55
|
+
}
|
|
56
|
+
type InfiniteOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData, TPageParam> = {
|
|
57
|
+
input: ((pageParam: TPageParam) => TInput) | SkipToken;
|
|
58
|
+
} & (Record<never, never> extends TClientContext ? {
|
|
59
|
+
context?: TClientContext;
|
|
60
|
+
} : {
|
|
61
|
+
context: TClientContext;
|
|
62
|
+
}) & SetOptional<InfiniteQueryObserverOptions<TOutput, TError, TSelectData, QueryKey, TPageParam>, 'queryKey'>;
|
|
63
|
+
interface InfiniteOptionsBase<TOutput, TError, TPageParam> {
|
|
64
|
+
queryKey: QueryKey;
|
|
65
|
+
queryFn: QueryFunction<TOutput, QueryKey, TPageParam>;
|
|
66
|
+
select?(): InfiniteData<TOutput, TPageParam>;
|
|
67
|
+
throwOnError?: (error: TError) => boolean;
|
|
68
|
+
retryDelay?: (count: number, error: TError) => number;
|
|
69
|
+
enabled: boolean;
|
|
70
|
+
}
|
|
71
|
+
type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TMutationContext> = (Record<never, never> extends TClientContext ? {
|
|
72
|
+
context?: TClientContext;
|
|
73
|
+
} : {
|
|
74
|
+
context: TClientContext;
|
|
75
|
+
}) & MutationOptions<TInput, TOutput, TError, TMutationContext>;
|
|
76
|
+
type MutationOptions<TInput, TOutput, TError, TMutationContext> = MutationObserverOptions<TOutput, TError, TInput, TMutationContext>;
|
|
77
|
+
|
|
78
|
+
declare function generateOperationKey<TType extends OperationType, TInput>(path: readonly string[], state?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
|
|
79
|
+
|
|
80
|
+
interface ProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError> {
|
|
81
|
+
/**
|
|
82
|
+
* Calling corresponding procedure client
|
|
83
|
+
*
|
|
84
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#calling-procedure-clients Tanstack Calling Procedure Client Docs}
|
|
85
|
+
*/
|
|
86
|
+
call: Client<TClientContext, TInput, TOutput, TError>;
|
|
87
|
+
/**
|
|
88
|
+
* Generate options used for useQuery/useSuspenseQuery/prefetchQuery/...
|
|
89
|
+
*
|
|
90
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-options-utility Tanstack Query Options Utility Docs}
|
|
91
|
+
*/
|
|
92
|
+
queryOptions<U, USelectData = TOutput>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, TOutput, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<TOutput, TError>, keyof U>>;
|
|
93
|
+
/**
|
|
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)
|
|
96
|
+
*
|
|
97
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#streamed-query-options-utility Tanstack Streamed Query Options Utility Docs}
|
|
98
|
+
*/
|
|
99
|
+
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>>;
|
|
100
|
+
/**
|
|
101
|
+
* Generate options used for useInfiniteQuery/useSuspenseInfiniteQuery/prefetchInfiniteQuery/...
|
|
102
|
+
*
|
|
103
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#infinite-query-options-utility Tanstack Infinite Query Options Utility Docs}
|
|
104
|
+
*/
|
|
105
|
+
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>>;
|
|
106
|
+
/**
|
|
107
|
+
* Generate options used for useMutation/...
|
|
108
|
+
*
|
|
109
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#mutation-options Tanstack Mutation Options Docs}
|
|
110
|
+
*/
|
|
111
|
+
mutationOptions<UMutationContext>(...rest: MaybeOptionalOptions<MutationOptionsIn<TClientContext, TInput, TOutput, TError, UMutationContext>>): NoInfer<MutationOptions<TInput, TOutput, TError, UMutationContext>>;
|
|
112
|
+
}
|
|
113
|
+
interface CreateProcedureUtilsOptions {
|
|
114
|
+
path: readonly string[];
|
|
115
|
+
}
|
|
116
|
+
declare function createProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError>(client: Client<TClientContext, TInput, TOutput, TError>, options: CreateProcedureUtilsOptions): ProcedureUtils<TClientContext, TInput, TOutput, TError>;
|
|
117
|
+
|
|
118
|
+
type RouterUtils<T extends NestedClient<any>> = T extends Client<infer UClientContext, infer UInput, infer UOutput, infer UError> ? ProcedureUtils<UClientContext, UInput, UOutput, UError> & GeneralUtils<UInput> : {
|
|
119
|
+
[K in keyof T]: T[K] extends NestedClient<any> ? RouterUtils<T[K]> : never;
|
|
120
|
+
} & GeneralUtils<unknown>;
|
|
121
|
+
interface CreateRouterUtilsOptions {
|
|
122
|
+
path?: readonly string[];
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Create a router utils from a client.
|
|
126
|
+
*
|
|
127
|
+
* @info Both client-side and server-side clients are supported.
|
|
128
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query Tanstack Query Integration}
|
|
129
|
+
*/
|
|
130
|
+
declare function createRouterUtils<T extends NestedClient<any>>(client: T, options?: CreateRouterUtilsOptions): RouterUtils<T>;
|
|
131
|
+
|
|
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 };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import { OperationType as OperationType$1, OperationKeyOptions as OperationKeyOptions$1, OperationKey as OperationKey$1 } from '@orpc/tanstack-query';
|
|
2
|
+
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';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Utils at any level (procedure or router)
|
|
8
|
+
*/
|
|
9
|
+
interface GeneralUtils<TInput> {
|
|
10
|
+
/**
|
|
11
|
+
* Generate a query/mutation key for checking status, invalidate, set, get, etc.
|
|
12
|
+
*
|
|
13
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-mutation-key Tanstack Query/Mutation Key Docs}
|
|
14
|
+
*/
|
|
15
|
+
key<TType extends OperationType$1>(options?: OperationKeyOptions$1<TType, TInput>): OperationKey$1<TType, TInput>;
|
|
16
|
+
}
|
|
17
|
+
declare function createGeneralUtils<TInput>(path: readonly string[]): GeneralUtils<TInput>;
|
|
18
|
+
|
|
19
|
+
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';
|
|
22
|
+
type OperationKeyOptions<TType extends OperationType, TInput> = {
|
|
23
|
+
type?: TType;
|
|
24
|
+
input?: TType extends 'mutation' ? never : PartialDeep<TInput>;
|
|
25
|
+
fnOptions?: TType extends 'streamed' ? experimental_StreamedQueryOptions : never;
|
|
26
|
+
};
|
|
27
|
+
type OperationKey<TType extends OperationType, TInput> = [path: readonly string[], options: OperationKeyOptions<TType, TInput>];
|
|
28
|
+
declare const OPERATION_CONTEXT_SYMBOL: unique symbol;
|
|
29
|
+
interface OperationContext {
|
|
30
|
+
[OPERATION_CONTEXT_SYMBOL]?: {
|
|
31
|
+
key: QueryKey;
|
|
32
|
+
type: OperationType;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
type QueryOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = (undefined extends TInput ? {
|
|
36
|
+
input?: TInput | SkipToken;
|
|
37
|
+
} : {
|
|
38
|
+
input: TInput | SkipToken;
|
|
39
|
+
}) & (Record<never, never> extends TClientContext ? {
|
|
40
|
+
context?: TClientContext;
|
|
41
|
+
} : {
|
|
42
|
+
context: TClientContext;
|
|
43
|
+
}) & SetOptional<QueryObserverOptions<TOutput, TError, TSelectData>, 'queryKey'>;
|
|
44
|
+
interface QueryOptionsBase<TOutput, TError> {
|
|
45
|
+
queryKey: QueryKey;
|
|
46
|
+
queryFn: QueryFunction<TOutput>;
|
|
47
|
+
throwOnError?: (error: TError) => boolean;
|
|
48
|
+
retryDelay?: (count: number, error: TError) => number;
|
|
49
|
+
enabled: boolean;
|
|
50
|
+
}
|
|
51
|
+
type experimental_StreamedOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData> = QueryOptionsIn<TClientContext, TInput, TOutput, TError, TSelectData> & {
|
|
52
|
+
queryFnOptions?: experimental_StreamedQueryOptions;
|
|
53
|
+
};
|
|
54
|
+
interface experimental_StreamedOptionsBase<TOutput, TError> extends QueryOptionsBase<TOutput, TError> {
|
|
55
|
+
}
|
|
56
|
+
type InfiniteOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TSelectData, TPageParam> = {
|
|
57
|
+
input: ((pageParam: TPageParam) => TInput) | SkipToken;
|
|
58
|
+
} & (Record<never, never> extends TClientContext ? {
|
|
59
|
+
context?: TClientContext;
|
|
60
|
+
} : {
|
|
61
|
+
context: TClientContext;
|
|
62
|
+
}) & SetOptional<InfiniteQueryObserverOptions<TOutput, TError, TSelectData, QueryKey, TPageParam>, 'queryKey'>;
|
|
63
|
+
interface InfiniteOptionsBase<TOutput, TError, TPageParam> {
|
|
64
|
+
queryKey: QueryKey;
|
|
65
|
+
queryFn: QueryFunction<TOutput, QueryKey, TPageParam>;
|
|
66
|
+
select?(): InfiniteData<TOutput, TPageParam>;
|
|
67
|
+
throwOnError?: (error: TError) => boolean;
|
|
68
|
+
retryDelay?: (count: number, error: TError) => number;
|
|
69
|
+
enabled: boolean;
|
|
70
|
+
}
|
|
71
|
+
type MutationOptionsIn<TClientContext extends ClientContext, TInput, TOutput, TError, TMutationContext> = (Record<never, never> extends TClientContext ? {
|
|
72
|
+
context?: TClientContext;
|
|
73
|
+
} : {
|
|
74
|
+
context: TClientContext;
|
|
75
|
+
}) & MutationOptions<TInput, TOutput, TError, TMutationContext>;
|
|
76
|
+
type MutationOptions<TInput, TOutput, TError, TMutationContext> = MutationObserverOptions<TOutput, TError, TInput, TMutationContext>;
|
|
77
|
+
|
|
78
|
+
declare function generateOperationKey<TType extends OperationType, TInput>(path: readonly string[], state?: OperationKeyOptions<TType, TInput>): OperationKey<TType, TInput>;
|
|
79
|
+
|
|
80
|
+
interface ProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError> {
|
|
81
|
+
/**
|
|
82
|
+
* Calling corresponding procedure client
|
|
83
|
+
*
|
|
84
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#calling-procedure-clients Tanstack Calling Procedure Client Docs}
|
|
85
|
+
*/
|
|
86
|
+
call: Client<TClientContext, TInput, TOutput, TError>;
|
|
87
|
+
/**
|
|
88
|
+
* Generate options used for useQuery/useSuspenseQuery/prefetchQuery/...
|
|
89
|
+
*
|
|
90
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#query-options-utility Tanstack Query Options Utility Docs}
|
|
91
|
+
*/
|
|
92
|
+
queryOptions<U, USelectData = TOutput>(...rest: MaybeOptionalOptions<U & QueryOptionsIn<TClientContext, TInput, TOutput, TError, USelectData>>): NoInfer<U & Omit<QueryOptionsBase<TOutput, TError>, keyof U>>;
|
|
93
|
+
/**
|
|
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)
|
|
96
|
+
*
|
|
97
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#streamed-query-options-utility Tanstack Streamed Query Options Utility Docs}
|
|
98
|
+
*/
|
|
99
|
+
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>>;
|
|
100
|
+
/**
|
|
101
|
+
* Generate options used for useInfiniteQuery/useSuspenseInfiniteQuery/prefetchInfiniteQuery/...
|
|
102
|
+
*
|
|
103
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#infinite-query-options-utility Tanstack Infinite Query Options Utility Docs}
|
|
104
|
+
*/
|
|
105
|
+
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>>;
|
|
106
|
+
/**
|
|
107
|
+
* Generate options used for useMutation/...
|
|
108
|
+
*
|
|
109
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query-old/basic#mutation-options Tanstack Mutation Options Docs}
|
|
110
|
+
*/
|
|
111
|
+
mutationOptions<UMutationContext>(...rest: MaybeOptionalOptions<MutationOptionsIn<TClientContext, TInput, TOutput, TError, UMutationContext>>): NoInfer<MutationOptions<TInput, TOutput, TError, UMutationContext>>;
|
|
112
|
+
}
|
|
113
|
+
interface CreateProcedureUtilsOptions {
|
|
114
|
+
path: readonly string[];
|
|
115
|
+
}
|
|
116
|
+
declare function createProcedureUtils<TClientContext extends ClientContext, TInput, TOutput, TError>(client: Client<TClientContext, TInput, TOutput, TError>, options: CreateProcedureUtilsOptions): ProcedureUtils<TClientContext, TInput, TOutput, TError>;
|
|
117
|
+
|
|
118
|
+
type RouterUtils<T extends NestedClient<any>> = T extends Client<infer UClientContext, infer UInput, infer UOutput, infer UError> ? ProcedureUtils<UClientContext, UInput, UOutput, UError> & GeneralUtils<UInput> : {
|
|
119
|
+
[K in keyof T]: T[K] extends NestedClient<any> ? RouterUtils<T[K]> : never;
|
|
120
|
+
} & GeneralUtils<unknown>;
|
|
121
|
+
interface CreateRouterUtilsOptions {
|
|
122
|
+
path?: readonly string[];
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Create a router utils from a client.
|
|
126
|
+
*
|
|
127
|
+
* @info Both client-side and server-side clients are supported.
|
|
128
|
+
* @see {@link https://orpc.unnoq.com/docs/integrations/tanstack-query Tanstack Query Integration}
|
|
129
|
+
*/
|
|
130
|
+
declare function createRouterUtils<T extends NestedClient<any>>(client: T, options?: CreateRouterUtilsOptions): RouterUtils<T>;
|
|
131
|
+
|
|
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 };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,151 @@
|
|
|
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';
|
|
4
|
+
|
|
5
|
+
function createGeneralUtils(path) {
|
|
6
|
+
return {
|
|
7
|
+
key(options) {
|
|
8
|
+
return generateOperationKey$1(path, options);
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
|
|
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
|
+
}];
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const OPERATION_CONTEXT_SYMBOL = Symbol("ORPC_OPERATION_CONTEXT");
|
|
22
|
+
|
|
23
|
+
function createProcedureUtils(client, options) {
|
|
24
|
+
return {
|
|
25
|
+
call: client,
|
|
26
|
+
queryOptions(...[optionsIn = {}]) {
|
|
27
|
+
const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, { type: "query", input: optionsIn.input });
|
|
28
|
+
return {
|
|
29
|
+
queryFn: ({ signal }) => {
|
|
30
|
+
if (optionsIn.input === skipToken) {
|
|
31
|
+
throw new Error("queryFn should not be called with skipToken used as input");
|
|
32
|
+
}
|
|
33
|
+
return client(optionsIn.input, {
|
|
34
|
+
signal,
|
|
35
|
+
context: {
|
|
36
|
+
[OPERATION_CONTEXT_SYMBOL]: {
|
|
37
|
+
key: queryKey,
|
|
38
|
+
type: "query"
|
|
39
|
+
},
|
|
40
|
+
...optionsIn.context
|
|
41
|
+
}
|
|
42
|
+
});
|
|
43
|
+
},
|
|
44
|
+
enabled: optionsIn.input !== skipToken,
|
|
45
|
+
...optionsIn,
|
|
46
|
+
queryKey
|
|
47
|
+
};
|
|
48
|
+
},
|
|
49
|
+
experimental_streamedOptions(...[optionsIn = {}]) {
|
|
50
|
+
const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, { type: "streamed", input: optionsIn.input, fnOptions: optionsIn.queryFnOptions });
|
|
51
|
+
return {
|
|
52
|
+
enabled: optionsIn.input !== skipToken,
|
|
53
|
+
queryFn: experimental_streamedQuery({
|
|
54
|
+
queryFn: async ({ signal }) => {
|
|
55
|
+
if (optionsIn.input === skipToken) {
|
|
56
|
+
throw new Error("queryFn should not be called with skipToken used as input");
|
|
57
|
+
}
|
|
58
|
+
const output = await client(optionsIn.input, {
|
|
59
|
+
signal,
|
|
60
|
+
context: {
|
|
61
|
+
[OPERATION_CONTEXT_SYMBOL]: {
|
|
62
|
+
key: queryKey,
|
|
63
|
+
type: "streamed"
|
|
64
|
+
},
|
|
65
|
+
...optionsIn.context
|
|
66
|
+
}
|
|
67
|
+
});
|
|
68
|
+
if (!isAsyncIteratorObject(output)) {
|
|
69
|
+
throw new Error("streamedQuery requires an event iterator output");
|
|
70
|
+
}
|
|
71
|
+
return output;
|
|
72
|
+
},
|
|
73
|
+
...optionsIn.queryFnOptions
|
|
74
|
+
}),
|
|
75
|
+
...optionsIn,
|
|
76
|
+
queryKey
|
|
77
|
+
};
|
|
78
|
+
},
|
|
79
|
+
infiniteOptions(optionsIn) {
|
|
80
|
+
const queryKey = optionsIn.queryKey ?? generateOperationKey(options.path, {
|
|
81
|
+
type: "infinite",
|
|
82
|
+
input: optionsIn.input === skipToken ? skipToken : optionsIn.input(optionsIn.initialPageParam)
|
|
83
|
+
});
|
|
84
|
+
return {
|
|
85
|
+
queryFn: ({ pageParam, signal }) => {
|
|
86
|
+
if (optionsIn.input === skipToken) {
|
|
87
|
+
throw new Error("queryFn should not be called with skipToken used as input");
|
|
88
|
+
}
|
|
89
|
+
return client(optionsIn.input(pageParam), {
|
|
90
|
+
signal,
|
|
91
|
+
context: {
|
|
92
|
+
[OPERATION_CONTEXT_SYMBOL]: {
|
|
93
|
+
key: queryKey,
|
|
94
|
+
type: "infinite"
|
|
95
|
+
},
|
|
96
|
+
...optionsIn.context
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
},
|
|
100
|
+
enabled: optionsIn.input !== skipToken,
|
|
101
|
+
...optionsIn,
|
|
102
|
+
queryKey
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
mutationOptions(...[optionsIn = {}]) {
|
|
106
|
+
const mutationKey = optionsIn.mutationKey ?? generateOperationKey(options.path, { type: "mutation" });
|
|
107
|
+
return {
|
|
108
|
+
mutationFn: (input) => client(input, {
|
|
109
|
+
context: {
|
|
110
|
+
[OPERATION_CONTEXT_SYMBOL]: {
|
|
111
|
+
key: mutationKey,
|
|
112
|
+
type: "mutation"
|
|
113
|
+
},
|
|
114
|
+
...optionsIn.context
|
|
115
|
+
}
|
|
116
|
+
}),
|
|
117
|
+
...optionsIn,
|
|
118
|
+
mutationKey
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function createRouterUtils(client, options = {}) {
|
|
125
|
+
const path = toArray(options.path);
|
|
126
|
+
const generalUtils = createGeneralUtils(path);
|
|
127
|
+
const procedureUtils = createProcedureUtils(client, { path });
|
|
128
|
+
const recursive = new Proxy({
|
|
129
|
+
...generalUtils,
|
|
130
|
+
...procedureUtils
|
|
131
|
+
}, {
|
|
132
|
+
get(target, prop) {
|
|
133
|
+
const value = Reflect.get(target, prop);
|
|
134
|
+
if (typeof prop !== "string") {
|
|
135
|
+
return value;
|
|
136
|
+
}
|
|
137
|
+
const nextUtils = createRouterUtils(client[prop], { ...options, path: [...path, prop] });
|
|
138
|
+
if (typeof value !== "function") {
|
|
139
|
+
return nextUtils;
|
|
140
|
+
}
|
|
141
|
+
return new Proxy(value, {
|
|
142
|
+
get(_, prop2) {
|
|
143
|
+
return Reflect.get(nextUtils, prop2);
|
|
144
|
+
}
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
});
|
|
148
|
+
return recursive;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export { OPERATION_CONTEXT_SYMBOL, OPERATION_CONTEXT_SYMBOL as TANSTACK_QUERY_OPERATION_CONTEXT_SYMBOL, createGeneralUtils, createProcedureUtils, createRouterUtils, createRouterUtils as createTanstackQueryUtils, generateOperationKey };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/tanstack-query",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -24,15 +24,23 @@
|
|
|
24
24
|
"dist"
|
|
25
25
|
],
|
|
26
26
|
"peerDependencies": {
|
|
27
|
-
"@tanstack/query-core": ">=5.
|
|
28
|
-
"@orpc/client": "1.
|
|
27
|
+
"@tanstack/query-core": ">=5.80.2",
|
|
28
|
+
"@orpc/client": "1.4.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@orpc/shared": "1.
|
|
31
|
+
"@orpc/shared": "1.4.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@
|
|
35
|
-
"
|
|
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.2",
|
|
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"
|
|
36
44
|
},
|
|
37
45
|
"scripts": {
|
|
38
46
|
"build": "unbuild",
|
package/dist/src/index.d.ts
DELETED
package/dist/src/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAA;AACrB,cAAc,SAAS,CAAA"}
|
package/dist/src/key.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { PartialDeep } from '@orpc/shared';
|
|
2
|
-
import type { QueryKey } from '@tanstack/query-core';
|
|
3
|
-
import type { OperationType } from './types';
|
|
4
|
-
export interface BuildKeyOptions<TType extends OperationType, TInput> {
|
|
5
|
-
type?: TType;
|
|
6
|
-
input?: TType extends 'mutation' ? never : PartialDeep<TInput>;
|
|
7
|
-
}
|
|
8
|
-
export declare function buildKey<TType extends OperationType, TInput>(path: string[], options?: BuildKeyOptions<TType, TInput>): QueryKey;
|
|
9
|
-
//# sourceMappingURL=key.d.ts.map
|
package/dist/src/key.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"key.d.ts","sourceRoot":"","sources":["../../src/key.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,MAAM,WAAW,eAAe,CAAC,KAAK,SAAS,aAAa,EAAE,MAAM;IAClE,IAAI,CAAC,EAAE,KAAK,CAAA;IACZ,KAAK,CAAC,EAAE,KAAK,SAAS,UAAU,GAAG,KAAK,GAAG,WAAW,CAAC,MAAM,CAAC,CAAA;CAC/D;AAED,wBAAgB,QAAQ,CAAC,KAAK,SAAS,aAAa,EAAE,MAAM,EAC1D,IAAI,EAAE,MAAM,EAAE,EACd,OAAO,GAAE,eAAe,CAAC,KAAK,EAAE,MAAM,CAAM,GAC3C,QAAQ,CAQV"}
|
package/dist/src/types.d.ts
DELETED
package/dist/src/types.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,CAAA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@19.1.5/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.5/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.5/node_modules/@types/react/jsx-runtime.d.ts","../../shared/dist/src/args.d.ts","../../shared/dist/src/array.d.ts","../../shared/dist/src/function.d.ts","../../shared/dist/src/chain.d.ts","../../shared/dist/src/id.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/keys-of-union.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/distributed-omit.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/distributed-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/if-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/if-never.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/unknown-array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/characters.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-float.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-integer.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-literal.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/trim.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/and.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/or.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/greater-than.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/greater-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/less-than.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/string.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/if-any.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/internal/index.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/non-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/non-empty-string.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/unknown-record.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/unknown-set.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/unknown-map.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/tagged-union.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/writable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/writable-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/conditional-simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/non-empty-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/array-tail.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/enforce-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/simplify-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/merge-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/require-one-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/single-key-object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/required-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/subtract.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/paths.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/array-splice.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/union-to-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/omit-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-null.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/if-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/arrayable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/tagged.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-readonly.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-required-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-non-nullable-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/conditional-pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/join.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/sum.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/less-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/array-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/string-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-parameter-type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/jsonifiable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/find-global-type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/structured-cloneable.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/schema.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/exact.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/override-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/writable-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/readonly-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/has-readonly-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/has-writable-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/spread.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/is-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/tuple-to-object.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/tuple-to-union.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/int-range.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/int-closed-range.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/array-indices.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/array-values.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/set-field-type.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/shared-union-fields.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/all-union-fields.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/shared-union-fields-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/if-null.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/words.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/split.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/replace.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/string-repeat.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/includes.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/get.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/global-this.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@4.41.0/node_modules/type-fest/index.d.ts","../../shared/dist/src/types.d.ts","../../shared/dist/src/interceptor.d.ts","../../shared/dist/src/iterator.d.ts","../../shared/dist/src/json.d.ts","../../shared/dist/src/object.d.ts","../../shared/dist/src/queue.d.ts","../../shared/dist/src/value.d.ts","../../../node_modules/.pnpm/radash@12.1.0/node_modules/radash/dist/index.d.ts","../../shared/dist/src/index.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/removable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/subscribable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/hydration-B3ndIyL6.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/queriesObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/notifyManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/focusManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/onlineManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/streamedQuery.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.76.2/node_modules/@tanstack/query-core/build/modern/index.d.ts","../src/types.ts","../src/key.ts","../src/index.ts"],"fileIdsList":[[244],[243,244],[243,244,245,246,247,248,249,250,251],[243,244,245],[60,61],[62],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,87,88,89,90,91,92,93,94,95,96,97,98,103,104,105,106,107,111,112,113,114,115,116,117,118,119,120,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232],[74,84,103,110,203],[93],[90,93,94,96,97,110,137,165,166],[84,97,110,134],[84,110],[175],[110,207],[84,110,208],[110,208],[111,159],[83],[77,93,110,115,121,160],[159],[91,106,110,207],[84,110,207,211],[110,207,211],[74],[103],[173],[69,74,93,110,142],[93,110],[110,135,138,185,224],[96],[90,93,94,95,110],[79],[191],[80],[190],[87],[77],[82],[141],[142],[165,198],[110,134],[83,84],[85,86,99,100,101,102,108,109],[87,91,100],[82,84,90,100],[74,79,80,83,84,93,100,101,103,106,107,108],[86,90,92,99],[84,90,96,98],[69,82,87],[88,90,110],[69,82,83,90,110],[83,84,107,110],[71],[70,71,77,82,84,87,90,110,142],[110,207,211,215],[110,207,211,213],[73],[97],[104,183],[69],[84,104,105,106,110,115,121,122,123,124,125],[103,104,105],[93,134],[81,112],[88,89],[82,84,93,110,125,135,137,138,139],[106],[71,138],[82,110],[106,110,143],[110,208,217],[77,84,87,96,110,134],[73,82,84,103,110,135],[110],[83,107,110],[83,107,110,111],[83,107,110,128],[110,207,211,220],[103,110],[84,103,110,135,139,155],[103,110,111],[84,110,142],[84,87,110,125,133,135,139,153],[79,84,103,110,111],[82,84,110],[82,84,103,110],[110,121],[78,110],[91,94,95,110],[80,103],[90,91],[110,164,167],[70,180],[90,98,110],[90,110,134],[84,107,195],[73,82],[103,111],[66],[64,65,66,67,68,233,234,235,236,237,238,239,240,241],[233,234],[63,253,254],[63,242,252,253],[63]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"63a3a080e64f95754b32cfbf6d1d06b2703ee53e3a46962739e88fdd98703261","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},"5d907401c1b2a3606c6b8c8fb8a64281087e9a9b899391ae8dbaa96512b1eaf2","e4e19740a863c0c28119bec52b867dcf005e16ce2f3399cc4e94570510e32dbd","2965f716499dd9468c96f62364bfb51550560b27c0512a9fac75e6a68f2ee069","c3ea9f7966067c605145b882b0e801e2041a29d31584ab7309aa690dc93d6f5f","07d1fa27ef1c50214677e4681671418cf60b54b06842c6013b333c5619ce30f7",{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"56613f2ebdd34d4527ca1ee969ab7e82333c3183fc715e5667c999396359e478","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"fca7cd7512b19d38254171fb5e35d2b16ac56710b7915b7801994612953da16c","impliedFormat":1},{"version":"7e43693f6ea74c3866659265e0ce415b4da6ed7fabd2920ad7ea8a5e746c6a94","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"cf41091fcbf45daff9aba653406b83d11a3ec163ff9d7a71890035117e733d98","impliedFormat":1},{"version":"aa514fadda13ad6ddadc2342e835307b962254d994f45a0cb495cc76eca13eff","impliedFormat":1},{"version":"ce92e662f86a36fc38c5aaa2ec6e6d6eed0bc6cf231bd06a9cb64cc652487550","impliedFormat":1},{"version":"3821c8180abb683dcf4ba833760764a79e25bc284dc9b17d32e138c34ada1939","impliedFormat":1},{"version":"0ef2a86ec84da6b2b06f830b441889c5bb8330a313691d4edbe85660afa97c44","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"9d8fc1d9b6b4b94127eec180183683a6ef4735b0e0a770ba9f7e2d98dd571e0c","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"892abbe1081799073183bab5dc771db813938e888cf49eb166f0e0102c0c1473","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"d21c5f692d23afa03113393088bcb1ef90a69272a774950a9f69c58131ac5b7e","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"9dfb317a36a813f4356dc1488e26a36d95e3ac7f38a05fbf9dda97cfd13ef6ea","impliedFormat":1},{"version":"7c0a4d3819fb911cdb5a6759c0195c72b0c54094451949ebaa89ffceadd129ca","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"3aea7345c25f1060791fc83a6466b889924db87389e5c344fa0c27b75257ebe4","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"e6804515ba7c8f647e145ecc126138dd9d27d3e6283291d0f50050700066a0ea","impliedFormat":1},{"version":"9420a04edbe321959de3d1aab9fa88b45951a14c22d8a817f75eb4c0a80dba02","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"f2a392b336e55ccbeb8f8a07865c86857f1a5fc55587c1c7d79e4851b0c75c9a","impliedFormat":1},{"version":"fd53e2a54dae7bb3a9c3b061715fff55a0bb3878472d4a93b2da6f0f62262c9f","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"554962080d3195cae300341a8b472fb0553f354f658344ae181b9aa02d351dbd","impliedFormat":1},{"version":"89cd9ab3944b306e790b148dd0a13ca120daf7379a98729964ea6288a54a1beb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"e53a8b6e43f20fa792479f8069c41b1a788a15ffdfd56be1ab8ef46ea01bd43e","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"f65e0341f11f30b47686efab11e1877b1a42cf9b1a232a61077da2bdeee6d83e","impliedFormat":1},{"version":"e6918b864e3c2f3a7d323f1bb31580412f12ab323f6c3a55fb5dc532c827e26d","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"8f9effea32088f37d15858a890e1a7ccf9af8d352d47fea174f6b95448072956","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"019c29de7d44d84684e65bdabb53ee8cc08f28b150ac0083d00e31a8fe2727d8","impliedFormat":1},{"version":"e35738485bf670f13eab658ea34d27ef2b875f3aae8fc00fb783d29e5737786d","impliedFormat":1},{"version":"bcd951d1a489d00e432c73760ce7f39adb0ef4e6a9c8ffef5dd7f093325a8377","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"b0378c1bc3995a1e7b40528dcd81670b2429d8c1dcc1f8d1dc8f76f33d3fc1b8","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"c27c5144d294ba5e38f0cd483196f911047500a735490f85f318b4d5eb8ac2cc","impliedFormat":1},{"version":"900d1889110107cea3e40b30217c6e66f19db8683964a57afd9a72ecc821fe21","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"08c027d3d6e294b5607341125d1c4689b4fece03bdb9843bd048515fe496a73e","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"918956b37f3870f02f0659d14bba32f7b0e374fd9c06a241db9da7f5214dcd79","impliedFormat":1},{"version":"260e6d25185809efc852e9c002600ad8a85f8062fa24801f30bead41de98c609","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"db436ca96e762259f14cb74d62089c7ca513f2fc725e7dcfbac0716602547898","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"956618754d139c7beb3c97df423347433473163d424ff8248af18851dd7d772a","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"07d0370c85ac112aa6f1715dc88bafcee4bcea1483bc6b372be5191d6c1a15c7","impliedFormat":1},{"version":"7fb0164ebb34ead4b1231eca7b691f072acf357773b6044b26ee5d2874c5f296","impliedFormat":1},{"version":"9e4fc88d0f62afc19fa5e8f8c132883378005c278fdb611a34b0d03f5eb6c20c","impliedFormat":1},{"version":"cc9bf8080004ee3d8d9ef117c8df0077d6a76b13cb3f55fd3eefbb3e8fcd1e63","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"b6aa8c6f2f5ebfb17126492623691e045468533ec2cc7bd47303ce48de7ab8aa","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"68434152ef6e484df25a9bd0f4c9abdfb0d743f5a39bff2b2dc2a0f94ed5f391","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"18076e7597cd9baa305cd85406551f28e3450683a699b7152ce7373b6b4a1db7","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"d0d03f7d2ba2cf425890e0f35391f1904d0d152c77179ddfc28dfad9d4a09c03","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"c58d6d730e95e67a62ebd7ba324e04bcde907ef6ba0f41922f403097fe54dd78","impliedFormat":1},{"version":"0f5773d0dd61aff22d2e3223be3b4b9c4a8068568918fb29b3f1ba3885cf701f","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"e0ef70ca30cdc08f55a9511c51a91415e814f53fcc355b14fc8947d32ce9e1aa","impliedFormat":1},{"version":"14be139e0f6d380a3d24aaf9b67972add107bea35cf7f2b1b1febac6553c3ede","impliedFormat":1},{"version":"23195b09849686462875673042a12b7f4cd34b4e27d38e40ca9c408dae8e6656","impliedFormat":1},{"version":"ff1731974600a4dad7ec87770e95fc86ca3d329b1ce200032766340f83585e47","impliedFormat":1},{"version":"91bc53a57079cf32e1a10ccf1a1e4a068e9820aa2fc6abc9af6bd6a52f590ffb","impliedFormat":1},{"version":"8dd284442b56814717e70f11ca22f4ea5b35feeca680f475bfcf8f65ba4ba296","impliedFormat":1},{"version":"a304e0af52f81bd7e6491e890fd480f3dc2cb0541dec3c7bd440dba9fea5c34e","impliedFormat":1},{"version":"c60fd0d7a1ba07631dfae8b757be0bffd5ef329e563f9a213e4a5402351c679f","impliedFormat":1},{"version":"02687b095a01969e6e300d246c9566a62fa87029ce2c7634439af940f3b09334","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"563573a23a61b147358ddee42f88f887817f0de1fc5dbc4be7603d53cbd467ad","impliedFormat":1},{"version":"dd0cad0db617f71019108686cf5caabcad13888b2ae22f889a4c83210e4ba008","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"bd56c2399a7eadccfca7398ca2244830911bdbb95b8ab7076e5a9210e9754696","impliedFormat":1},{"version":"f52fb387ac45e7b8cdc98209714c4aedc78d59a70f92e9b5041309b6b53fc880","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"5faa3d4b828440882a089a3f8514f13067957f6e5e06ec21ddd0bc2395df1c33","impliedFormat":1},{"version":"f0f95d40b0b5a485b3b97bd99931230e7bf3cbbe1c692bd4d65c69d0cdd6fa9d","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"965759788855797f61506f53e05c613afb95b16002c60a6f8653650317870bc3","impliedFormat":1},{"version":"f70a315e029dacf595f025d13fa7599e8585d5ccfc44dd386db2aa6596aaf553","impliedFormat":1},{"version":"f385a078ad649cc24f8c31e4f2e56a5c91445a07f25fbdc4a0a339c964b55679","impliedFormat":1},{"version":"08599363ef46d2c59043a8aeec3d5e0d87e32e606c7b1acf397e43f8acadc96a","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"0ae9d5bbf4239616d06c50e49fc21512278171c1257a1503028fc4a95ada3ed0","impliedFormat":1},{"version":"cba49e77f6c1737f7a3ce9a50b484d21980665fff93c1c64e0ee0b5086ea460a","impliedFormat":1},{"version":"9c686df0769cca468ebf018749df4330d5ff9414e0d226c1956ebaf45c85ff61","impliedFormat":1},{"version":"89d5970d28f207d30938563e567e67395aa8c1789c43029fe03fe1d07893c74c","impliedFormat":1},{"version":"869e789f7a8abcc769f08ba70b96df561e813a4001b184d3feb8c3d13b095261","impliedFormat":1},{"version":"392f3eb64f9c0f761eb7a391d9fbef26ffa270351d451d11bd70255664170acc","impliedFormat":1},{"version":"f829212a0e8e4fd1b079645d4e97e6ec73734dd21aae4dfc921d2958774721d0","impliedFormat":1},{"version":"5e20af039b2e87736fd7c9e4b47bf143c46918856e78ce21da02a91c25d817e8","impliedFormat":1},{"version":"f321514602994ba6e0ab622ef52debd4e9f64a7b4494c03ee017083dc1965753","impliedFormat":1},{"version":"cc8734156129aa6230a71987d94bdfac723045459da707b1804ecec321e60937","impliedFormat":1},{"version":"bb89466514349b86260efdee9850e497d874e4098334e9b06a146f1e305fca3f","impliedFormat":1},{"version":"fc0ee9d0476dec3d1b37a0f968e371a3d23aac41742bc6706886e1c6ac486749","impliedFormat":1},{"version":"f7da03d84ce7121bc17adca0af1055021b834e861326462a90dbf6154cf1e106","impliedFormat":1},{"version":"fed8c2c205f973bfb03ef3588750f60c1f20e2362591c30cd2c850213115163b","impliedFormat":1},{"version":"32a2b99a3aacda16747447cc9589e33c363a925d221298273912ecf93155e184","impliedFormat":1},{"version":"07bfa278367913dd253117ec68c31205825b2626e1cb4c158f2112e995923ee8","impliedFormat":1},{"version":"6a76e6141ff2fe28e88e63e0d06de686f31184ab68b04ae16f0f92103295cc2a","impliedFormat":1},{"version":"f05d5d16d85abe57eb713bc12efefc00675c09016e3292360e2de0790f51fa48","impliedFormat":1},{"version":"2e3ceed776a470729c084f3a941101d681dd1867babbaf6e1ca055d738dd3878","impliedFormat":1},{"version":"3d9fb85cc7089ca54873c9924ff47fcf05d570f3f8a3a2349906d6d953fa2ccf","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"6b5b31af3f5cfcf5635310328f0a3a94f612902024e75dc484eb79123f5b8ebe","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"2c3936b0f811f38ab1a4f0311993bf599c27c2da5750e76aa5dfbed8193c9922","impliedFormat":1},{"version":"c253c7ea2877126b1c3311dc70b7664fe4d696cb09215857b9d7ea8b7fdce1f0","impliedFormat":1},"217785301703a2781870a0c98f55e7c774d072b2df1662aa0ac53f432f5a016d","d906c697a120c6191679e59b3c7e26fb96ab7e98ea2f232f39ab7e0e6737b7cb","67ce33e1a70c8060effdbb551906569ca1c7f6847b621599a89621e7d4e6ea30","ebbfc6bf3bd8abf20414ad8ccca599eaa225b11c98398aa8b077769fa29cc432","c25ae070ca2adbcb94ae4cee12557d52ba1cf84dd82ca838df5ba73288c23f76","dafb0deb51cc007a7a9db77c76d70c24abf50d8890d0ad901b0527fbdce63d95","e8cd9b5681eb30151dc4479dc81b23a89ed899bbeb826d47302f6705c389739d",{"version":"f8a5c1977aeae947b54ddbba133a4f330bdac31b893fb64543117db9e8a92f39","impliedFormat":1},"a23ede5596c8c06f2872d1042432c20ec51030c48ee1e9125014b9117e26c7f2",{"version":"9971931daaf18158fc38266e838d56eb5d9d1f13360b1181bb4735a05f534c03","impliedFormat":99},{"version":"50cf7a23fc93928995caec8d7956206990f82113beeb6b3242dae8124edc3ca0","impliedFormat":99},{"version":"98f0ca91975ae7d138bee2060bdfd53368fe56d39a65d23bbf079104a3331bba","impliedFormat":99},{"version":"182ab06b6845ca2b1ab567befb3298df963b301f946de91cd1eae08c6b491fc7","impliedFormat":99},{"version":"93094bca9adb903dc739cb9e4d03b70023f4842e0dd24786a71ca4d6d232c580","impliedFormat":99},{"version":"0c5b705d31420477189618154d1b6a9bb62a34fa6055f56ade1a316f6adb6b3a","impliedFormat":99},{"version":"352031ac2e53031b69a09355e09ad7d95361edf32cc827cfe2417d80247a5a50","impliedFormat":99},{"version":"853b8bdb5da8c8e5d31e4d715a8057d8e96059d6774b13545c3616ed216b890c","impliedFormat":99},{"version":"4ef30733a92f40aa0d1a4b07c6b1de8557141f5f615b42606a16b66593b38ec2","impliedFormat":99},{"version":"abddeff5ddb608c72de6591e01ca6c2929b483914ed731edf5060aaef8eab601","impliedFormat":99},{"version":"305b0d273f0ef20be95cb4a355b86ac5f4485382d0b2665d1981657c421ac6b4","signature":"f8a34b4216d707a66a9bc93034f218335658b14b2c2c65d739dec3482c52c0bf"},{"version":"af5d3a2f01002ce0c04a3d4a15d3e241dba5cef28a896f1c8e5a7205586214fc","signature":"13d8452b6f5b32521d918ff2a46b51420bc29f840c3dd5be38307f792901f5a8"},{"version":"e46b35be438a3c78f43ed24e1d3ec291a4e0899d735ce6370ca1486df9652018","signature":"2aabb9d8016044c70214d48bc3e97462ce21602ace9bd9d596697b3358f333b9"}],"root":[[253,255]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":4,"module":7,"noImplicitOverride":true,"noUncheckedIndexedAccess":true,"noUncheckedSideEffectImports":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":9,"useDefineForClassFields":true},"referencedMap":[[249,1],[245,2],[252,3],[247,4],[250,1],[246,4],[251,4],[62,5],[63,6],[233,7],[204,8],[94,9],[167,10],[137,11],[123,12],[177,13],[208,14],[210,15],[209,16],[160,17],[159,18],[162,19],[161,20],[211,21],[215,22],[213,23],[75,24],[76,24],[124,25],[174,26],[186,27],[111,28],[228,29],[97,30],[96,31],[189,32],[192,33],[81,34],[193,35],[107,36],[78,37],[83,38],[206,39],[143,40],[227,9],[199,41],[198,42],[85,43],[110,44],[101,45],[102,46],[109,47],[100,48],[99,49],[108,50],[89,51],[91,52],[195,53],[142,39],[179,54],[178,55],[212,23],[216,56],[214,57],[74,58],[166,30],[98,59],[184,60],[138,61],[126,62],[106,63],[170,64],[171,64],[113,65],[90,66],[140,67],[95,9],[188,68],[231,69],[132,70],[144,71],[217,16],[219,72],[218,72],[135,73],[136,74],[146,75],[191,35],[225,75],[129,76],[112,77],[128,76],[130,78],[133,75],[80,32],[223,79],[202,80],[156,81],[151,82],[176,83],[152,82],[154,84],[153,85],[175,40],[205,86],[203,87],[125,88],[131,89],[220,23],[222,56],[221,57],[224,90],[194,91],[226,92],[168,93],[181,94],[134,95],[165,96],[92,75],[196,97],[145,75],[139,98],[207,75],[120,75],[190,9],[119,99],[67,100],[242,101],[235,102],[255,103],[254,104],[253,105]],"latestChangedDtsFile":"./src/index.d.ts","version":"5.8.3"}
|