@orpc/react 0.0.7 → 0.6.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.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/general-hooks.ts","../src/react-context.ts","../src/orpc-path.ts","../src/tanstack-key.ts","../src/general-utils.ts","../src/procedure-hooks.ts","../src/procedure-utils.ts","../src/react-hooks.ts","../src/react-utils.ts","../src/use-queries/hook.ts","../src/use-queries/builder.ts","../src/use-queries/builders.ts","../src/react.tsx"],"sourcesContent":["import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialDeep, SetOptional } from '@orpc/shared'\nimport type { ORPCQueryFilters } from './tanstack-query'\nimport {\n type DefaultError,\n type Mutation,\n type MutationFilters,\n type MutationState,\n useIsFetching,\n useIsMutating,\n useMutationState,\n} from '@tanstack/react-query'\nimport { type ORPCContext, useORPCContext } from './react-context'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface GeneralHooks<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n useIsFetching: (\n filers?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => number\n useIsMutating: (filters?: SetOptional<MutationFilters, 'mutationKey'>) => number\n\n useMutationState: <\n UResult = MutationState<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n >(options?: {\n filters?: SetOptional<MutationFilters, 'mutationKey'>\n select?: (\n mutation: Mutation<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n ) => UResult\n }\n ) => UResult[]\n}\n\nexport interface CreateGeneralHooksOptions {\n context: ORPCContext<any>\n\n /**\n * The path of the router or procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createGeneralHooks<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateGeneralHooksOptions,\n): GeneralHooks<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n useIsFetching(filters) {\n const { queryType, input, ...rest } = filters ?? {}\n const context = useORPCContext(options.context)\n return useIsFetching(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n context.queryClient,\n )\n },\n useIsMutating(filters) {\n const context = useORPCContext(options.context)\n return useIsMutating(\n { mutationKey: getMutationKeyFromPath(options.path), ...filters },\n context.queryClient,\n )\n },\n\n useMutationState(options_) {\n const context = useORPCContext(options.context)\n return useMutationState(\n {\n ...(options_ as any),\n filters: {\n mutationKey: getMutationKeyFromPath(options.path),\n ...options_?.filters,\n },\n },\n context.queryClient,\n )\n },\n }\n}\n","import type {\n RouterClientWithContractRouter,\n RouterClientWithRouter,\n} from '@orpc/client'\nimport type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport type { QueryClient } from '@tanstack/react-query'\nimport { type Context, createContext, useContext } from 'react'\n\nexport interface ORPCContextValue<\n TRouter extends ContractRouter | Router<any>,\n> {\n client: TRouter extends ContractRouter\n ? RouterClientWithContractRouter<TRouter>\n : TRouter extends Router<any>\n ? RouterClientWithRouter<TRouter>\n : never\n queryClient: QueryClient\n}\n\nexport type ORPCContext<TRouter extends ContractRouter | Router<any>> = Context<\n ORPCContextValue<TRouter> | undefined\n>\n\nexport function createORPCContext<\n TRouter extends ContractRouter | Router<any>,\n>(): ORPCContext<TRouter> {\n return createContext(undefined as any)\n}\n\nexport function useORPCContext<TRouter extends ContractRouter | Router<any>>(\n context: ORPCContext<TRouter>,\n): ORPCContextValue<TRouter> {\n const value = useContext(context)\n\n if (!value) {\n throw new Error(\n 'useORPCContext must be used within a <ORPCContext.Provider>, please see the docs',\n )\n }\n\n return value\n}\n","import type { ProcedureHooks } from './procedure-hooks'\nimport type {\n ORPCHooksWithContractRouter,\n ORPCHooksWithRouter,\n} from './react-hooks'\n\nexport const orpcPathSymbol = Symbol('orpcPathSymbol')\n\nexport function getORPCPath(\n orpc:\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n): string[] {\n const val = Reflect.get(orpc, orpcPathSymbol)\n\n if (!Array.isArray(val)) {\n throw new TypeError(\n 'orpcPathSymbol is not implemented, please use getORPCPath with correct instance.',\n )\n }\n\n return val\n}\n","import type { SchemaInput } from '@orpc/contract'\nimport type { PartialDeep } from '@orpc/shared'\nimport type { MutationKey, QueryKey } from '@tanstack/react-query'\nimport type { ProcedureHooks } from './procedure-hooks'\nimport type {\n ORPCHooksWithContractRouter,\n ORPCHooksWithRouter,\n} from './react-hooks'\nimport { getORPCPath } from './orpc-path'\n\nexport type QueryType = 'query' | 'infinite' | undefined\n\nexport interface GetQueryKeyOptions<TInput> {\n input?: TInput\n type?: QueryType\n}\n\nexport function getQueryKey<\n T extends\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n>(\n orpc: T,\n options?: GetQueryKeyOptions<\n T extends ProcedureHooks<infer UInputSchema, any, any>\n ? PartialDeep<SchemaInput<UInputSchema>>\n : unknown\n >,\n): QueryKey {\n const path = getORPCPath(orpc)\n return getQueryKeyFromPath(path, options)\n}\n\nexport function getQueryKeyFromPath(\n path: string[],\n options?: GetQueryKeyOptions<unknown>,\n): QueryKey {\n const withInput\n = options?.input !== undefined ? { input: options?.input } : {}\n const withType = options?.type !== undefined ? { type: options?.type } : {}\n\n return [\n path,\n {\n ...withInput,\n ...withType,\n },\n ]\n}\n\nexport function getMutationKey<\n T extends\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n>(orpc: T): MutationKey {\n const path = getORPCPath(orpc)\n return getMutationKeyFromPath(path)\n}\n\nexport function getMutationKeyFromPath(path: string[]): MutationKey {\n return [path]\n}\n","import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialDeep, SetOptional } from '@orpc/shared'\nimport type {\n CancelOptions,\n DefaultError,\n InfiniteData,\n InvalidateOptions,\n MutationFilters,\n MutationObserverOptions,\n OmitKeyof,\n QueryClient,\n QueryKey,\n QueryObserverOptions,\n RefetchOptions,\n ResetOptions,\n SetDataOptions,\n Updater,\n} from '@tanstack/react-query'\nimport type {\n ORPCInvalidateQueryFilters,\n ORPCQueryFilters,\n} from './tanstack-query'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface GeneralUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n getQueriesData: (\n filters?: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'queryType'\n >,\n ) => [QueryKey, SchemaOutput<TOutputSchema, TFuncOutput> | undefined][]\n getInfiniteQueriesData: (\n filters?: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'queryType'\n >,\n ) => [\n QueryKey,\n | undefined\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n ][]\n\n setQueriesData: (\n filters: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'queryType'\n >,\n updater: Updater<\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined,\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n >,\n options?: SetDataOptions,\n ) => [QueryKey, SchemaOutput<TOutputSchema, TFuncOutput> | undefined][]\n setInfiniteQueriesData: (\n filters: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'queryType'\n >,\n updater: Updater<\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined,\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n >,\n options?: SetDataOptions,\n ) => [\n QueryKey,\n | undefined\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n ][]\n\n invalidate: (\n filters?: ORPCInvalidateQueryFilters<\n PartialDeep<SchemaInput<TInputSchema>>\n >,\n options?: InvalidateOptions,\n ) => Promise<void>\n refetch: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: RefetchOptions,\n ) => Promise<void>\n cancel: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: CancelOptions,\n ) => Promise<void>\n remove: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => void\n reset: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: ResetOptions,\n ) => Promise<void>\n\n isFetching: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => number\n isMutating: (filters?: SetOptional<MutationFilters, 'mutationKey'>) => number\n\n getQueryDefaults: (\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => OmitKeyof<\n QueryObserverOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey'\n >\n getInfiniteQueryDefaults: (\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => OmitKeyof<\n QueryObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n InfiniteData<SchemaOutput<TOutputSchema, TFuncOutput>>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey'\n >\n\n setQueryDefaults: (\n options: Partial<\n OmitKeyof<\n QueryObserverOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey'\n >\n >,\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => void\n setInfiniteQueryDefaults: (\n options: Partial<\n OmitKeyof<\n QueryObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n InfiniteData<SchemaOutput<TOutputSchema, TFuncOutput>>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey'\n >\n >,\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => void\n\n getMutationDefaults: (\n filters?: Pick<MutationFilters, 'mutationKey'>,\n ) => MutationObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >\n setMutationDefaults: (\n options: OmitKeyof<\n MutationObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n 'mutationKey'\n >,\n filters?: Pick<MutationFilters, 'mutationKey'>,\n ) => void\n}\n\nexport interface CreateGeneralUtilsOptions {\n queryClient: QueryClient\n\n /**\n * The path of the router or procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createGeneralUtils<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateGeneralUtilsOptions,\n): GeneralUtils<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n getQueriesData(filters) {\n const { input, ...rest } = filters ?? {}\n return options.queryClient.getQueriesData({\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n ...rest,\n }) as any\n },\n getInfiniteQueriesData(filters) {\n const { input, ...rest } = filters ?? {}\n return options.queryClient.getQueriesData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n ...rest,\n }) as any\n },\n\n setQueriesData(filters, updater, options_) {\n const { input, ...rest } = filters\n return options.queryClient.setQueriesData(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n ...rest,\n },\n updater,\n options_,\n ) as any\n },\n setInfiniteQueriesData(filters, updater, options_) {\n const { input, ...rest } = filters\n return options.queryClient.setQueriesData(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n ...rest,\n },\n updater,\n options_,\n ) as any\n },\n\n invalidate(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.invalidateQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n refetch(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.refetchQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n cancel(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.cancelQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n remove(filters) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.removeQueries({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n })\n },\n reset(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.resetQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n\n isFetching(filters) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.isFetching({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n })\n },\n isMutating(filters) {\n return options.queryClient.isMutating({\n mutationKey: getMutationKeyFromPath(options.path),\n ...filters,\n })\n },\n\n getQueryDefaults(filters) {\n return options.queryClient.getQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryDefaults(filters) {\n return options.queryClient.getQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'infinite',\n }),\n ) as any\n },\n\n setQueryDefaults(options_, filters) {\n return options.queryClient.setQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'query',\n }),\n options_ as any,\n )\n },\n setInfiniteQueryDefaults(options_, filters) {\n return options.queryClient.setQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'infinite',\n }),\n options_ as any,\n )\n },\n\n getMutationDefaults(filters) {\n return options.queryClient.getMutationDefaults(\n filters?.mutationKey ?? getMutationKeyFromPath(options.path),\n )\n },\n setMutationDefaults(options_, filters) {\n return options.queryClient.setMutationDefaults(\n filters?.mutationKey ?? getMutationKeyFromPath(options.path),\n options_,\n )\n },\n }\n}\n","import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport {\n get,\n type PartialOnUndefinedDeep,\n type SetOptional,\n} from '@orpc/shared'\nimport {\n type DefaultError,\n type FetchInfiniteQueryOptions,\n type FetchQueryOptions,\n type InfiniteData,\n type QueryKey,\n useInfiniteQuery,\n type UseInfiniteQueryOptions,\n type UseInfiniteQueryResult,\n useMutation,\n type UseMutationOptions,\n type UseMutationResult,\n usePrefetchInfiniteQuery,\n usePrefetchQuery,\n useQuery,\n type UseQueryOptions,\n type UseQueryResult,\n useSuspenseInfiniteQuery,\n type UseSuspenseInfiniteQueryOptions,\n type UseSuspenseInfiniteQueryResult,\n useSuspenseQuery,\n type UseSuspenseQueryOptions,\n type UseSuspenseQueryResult,\n} from '@tanstack/react-query'\nimport { orpcPathSymbol } from './orpc-path'\nimport { type ORPCContext, useORPCContext } from './react-context'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface ProcedureHooks<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n useQuery: <USelectData = SchemaOutput<TOutputSchema, TFuncOutput>>(\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData\n >,\n 'queryFn' | 'queryKey'\n >,\n ) => UseQueryResult<USelectData>\n useInfiniteQuery: <\n USelectData = InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n >(\n options: PartialOnUndefinedDeep<\n SetOptional<\n UseInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryFn' | 'queryKey'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => UseInfiniteQueryResult<USelectData>\n\n useSuspenseQuery: <USelectData = SchemaOutput<TOutputSchema, TFuncOutput>>(\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseSuspenseQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData\n >,\n 'queryFn' | 'queryKey'\n >,\n ) => UseSuspenseQueryResult<USelectData>\n useSuspenseInfiniteQuery: <\n USelectData = InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n >(\n options: PartialOnUndefinedDeep<\n SetOptional<\n UseSuspenseInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryFn' | 'queryKey'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => UseSuspenseInfiniteQueryResult<USelectData>\n\n usePrefetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n ) => void\n usePrefetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => void\n\n useMutation: (\n options?: SetOptional<\n UseMutationOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n 'mutationFn' | 'mutationKey'\n >,\n ) => UseMutationResult<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >\n}\n\nexport interface CreateProcedureHooksOptions {\n context: ORPCContext<any>\n\n /**\n * The path of the procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createProcedureHooks<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateProcedureHooksOptions,\n): ProcedureHooks<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n [orpcPathSymbol as any]: options.path,\n\n useQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n useInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n useSuspenseQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useSuspenseQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n useSuspenseInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useSuspenseInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n usePrefetchQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return usePrefetchQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n usePrefetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return usePrefetchInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n useMutation(options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useMutation(\n {\n mutationKey: getMutationKeyFromPath(options.path),\n mutationFn: input => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n }\n}\n","import type { ProcedureClient } from '@orpc/client'\nimport type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialOnUndefinedDeep, SetOptional } from '@orpc/shared'\nimport type {\n DefaultError,\n EnsureInfiniteQueryDataOptions,\n EnsureQueryDataOptions,\n FetchInfiniteQueryOptions,\n FetchQueryOptions,\n InfiniteData,\n QueryClient,\n QueryKey,\n QueryState,\n SetDataOptions,\n Updater,\n} from '@tanstack/react-query'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport { getQueryKeyFromPath } from './tanstack-key'\n\nexport interface ProcedureUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n fetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey' | 'queryFn'\n >,\n ) => Promise<SchemaOutput<TOutputSchema, TFuncOutput>>\n fetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n\n prefetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey' | 'queryFn'\n >,\n ) => Promise<void>\n prefetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<void>\n\n getQueryData: (\n input: SchemaInput<TInputSchema>,\n ) => SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n getInfiniteQueryData: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n ) => | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n\n ensureQueryData: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n EnsureQueryDataOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryFn' | 'queryKey'\n >,\n ) => Promise<SchemaOutput<TOutputSchema, TFuncOutput>>\n ensureInfiniteQueryData: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n EnsureInfiniteQueryDataOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n\n getQueryState: (\n input: SchemaInput<TInputSchema>,\n ) => QueryState<SchemaOutput<TOutputSchema, TFuncOutput>> | undefined\n getInfiniteQueryState: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n ) => | QueryState<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n | undefined\n\n setQueryData: (\n input: SchemaInput<TInputSchema>,\n updater: Updater<\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined,\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n >,\n options?: SetDataOptions,\n ) => SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n setInfiniteQueryData: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n updater: Updater<\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined,\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n >,\n options?: SetDataOptions,\n ) => | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n}\n\nexport interface CreateProcedureUtilsOptions<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n> {\n client: ProcedureClient<TInputSchema, TOutputSchema, TFuncOutput>\n queryClient: QueryClient\n\n /**\n * The path of procedure on sever\n */\n path: string[]\n}\n\nexport function createProcedureUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n>(\n options: CreateProcedureUtilsOptions<\n TInputSchema,\n TOutputSchema,\n TFuncOutput\n >,\n): ProcedureUtils<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n fetchQuery(input, options_) {\n return options.queryClient.fetchQuery({\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n fetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n return options.queryClient.fetchInfiniteQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n prefetchQuery(input, options_) {\n return options.queryClient.prefetchQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n prefetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n return options.queryClient.prefetchInfiniteQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), cursor: pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n getQueryData(input) {\n return options.queryClient.getQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryData(input) {\n return options.queryClient.getQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n )\n },\n\n ensureQueryData(input, options_) {\n return options.queryClient.ensureQueryData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n ensureInfiniteQueryData(options_) {\n const { input, ...rest } = options_\n return options.queryClient.ensureInfiniteQueryData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n getQueryState(input) {\n return options.queryClient.getQueryState(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryState(input) {\n return options.queryClient.getQueryState(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n )\n },\n\n setQueryData(input, updater, options_) {\n return options.queryClient.setQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n updater,\n options_,\n )\n },\n setInfiniteQueryData(input, updater, options_) {\n return options.queryClient.setQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n updater,\n options_,\n )\n },\n }\n}\n","import type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type { ORPCContext } from './react-context'\nimport { createGeneralHooks, type GeneralHooks } from './general-hooks'\nimport { orpcPathSymbol } from './orpc-path'\nimport { createProcedureHooks, type ProcedureHooks } from './procedure-hooks'\n\nexport type ORPCHooksWithContractRouter<TRouter extends ContractRouter> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<\n infer UInputSchema,\n infer UOutputSchema\n >\n ? ProcedureHooks<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>> & GeneralHooks<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>>\n : TRouter[K] extends ContractRouter\n ? ORPCHooksWithContractRouter<TRouter[K]>\n : never\n} & GeneralHooks<undefined, undefined, unknown>\n\nexport type ORPCHooksWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput>\n ? ProcedureHooks<UInputSchema, UOutputSchema, UFuncOutput> & GeneralHooks<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? ORPCHooksWithRouter<TRouter[K]>\n : never\n} & GeneralHooks<undefined, undefined, unknown>\n\nexport interface CreateORPCHooksOptions<\n TRouter extends ContractRouter | Router<any>,\n> {\n context: ORPCContext<TRouter>\n\n /**\n * The path of the router.\n *\n * @internal\n */\n path?: string[]\n}\n\nexport function createORPCHooks<TRouter extends ContractRouter | Router<any>>(\n options: CreateORPCHooksOptions<TRouter>,\n): TRouter extends Router<any>\n ? ORPCHooksWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCHooksWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const generalHooks = createGeneralHooks({ context: options.context, path })\n\n // for sure root is not procedure, so do not it procedure hooks on root\n const procedureHooks = path.length\n ? createProcedureHooks({\n context: options.context,\n path,\n })\n : {}\n\n return new Proxy(\n {\n [orpcPathSymbol]: path,\n\n ...generalHooks,\n ...procedureHooks,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextHooks = createORPCHooks({\n context: options.context,\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextHooks\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextHooks, key)\n },\n })\n },\n },\n ) as any\n}\n","import type {} from '@orpc/client'\nimport type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type { ORPCContextValue } from './react-context'\nimport { createGeneralUtils, type GeneralUtils } from './general-utils'\nimport { createProcedureUtils, type ProcedureUtils } from './procedure-utils'\n\nexport type ORPCUtilsWithContractRouter<TRouter extends ContractRouter> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<infer UInputSchema, infer UOutputSchema>\n ? ProcedureUtils<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>> & GeneralUtils<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>>\n : TRouter[K] extends ContractRouter\n ? ORPCUtilsWithContractRouter<TRouter[K]>\n : never\n} & GeneralUtils<undefined, undefined, unknown>\n\nexport type ORPCUtilsWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput>\n ? ProcedureUtils<UInputSchema, UOutputSchema, UFuncOutput> & GeneralUtils<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? ORPCUtilsWithRouter<TRouter[K]>\n : never\n} & GeneralUtils<undefined, undefined, unknown>\n\nexport interface CreateORPCUtilsOptions<\n TRouter extends ContractRouter | Router<any>,\n> {\n contextValue: ORPCContextValue<TRouter>\n\n /**\n * The path of the router.\n *\n * @internal\n */\n path?: string[]\n}\n\nexport function createORPCUtils<TRouter extends ContractRouter | Router<any>>(\n options: CreateORPCUtilsOptions<TRouter>,\n): TRouter extends Router<any>\n ? ORPCUtilsWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCUtilsWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const client = options.contextValue.client as any\n\n const generalUtils = createGeneralUtils({\n queryClient: options.contextValue.queryClient,\n path,\n })\n\n // for sure root is not procedure, so do not it procedure utils on root\n const procedureUtils = path.length\n ? createProcedureUtils({\n client,\n queryClient: options.contextValue.queryClient,\n path,\n })\n : {}\n\n return new Proxy(\n {\n ...generalUtils,\n ...procedureUtils,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextUtils = createORPCUtils({\n ...options,\n contextValue: {\n ...options.contextValue,\n client: client[key],\n },\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextUtils\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextUtils, key)\n },\n })\n },\n },\n ) as any\n}\n","import type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport {\n type QueriesOptions,\n type QueriesResults,\n useQueries,\n} from '@tanstack/react-query'\nimport { type ORPCContext, useORPCContext } from '../react-context'\nimport {\n createUseQueriesBuilders,\n type UseQueriesBuildersWithContractRouter,\n type UseQueriesBuildersWithRouter,\n} from './builders'\n\nexport interface UseQueriesWithContractRouter<TRouter extends ContractRouter> {\n <T extends Array<any> = [], TCombinedResult = QueriesResults<T>>(\n build: (\n builders: UseQueriesBuildersWithContractRouter<TRouter>,\n ) => [...QueriesOptions<T>],\n combine?: (result: QueriesResults<T>) => TCombinedResult,\n ): TCombinedResult\n}\n\nexport interface UseQueriesWithRouter<TRouter extends Router<any>> {\n <T extends Array<any> = [], TCombinedResult = QueriesResults<T>>(\n build: (\n builders: UseQueriesBuildersWithRouter<TRouter>,\n ) => [...QueriesOptions<T>],\n combine?: (result: QueriesResults<T>) => TCombinedResult,\n ): TCombinedResult\n}\n\nexport interface UseQueriesFactoryOptions<\n TRouter extends Router<any> | ContractRouter,\n> {\n context: ORPCContext<TRouter>\n}\n\nexport function useQueriesFactory<TRouter extends Router<any> | ContractRouter>(\n options: UseQueriesFactoryOptions<TRouter>,\n): TRouter extends Router<any>\n ? UseQueriesWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? UseQueriesWithContractRouter<TRouter>\n : never {\n const Hook = (build: any, combine?: any): any => {\n const orpc = useORPCContext(options.context)\n const builders = createUseQueriesBuilders({ client: orpc.client as any })\n\n return useQueries({\n queries: build(builders),\n combine,\n })\n }\n\n return Hook as any\n}\n","import type { ProcedureClient } from '@orpc/client'\nimport type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { SetOptional } from '@orpc/shared'\nimport type {\n DefaultError,\n OmitKeyof,\n QueriesPlaceholderDataFunction,\n QueryKey,\n UseQueryOptions,\n} from '@tanstack/react-query'\nimport { getQueryKeyFromPath } from '../tanstack-key'\n\ntype UseQueryOptionsForUseQueries<\n TQueryFnData,\n TError = DefaultError,\n TData = TQueryFnData,\n TQueryKey extends QueryKey = QueryKey,\n> = OmitKeyof<\n UseQueryOptions<TQueryFnData, TError, TData, TQueryKey>,\n 'placeholderData'\n> & {\n placeholderData?: TQueryFnData | QueriesPlaceholderDataFunction<TQueryFnData>\n}\n\nexport interface UseQueriesBuilder<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseQueryOptionsForUseQueries<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryFn' | 'queryKey'\n >,\n ): UseQueryOptionsForUseQueries<SchemaOutput<TOutputSchema, TFuncOutput>>\n}\n\nexport interface CreateUseQueriesBuilderOptions<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n client: ProcedureClient<TInputSchema, TOutputSchema, TFuncOutput>\n\n /**\n * The path of procedure on server\n */\n path: string[]\n}\n\nexport function createUseQueriesBuilder<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateUseQueriesBuilderOptions<\n TInputSchema,\n TOutputSchema,\n TFuncOutput\n >,\n): UseQueriesBuilder<TInputSchema, TOutputSchema, TFuncOutput> {\n return (input, options_) => {\n return {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => options.client(input),\n ...options_,\n }\n }\n}\n","import type {\n RouterClientWithContractRouter,\n RouterClientWithRouter,\n} from '@orpc/client'\nimport type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type {} from '@tanstack/react-query'\nimport { createUseQueriesBuilder, type UseQueriesBuilder } from './builder'\n\nexport type UseQueriesBuildersWithContractRouter<\n TRouter extends ContractRouter,\n> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<\n infer UInputSchema,\n infer UOutputSchema\n >\n ? UseQueriesBuilder<\n UInputSchema,\n UOutputSchema,\n SchemaOutput<UOutputSchema>\n >\n : TRouter[K] extends ContractRouter\n ? UseQueriesBuildersWithContractRouter<TRouter[K]>\n : never\n}\n\nexport type UseQueriesBuildersWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<\n any,\n any,\n infer UInputSchema,\n infer UOutputSchema,\n infer UFuncOutput\n >\n ? UseQueriesBuilder<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? UseQueriesBuildersWithRouter<TRouter[K]>\n : never\n}\n\nexport interface CreateUseQueriesBuildersOptions<\n TRouter extends Router<any> | ContractRouter,\n> {\n client: TRouter extends Router<any>\n ? RouterClientWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? RouterClientWithContractRouter<TRouter>\n : never\n\n /**\n * The path of router on server\n */\n path?: string[]\n}\n\nexport function createUseQueriesBuilders<\n TRouter extends Router<any> | ContractRouter,\n>(\n options: CreateUseQueriesBuildersOptions<TRouter>,\n): TRouter extends Router<any>\n ? UseQueriesBuildersWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? UseQueriesBuildersWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const client = options.client as any\n\n /**\n * For sure root is not procedure so do not create builder on root\n */\n const builder = path.length ? createUseQueriesBuilder({ client, path }) : {}\n\n return new Proxy(builder, {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextBuilders = createUseQueriesBuilders({\n client: client[key],\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextBuilders\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextBuilders, key)\n },\n })\n },\n }) as any\n}\n","import type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport {\n createORPCContext,\n type ORPCContext,\n type ORPCContextValue,\n useORPCContext,\n} from './react-context'\nimport {\n createORPCHooks,\n type ORPCHooksWithContractRouter,\n type ORPCHooksWithRouter,\n} from './react-hooks'\nimport {\n createORPCUtils,\n type ORPCUtilsWithContractRouter,\n type ORPCUtilsWithRouter,\n} from './react-utils'\nimport {\n useQueriesFactory,\n type UseQueriesWithContractRouter,\n type UseQueriesWithRouter,\n} from './use-queries/hook'\n\nexport type ORPCReactWithContractRouter<TRouter extends ContractRouter> =\n ORPCHooksWithContractRouter<TRouter> & {\n useContext: () => ORPCContextValue<TRouter>\n useUtils: () => ORPCUtilsWithContractRouter<TRouter>\n useQueries: UseQueriesWithContractRouter<TRouter>\n }\n\nexport type ORPCReactWithRouter<TRouter extends Router<any>> =\n ORPCHooksWithRouter<TRouter> & {\n useContext: () => ORPCContextValue<TRouter>\n useUtils: () => ORPCUtilsWithRouter<TRouter>\n useQueries: UseQueriesWithRouter<TRouter>\n }\n\nexport function createORPCReact<\n TRouter extends ContractRouter | Router<any>,\n>(): {\n orpc: TRouter extends Router<any>\n ? ORPCReactWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCReactWithContractRouter<TRouter>\n : never\n ORPCContext: ORPCContext<TRouter>\n} {\n const Context = createORPCContext<TRouter>()\n const useContext = () => useORPCContext(Context)\n const useUtils = () => createORPCUtils({ contextValue: useContext() })\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const useQueries = useQueriesFactory({ context: Context })\n const hooks = createORPCHooks({ context: Context })\n\n const orpc = new Proxy(\n {\n useContext,\n useUtils,\n useQueries,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n const nextHooks = Reflect.get(hooks, key)\n\n if (typeof value !== 'function') {\n return nextHooks\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextHooks, key)\n },\n })\n },\n },\n )\n\n return { orpc: orpc as any, ORPCContext: Context }\n}\n"],"mappings":"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","names":["key","key","key","useContext","useQueries","key"]}
1
+ {"version":3,"sources":["../src/general-hooks.ts","../src/react-context.ts","../src/orpc-path.ts","../src/tanstack-key.ts","../src/general-utils.ts","../src/procedure-hooks.ts","../src/procedure-utils.ts","../src/react-hooks.ts","../src/react-utils.ts","../src/use-queries/hook.ts","../src/use-queries/builder.ts","../src/use-queries/builders.ts","../src/react.tsx"],"sourcesContent":["import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialDeep, SetOptional } from '@orpc/shared'\nimport type { ORPCQueryFilters } from './tanstack-query'\nimport {\n type DefaultError,\n type Mutation,\n type MutationFilters,\n type MutationState,\n useIsFetching,\n useIsMutating,\n useMutationState,\n} from '@tanstack/react-query'\nimport { type ORPCContext, useORPCContext } from './react-context'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface GeneralHooks<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n useIsFetching: (\n filers?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => number\n useIsMutating: (filters?: SetOptional<MutationFilters, 'mutationKey'>) => number\n\n useMutationState: <\n UResult = MutationState<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n >(options?: {\n filters?: SetOptional<MutationFilters, 'mutationKey'>\n select?: (\n mutation: Mutation<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n ) => UResult\n }\n ) => UResult[]\n}\n\nexport interface CreateGeneralHooksOptions {\n context: ORPCContext<any>\n\n /**\n * The path of the router or procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createGeneralHooks<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateGeneralHooksOptions,\n): GeneralHooks<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n useIsFetching(filters) {\n const { queryType, input, ...rest } = filters ?? {}\n const context = useORPCContext(options.context)\n return useIsFetching(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n context.queryClient,\n )\n },\n useIsMutating(filters) {\n const context = useORPCContext(options.context)\n return useIsMutating(\n { mutationKey: getMutationKeyFromPath(options.path), ...filters },\n context.queryClient,\n )\n },\n\n useMutationState(options_) {\n const context = useORPCContext(options.context)\n return useMutationState(\n {\n ...(options_ as any),\n filters: {\n mutationKey: getMutationKeyFromPath(options.path),\n ...options_?.filters,\n },\n },\n context.queryClient,\n )\n },\n }\n}\n","import type {\n RouterClientWithContractRouter,\n RouterClientWithRouter,\n} from '@orpc/client'\nimport type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport type { QueryClient } from '@tanstack/react-query'\nimport { type Context, createContext, useContext } from 'react'\n\nexport interface ORPCContextValue<\n TRouter extends ContractRouter | Router<any>,\n> {\n client: TRouter extends ContractRouter\n ? RouterClientWithContractRouter<TRouter>\n : TRouter extends Router<any>\n ? RouterClientWithRouter<TRouter>\n : never\n queryClient: QueryClient\n}\n\nexport type ORPCContext<TRouter extends ContractRouter | Router<any>> = Context<\n ORPCContextValue<TRouter> | undefined\n>\n\nexport function createORPCContext<\n TRouter extends ContractRouter | Router<any>,\n>(): ORPCContext<TRouter> {\n return createContext(undefined as any)\n}\n\nexport function useORPCContext<TRouter extends ContractRouter | Router<any>>(\n context: ORPCContext<TRouter>,\n): ORPCContextValue<TRouter> {\n const value = useContext(context)\n\n if (!value) {\n throw new Error(\n 'useORPCContext must be used within a <ORPCContext.Provider>, please see the docs',\n )\n }\n\n return value\n}\n","import type { ProcedureHooks } from './procedure-hooks'\nimport type {\n ORPCHooksWithContractRouter,\n ORPCHooksWithRouter,\n} from './react-hooks'\n\nexport const orpcPathSymbol = Symbol('orpcPathSymbol')\n\nexport function getORPCPath(\n orpc:\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n): string[] {\n const val = Reflect.get(orpc, orpcPathSymbol)\n\n if (!Array.isArray(val)) {\n throw new TypeError(\n 'orpcPathSymbol is not implemented, please use getORPCPath with correct instance.',\n )\n }\n\n return val\n}\n","import type { SchemaInput } from '@orpc/contract'\nimport type { PartialDeep } from '@orpc/shared'\nimport type { MutationKey, QueryKey } from '@tanstack/react-query'\nimport type { ProcedureHooks } from './procedure-hooks'\nimport type {\n ORPCHooksWithContractRouter,\n ORPCHooksWithRouter,\n} from './react-hooks'\nimport { getORPCPath } from './orpc-path'\n\nexport type QueryType = 'query' | 'infinite' | undefined\n\nexport interface GetQueryKeyOptions<TInput> {\n input?: TInput\n type?: QueryType\n}\n\nexport function getQueryKey<\n T extends\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n>(\n orpc: T,\n options?: GetQueryKeyOptions<\n T extends ProcedureHooks<infer UInputSchema, any, any>\n ? PartialDeep<SchemaInput<UInputSchema>>\n : unknown\n >,\n): QueryKey {\n const path = getORPCPath(orpc)\n return getQueryKeyFromPath(path, options)\n}\n\nexport function getQueryKeyFromPath(\n path: string[],\n options?: GetQueryKeyOptions<unknown>,\n): QueryKey {\n const withInput\n = options?.input !== undefined ? { input: options?.input } : {}\n const withType = options?.type !== undefined ? { type: options?.type } : {}\n\n return [\n path,\n {\n ...withInput,\n ...withType,\n },\n ]\n}\n\nexport function getMutationKey<\n T extends\n | ORPCHooksWithContractRouter<any>\n | ORPCHooksWithRouter<any>\n | ProcedureHooks<any, any, any>,\n>(orpc: T): MutationKey {\n const path = getORPCPath(orpc)\n return getMutationKeyFromPath(path)\n}\n\nexport function getMutationKeyFromPath(path: string[]): MutationKey {\n return [path]\n}\n","import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialDeep, SetOptional } from '@orpc/shared'\nimport type {\n CancelOptions,\n DefaultError,\n InfiniteData,\n InvalidateOptions,\n MutationFilters,\n MutationObserverOptions,\n OmitKeyof,\n QueryClient,\n QueryKey,\n QueryObserverOptions,\n RefetchOptions,\n ResetOptions,\n SetDataOptions,\n Updater,\n} from '@tanstack/react-query'\nimport type {\n ORPCInvalidateQueryFilters,\n ORPCQueryFilters,\n} from './tanstack-query'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface GeneralUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n getQueriesData: (\n filters?: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'queryType'\n >,\n ) => [QueryKey, SchemaOutput<TOutputSchema, TFuncOutput> | undefined][]\n getInfiniteQueriesData: (\n filters?: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'queryType'\n >,\n ) => [\n QueryKey,\n | undefined\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n ][]\n\n setQueriesData: (\n filters: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'queryType'\n >,\n updater: Updater<\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined,\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n >,\n options?: SetDataOptions,\n ) => [QueryKey, SchemaOutput<TOutputSchema, TFuncOutput> | undefined][]\n setInfiniteQueriesData: (\n filters: OmitKeyof<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'queryType'\n >,\n updater: Updater<\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined,\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n >,\n options?: SetDataOptions,\n ) => [\n QueryKey,\n | undefined\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n ][]\n\n invalidate: (\n filters?: ORPCInvalidateQueryFilters<\n PartialDeep<SchemaInput<TInputSchema>>\n >,\n options?: InvalidateOptions,\n ) => Promise<void>\n refetch: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: RefetchOptions,\n ) => Promise<void>\n cancel: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: CancelOptions,\n ) => Promise<void>\n remove: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => void\n reset: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n options?: ResetOptions,\n ) => Promise<void>\n\n isFetching: (\n filters?: ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n ) => number\n isMutating: (filters?: SetOptional<MutationFilters, 'mutationKey'>) => number\n\n getQueryDefaults: (\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => OmitKeyof<\n QueryObserverOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey'\n >\n getInfiniteQueryDefaults: (\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInputForInfiniteQuery<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => OmitKeyof<\n QueryObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n InfiniteData<SchemaOutput<TOutputSchema, TFuncOutput>>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey'\n >\n\n setQueryDefaults: (\n options: Partial<\n OmitKeyof<\n QueryObserverOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey'\n >\n >,\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => void\n setInfiniteQueryDefaults: (\n options: Partial<\n OmitKeyof<\n QueryObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n InfiniteData<SchemaOutput<TOutputSchema, TFuncOutput>>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey'\n >\n >,\n filters?: Pick<\n ORPCQueryFilters<PartialDeep<SchemaInput<TInputSchema>>>,\n 'input' | 'queryKey'\n >,\n ) => void\n\n getMutationDefaults: (\n filters?: Pick<MutationFilters, 'mutationKey'>,\n ) => MutationObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >\n setMutationDefaults: (\n options: OmitKeyof<\n MutationObserverOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n 'mutationKey'\n >,\n filters?: Pick<MutationFilters, 'mutationKey'>,\n ) => void\n}\n\nexport interface CreateGeneralUtilsOptions {\n queryClient: QueryClient\n\n /**\n * The path of the router or procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createGeneralUtils<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateGeneralUtilsOptions,\n): GeneralUtils<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n getQueriesData(filters) {\n const { input, ...rest } = filters ?? {}\n return options.queryClient.getQueriesData({\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n ...rest,\n }) as any\n },\n getInfiniteQueriesData(filters) {\n const { input, ...rest } = filters ?? {}\n return options.queryClient.getQueriesData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n ...rest,\n }) as any\n },\n\n setQueriesData(filters, updater, options_) {\n const { input, ...rest } = filters\n return options.queryClient.setQueriesData(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n ...rest,\n },\n updater,\n options_,\n ) as any\n },\n setInfiniteQueriesData(filters, updater, options_) {\n const { input, ...rest } = filters\n return options.queryClient.setQueriesData(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n ...rest,\n },\n updater,\n options_,\n ) as any\n },\n\n invalidate(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.invalidateQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n refetch(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.refetchQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n cancel(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.cancelQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n remove(filters) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.removeQueries({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n })\n },\n reset(filters, options_) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.resetQueries(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n },\n options_,\n )\n },\n\n isFetching(filters) {\n const { input, queryType, ...rest } = filters ?? {}\n return options.queryClient.isFetching({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: queryType,\n }),\n ...rest,\n })\n },\n isMutating(filters) {\n return options.queryClient.isMutating({\n mutationKey: getMutationKeyFromPath(options.path),\n ...filters,\n })\n },\n\n getQueryDefaults(filters) {\n return options.queryClient.getQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryDefaults(filters) {\n return options.queryClient.getQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'infinite',\n }),\n ) as any\n },\n\n setQueryDefaults(options_, filters) {\n return options.queryClient.setQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'query',\n }),\n options_ as any,\n )\n },\n setInfiniteQueryDefaults(options_, filters) {\n return options.queryClient.setQueryDefaults(\n filters?.queryKey\n ?? getQueryKeyFromPath(options.path, {\n input: filters?.input,\n type: 'infinite',\n }),\n options_ as any,\n )\n },\n\n getMutationDefaults(filters) {\n return options.queryClient.getMutationDefaults(\n filters?.mutationKey ?? getMutationKeyFromPath(options.path),\n )\n },\n setMutationDefaults(options_, filters) {\n return options.queryClient.setMutationDefaults(\n filters?.mutationKey ?? getMutationKeyFromPath(options.path),\n options_,\n )\n },\n }\n}\n","import type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport {\n get,\n type PartialOnUndefinedDeep,\n type SetOptional,\n} from '@orpc/shared'\nimport {\n type DefaultError,\n type FetchInfiniteQueryOptions,\n type FetchQueryOptions,\n type InfiniteData,\n type QueryKey,\n useInfiniteQuery,\n type UseInfiniteQueryOptions,\n type UseInfiniteQueryResult,\n useMutation,\n type UseMutationOptions,\n type UseMutationResult,\n usePrefetchInfiniteQuery,\n usePrefetchQuery,\n useQuery,\n type UseQueryOptions,\n type UseQueryResult,\n useSuspenseInfiniteQuery,\n type UseSuspenseInfiniteQueryOptions,\n type UseSuspenseInfiniteQueryResult,\n useSuspenseQuery,\n type UseSuspenseQueryOptions,\n type UseSuspenseQueryResult,\n} from '@tanstack/react-query'\nimport { orpcPathSymbol } from './orpc-path'\nimport { type ORPCContext, useORPCContext } from './react-context'\nimport { getMutationKeyFromPath, getQueryKeyFromPath } from './tanstack-key'\n\nexport interface ProcedureHooks<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n useQuery: <USelectData = SchemaOutput<TOutputSchema, TFuncOutput>>(\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData\n >,\n 'queryFn' | 'queryKey'\n >,\n ) => UseQueryResult<USelectData>\n useInfiniteQuery: <\n USelectData = InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n >(\n options: PartialOnUndefinedDeep<\n SetOptional<\n UseInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryFn' | 'queryKey'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => UseInfiniteQueryResult<USelectData>\n\n useSuspenseQuery: <USelectData = SchemaOutput<TOutputSchema, TFuncOutput>>(\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseSuspenseQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData\n >,\n 'queryFn' | 'queryKey'\n >,\n ) => UseSuspenseQueryResult<USelectData>\n useSuspenseInfiniteQuery: <\n USelectData = InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >,\n >(\n options: PartialOnUndefinedDeep<\n SetOptional<\n UseSuspenseInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n USelectData,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryFn' | 'queryKey'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => UseSuspenseInfiniteQueryResult<USelectData>\n\n usePrefetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n ) => void\n usePrefetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => void\n\n useMutation: (\n options?: SetOptional<\n UseMutationOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >,\n 'mutationFn' | 'mutationKey'\n >,\n ) => UseMutationResult<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaInput<TInputSchema>\n >\n}\n\nexport interface CreateProcedureHooksOptions {\n context: ORPCContext<any>\n\n /**\n * The path of the procedure on server.\n *\n * @internal\n */\n path: string[]\n}\n\nexport function createProcedureHooks<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateProcedureHooksOptions,\n): ProcedureHooks<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n [orpcPathSymbol as any]: options.path,\n\n useQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n useInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n useSuspenseQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useSuspenseQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n useSuspenseInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useSuspenseInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n usePrefetchQuery(input, options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return usePrefetchQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n usePrefetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return usePrefetchInfiniteQuery(\n {\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) =>\n client({ ...(input as any), cursor: pageParam }),\n ...(rest as any),\n },\n context.queryClient,\n )\n },\n\n useMutation(options_) {\n const context = useORPCContext(options.context)\n const client = get(context.client, options.path) as any\n return useMutation(\n {\n mutationKey: getMutationKeyFromPath(options.path),\n mutationFn: input => client(input),\n ...options_,\n },\n context.queryClient,\n )\n },\n }\n}\n","import type { ProcedureClient } from '@orpc/client'\nimport type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { PartialOnUndefinedDeep, SetOptional } from '@orpc/shared'\nimport type {\n DefaultError,\n EnsureInfiniteQueryDataOptions,\n EnsureQueryDataOptions,\n FetchInfiniteQueryOptions,\n FetchQueryOptions,\n InfiniteData,\n QueryClient,\n QueryKey,\n QueryState,\n SetDataOptions,\n Updater,\n} from '@tanstack/react-query'\nimport type { SchemaInputForInfiniteQuery } from './types'\nimport { getQueryKeyFromPath } from './tanstack-key'\n\nexport interface ProcedureUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n fetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey' | 'queryFn'\n >,\n ) => Promise<SchemaOutput<TOutputSchema, TFuncOutput>>\n fetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n\n prefetchQuery: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n FetchQueryOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryKey' | 'queryFn'\n >,\n ) => Promise<void>\n prefetchInfiniteQuery: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n FetchInfiniteQueryOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<void>\n\n getQueryData: (\n input: SchemaInput<TInputSchema>,\n ) => SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n getInfiniteQueryData: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n ) => | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n\n ensureQueryData: (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n EnsureQueryDataOptions<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryFn' | 'queryKey'\n >,\n ) => Promise<SchemaOutput<TOutputSchema, TFuncOutput>>\n ensureInfiniteQueryData: (\n options: PartialOnUndefinedDeep<\n SetOptional<\n EnsureInfiniteQueryDataOptions<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n DefaultError,\n SchemaOutput<TOutputSchema, TFuncOutput>,\n QueryKey,\n SchemaInput<TInputSchema>['cursor']\n >,\n 'queryKey' | 'queryFn'\n > & {\n input: SchemaInputForInfiniteQuery<TInputSchema>\n }\n >,\n ) => Promise<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n\n getQueryState: (\n input: SchemaInput<TInputSchema>,\n ) => QueryState<SchemaOutput<TOutputSchema, TFuncOutput>> | undefined\n getInfiniteQueryState: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n ) => | QueryState<\n InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n >\n | undefined\n\n setQueryData: (\n input: SchemaInput<TInputSchema>,\n updater: Updater<\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined,\n SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n >,\n options?: SetDataOptions,\n ) => SchemaOutput<TOutputSchema, TFuncOutput> | undefined\n setInfiniteQueryData: (\n input: SchemaInputForInfiniteQuery<TInputSchema>,\n updater: Updater<\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined,\n | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n >,\n options?: SetDataOptions,\n ) => | InfiniteData<\n SchemaOutput<TOutputSchema, TFuncOutput>,\n SchemaInput<TInputSchema>['cursor']\n >\n | undefined\n}\n\nexport interface CreateProcedureUtilsOptions<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n> {\n client: ProcedureClient<TInputSchema, TOutputSchema, TFuncOutput>\n queryClient: QueryClient\n\n /**\n * The path of procedure on sever\n */\n path: string[]\n}\n\nexport function createProcedureUtils<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n>(\n options: CreateProcedureUtilsOptions<\n TInputSchema,\n TOutputSchema,\n TFuncOutput\n >,\n): ProcedureUtils<TInputSchema, TOutputSchema, TFuncOutput> {\n return {\n fetchQuery(input, options_) {\n return options.queryClient.fetchQuery({\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n fetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n return options.queryClient.fetchInfiniteQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n prefetchQuery(input, options_) {\n return options.queryClient.prefetchQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n prefetchInfiniteQuery(options_) {\n const { input, ...rest } = options_\n return options.queryClient.prefetchInfiniteQuery({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), cursor: pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n getQueryData(input) {\n return options.queryClient.getQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryData(input) {\n return options.queryClient.getQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n )\n },\n\n ensureQueryData(input, options_) {\n return options.queryClient.ensureQueryData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n queryFn: () => options.client(input),\n ...options_,\n })\n },\n ensureInfiniteQueryData(options_) {\n const { input, ...rest } = options_\n return options.queryClient.ensureInfiniteQueryData({\n queryKey: getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n queryFn: ({ pageParam }) => {\n return options.client({ ...(input as any), pageParam } as any)\n },\n ...(rest as any),\n })\n },\n\n getQueryState(input) {\n return options.queryClient.getQueryState(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n )\n },\n getInfiniteQueryState(input) {\n return options.queryClient.getQueryState(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n )\n },\n\n setQueryData(input, updater, options_) {\n return options.queryClient.setQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'query',\n }),\n updater,\n options_,\n )\n },\n setInfiniteQueryData(input, updater, options_) {\n return options.queryClient.setQueryData(\n getQueryKeyFromPath(options.path, {\n input,\n type: 'infinite',\n }),\n updater,\n options_,\n )\n },\n }\n}\n","import type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type { ORPCContext } from './react-context'\nimport { createGeneralHooks, type GeneralHooks } from './general-hooks'\nimport { orpcPathSymbol } from './orpc-path'\nimport { createProcedureHooks, type ProcedureHooks } from './procedure-hooks'\n\nexport type ORPCHooksWithContractRouter<TRouter extends ContractRouter> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<\n infer UInputSchema,\n infer UOutputSchema\n >\n ? ProcedureHooks<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>> & GeneralHooks<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>>\n : TRouter[K] extends ContractRouter\n ? ORPCHooksWithContractRouter<TRouter[K]>\n : never\n} & GeneralHooks<undefined, undefined, unknown>\n\nexport type ORPCHooksWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput>\n ? ProcedureHooks<UInputSchema, UOutputSchema, UFuncOutput> & GeneralHooks<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? ORPCHooksWithRouter<TRouter[K]>\n : never\n} & GeneralHooks<undefined, undefined, unknown>\n\nexport interface CreateORPCHooksOptions<\n TRouter extends ContractRouter | Router<any>,\n> {\n context: ORPCContext<TRouter>\n\n /**\n * The path of the router.\n *\n * @internal\n */\n path?: string[]\n}\n\nexport function createORPCHooks<TRouter extends ContractRouter | Router<any>>(\n options: CreateORPCHooksOptions<TRouter>,\n): TRouter extends Router<any>\n ? ORPCHooksWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCHooksWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const generalHooks = createGeneralHooks({ context: options.context, path })\n\n // for sure root is not procedure, so do not it procedure hooks on root\n const procedureHooks = path.length\n ? createProcedureHooks({\n context: options.context,\n path,\n })\n : {}\n\n return new Proxy(\n {\n [orpcPathSymbol]: path,\n\n ...generalHooks,\n ...procedureHooks,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextHooks = createORPCHooks({\n context: options.context,\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextHooks\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextHooks, key)\n },\n })\n },\n },\n ) as any\n}\n","import type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type { ORPCContextValue } from './react-context'\nimport { createGeneralUtils, type GeneralUtils } from './general-utils'\nimport { createProcedureUtils, type ProcedureUtils } from './procedure-utils'\n\nexport type ORPCUtilsWithContractRouter<TRouter extends ContractRouter> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<infer UInputSchema, infer UOutputSchema>\n ? ProcedureUtils<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>> & GeneralUtils<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>>\n : TRouter[K] extends ContractRouter\n ? ORPCUtilsWithContractRouter<TRouter[K]>\n : never\n} & GeneralUtils<undefined, undefined, unknown>\n\nexport type ORPCUtilsWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput>\n ? ProcedureUtils<UInputSchema, UOutputSchema, UFuncOutput> & GeneralUtils<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? ORPCUtilsWithRouter<TRouter[K]>\n : never\n} & GeneralUtils<undefined, undefined, unknown>\n\nexport interface CreateORPCUtilsOptions<\n TRouter extends ContractRouter | Router<any>,\n> {\n contextValue: ORPCContextValue<TRouter>\n\n /**\n * The path of the router.\n *\n * @internal\n */\n path?: string[]\n}\n\nexport function createORPCUtils<TRouter extends ContractRouter | Router<any>>(\n options: CreateORPCUtilsOptions<TRouter>,\n): TRouter extends Router<any>\n ? ORPCUtilsWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCUtilsWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const client = options.contextValue.client as any\n\n const generalUtils = createGeneralUtils({\n queryClient: options.contextValue.queryClient,\n path,\n })\n\n // for sure root is not procedure, so do not it procedure utils on root\n const procedureUtils = path.length\n ? createProcedureUtils({\n client,\n queryClient: options.contextValue.queryClient,\n path,\n })\n : {}\n\n return new Proxy(\n {\n ...generalUtils,\n ...procedureUtils,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextUtils = createORPCUtils({\n ...options,\n contextValue: {\n ...options.contextValue,\n client: client[key],\n },\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextUtils\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextUtils, key)\n },\n })\n },\n },\n ) as any\n}\n","import type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport {\n type QueriesOptions,\n type QueriesResults,\n useQueries,\n} from '@tanstack/react-query'\nimport { type ORPCContext, useORPCContext } from '../react-context'\nimport {\n createUseQueriesBuilders,\n type UseQueriesBuildersWithContractRouter,\n type UseQueriesBuildersWithRouter,\n} from './builders'\n\nexport interface UseQueriesWithContractRouter<TRouter extends ContractRouter> {\n <T extends Array<any> = [], TCombinedResult = QueriesResults<T>>(\n build: (\n builders: UseQueriesBuildersWithContractRouter<TRouter>,\n ) => [...QueriesOptions<T>],\n combine?: (result: QueriesResults<T>) => TCombinedResult,\n ): TCombinedResult\n}\n\nexport interface UseQueriesWithRouter<TRouter extends Router<any>> {\n <T extends Array<any> = [], TCombinedResult = QueriesResults<T>>(\n build: (\n builders: UseQueriesBuildersWithRouter<TRouter>,\n ) => [...QueriesOptions<T>],\n combine?: (result: QueriesResults<T>) => TCombinedResult,\n ): TCombinedResult\n}\n\nexport interface UseQueriesFactoryOptions<\n TRouter extends Router<any> | ContractRouter,\n> {\n context: ORPCContext<TRouter>\n}\n\nexport function useQueriesFactory<TRouter extends Router<any> | ContractRouter>(\n options: UseQueriesFactoryOptions<TRouter>,\n): TRouter extends Router<any>\n ? UseQueriesWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? UseQueriesWithContractRouter<TRouter>\n : never {\n const Hook = (build: any, combine?: any): any => {\n const orpc = useORPCContext(options.context)\n const builders = createUseQueriesBuilders({ client: orpc.client as any })\n\n return useQueries({\n queries: build(builders),\n combine,\n })\n }\n\n return Hook as any\n}\n","import type { ProcedureClient } from '@orpc/client'\nimport type { Schema, SchemaInput, SchemaOutput } from '@orpc/contract'\nimport type { SetOptional } from '@orpc/shared'\nimport type {\n DefaultError,\n OmitKeyof,\n QueriesPlaceholderDataFunction,\n QueryKey,\n UseQueryOptions,\n} from '@tanstack/react-query'\nimport { getQueryKeyFromPath } from '../tanstack-key'\n\ntype UseQueryOptionsForUseQueries<\n TQueryFnData,\n TError = DefaultError,\n TData = TQueryFnData,\n TQueryKey extends QueryKey = QueryKey,\n> = OmitKeyof<\n UseQueryOptions<TQueryFnData, TError, TData, TQueryKey>,\n 'placeholderData'\n> & {\n placeholderData?: TQueryFnData | QueriesPlaceholderDataFunction<TQueryFnData>\n}\n\nexport interface UseQueriesBuilder<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n (\n input: SchemaInput<TInputSchema>,\n options?: SetOptional<\n UseQueryOptionsForUseQueries<SchemaOutput<TOutputSchema, TFuncOutput>>,\n 'queryFn' | 'queryKey'\n >,\n ): UseQueryOptionsForUseQueries<SchemaOutput<TOutputSchema, TFuncOutput>>\n}\n\nexport interface CreateUseQueriesBuilderOptions<\n TInputSchema extends Schema,\n TOutputSchema extends Schema,\n TFuncOutput extends SchemaOutput<TOutputSchema>,\n> {\n client: ProcedureClient<TInputSchema, TOutputSchema, TFuncOutput>\n\n /**\n * The path of procedure on server\n */\n path: string[]\n}\n\nexport function createUseQueriesBuilder<\n TInputSchema extends Schema = undefined,\n TOutputSchema extends Schema = undefined,\n TFuncOutput extends\n SchemaOutput<TOutputSchema> = SchemaOutput<TOutputSchema>,\n>(\n options: CreateUseQueriesBuilderOptions<\n TInputSchema,\n TOutputSchema,\n TFuncOutput\n >,\n): UseQueriesBuilder<TInputSchema, TOutputSchema, TFuncOutput> {\n return (input, options_) => {\n return {\n queryKey: getQueryKeyFromPath(options.path, { input, type: 'query' }),\n queryFn: () => options.client(input),\n ...options_,\n }\n }\n}\n","import type {\n RouterClientWithContractRouter,\n RouterClientWithRouter,\n} from '@orpc/client'\nimport type {\n ContractProcedure,\n ContractRouter,\n SchemaOutput,\n} from '@orpc/contract'\nimport type { Procedure, Router } from '@orpc/server'\nimport type {} from '@tanstack/react-query'\nimport { createUseQueriesBuilder, type UseQueriesBuilder } from './builder'\n\nexport type UseQueriesBuildersWithContractRouter<\n TRouter extends ContractRouter,\n> = {\n [K in keyof TRouter]: TRouter[K] extends ContractProcedure<\n infer UInputSchema,\n infer UOutputSchema\n >\n ? UseQueriesBuilder<\n UInputSchema,\n UOutputSchema,\n SchemaOutput<UOutputSchema>\n >\n : TRouter[K] extends ContractRouter\n ? UseQueriesBuildersWithContractRouter<TRouter[K]>\n : never\n}\n\nexport type UseQueriesBuildersWithRouter<TRouter extends Router<any>> = {\n [K in keyof TRouter]: TRouter[K] extends Procedure<\n any,\n any,\n infer UInputSchema,\n infer UOutputSchema,\n infer UFuncOutput\n >\n ? UseQueriesBuilder<UInputSchema, UOutputSchema, UFuncOutput>\n : TRouter[K] extends Router<any>\n ? UseQueriesBuildersWithRouter<TRouter[K]>\n : never\n}\n\nexport interface CreateUseQueriesBuildersOptions<\n TRouter extends Router<any> | ContractRouter,\n> {\n client: TRouter extends Router<any>\n ? RouterClientWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? RouterClientWithContractRouter<TRouter>\n : never\n\n /**\n * The path of router on server\n */\n path?: string[]\n}\n\nexport function createUseQueriesBuilders<\n TRouter extends Router<any> | ContractRouter,\n>(\n options: CreateUseQueriesBuildersOptions<TRouter>,\n): TRouter extends Router<any>\n ? UseQueriesBuildersWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? UseQueriesBuildersWithContractRouter<TRouter>\n : never {\n const path = options.path ?? []\n const client = options.client as any\n\n /**\n * For sure root is not procedure so do not create builder on root\n */\n const builder = path.length ? createUseQueriesBuilder({ client, path }) : {}\n\n return new Proxy(builder, {\n get(target, key) {\n const value = Reflect.get(target, key)\n\n if (typeof key !== 'string') {\n return value\n }\n\n const nextBuilders = createUseQueriesBuilders({\n client: client[key],\n path: [...path, key],\n })\n\n if (typeof value !== 'function') {\n return nextBuilders\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextBuilders, key)\n },\n })\n },\n }) as any\n}\n","import type { ContractRouter } from '@orpc/contract'\nimport type { Router } from '@orpc/server'\nimport {\n createORPCContext,\n type ORPCContext,\n type ORPCContextValue,\n useORPCContext,\n} from './react-context'\nimport {\n createORPCHooks,\n type ORPCHooksWithContractRouter,\n type ORPCHooksWithRouter,\n} from './react-hooks'\nimport {\n createORPCUtils,\n type ORPCUtilsWithContractRouter,\n type ORPCUtilsWithRouter,\n} from './react-utils'\nimport {\n useQueriesFactory,\n type UseQueriesWithContractRouter,\n type UseQueriesWithRouter,\n} from './use-queries/hook'\n\nexport type ORPCReactWithContractRouter<TRouter extends ContractRouter> =\n ORPCHooksWithContractRouter<TRouter> & {\n useContext: () => ORPCContextValue<TRouter>\n useUtils: () => ORPCUtilsWithContractRouter<TRouter>\n useQueries: UseQueriesWithContractRouter<TRouter>\n }\n\nexport type ORPCReactWithRouter<TRouter extends Router<any>> =\n ORPCHooksWithRouter<TRouter> & {\n useContext: () => ORPCContextValue<TRouter>\n useUtils: () => ORPCUtilsWithRouter<TRouter>\n useQueries: UseQueriesWithRouter<TRouter>\n }\n\nexport function createORPCReact<\n TRouter extends ContractRouter | Router<any>,\n>(): {\n orpc: TRouter extends Router<any>\n ? ORPCReactWithRouter<TRouter>\n : TRouter extends ContractRouter\n ? ORPCReactWithContractRouter<TRouter>\n : never\n ORPCContext: ORPCContext<TRouter>\n} {\n const Context = createORPCContext<TRouter>()\n const useContext = () => useORPCContext(Context)\n const useUtils = () => createORPCUtils({ contextValue: useContext() })\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const useQueries = useQueriesFactory({ context: Context })\n const hooks = createORPCHooks({ context: Context })\n\n const orpc = new Proxy(\n {\n useContext,\n useUtils,\n useQueries,\n },\n {\n get(target, key) {\n const value = Reflect.get(target, key)\n const nextHooks = Reflect.get(hooks, key)\n\n if (typeof value !== 'function') {\n return nextHooks\n }\n\n return new Proxy(value, {\n get(_, key) {\n return Reflect.get(nextHooks, key)\n },\n })\n },\n },\n )\n\n return { orpc: orpc as any, ORPCContext: Context }\n}\n"],"mappings":"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","names":["key","key","key","useContext","useQueries","key"]}
@@ -1 +1 @@
1
- {"version":3,"file":"react-utils.d.ts","sourceRoot":"","sources":["../../src/react-utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,iBAAiB,EACjB,cAAc,EACd,YAAY,EACb,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AACvD,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,iBAAiB,CAAA;AACvE,OAAO,EAAwB,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAE7E,MAAM,MAAM,2BAA2B,CAAC,OAAO,SAAS,cAAc,IAAI;KACvE,CAAC,IAAI,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,MAAM,YAAY,EAAE,MAAM,aAAa,CAAC,GAC/F,cAAc,CAAC,YAAY,EAAE,aAAa,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,GAAG,YAAY,CAAC,YAAY,EAAE,aAAa,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,GACjJ,OAAO,CAAC,CAAC,CAAC,SAAS,cAAc,GAC/B,2BAA2B,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACvC,KAAK;CACZ,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;AAE/C,MAAM,MAAM,mBAAmB,CAAC,OAAO,SAAS,MAAM,CAAC,GAAG,CAAC,IAAI;KAC5D,CAAC,IAAI,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,SAAS,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,YAAY,EAAE,MAAM,aAAa,EAAE,MAAM,WAAW,CAAC,GACpH,cAAc,CAAC,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,GAAG,YAAY,CAAC,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,GACjH,OAAO,CAAC,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG,CAAC,GAC5B,mBAAmB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAC/B,KAAK;CACZ,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;AAE/C,MAAM,WAAW,sBAAsB,CACrC,OAAO,SAAS,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC;IAE5C,YAAY,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAA;IAEvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;CAChB;AAED,wBAAgB,eAAe,CAAC,OAAO,SAAS,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC,EAC1E,OAAO,EAAE,sBAAsB,CAAC,OAAO,CAAC,GACvC,OAAO,SAAS,MAAM,CAAC,GAAG,CAAC,GACxB,mBAAmB,CAAC,OAAO,CAAC,GAC5B,OAAO,SAAS,cAAc,GAC5B,2BAA2B,CAAC,OAAO,CAAC,GACpC,KAAK,CAoDZ"}
1
+ {"version":3,"file":"react-utils.d.ts","sourceRoot":"","sources":["../../src/react-utils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,iBAAiB,EACjB,cAAc,EACd,YAAY,EACb,MAAM,gBAAgB,CAAA;AACvB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,cAAc,CAAA;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AACvD,OAAO,EAAsB,KAAK,YAAY,EAAE,MAAM,iBAAiB,CAAA;AACvE,OAAO,EAAwB,KAAK,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAE7E,MAAM,MAAM,2BAA2B,CAAC,OAAO,SAAS,cAAc,IAAI;KACvE,CAAC,IAAI,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,SAAS,iBAAiB,CAAC,MAAM,YAAY,EAAE,MAAM,aAAa,CAAC,GAC/F,cAAc,CAAC,YAAY,EAAE,aAAa,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,GAAG,YAAY,CAAC,YAAY,EAAE,aAAa,EAAE,YAAY,CAAC,aAAa,CAAC,CAAC,GACjJ,OAAO,CAAC,CAAC,CAAC,SAAS,cAAc,GAC/B,2BAA2B,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GACvC,KAAK;CACZ,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;AAE/C,MAAM,MAAM,mBAAmB,CAAC,OAAO,SAAS,MAAM,CAAC,GAAG,CAAC,IAAI;KAC5D,CAAC,IAAI,MAAM,OAAO,GAAG,OAAO,CAAC,CAAC,CAAC,SAAS,SAAS,CAAC,GAAG,EAAE,GAAG,EAAE,MAAM,YAAY,EAAE,MAAM,aAAa,EAAE,MAAM,WAAW,CAAC,GACpH,cAAc,CAAC,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,GAAG,YAAY,CAAC,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,GACjH,OAAO,CAAC,CAAC,CAAC,SAAS,MAAM,CAAC,GAAG,CAAC,GAC5B,mBAAmB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,GAC/B,KAAK;CACZ,GAAG,YAAY,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;AAE/C,MAAM,WAAW,sBAAsB,CACrC,OAAO,SAAS,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC;IAE5C,YAAY,EAAE,gBAAgB,CAAC,OAAO,CAAC,CAAA;IAEvC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;CAChB;AAED,wBAAgB,eAAe,CAAC,OAAO,SAAS,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC,EAC1E,OAAO,EAAE,sBAAsB,CAAC,OAAO,CAAC,GACvC,OAAO,SAAS,MAAM,CAAC,GAAG,CAAC,GACxB,mBAAmB,CAAC,OAAO,CAAC,GAC5B,OAAO,SAAS,cAAc,GAC5B,2BAA2B,CAAC,OAAO,CAAC,GACpC,KAAK,CAoDZ"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.13/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/typeAliases.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/util.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/ZodError.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/locales/en.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/errors.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/parseUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/enumUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/errorUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/partialUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/types.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/external.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/index.d.ts","../../contract/dist/src/types.d.ts","../../contract/dist/src/procedure.d.ts","../../contract/dist/src/router.d.ts","../../contract/dist/src/router-builder.d.ts","../../contract/dist/src/builder.d.ts","../../contract/dist/src/constants.d.ts","../../contract/dist/src/utils.d.ts","../../contract/dist/src/index.d.ts","../../shared/dist/src/json.d.ts","../../shared/dist/src/object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/keys-of-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/distributed-omit.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/distributed-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/non-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/unknown-record.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/unknown-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tagged-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/characters.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-float.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-integer.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-literal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/trim.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/and.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/or.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/greater-than.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/greater-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/less-than.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/string.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/index.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/non-empty-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-tail.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/enforce-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/simplify-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-one-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/single-key-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/required-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/sum.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/subtract.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/paths.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-splice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/shared-union-fields-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/omit-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-null.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/arrayable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tagged.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-readonly.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-never.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/join.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/less-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-parameter-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/jsonifiable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/find-global-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/structured-cloneable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/schema.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/exact.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/override-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-readonly-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-writable-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/spread.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tuple-to-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/union-to-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/int-range.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-any.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-indices.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-values.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-field-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-null.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/split-words.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/includes.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/split.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/replace.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-repeat.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/get.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/global-this.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/index.d.ts","../../shared/dist/src/value.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/getType.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPlainObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isAnyObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isBlob.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isBoolean.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isDate.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isError.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFile.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFunction.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isType.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isInstanceOf.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isMap.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNaNValue.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNegativeNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNull.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNullOrUndefined.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isObjectLike.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isOneOf.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPositiveNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPrimitive.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPromise.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isRegExp.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isSet.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isSymbol.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isUndefined.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isWeakMap.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isWeakSet.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/index.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.59.13/node_modules/@tanstack/query-core/build/modern/removable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/subscribable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/hydration-mKPlgzt9.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/queriesObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/notifyManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/focusManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/onlineManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/index.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/types.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useQueries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/queryOptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseQueries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/usePrefetchQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/usePrefetchInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/infiniteQueryOptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/QueryClientProvider.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/HydrationBoundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useIsFetching.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useMutationState.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useMutation.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/isRestoring.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/index.d.ts","../src/types.ts","../../server/dist/src/procedure-caller.d.ts","../../server/dist/src/middleware.d.ts","../../server/dist/src/procedure.d.ts","../../server/dist/src/types.d.ts","../../server/dist/src/router.d.ts","../../server/dist/src/procedure-implementer.d.ts","../../server/dist/src/procedure-builder.d.ts","../../server/dist/src/router-builder.d.ts","../../server/dist/src/router-implementer.d.ts","../../server/dist/src/builder.d.ts","../../server/dist/src/router-caller.d.ts","../../server/dist/src/utils.d.ts","../../shared/dist/src/error.d.ts","../../server/dist/src/index.d.ts","../../client/dist/src/procedure.d.ts","../../client/dist/src/router.d.ts","../../client/dist/src/index.d.ts","../src/react-context.ts","../src/react-hooks.ts","../src/orpc-path.ts","../src/procedure-hooks.ts","../src/tanstack-key.ts","../src/tanstack-query.ts","../src/general-hooks.ts","../src/general-utils.ts","../src/procedure-utils.ts","../src/react-utils.ts","../src/use-queries/builder.ts","../src/use-queries/builders.ts","../src/use-queries/hook.ts","../src/react.tsx","../src/index.ts"],"fileIdsList":[[283],[282,283],[282,283,284,285,286,287,288,289],[282,283,284],[61,290],[61,62],[61,62,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[290,291],[61],[290],[290,291,300],[290,291,293],[58,59,60],[242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278],[243],[258],[257],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,108,109,110,111,112,113,114,115,116,117,118,119,127,128,129,130,132,133,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,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239],[97],[97,111,115,117,118,126,144,149,176],[102,118,126,145],[126],[185],[214],[102,126,215],[215],[98,170],[169],[93,97,101,126,131,171],[170],[102,126,218],[218],[90],[104],[183],[86,90,97,126,154],[126,146,150,195,232],[117],[97,111,115,116,126],[198],[201],[95],[203],[108],[93],[112],[153],[154],[126,145],[102],[106,107,120,121,122,123,124,125],[108,113,121],[102,112,121],[102,104,121,122,124],[107,111,114,120],[102,111,117,119],[86,112],[111],[109,111,126],[86,111,112,126],[88],[87,88,93,102,108,111,112,126,154],[222],[220],[118],[128,193],[86],[101,102,126,128,129,130,131,132,133,134,135],[104,128,129],[97,145],[96,99],[109,110],[97,102,112,126,135,146,149,150,151],[130],[88,150],[126,130,155],[215,224],[93,102,108,117,126,145],[102,104,112,126,146,147],[98],[126,138],[218,227,230],[98,104],[102,126,154],[102,112,126],[126,131],[94,126],[95,104],[111,145],[126,175,177],[87,190],[97,111,115,116,119,126,144],[97,111,115,116,126,145],[112,147],[74],[63,64,74],[65,66],[63,64,65,67,68,72],[64,65],[73],[65],[63,64,65,68,69,70,71],[323,325,326],[83,281],[83,281,324,325],[76,77,78,79],[76,77,78,80,81,82],[76],[76,78],[76,77],[75],[62,83,281,309,328,332,333],[62,83,281,309,310,332,333],[62,328,329,331,334,335,336,337,341],[62,329,331],[62,83,281,309,310,328,330,332],[62,83,281,309,310,327,332],[61,62,83,309,324,327],[62,83,324,328,330,331,334],[62,83,324,327,328,335,336],[62,83,324,328,329,337,340],[62,83,281,309,329,330,331],[62,281,309,332],[62,83],[62,83,281,309,327,332],[62,83,309,324,327,338],[62,83,309,324,328,339],[83,281,312,313,314,315,316,317,318,319],[311,312,313,314,315,316,317,319,320,321,322,323],[281,314],[83,312,313,314,316],[83,281,313],[83,312,313,314],[83,281,311,312,314],[83,312,314,315],[281,311,313,315],[83,312,314,315,316],[83,313,314],[313],[314],[84,85,240,241,279,280],[240]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","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":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","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":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"aa17748c522bd586f8712b1a308ea23af59c309b2fd278f6d4f406647c72e659","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","impliedFormat":1},{"version":"c2869c4f2f79fd2d03278a68ce7c061a5a8f4aed59efb655e25fe502e3e471d5","impliedFormat":1},{"version":"b8fe42dbf4b0efba2eb4dbfb2b95a3712676717ff8469767dc439e75d0c1a3b6","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"83306c97a4643d78420f082547ea0d488a0d134c922c8e65fc0b4f08ef66d92b","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"dccd26a5c85325a011aff40f401e0892bd0688d44132ba79e803c67e68fffea5","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},"0f2dbe9fce173b2c5c10df4a97157d7cb6b082af310abe70759572eef943d3df","92523237895f96fdb73233b41807f16c9586032cc58e10777c9b44466b232121","649ef9f17aada1037b29b13da8d7be3fca68661add5f0c423408ab402e3e4c95","40e6a5252b059c72bdf941ef3e3554b2d594b3afb2b3d960fc99e45dc111db6b","c525b73cc35a91182a74352d183af74c84c7dab2b0bcb7af7f28913ee5f834da","5cc386bba6024e9e937e97db6bc9b02aafc9450109fa0dee4ad64c34f2d99779","6c418dc23ed07c2d22255b3fe284dc06aa33bda643457144a8d07e48669135e6","332bba04d0943565dc5346621a3a399e18885bc2ca809072f63c0806bfcdfcd3","e213269ee33762ad5c4f92d54a432d2dfbbdec244467780f94db347ebdb4a586","d37e62c0ec38796922a2158756e127fe8fddd618d07af4f9cc8397fa25ccb773",{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c44636cd32c9f5279e967d56e67d7623341d90382871adf63eb9ba427a3f820","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"15ab3db8aa099e50e8e6edd5719b05dd8abf2c75f56dc3895432d92ec3f6cd6b","impliedFormat":1},{"version":"6ff14b0a89cb61cef9424434ee740f91b239c09272c02031db85d388b84b7442","impliedFormat":1},{"version":"865f3db83300a1303349cc49ed80943775a858e0596e7e5a052cc65ac03b10bb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"aa1e3e6955faa399dc86747f8a904185a80cefdc1df5c9b952be4a657b3c98e9","impliedFormat":1},{"version":"742be2239f1a967692c4562a16973a08a1177663f972cbb4e1ef2b21bc97c9cf","impliedFormat":1},{"version":"1cf99fe49768500d01d873870085c68caa2b311fd40c1b05e831de0306f5f257","impliedFormat":1},{"version":"bcf177e80d5a2c3499f587886b4a190391fc9ad4388f74ae6aa935a1c22cd623","impliedFormat":1},{"version":"521f9f4dd927972ed9867e3eb2f0dd6990151f9edbb608ce59911864a9a2712d","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"c71b7d61c20bce394784daa24afcff1a0be74bac91195a61ee47b851851d18fe","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"1c0c6bd0d9b697040f43723d5b1dd6bb9feb743459ff9f95fda9adb6c97c9b37","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"3cd6df04a43858a6d18402c87a22a68534425e1c8c2fc5bb53fead29af027fcc","impliedFormat":1},{"version":"3aeae89ee20d53e08727a4eb5b5055211a6389a54a9a0a10f800a97616b5cd1b","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"7ca6bb19f016eadcff4eb8993a37ba89be7b42bdf0dbc630d0b0db34e5fc7df0","impliedFormat":1},{"version":"d8d5061cb4521772457a2a3f0fcec028669990daceea78068bc968620641cd25","impliedFormat":1},{"version":"1f0fa44d2aa1edf989a50670c4c92206ac32f1a5acf26a030466cff77583d1cf","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"4502caaa3fff6c9766bfc145b1b586ef26d53e5f104271db046122b8eef57fd1","impliedFormat":1},{"version":"382f061a24f63ef8bfb1f7a748e1a2568ea62fb91ed1328901a6cf5ad129d61c","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"2f28371c56e5d70b77de202e27995373bc46dc07336abbed23c7d74d89910677","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","impliedFormat":1},{"version":"ee1969bda02bd6c3172c259d33e9ea5456f1662a74e0acf9fa422bb38263f535","impliedFormat":1},{"version":"f1a5a12e04ad1471647484e7ff11e36eef7960f54740f2e60e17799d99d6f5ab","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"ed1b2a459aa469d032f0bd482f4550d0bcd38e9e013532907eb30157054a52d7","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"de54198142e582c1e26baa21c72321bcdde2a7c38b34cf18e246c7ff95bafd18","impliedFormat":1},{"version":"eccffdb59d6d42e3e773756e8bbe1fa8c23f261ef0cef052f3a8c0194dc6a0e0","impliedFormat":1},{"version":"2d98be5066df3ec9f217b93ef40abab987ec3b55b8f8756a43a081362a356e61","impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"f29768cdfdf7120ace7341b42cdcf1a215933b65da9b64784e9d5b8c7b0e1d3d","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"e68a372f031a576af235bb036e9fa655c731039145e21f2e53cf9ec05987720a","impliedFormat":1},{"version":"5718274a266c16d3fbe9cd44c0e591ca981c374904137807e0ee7d601524deda","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"98245fec2e886e8eb5398ce8f734bd0d0b05558c6633aefc09b48c4169596e4e","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"3238e3ed704fe1ba3d523a8a5c8ffd8ca3250a8898cf75ac5e6b13d132a8d226","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"b0cefbc19466a38f5883079f0845babcb856637f7d4f3f594b746d39b74390f7","impliedFormat":1},{"version":"16219e7997bfc39ed9e0bb5f068646c0cdc15de5658d1263e2b44adf0a94ebef","impliedFormat":1},{"version":"4ccedab1527b8bf338730810280cce9f7caf450f1e9e2a6cbabaa880d80d4cf9","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"2d3f23c577a913d0f396184f31998507e18c8712bc74303a433cf47f94fd7e07","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"64df9b13259fe3e3fea8ed9cdce950b7a0d40859d706c010eeea8c8d353d53fd","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"84f47c1a2ccfe41176fb5eb37e29fe7f44dbf7b9234d84811b637853b8da705f","impliedFormat":1},{"version":"dd8ded51112dedf953e09e211e423bcc9c8a3943b4b42d0c66c89466e55635a6","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"fa18c6fe108031717db1ada404c14dc75b8b38c54daa3bb3af4c4999861ca653","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":"a5ca6512e1e0f4aafbbdbc829a3bb5654529aaf299ab760c351e6e6b406548fb","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"22fcfd509683e3edfaf0150c255f6afdf437fec04f033f56b43d66fe392e2ad3","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"3d5d9aa6266ea07199ce0a1e1f9268a56579526fad4b511949ddb9f974644202","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"c6e23745504b016ed3ffbe637d69bcc2145d598ecd8bafa4892cafbac09d5fcf","impliedFormat":1},{"version":"2132bf9bdbf54ebcae1ec755ec780a6db1825c306bd6f3e0339d5c1da490f070","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"710e09a2711b011cc9681d237da0c1c450d12551b0d21c764826822e548b5464","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"11e4e2be18385fa1b4ffa0244c6c626f767058f445bbc66f1c7155cc8e1ec5b4","impliedFormat":1},{"version":"f47280c45ddbc8aa4909396e1d8b526f64dfad4a845aec2356a6c1dc7b6fe722","impliedFormat":1},{"version":"7b7f39411329342a28ea19a4ca3aa4c7f7d888c9f01a411b05e4126280026ea6","impliedFormat":1},{"version":"ba3ef8ea20ac0186dc0d58c1e96ffaf84327d09c377fd82f0ae99236e3430c3a","impliedFormat":1},{"version":"d66e97aa992c0fe797878bcad6257562829582f5f3a2842df71e613e60f7b778","impliedFormat":1},{"version":"a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","impliedFormat":1},{"version":"789110b95e963c99ace4e9ad8b60901201ddc4cab59f32bde5458c1359a4d887","impliedFormat":1},{"version":"92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","impliedFormat":1},{"version":"72bbfa838556113625a605be08f9fed6a4aed73ba03ab787badb317ab6f3bcd7","impliedFormat":1},{"version":"d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","impliedFormat":1},{"version":"32ac4394bb4b0348d46211f2575f22ab762babb399aca1e34cf77998cdef73b2","impliedFormat":1},{"version":"665c7850d78c30326b541d50c4dfad08cea616a7f58df6bb9c4872dd36778ad0","impliedFormat":1},{"version":"1567c6dcf728b0c1044606f830aafd404c00590af56d375399edef82e9ddce92","impliedFormat":1},{"version":"c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","impliedFormat":1},{"version":"e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","impliedFormat":1},{"version":"c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","impliedFormat":1},{"version":"5a4d0b09de173c391d5d50064fc20166becc194248b1ce738e8a56af5196d28c","impliedFormat":1},{"version":"0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","impliedFormat":1},{"version":"fc9ed6f3665b53b9b258ae7eda6394d8387e17fab6d85f48f4603d19633b006b","impliedFormat":1},{"version":"40fbe20b66b8bb3589bf9851283daa52d7aecc3bcae762b2859c1a7093895d61","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"b6bf369deed4ac7d681a20efee316018fbfdd044e9d3cd4ec79fdf5821688035","impliedFormat":1},{"version":"d38d37382c93f620216ed2e44e6757d395c141251f244d22aa0983542ec699af","impliedFormat":1},"4a25cc74ceeb7e4859fcd9932feebde34e754c39feabcd50fc1d01eb0dc8aeb0",{"version":"326759f43d598534059e33143843fd283ea0a51fc6cb9f38a576ce49553da354","impliedFormat":99},{"version":"7746188a1c4f43056697c5d595e973194a8be1f00f4d995380030016fee36506","impliedFormat":99},{"version":"a5861f39257a80b10f51f4d8ead817fbd5833a34c512f67281ceac909c10b3e2","impliedFormat":99},{"version":"dd02334867777bd630729fa27e5809ce54a21b82a5861b8ea3a260d40074fa2b","impliedFormat":99},{"version":"02d7939ef02782a45b9aeee121730423e7f44febe444d3e300633f8e9311e205","impliedFormat":99},{"version":"4bb27a5391b68e96c06e8ef5d195aa5fb40a3bf2e3f9e91f754fe0a51027d911","impliedFormat":99},{"version":"d8eb3f146c46e44a581fffba04f6f11068fab9f2f46e610a873e8dc23989ad54","impliedFormat":99},{"version":"0ebf5c9504413f74e59f2df1113d6d4f825718da6f99a52bb84b17f8f1c61f6a","impliedFormat":99},{"version":"b88deb871154baba626b38f2748e9af6991d8dd593a812b9cc3667bbfb64257f","impliedFormat":99},{"version":"7246c9724cf82b0e10ae60fbfd22a21c4730f23da27bdd81b69d75f36edff61a","impliedFormat":99},{"version":"702285aae357b822697a9535bf53aa3b0861acf208c6724e05526965fb371a62","impliedFormat":99},{"version":"4d4aa283941fe2228d4a8a1abe1afd4b59266a90b43e64e6fbb7ce0a4aed66dc","impliedFormat":99},{"version":"1426d7d581b5325ca4c19dbf89b1d65a4cd1810bc45cc53e2bcd3deadca40fc1","impliedFormat":99},{"version":"7b887d8539d6c33c14089110b6756a4ea608e5ea5291b939bbda277be9b729cf","impliedFormat":99},{"version":"edf1438892c4812108868d916a16957ad4ea091f8a4001f7b44c7f4c764dc34e","impliedFormat":99},{"version":"db4922e7f9574af4c2875504da886905a46bbc3e95469209213c254a922ce3fa","impliedFormat":99},{"version":"8358544ecefdda8e12c2f5e822cb920bdd6b6914f9cf073cdb5f6e8d20a217fd","impliedFormat":99},{"version":"64c930312b8dc6e89f81f8508a39ed098438f3fc89d5fd6d388bb635c3af7c4a","impliedFormat":99},{"version":"04b2bf3e07d44b2ad08c641bffdcee23b4865a1b84011e7febdcd4669ddc2910","impliedFormat":99},{"version":"c5fd8ff68f0d6056a4b349724c3bd4e734495e23f981ecf657fc29e37e0733c2","impliedFormat":99},{"version":"3f6caddc36d360a7b51ab22209242449f56f18651aa25109f77cd038c355fad6","impliedFormat":99},{"version":"f40319db1be77b53942cfa1444c11705b5a99379137f564cb7cfe7ad4f20d454","impliedFormat":99},{"version":"9a619a01ad912542884775be55d5c215e52feafc1e3dcb677e5e6fe5ee383287","impliedFormat":99},{"version":"2fa734ac430fc8a87f4a7c1d2cfbf1e665de87c0280293fe1dfa1f0c2e2a2283","impliedFormat":99},{"version":"90681949fee71c852704b230feeb2348a4e98b9e77766ccb3cf0ef5085bdb14e","impliedFormat":99},{"version":"60a8d51fba41d2ed942c3ad9a009b5b88cb9825af332ac9f9ea0d65425b59648","impliedFormat":99},{"version":"8a514bd9f56b476c686bddddcf0ef7b96289cdd11ae7f2f110565fac31eacd35","impliedFormat":99},{"version":"1315261a5f18b5dac3e7f4c4f80be42145e6c7095e54fdeed7deecda33a0191b","impliedFormat":99},{"version":"09eefc2ac900a52f702288843df64a417f22e40157d85e4b4644774a104d5c9f","impliedFormat":99},{"version":"65c2f848f352ca86cb5e2d9304414dd6c12b530465321d85b9ef3b1f26b6ddad","impliedFormat":99},{"version":"35cf770ee6533a062b4abe3b5e17c1ebecc27e76dbe55362f96bdc817d837106","impliedFormat":99},{"version":"f2a1e48e4b248f505735903a5539d978313b0a2fefeb4076e679954f872a817c","impliedFormat":99},{"version":"7a0c98331e493fe568607e2d2c46fb771098041df4f3bf7e79b2c7eaed7f57e5","impliedFormat":99},{"version":"b120f11164b9755802b3be0e6b6dc1eef8f1d3826bb111bfcefa7e16f32c8a1a","impliedFormat":99},{"version":"5079e87f97deefb9e88a9d48cf354bd3549719247357b53ada2edd77e283d5d5","impliedFormat":99},{"version":"92070a19cc7884c0c177f35f6ee4732172e4f98682ce234f192c2bdf11b0cbb0","impliedFormat":99},{"version":"1725a89e1384a677449e70f0ad7a1f71e17a1dfa2dc13a21cc1eeb75dad9f649","impliedFormat":99},{"version":"44ff65a3d557226c5ebc0bd4d0d76419017e02f91c2e1099b8f179783bd7daaa","impliedFormat":99},{"version":"f8a5c1977aeae947b54ddbba133a4f330bdac31b893fb64543117db9e8a92f39","impliedFormat":1},"2a0394e7174ae2bb21fdaacc4b5c9d2ec482cecc32754277db4f59012afcc05d",{"version":"9971931daaf18158fc38266e838d56eb5d9d1f13360b1181bb4735a05f534c03","impliedFormat":99},{"version":"50cf7a23fc93928995caec8d7956206990f82113beeb6b3242dae8124edc3ca0","impliedFormat":99},{"version":"cb8e6466ed1509d4819ae07c41f39897d9ce08b63692f3e6bce06f10d98b8157","impliedFormat":99},{"version":"e5b2f4da1ac3dac4aaa39a10a633493878ae737d476f5693c3d6861a62319449","impliedFormat":99},{"version":"3bf80ef5ee5a2d23bf083735dcffc0d1e5aeeab5d14e29d84c30d9a6d8649ed6","impliedFormat":99},{"version":"4f34a608833285c2fe5de094a484fe793081b50d10009df96c3b3585bc0f2dcd","impliedFormat":99},{"version":"352031ac2e53031b69a09355e09ad7d95361edf32cc827cfe2417d80247a5a50","impliedFormat":99},{"version":"853b8bdb5da8c8e5d31e4d715a8057d8e96059d6774b13545c3616ed216b890c","impliedFormat":99},{"version":"147812d33deee170e1cdab699f91a97309524c85867530a8485fdd521788bf3d","impliedFormat":99},{"version":"ff662536934906f04b9b1bc87a38af2a20273d2a8fe0f12d1891cf8e98043221","impliedFormat":99},{"version":"71ed8ea79e33c1529e89780e6ce491acdd4480ae24c380c60ba2fb694bd53dc3","impliedFormat":99},{"version":"692ab3e2f02c8a1a233e5a99e08c680eb608ce7166db03e094652ffd96f880c0","impliedFormat":99},{"version":"54fdb2ae0c92a76a7ba795889c793fff1e845fab042163f98bc17e5141bbe5f3","impliedFormat":99},{"version":"4b3049a2c849f0217ff4def308637931661461c329e4cf36aeb31db34c4c0c64","impliedFormat":99},{"version":"174b64363af0d3d9788584094f0f5a4fac30c869b536bb6bad9e7c3c9dce4c1d","impliedFormat":99},{"version":"94f4755c5f91cb042850cec965a4bcade3c15d93cdd90284f084c571805a4d91","impliedFormat":99},{"version":"998d9f1da9ec63fca4cc1acb3def64f03d6bd1df2da1519d9249c80cfe8fece6","impliedFormat":99},{"version":"b7d9ca4e3248f643fa86ff11872623fdc8ed2c6009836bec0e38b163b6faed0c","impliedFormat":99},{"version":"878a353da561e091b6ab35e36b4b2a29a88307d389e3ff95f1d5bdcfaa512e48","impliedFormat":99},{"version":"d4f7a7a5f66b9bc6fbfd53fa08dcf8007ff752064df816da05edfa35abd2c97c","impliedFormat":99},{"version":"1f38ecf63dead74c85180bf18376dc6bc152522ef3aedf7b588cadbbd5877506","impliedFormat":99},{"version":"89316bf786d1fb2d9ef999e2b4ffb7a9d66491d55a362e8f457b67a97f8b60f1","impliedFormat":99},{"version":"facde2bec0f59cf92f4635ece51b2c3fa2d0a3bbb67458d24af61e7e6b8f003c","impliedFormat":99},{"version":"4669194e4ca5f7c160833bbb198f25681e629418a6326aba08cf0891821bfe8f","impliedFormat":99},{"version":"f919471289119d2e8f71aba81869b01f30f790e8322cf5aa7e7dee8c8dadd00a","impliedFormat":99},{"version":"3b9f5af0e636b312ec712d24f611225188627838967191bf434c547b87bde906","impliedFormat":99},{"version":"e9bc0db0144701fab1e98c4d595a293c7c840d209b389144142f0adbc36b5ec2","impliedFormat":99},{"version":"7d1c3991ed26fec9d5faf20d689c1f3bab269e6abf6cf53513ae3a5b124a3f77","impliedFormat":99},{"version":"22da927a687c377d85c9e91de96e735f69ae3a6b88ebf3298cd5fd492149229f","signature":"760045ffba694bf8c6c1d6d045a1da1bef4f73a017a16d15f1de2a8946d68bcc"},"bdcc444466b56cb9f71b3f24651b513027e979156d4097feb27b4c25b43ebec3","1e5da4a9e4e5a93c4341fab2042099d131af0a4bd68baf41ce4bbd811d4241be","8894c211c062b148ba3dd878f7f373a3795061dd5928166cb64590ae0cc08a0f","1df73985832c39284d27e811102e1eb6959c827246f1992ceeca9c45d8b55422","90c35fa93d62652556869fba8ac2509e097d8a96feca4a40e59d0dddba8e5aee","45e3c053214d9a6599b1d4f5f33b8895e37911f931fbc2b1f24d08131e0f5edf","7b5653563926112f81d65971472c785ec92f696bdfc337c48dcaacbfe842cb0c","39caab7e3b31f8b6953666bdccf360de3eff1de55016f5673877e5b51145abd1","229c0d3c98c52b770cbcd536caf3fc043955ac3e1aa2cde63e2452756f7fbafd","cbdbad21693afff2097b0f6706a039cd7f647cb9d136637602bd24cf9ab3f408","b8717c607f322bbc28dd4194d664c961afe7871d59b60a571cd6cdb6d9dbb911","5d9589853f34c85d28cae15ca388b5ddb499525e584b33d245559cdb2d937208","439c4c4937799c722de3202d121c21f3f3c9f1b20607e42cfced7febb37ec747","4710b82a3c30dbc3657fe8ddf73dd24c31af38cab4d3333d8c16e12966a86270","d74ec9bb3fd04f87f921beda48d2be0819831b497da32e444d4a890acfe8541b","f8b75df42a0c54a2741bea06d7a377469cb8e6d895d0f07b8bb2196fd9a5d008","f93eb25cfec7f86b6a36957003f516aee06488409dfaecbfd9ea9a51dbe0ab6a",{"version":"8c55f07be4de46bcba4a18b46600d77455fb0353738c3a0084cd1f632e1c5bb3","signature":"ce72b54a7477e761541f825b82e08fb56363ef038528d2d6c0cca1600169c580"},{"version":"e634f0890e63a11189093cb0c8b6772c6b074a8851e10014e0ee298daecce117","signature":"a47210e3036a5d8b2619f835d223d8be8127984d014c662b4c533a229205f579"},{"version":"8c0be130b9d5f5bf1b25042c301d6ba1532903c181f3643f6cc786ad5ee5e9f2","signature":"a1b9365e84885a8d8669fdb0e08786776cae94c49eebbff1b6f68f3f3bad202d"},{"version":"1372a73a8e322a4c9b2723473192a0c6e3ce73f6e9b755692999f3a30f6a6f93","signature":"4b1465b46e1b58c04c078cd18c8182cce86a70060263d1c6f805439760d97d7a"},{"version":"5bd9eb2c60613230173188b829ced7328244e4b9a06ea94d09bd820b65058745","signature":"c9c893e4a626d082dd578000a9f4182aab37fba31a5f2274f48f89e2d29974e7"},{"version":"e8179a4f1a6d9ffd0f1c7b54c693c86039acf0a2c6d67ec559345fc7406b64a3","signature":"03f5a1ca5be11d4cac8044c24f9bd0e61b8d781edd43bae2064ea3796b89a6c0"},{"version":"69c3874bceed3a13601ada6af4022968e59202ff36aaadae821fe49a246491f0","signature":"6023ac136d68b0a959c6fe99cec453c2a25de17a23e3b2a95b318cd1266d612b"},{"version":"051d61c7b219e3dbae1911f05ca6423b5ed62323580fd7b4bcf5c8fac48ef200","signature":"c2d6272118d0649f8da5d08c68a0394198c8e24873c0a11a7f8b90120050d54a"},{"version":"1b6803d36c57e0a9d0b1bd1f215f87a663417a42ecf7afb5a6639115d6df8755","signature":"07bb232f7bb7e6b7028bad096caceffa04c1c1d66915c78b873947bea81b9e5c"},{"version":"289cfb023422a5e51f8a08ad8609fc764c62e54b7af8d334c268020a7ea8afff","signature":"a3d63bd35dc04da2f45ee8f3d4eefe994604cbab3da480b163b5b4f92cc0527b"},{"version":"efe555924c0514486211bcc4e771f15f0da047f6821c471dc09f7eff2085ec00","signature":"f2a3581d600a0efec872bc398e94fa2e163ce0e751d261307faad9275e5e2ab2"},{"version":"b85961094a6a0bb6ac43803c54151c962b516369eb7a07b4a4da2e1da735c522","signature":"57e59b7a5149db08d5dfdfd9bbd3e28978974603fe3568174a708d16e719b512"},{"version":"776039455b829d44a37aff96136590d3d5d85494e04437018d8f840e3a917124","signature":"270f37e9ea8a8abb8a5ecdd0d560c9e787e024fc34f0fba2dd1b7ab7a4ad4c0e"},{"version":"d54e87158da05269dfe500dfbad84dce4b5d1e1d387454ac77f05ad5d1ab184e","signature":"eb689050da7347a12ab93060f722922f114843256645ccf060b24753676dc1c2"},{"version":"e4709597c5ccce3962312402493a2c96f756d03f47406953a5b7ebed2eaf00c7","signature":"e238b2d96babd9277f16dc7ab4378fb9a92e36f4180c90df1a6dc69912dbdc7f"}],"root":[310,[328,342]],"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":[[288,1],[284,2],[290,3],[286,4],[289,1],[285,4],[303,5],[301,5],[302,6],[309,7],[300,8],[308,9],[293,8],[291,10],[307,11],[304,10],[306,8],[305,10],[299,10],[298,10],[292,8],[294,12],[296,8],[297,8],[295,8],[61,13],[62,9],[279,14],[244,15],[255,15],[259,16],[266,15],[267,15],[258,17],[240,18],[115,19],[177,20],[149,21],[133,22],[187,23],[215,24],[217,25],[216,26],[171,27],[170,28],[173,29],[172,30],[218,22],[222,31],[220,32],[91,33],[92,33],[134,34],[184,35],[196,36],[98,19],[235,37],[118,38],[117,39],[200,40],[202,41],[96,42],[204,43],[209,44],[94,45],[169,46],[213,47],[155,48],[230,19],[208,49],[106,50],[126,51],[122,52],[123,53],[125,54],[121,55],[120,56],[124,57],[109,58],[110,59],[113,60],[154,47],[189,61],[188,62],[219,32],[223,63],[221,64],[176,38],[119,65],[194,66],[150,67],[136,68],[130,69],[180,70],[181,70],[100,71],[111,72],[152,73],[116,19],[199,74],[238,75],[142,22],[156,76],[224,26],[226,77],[225,77],[146,78],[148,79],[158,22],[201,19],[139,22],[99,80],[140,81],[143,22],[231,82],[212,83],[163,83],[186,84],[164,83],[165,83],[185,48],[151,85],[135,86],[141,87],[227,32],[229,63],[228,64],[214,22],[205,88],[234,89],[178,90],[191,91],[145,92],[144,93],[114,22],[157,22],[207,94],[127,22],[203,19],[105,83],[75,95],[65,96],[67,97],[73,98],[68,99],[71,95],[74,100],[66,101],[72,102],[327,103],[325,104],[326,105],[80,106],[83,107],[77,108],[79,109],[78,110],[76,111],[82,108],[334,112],[335,113],[342,114],[330,115],[331,116],[336,117],[328,118],[329,119],[337,120],[341,121],[332,122],[333,123],[310,124],[338,125],[339,126],[340,127],[320,128],[324,129],[312,130],[317,131],[311,132],[316,133],[313,134],[318,135],[321,136],[319,137],[315,138],[314,139],[322,140],[323,111],[281,141],[241,142]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,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,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342],"latestChangedDtsFile":"./src/index.d.ts","checkPending":true,"version":"5.7.2"}
1
+ {"fileNames":["../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.13/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react@18.3.12/node_modules/@types/react/jsx-runtime.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/typeAliases.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/util.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/ZodError.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/locales/en.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/errors.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/parseUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/enumUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/errorUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/helpers/partialUtil.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/types.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/external.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/lib/index.d.ts","../../../node_modules/.pnpm/zod@3.23.8/node_modules/zod/index.d.ts","../../contract/dist/src/types.d.ts","../../contract/dist/src/procedure.d.ts","../../contract/dist/src/router.d.ts","../../contract/dist/src/router-builder.d.ts","../../contract/dist/src/builder.d.ts","../../contract/dist/src/constants.d.ts","../../contract/dist/src/utils.d.ts","../../contract/dist/src/index.d.ts","../../shared/dist/src/json.d.ts","../../shared/dist/src/object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/basic.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/keys-of-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/distributed-omit.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/distributed-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/except.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/non-empty-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/unknown-record.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/unknown-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tagged-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/characters.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-any.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-float.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-integer.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-never.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-literal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/trim.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/and.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/or.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/greater-than.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/greater-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/less-than.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/string.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/numeric.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/internal/index.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/omit-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pick-index-signature.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-simplify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/non-empty-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-tail.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/enforce-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/simplify-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/require-one-or-none.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/single-key-object.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/required-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/sum.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/subtract.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/paths.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-splice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/shared-union-fields-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/omit-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-null.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/is-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-unknown.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/undefined-on-partial-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/promisable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/arrayable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tagged.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-readonly.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-required.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/value-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-never.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/conditional-pick-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/stringified.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/join.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/less-than-or-equal.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-slice.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/entry.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/entries.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-parameter-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/jsonifiable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/find-global-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/structured-cloneable.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/schema.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/literal-to-primitive-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/exact.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/override-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/readonly-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-readonly-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/writable-keys-of.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/has-writable-keys.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/spread.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tuple-to-union.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/union-to-tuple.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/int-range.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-any.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-indices.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/array-values.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/set-field-type.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/if-null.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/split-words.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/includes.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/split.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/replace.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/string-repeat.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/get.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/global-this.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/package-json.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/.pnpm/type-fest@4.26.1/node_modules/type-fest/index.d.ts","../../shared/dist/src/value.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/getType.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPlainObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isAnyObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isBlob.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isBoolean.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isDate.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isEmptyString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isError.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFile.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullArray.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFullString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isFunction.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isType.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isInstanceOf.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isMap.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNaNValue.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNegativeNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNull.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNullOrUndefined.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isObject.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isObjectLike.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isOneOf.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPositiveNumber.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPrimitive.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isPromise.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isRegExp.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isSet.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isString.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isSymbol.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isUndefined.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isWeakMap.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/isWeakSet.d.ts","../../../node_modules/.pnpm/is-what@5.0.2/node_modules/is-what/dist/index.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.59.13/node_modules/@tanstack/query-core/build/modern/removable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/subscribable.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/hydration-mKPlgzt9.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/queriesObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/notifyManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/focusManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/onlineManager.d.ts","../../../node_modules/.pnpm/@tanstack+query-core@5.59.13/node_modules/@tanstack/query-core/build/modern/index.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/types.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useQueries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/queryOptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useSuspenseQueries.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/usePrefetchQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/usePrefetchInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/infiniteQueryOptions.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/QueryClientProvider.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/HydrationBoundary.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useIsFetching.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useMutationState.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useMutation.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/isRestoring.d.ts","../../../node_modules/.pnpm/@tanstack+react-query@5.59.15_react@18.3.1/node_modules/@tanstack/react-query/build/modern/index.d.ts","../src/types.ts","../../server/dist/src/procedure-caller.d.ts","../../server/dist/src/middleware.d.ts","../../server/dist/src/procedure.d.ts","../../server/dist/src/types.d.ts","../../server/dist/src/router.d.ts","../../server/dist/src/procedure-implementer.d.ts","../../server/dist/src/procedure-builder.d.ts","../../server/dist/src/router-builder.d.ts","../../server/dist/src/router-implementer.d.ts","../../server/dist/src/builder.d.ts","../../server/dist/src/router-caller.d.ts","../../server/dist/src/utils.d.ts","../../shared/dist/src/error.d.ts","../../server/dist/src/index.d.ts","../../client/dist/src/procedure.d.ts","../../client/dist/src/router.d.ts","../../client/dist/src/index.d.ts","../src/react-context.ts","../src/react-hooks.ts","../src/orpc-path.ts","../src/procedure-hooks.ts","../src/tanstack-key.ts","../src/tanstack-query.ts","../src/general-hooks.ts","../src/general-utils.ts","../src/procedure-utils.ts","../src/react-utils.ts","../src/use-queries/builder.ts","../src/use-queries/builders.ts","../src/use-queries/hook.ts","../src/react.tsx","../src/index.ts"],"fileIdsList":[[283],[282,283],[282,283,284,285,286,287,288,289],[282,283,284],[61,290],[61,62],[61,62,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308],[290,291],[61],[290],[290,291,300],[290,291,293],[58,59,60],[242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278],[243],[258],[257],[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,108,109,110,111,112,113,114,115,116,117,118,119,127,128,129,130,132,133,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,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239],[97],[97,111,115,117,118,126,144,149,176],[102,118,126,145],[126],[185],[214],[102,126,215],[215],[98,170],[169],[93,97,101,126,131,171],[170],[102,126,218],[218],[90],[104],[183],[86,90,97,126,154],[126,146,150,195,232],[117],[97,111,115,116,126],[198],[201],[95],[203],[108],[93],[112],[153],[154],[126,145],[102],[106,107,120,121,122,123,124,125],[108,113,121],[102,112,121],[102,104,121,122,124],[107,111,114,120],[102,111,117,119],[86,112],[111],[109,111,126],[86,111,112,126],[88],[87,88,93,102,108,111,112,126,154],[222],[220],[118],[128,193],[86],[101,102,126,128,129,130,131,132,133,134,135],[104,128,129],[97,145],[96,99],[109,110],[97,102,112,126,135,146,149,150,151],[130],[88,150],[126,130,155],[215,224],[93,102,108,117,126,145],[102,104,112,126,146,147],[98],[126,138],[218,227,230],[98,104],[102,126,154],[102,112,126],[126,131],[94,126],[95,104],[111,145],[126,175,177],[87,190],[97,111,115,116,119,126,144],[97,111,115,116,126,145],[112,147],[74],[63,64,74],[65,66],[63,64,65,67,68,72],[64,65],[73],[65],[63,64,65,68,69,70,71],[323,325,326],[83,281],[83,281,324,325],[76,77,78,79],[76,77,78,80,81,82],[76],[76,78],[76,77],[75],[62,83,281,309,328,332,333],[62,83,281,309,310,332,333],[62,328,329,331,334,335,336,337,341],[62,329,331],[62,83,281,309,310,328,330,332],[62,83,281,309,310,327,332],[61,62,83,309,324,327],[62,83,324,328,330,331,334],[62,83,324,328,335,336],[62,83,324,328,329,337,340],[62,83,281,309,329,330,331],[62,281,309,332],[62,83],[62,83,281,309,327,332],[62,83,309,324,327,338],[62,83,309,324,328,339],[83,281,312,313,314,315,316,317,318,319],[311,312,313,314,315,316,317,319,320,321,322,323],[281,314],[83,312,313,314,316],[83,281,313],[83,312,313,314],[83,281,311,312,314],[83,312,314,315],[281,311,313,315],[83,312,314,315,316],[83,313,314],[313],[314],[84,85,240,241,279,280],[240]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","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":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","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":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","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":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f","impliedFormat":1},{"version":"aa17748c522bd586f8712b1a308ea23af59c309b2fd278f6d4f406647c72e659","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"5487b97cfa28b26b4a9ef0770f872bdbebd4c46124858de00f242c3eed7519f4","impliedFormat":1},{"version":"c2869c4f2f79fd2d03278a68ce7c061a5a8f4aed59efb655e25fe502e3e471d5","impliedFormat":1},{"version":"b8fe42dbf4b0efba2eb4dbfb2b95a3712676717ff8469767dc439e75d0c1a3b6","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"83306c97a4643d78420f082547ea0d488a0d134c922c8e65fc0b4f08ef66d92b","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"98a9cc18f661d28e6bd31c436e1984f3980f35e0f0aa9cf795c54f8ccb667ffe","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"dccd26a5c85325a011aff40f401e0892bd0688d44132ba79e803c67e68fffea5","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},"0f2dbe9fce173b2c5c10df4a97157d7cb6b082af310abe70759572eef943d3df","92523237895f96fdb73233b41807f16c9586032cc58e10777c9b44466b232121","649ef9f17aada1037b29b13da8d7be3fca68661add5f0c423408ab402e3e4c95","40e6a5252b059c72bdf941ef3e3554b2d594b3afb2b3d960fc99e45dc111db6b","c525b73cc35a91182a74352d183af74c84c7dab2b0bcb7af7f28913ee5f834da","5cc386bba6024e9e937e97db6bc9b02aafc9450109fa0dee4ad64c34f2d99779","6c418dc23ed07c2d22255b3fe284dc06aa33bda643457144a8d07e48669135e6","332bba04d0943565dc5346621a3a399e18885bc2ca809072f63c0806bfcdfcd3","e213269ee33762ad5c4f92d54a432d2dfbbdec244467780f94db347ebdb4a586","d37e62c0ec38796922a2158756e127fe8fddd618d07af4f9cc8397fa25ccb773",{"version":"cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","impliedFormat":1},{"version":"1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","impliedFormat":1},{"version":"130ec22c8432ade59047e0225e552c62a47683d870d44785bee95594c8d65408","impliedFormat":1},{"version":"4f24c2781b21b6cd65eede543669327d68a8cf0c6d9cf106a1146b164a7c8ef9","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c44636cd32c9f5279e967d56e67d7623341d90382871adf63eb9ba427a3f820","impliedFormat":1},{"version":"d9720d542df1d7feba0aa80ed11b4584854951f9064232e8d7a76e65dc676136","impliedFormat":1},{"version":"d0fb3d0c64beba3b9ab25916cc018150d78ccb4952fac755c53721d9d624ba0d","impliedFormat":1},{"version":"86b484bcf6344a27a9ee19dd5cef1a5afbbd96aeb07708cc6d8b43d7dfa8466c","impliedFormat":1},{"version":"ba93f0192c9c30d895bee1141dd0c307b75df16245deef7134ac0152294788cc","impliedFormat":1},{"version":"75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","impliedFormat":1},{"version":"eb31477c87de3309cbe4e9984fa74a052f31581edb89103f8590f01874b4e271","impliedFormat":1},{"version":"15ab3db8aa099e50e8e6edd5719b05dd8abf2c75f56dc3895432d92ec3f6cd6b","impliedFormat":1},{"version":"6ff14b0a89cb61cef9424434ee740f91b239c09272c02031db85d388b84b7442","impliedFormat":1},{"version":"865f3db83300a1303349cc49ed80943775a858e0596e7e5a052cc65ac03b10bb","impliedFormat":1},{"version":"28fa41063a242eafcf51e1a62013fccdd9fd5d6760ded6e3ff5ce10a13c2ab31","impliedFormat":1},{"version":"ada60ff3698e7fd0c7ed0e4d93286ee28aed87f648f6748e668a57308fde5a67","impliedFormat":1},{"version":"1a67ba5891772a62706335b59a50720d89905196c90719dad7cec9c81c2990e6","impliedFormat":1},{"version":"5d6f919e1966d45ea297c2478c1985d213e41e2f9a6789964cdb53669e3f7a6f","impliedFormat":1},{"version":"a8289d1d525cf4a3a2d5a8db6b8e14e19f43d122cc47f8fb6b894b0aa2e2bde6","impliedFormat":1},{"version":"d7735a9ccd17767352ab6e799d76735016209aadd5c038a2fc07a29e7b235f02","impliedFormat":1},{"version":"aa1e3e6955faa399dc86747f8a904185a80cefdc1df5c9b952be4a657b3c98e9","impliedFormat":1},{"version":"742be2239f1a967692c4562a16973a08a1177663f972cbb4e1ef2b21bc97c9cf","impliedFormat":1},{"version":"1cf99fe49768500d01d873870085c68caa2b311fd40c1b05e831de0306f5f257","impliedFormat":1},{"version":"bcf177e80d5a2c3499f587886b4a190391fc9ad4388f74ae6aa935a1c22cd623","impliedFormat":1},{"version":"521f9f4dd927972ed9867e3eb2f0dd6990151f9edbb608ce59911864a9a2712d","impliedFormat":1},{"version":"b2a793bde18962a2e1e0f9fa5dce43dd3e801331d36d3e96a7451727185fb16f","impliedFormat":1},{"version":"4e251317bb109337e4918e5d7bcda7ef2d88f106cac531dcea03f7eee1dd2240","impliedFormat":1},{"version":"c71b7d61c20bce394784daa24afcff1a0be74bac91195a61ee47b851851d18fe","impliedFormat":1},{"version":"8504003e88870caa5474ab8bd270f318d0985ba7ede4ee30fe37646768b5362a","impliedFormat":1},{"version":"65465a64d5ee2f989ad4cf8db05f875204a9178f36b07a1e4d3a09a39f762e2e","impliedFormat":1},{"version":"2878f694f7d3a13a88a5e511da7ac084491ca0ddde9539e5dad76737ead9a5a9","impliedFormat":1},{"version":"1c0c6bd0d9b697040f43723d5b1dd6bb9feb743459ff9f95fda9adb6c97c9b37","impliedFormat":1},{"version":"0915ce92bb54e905387b7907e98982620cb7143f7b44291974fb2e592602fe00","impliedFormat":1},{"version":"3cd6df04a43858a6d18402c87a22a68534425e1c8c2fc5bb53fead29af027fcc","impliedFormat":1},{"version":"3aeae89ee20d53e08727a4eb5b5055211a6389a54a9a0a10f800a97616b5cd1b","impliedFormat":1},{"version":"4733c832fb758f546a4246bc62f2e9d68880eb8abf0f08c6bec484decb774dc9","impliedFormat":1},{"version":"58d91c410f31f4dd6fa8d50ad10b4ae9a8d1789306e73a5fbe8abea6a593099b","impliedFormat":1},{"version":"7ca6bb19f016eadcff4eb8993a37ba89be7b42bdf0dbc630d0b0db34e5fc7df0","impliedFormat":1},{"version":"d8d5061cb4521772457a2a3f0fcec028669990daceea78068bc968620641cd25","impliedFormat":1},{"version":"1f0fa44d2aa1edf989a50670c4c92206ac32f1a5acf26a030466cff77583d1cf","impliedFormat":1},{"version":"1f129869a0ee2dcb7ea9a92d6bc8ddf2c2cdaf2d244eec18c3a78efeb5e05c83","impliedFormat":1},{"version":"843e98d09268e2b5b9e6ff60487cf68f4643a72c2e55f7c29b35d1091a4ee4e9","impliedFormat":1},{"version":"4502caaa3fff6c9766bfc145b1b586ef26d53e5f104271db046122b8eef57fd1","impliedFormat":1},{"version":"382f061a24f63ef8bfb1f7a748e1a2568ea62fb91ed1328901a6cf5ad129d61c","impliedFormat":1},{"version":"6927ceeb41bb451f47593de0180c8ff1be7403965d10dc9147ee8d5c91372fff","impliedFormat":1},{"version":"ef4c9ef3ec432ccbf6508f8aa12fbb8b7f4d535c8b484258a3888476de2c6c36","impliedFormat":1},{"version":"77ff2aeb024d9e1679c00705067159c1b98ccac8310987a0bdaf0e38a6ca7333","impliedFormat":1},{"version":"2f28371c56e5d70b77de202e27995373bc46dc07336abbed23c7d74d89910677","impliedFormat":1},{"version":"952c4a8d2338e19ef26c1c0758815b1de6c082a485f88368f5bece1e555f39d4","impliedFormat":1},{"version":"1d953cb875c69aeb1ec8c58298a5226241c6139123b1ff885cedf48ac57b435c","impliedFormat":1},{"version":"1a80e164acd9ee4f3e2a919f9a92bfcdb3412d1fe680b15d60e85eadbaa460f8","impliedFormat":1},{"version":"f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","impliedFormat":1},{"version":"a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","impliedFormat":1},{"version":"ee1969bda02bd6c3172c259d33e9ea5456f1662a74e0acf9fa422bb38263f535","impliedFormat":1},{"version":"f1a5a12e04ad1471647484e7ff11e36eef7960f54740f2e60e17799d99d6f5ab","impliedFormat":1},{"version":"672c1ebc4fa15a1c9b4911f1c68de2bc889f4d166a68c5be8f1e61f94014e9d8","impliedFormat":1},{"version":"ed1b2a459aa469d032f0bd482f4550d0bcd38e9e013532907eb30157054a52d7","impliedFormat":1},{"version":"5a0d920468aa4e792285943cadad77bcb312ba2acf1c665e364ada1b1ee56264","impliedFormat":1},{"version":"de54198142e582c1e26baa21c72321bcdde2a7c38b34cf18e246c7ff95bafd18","impliedFormat":1},{"version":"eccffdb59d6d42e3e773756e8bbe1fa8c23f261ef0cef052f3a8c0194dc6a0e0","impliedFormat":1},{"version":"2d98be5066df3ec9f217b93ef40abab987ec3b55b8f8756a43a081362a356e61","impliedFormat":1},{"version":"928f96b9948742cbaec33e1c34c406c127c2dad5906edb7df08e92b963500a41","impliedFormat":1},{"version":"a2e4333bf0c330ae26b90c68e395ad0a8af06121f1c977979c75c4a5f9f6bc29","impliedFormat":1},{"version":"f29768cdfdf7120ace7341b42cdcf1a215933b65da9b64784e9d5b8c7b0e1d3d","impliedFormat":1},{"version":"2cbf557a03f80df74106cb7cfb38386db82725b720b859e511bdead881171c32","impliedFormat":1},{"version":"e68a372f031a576af235bb036e9fa655c731039145e21f2e53cf9ec05987720a","impliedFormat":1},{"version":"5718274a266c16d3fbe9cd44c0e591ca981c374904137807e0ee7d601524deda","impliedFormat":1},{"version":"dd9694eecd70a405490ad23940ccd8979a628f1d26928090a4b05a943ac61714","impliedFormat":1},{"version":"42ca885a3c8ffdffcd9df252582aef9433438cf545a148e3a5e7568ca8575a56","impliedFormat":1},{"version":"309586820e31406ed70bb03ea8bca88b7ec15215e82d0aa85392da25d0b68630","impliedFormat":1},{"version":"98245fec2e886e8eb5398ce8f734bd0d0b05558c6633aefc09b48c4169596e4e","impliedFormat":1},{"version":"1410d60fe495685e97ed7ca6ff8ac6552b8c609ebe63bd97e51b7afe3c75b563","impliedFormat":1},{"version":"c6843fd4514c67ab4caf76efab7772ceb990fbb1a09085fbcf72b4437a307cf7","impliedFormat":1},{"version":"03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","impliedFormat":1},{"version":"3238e3ed704fe1ba3d523a8a5c8ffd8ca3250a8898cf75ac5e6b13d132a8d226","impliedFormat":1},{"version":"7d8f40a7c4cc81db66ac8eaf88f192996c8a5542c192fdebb7a7f2498c18427d","impliedFormat":1},{"version":"c69ecf92a8a9fb3e4019e6c520260e4074dc6cb0044a71909807b8e7cc05bb65","impliedFormat":1},{"version":"b0cefbc19466a38f5883079f0845babcb856637f7d4f3f594b746d39b74390f7","impliedFormat":1},{"version":"16219e7997bfc39ed9e0bb5f068646c0cdc15de5658d1263e2b44adf0a94ebef","impliedFormat":1},{"version":"4ccedab1527b8bf338730810280cce9f7caf450f1e9e2a6cbabaa880d80d4cf9","impliedFormat":1},{"version":"1f0ee5ddb64540632c6f9a5b63e242b06e49dd6472f3f5bd7dfeb96d12543e15","impliedFormat":1},{"version":"18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","impliedFormat":1},{"version":"2d3f23c577a913d0f396184f31998507e18c8712bc74303a433cf47f94fd7e07","impliedFormat":1},{"version":"0f2c77683296ca2d0e0bee84f8aa944a05df23bc4c5b5fef31dda757e75f660f","impliedFormat":1},{"version":"b848b40bfeb73dfe2e782c5b7588ef521010a3d595297e69386670cbde6b4d82","impliedFormat":1},{"version":"aa79b64f5b3690c66892f292e63dfe3e84eb678a886df86521f67c109d57a0c5","impliedFormat":1},{"version":"a692e092c3b9860c9554698d84baf308ba51fc8f32ddd6646e01a287810b16c6","impliedFormat":1},{"version":"64df9b13259fe3e3fea8ed9cdce950b7a0d40859d706c010eeea8c8d353d53fd","impliedFormat":1},{"version":"1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400","impliedFormat":1},{"version":"d2e3a1de4fde9291f9fb3b43672a8975a83e79896466f1af0f50066f78dbf39e","impliedFormat":1},{"version":"e37650b39727a6cf036c45a2b6df055e9c69a0afdd6dbab833ab957eb7f1a389","impliedFormat":1},{"version":"84f47c1a2ccfe41176fb5eb37e29fe7f44dbf7b9234d84811b637853b8da705f","impliedFormat":1},{"version":"dd8ded51112dedf953e09e211e423bcc9c8a3943b4b42d0c66c89466e55635a6","impliedFormat":1},{"version":"31073e7d0e51f33b1456ff2ab7f06546c95e24e11c29d5b39a634bc51f86d914","impliedFormat":1},{"version":"9ce0473b0fbaf7287afb01b6a91bd38f73a31093e59ee86de1fd3f352f3fc817","impliedFormat":1},{"version":"6f0d708924c3c4ee64b0fef8f10ad2b4cb87aa70b015eb758848c1ea02db0ed7","impliedFormat":1},{"version":"6addbb18f70100a2de900bace1c800b8d760421cdd33c1d69ee290b71e28003d","impliedFormat":1},{"version":"37569cc8f21262ca62ec9d3aa8eb5740f96e1f325fad3d6aa00a19403bd27b96","impliedFormat":1},{"version":"fa18c6fe108031717db1ada404c14dc75b8b38c54daa3bb3af4c4999861ca653","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":"a5ca6512e1e0f4aafbbdbc829a3bb5654529aaf299ab760c351e6e6b406548fb","impliedFormat":1},{"version":"e79e530a8216ee171b4aca8fc7b99bd37f5e84555cba57dc3de4cd57580ff21a","impliedFormat":1},{"version":"ceb2c0bc630cca2d0fdd48b0f48915d1e768785efaabf50e31c8399926fee5b1","impliedFormat":1},{"version":"f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","impliedFormat":1},{"version":"12aeda564ee3f1d96ac759553d6749534fafeb2e5142ea2867f22ed39f9d3260","impliedFormat":1},{"version":"4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","impliedFormat":1},{"version":"1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","impliedFormat":1},{"version":"85d63aaff358e8390b666a6bc68d3f56985f18764ab05f750cb67910f7bccb1a","impliedFormat":1},{"version":"0a0bf0cb43af5e0ac1703b48325ebc18ad86f6bf796bdbe96a429c0e95ca4486","impliedFormat":1},{"version":"22fcfd509683e3edfaf0150c255f6afdf437fec04f033f56b43d66fe392e2ad3","impliedFormat":1},{"version":"f08d2151bd91cdaa152532d51af04e29201cfc5d1ea40f8f7cfca0eb4f0b7cf3","impliedFormat":1},{"version":"3d5d9aa6266ea07199ce0a1e1f9268a56579526fad4b511949ddb9f974644202","impliedFormat":1},{"version":"b9c889d8a4595d02ebb3d3a72a335900b2fe9e5b5c54965da404379002b4ac44","impliedFormat":1},{"version":"a3cd30ebae3d0217b6b3204245719fc2c2f29d03b626905cac7127e1fb70e79c","impliedFormat":1},{"version":"1502a23e43fd7e9976a83195dc4eaf54acaff044687e0988a3bd4f19fc26b02b","impliedFormat":1},{"version":"c6e23745504b016ed3ffbe637d69bcc2145d598ecd8bafa4892cafbac09d5fcf","impliedFormat":1},{"version":"2132bf9bdbf54ebcae1ec755ec780a6db1825c306bd6f3e0339d5c1da490f070","impliedFormat":1},{"version":"d9c6f10eebf03d123396d4fee1efbe88bc967a47655ec040ffe7e94271a34fc7","impliedFormat":1},{"version":"380b4fe5dac74984ac6a58a116f7726bede1bdca7cec5362034c0b12971ac9c1","impliedFormat":1},{"version":"00de72aa7abede86b016f0b3bfbf767a08b5cff060991b0722d78b594a4c2105","impliedFormat":1},{"version":"710e09a2711b011cc9681d237da0c1c450d12551b0d21c764826822e548b5464","impliedFormat":1},{"version":"4f5bbef956920cfd90f2cbffccb3c34f8dfc64faaba368d9d41a46925511b6b0","impliedFormat":1},{"version":"11e4e2be18385fa1b4ffa0244c6c626f767058f445bbc66f1c7155cc8e1ec5b4","impliedFormat":1},{"version":"f47280c45ddbc8aa4909396e1d8b526f64dfad4a845aec2356a6c1dc7b6fe722","impliedFormat":1},{"version":"7b7f39411329342a28ea19a4ca3aa4c7f7d888c9f01a411b05e4126280026ea6","impliedFormat":1},{"version":"ba3ef8ea20ac0186dc0d58c1e96ffaf84327d09c377fd82f0ae99236e3430c3a","impliedFormat":1},{"version":"d66e97aa992c0fe797878bcad6257562829582f5f3a2842df71e613e60f7b778","impliedFormat":1},{"version":"a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","impliedFormat":1},{"version":"789110b95e963c99ace4e9ad8b60901201ddc4cab59f32bde5458c1359a4d887","impliedFormat":1},{"version":"92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","impliedFormat":1},{"version":"72bbfa838556113625a605be08f9fed6a4aed73ba03ab787badb317ab6f3bcd7","impliedFormat":1},{"version":"d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","impliedFormat":1},{"version":"32ac4394bb4b0348d46211f2575f22ab762babb399aca1e34cf77998cdef73b2","impliedFormat":1},{"version":"665c7850d78c30326b541d50c4dfad08cea616a7f58df6bb9c4872dd36778ad0","impliedFormat":1},{"version":"1567c6dcf728b0c1044606f830aafd404c00590af56d375399edef82e9ddce92","impliedFormat":1},{"version":"c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","impliedFormat":1},{"version":"e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","impliedFormat":1},{"version":"c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","impliedFormat":1},{"version":"d82c245bfb76da44dd573948eca299ff75759b9714f8410468d2d055145a4b64","impliedFormat":1},{"version":"25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","impliedFormat":1},{"version":"5a4d0b09de173c391d5d50064fc20166becc194248b1ce738e8a56af5196d28c","impliedFormat":1},{"version":"0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","impliedFormat":1},{"version":"fc9ed6f3665b53b9b258ae7eda6394d8387e17fab6d85f48f4603d19633b006b","impliedFormat":1},{"version":"40fbe20b66b8bb3589bf9851283daa52d7aecc3bcae762b2859c1a7093895d61","impliedFormat":1},{"version":"db08c1807e3ae065930d88a3449d926273816d019e6c2a534e82da14e796686d","impliedFormat":1},{"version":"9e5c7463fc0259a38938c9afbdeda92e802cff87560277fd3e385ad24663f214","impliedFormat":1},{"version":"ef83477cca76be1c2d0539408c32b0a2118abcd25c9004f197421155a4649c37","impliedFormat":1},{"version":"b6bf369deed4ac7d681a20efee316018fbfdd044e9d3cd4ec79fdf5821688035","impliedFormat":1},{"version":"d38d37382c93f620216ed2e44e6757d395c141251f244d22aa0983542ec699af","impliedFormat":1},"4a25cc74ceeb7e4859fcd9932feebde34e754c39feabcd50fc1d01eb0dc8aeb0",{"version":"326759f43d598534059e33143843fd283ea0a51fc6cb9f38a576ce49553da354","impliedFormat":99},{"version":"7746188a1c4f43056697c5d595e973194a8be1f00f4d995380030016fee36506","impliedFormat":99},{"version":"a5861f39257a80b10f51f4d8ead817fbd5833a34c512f67281ceac909c10b3e2","impliedFormat":99},{"version":"dd02334867777bd630729fa27e5809ce54a21b82a5861b8ea3a260d40074fa2b","impliedFormat":99},{"version":"02d7939ef02782a45b9aeee121730423e7f44febe444d3e300633f8e9311e205","impliedFormat":99},{"version":"4bb27a5391b68e96c06e8ef5d195aa5fb40a3bf2e3f9e91f754fe0a51027d911","impliedFormat":99},{"version":"d8eb3f146c46e44a581fffba04f6f11068fab9f2f46e610a873e8dc23989ad54","impliedFormat":99},{"version":"0ebf5c9504413f74e59f2df1113d6d4f825718da6f99a52bb84b17f8f1c61f6a","impliedFormat":99},{"version":"b88deb871154baba626b38f2748e9af6991d8dd593a812b9cc3667bbfb64257f","impliedFormat":99},{"version":"7246c9724cf82b0e10ae60fbfd22a21c4730f23da27bdd81b69d75f36edff61a","impliedFormat":99},{"version":"702285aae357b822697a9535bf53aa3b0861acf208c6724e05526965fb371a62","impliedFormat":99},{"version":"4d4aa283941fe2228d4a8a1abe1afd4b59266a90b43e64e6fbb7ce0a4aed66dc","impliedFormat":99},{"version":"1426d7d581b5325ca4c19dbf89b1d65a4cd1810bc45cc53e2bcd3deadca40fc1","impliedFormat":99},{"version":"7b887d8539d6c33c14089110b6756a4ea608e5ea5291b939bbda277be9b729cf","impliedFormat":99},{"version":"edf1438892c4812108868d916a16957ad4ea091f8a4001f7b44c7f4c764dc34e","impliedFormat":99},{"version":"db4922e7f9574af4c2875504da886905a46bbc3e95469209213c254a922ce3fa","impliedFormat":99},{"version":"8358544ecefdda8e12c2f5e822cb920bdd6b6914f9cf073cdb5f6e8d20a217fd","impliedFormat":99},{"version":"64c930312b8dc6e89f81f8508a39ed098438f3fc89d5fd6d388bb635c3af7c4a","impliedFormat":99},{"version":"04b2bf3e07d44b2ad08c641bffdcee23b4865a1b84011e7febdcd4669ddc2910","impliedFormat":99},{"version":"c5fd8ff68f0d6056a4b349724c3bd4e734495e23f981ecf657fc29e37e0733c2","impliedFormat":99},{"version":"3f6caddc36d360a7b51ab22209242449f56f18651aa25109f77cd038c355fad6","impliedFormat":99},{"version":"f40319db1be77b53942cfa1444c11705b5a99379137f564cb7cfe7ad4f20d454","impliedFormat":99},{"version":"9a619a01ad912542884775be55d5c215e52feafc1e3dcb677e5e6fe5ee383287","impliedFormat":99},{"version":"2fa734ac430fc8a87f4a7c1d2cfbf1e665de87c0280293fe1dfa1f0c2e2a2283","impliedFormat":99},{"version":"90681949fee71c852704b230feeb2348a4e98b9e77766ccb3cf0ef5085bdb14e","impliedFormat":99},{"version":"60a8d51fba41d2ed942c3ad9a009b5b88cb9825af332ac9f9ea0d65425b59648","impliedFormat":99},{"version":"8a514bd9f56b476c686bddddcf0ef7b96289cdd11ae7f2f110565fac31eacd35","impliedFormat":99},{"version":"1315261a5f18b5dac3e7f4c4f80be42145e6c7095e54fdeed7deecda33a0191b","impliedFormat":99},{"version":"09eefc2ac900a52f702288843df64a417f22e40157d85e4b4644774a104d5c9f","impliedFormat":99},{"version":"65c2f848f352ca86cb5e2d9304414dd6c12b530465321d85b9ef3b1f26b6ddad","impliedFormat":99},{"version":"35cf770ee6533a062b4abe3b5e17c1ebecc27e76dbe55362f96bdc817d837106","impliedFormat":99},{"version":"f2a1e48e4b248f505735903a5539d978313b0a2fefeb4076e679954f872a817c","impliedFormat":99},{"version":"7a0c98331e493fe568607e2d2c46fb771098041df4f3bf7e79b2c7eaed7f57e5","impliedFormat":99},{"version":"b120f11164b9755802b3be0e6b6dc1eef8f1d3826bb111bfcefa7e16f32c8a1a","impliedFormat":99},{"version":"5079e87f97deefb9e88a9d48cf354bd3549719247357b53ada2edd77e283d5d5","impliedFormat":99},{"version":"92070a19cc7884c0c177f35f6ee4732172e4f98682ce234f192c2bdf11b0cbb0","impliedFormat":99},{"version":"1725a89e1384a677449e70f0ad7a1f71e17a1dfa2dc13a21cc1eeb75dad9f649","impliedFormat":99},{"version":"44ff65a3d557226c5ebc0bd4d0d76419017e02f91c2e1099b8f179783bd7daaa","impliedFormat":99},{"version":"f8a5c1977aeae947b54ddbba133a4f330bdac31b893fb64543117db9e8a92f39","impliedFormat":1},"2a0394e7174ae2bb21fdaacc4b5c9d2ec482cecc32754277db4f59012afcc05d",{"version":"9971931daaf18158fc38266e838d56eb5d9d1f13360b1181bb4735a05f534c03","impliedFormat":99},{"version":"50cf7a23fc93928995caec8d7956206990f82113beeb6b3242dae8124edc3ca0","impliedFormat":99},{"version":"cb8e6466ed1509d4819ae07c41f39897d9ce08b63692f3e6bce06f10d98b8157","impliedFormat":99},{"version":"e5b2f4da1ac3dac4aaa39a10a633493878ae737d476f5693c3d6861a62319449","impliedFormat":99},{"version":"3bf80ef5ee5a2d23bf083735dcffc0d1e5aeeab5d14e29d84c30d9a6d8649ed6","impliedFormat":99},{"version":"4f34a608833285c2fe5de094a484fe793081b50d10009df96c3b3585bc0f2dcd","impliedFormat":99},{"version":"352031ac2e53031b69a09355e09ad7d95361edf32cc827cfe2417d80247a5a50","impliedFormat":99},{"version":"853b8bdb5da8c8e5d31e4d715a8057d8e96059d6774b13545c3616ed216b890c","impliedFormat":99},{"version":"147812d33deee170e1cdab699f91a97309524c85867530a8485fdd521788bf3d","impliedFormat":99},{"version":"ff662536934906f04b9b1bc87a38af2a20273d2a8fe0f12d1891cf8e98043221","impliedFormat":99},{"version":"71ed8ea79e33c1529e89780e6ce491acdd4480ae24c380c60ba2fb694bd53dc3","impliedFormat":99},{"version":"692ab3e2f02c8a1a233e5a99e08c680eb608ce7166db03e094652ffd96f880c0","impliedFormat":99},{"version":"54fdb2ae0c92a76a7ba795889c793fff1e845fab042163f98bc17e5141bbe5f3","impliedFormat":99},{"version":"4b3049a2c849f0217ff4def308637931661461c329e4cf36aeb31db34c4c0c64","impliedFormat":99},{"version":"174b64363af0d3d9788584094f0f5a4fac30c869b536bb6bad9e7c3c9dce4c1d","impliedFormat":99},{"version":"94f4755c5f91cb042850cec965a4bcade3c15d93cdd90284f084c571805a4d91","impliedFormat":99},{"version":"998d9f1da9ec63fca4cc1acb3def64f03d6bd1df2da1519d9249c80cfe8fece6","impliedFormat":99},{"version":"b7d9ca4e3248f643fa86ff11872623fdc8ed2c6009836bec0e38b163b6faed0c","impliedFormat":99},{"version":"878a353da561e091b6ab35e36b4b2a29a88307d389e3ff95f1d5bdcfaa512e48","impliedFormat":99},{"version":"d4f7a7a5f66b9bc6fbfd53fa08dcf8007ff752064df816da05edfa35abd2c97c","impliedFormat":99},{"version":"1f38ecf63dead74c85180bf18376dc6bc152522ef3aedf7b588cadbbd5877506","impliedFormat":99},{"version":"89316bf786d1fb2d9ef999e2b4ffb7a9d66491d55a362e8f457b67a97f8b60f1","impliedFormat":99},{"version":"facde2bec0f59cf92f4635ece51b2c3fa2d0a3bbb67458d24af61e7e6b8f003c","impliedFormat":99},{"version":"4669194e4ca5f7c160833bbb198f25681e629418a6326aba08cf0891821bfe8f","impliedFormat":99},{"version":"f919471289119d2e8f71aba81869b01f30f790e8322cf5aa7e7dee8c8dadd00a","impliedFormat":99},{"version":"3b9f5af0e636b312ec712d24f611225188627838967191bf434c547b87bde906","impliedFormat":99},{"version":"e9bc0db0144701fab1e98c4d595a293c7c840d209b389144142f0adbc36b5ec2","impliedFormat":99},{"version":"7d1c3991ed26fec9d5faf20d689c1f3bab269e6abf6cf53513ae3a5b124a3f77","impliedFormat":99},{"version":"22da927a687c377d85c9e91de96e735f69ae3a6b88ebf3298cd5fd492149229f","signature":"760045ffba694bf8c6c1d6d045a1da1bef4f73a017a16d15f1de2a8946d68bcc"},"f108bccd9e272f0b806db147218ee9acd03e3377bd954d1c110cef9e15df078a","1e5da4a9e4e5a93c4341fab2042099d131af0a4bd68baf41ce4bbd811d4241be","8894c211c062b148ba3dd878f7f373a3795061dd5928166cb64590ae0cc08a0f","1df73985832c39284d27e811102e1eb6959c827246f1992ceeca9c45d8b55422","90c35fa93d62652556869fba8ac2509e097d8a96feca4a40e59d0dddba8e5aee","45e3c053214d9a6599b1d4f5f33b8895e37911f931fbc2b1f24d08131e0f5edf","7b5653563926112f81d65971472c785ec92f696bdfc337c48dcaacbfe842cb0c","39caab7e3b31f8b6953666bdccf360de3eff1de55016f5673877e5b51145abd1","229c0d3c98c52b770cbcd536caf3fc043955ac3e1aa2cde63e2452756f7fbafd","cbdbad21693afff2097b0f6706a039cd7f647cb9d136637602bd24cf9ab3f408","b8717c607f322bbc28dd4194d664c961afe7871d59b60a571cd6cdb6d9dbb911","5d9589853f34c85d28cae15ca388b5ddb499525e584b33d245559cdb2d937208","439c4c4937799c722de3202d121c21f3f3c9f1b20607e42cfced7febb37ec747","4710b82a3c30dbc3657fe8ddf73dd24c31af38cab4d3333d8c16e12966a86270","d74ec9bb3fd04f87f921beda48d2be0819831b497da32e444d4a890acfe8541b","f8b75df42a0c54a2741bea06d7a377469cb8e6d895d0f07b8bb2196fd9a5d008","f93eb25cfec7f86b6a36957003f516aee06488409dfaecbfd9ea9a51dbe0ab6a",{"version":"8c55f07be4de46bcba4a18b46600d77455fb0353738c3a0084cd1f632e1c5bb3","signature":"ce72b54a7477e761541f825b82e08fb56363ef038528d2d6c0cca1600169c580"},{"version":"e634f0890e63a11189093cb0c8b6772c6b074a8851e10014e0ee298daecce117","signature":"a47210e3036a5d8b2619f835d223d8be8127984d014c662b4c533a229205f579"},{"version":"8c0be130b9d5f5bf1b25042c301d6ba1532903c181f3643f6cc786ad5ee5e9f2","signature":"a1b9365e84885a8d8669fdb0e08786776cae94c49eebbff1b6f68f3f3bad202d"},{"version":"1372a73a8e322a4c9b2723473192a0c6e3ce73f6e9b755692999f3a30f6a6f93","signature":"4b1465b46e1b58c04c078cd18c8182cce86a70060263d1c6f805439760d97d7a"},{"version":"5bd9eb2c60613230173188b829ced7328244e4b9a06ea94d09bd820b65058745","signature":"c9c893e4a626d082dd578000a9f4182aab37fba31a5f2274f48f89e2d29974e7"},{"version":"e8179a4f1a6d9ffd0f1c7b54c693c86039acf0a2c6d67ec559345fc7406b64a3","signature":"03f5a1ca5be11d4cac8044c24f9bd0e61b8d781edd43bae2064ea3796b89a6c0"},{"version":"69c3874bceed3a13601ada6af4022968e59202ff36aaadae821fe49a246491f0","signature":"6023ac136d68b0a959c6fe99cec453c2a25de17a23e3b2a95b318cd1266d612b"},{"version":"051d61c7b219e3dbae1911f05ca6423b5ed62323580fd7b4bcf5c8fac48ef200","signature":"c2d6272118d0649f8da5d08c68a0394198c8e24873c0a11a7f8b90120050d54a"},{"version":"1b6803d36c57e0a9d0b1bd1f215f87a663417a42ecf7afb5a6639115d6df8755","signature":"07bb232f7bb7e6b7028bad096caceffa04c1c1d66915c78b873947bea81b9e5c"},{"version":"5c95cfe4f7622fd9bd0080e2bed7590423ba61cee7bdefbdb2522d1a8665637f","signature":"a3d63bd35dc04da2f45ee8f3d4eefe994604cbab3da480b163b5b4f92cc0527b"},{"version":"efe555924c0514486211bcc4e771f15f0da047f6821c471dc09f7eff2085ec00","signature":"f2a3581d600a0efec872bc398e94fa2e163ce0e751d261307faad9275e5e2ab2"},{"version":"b85961094a6a0bb6ac43803c54151c962b516369eb7a07b4a4da2e1da735c522","signature":"57e59b7a5149db08d5dfdfd9bbd3e28978974603fe3568174a708d16e719b512"},{"version":"776039455b829d44a37aff96136590d3d5d85494e04437018d8f840e3a917124","signature":"270f37e9ea8a8abb8a5ecdd0d560c9e787e024fc34f0fba2dd1b7ab7a4ad4c0e"},{"version":"d54e87158da05269dfe500dfbad84dce4b5d1e1d387454ac77f05ad5d1ab184e","signature":"eb689050da7347a12ab93060f722922f114843256645ccf060b24753676dc1c2"},{"version":"e4709597c5ccce3962312402493a2c96f756d03f47406953a5b7ebed2eaf00c7","signature":"e238b2d96babd9277f16dc7ab4378fb9a92e36f4180c90df1a6dc69912dbdc7f"}],"root":[310,[328,342]],"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":[[288,1],[284,2],[290,3],[286,4],[289,1],[285,4],[303,5],[301,5],[302,6],[309,7],[300,8],[308,9],[293,8],[291,10],[307,11],[304,10],[306,8],[305,10],[299,10],[298,10],[292,8],[294,12],[296,8],[297,8],[295,8],[61,13],[62,9],[279,14],[244,15],[255,15],[259,16],[266,15],[267,15],[258,17],[240,18],[115,19],[177,20],[149,21],[133,22],[187,23],[215,24],[217,25],[216,26],[171,27],[170,28],[173,29],[172,30],[218,22],[222,31],[220,32],[91,33],[92,33],[134,34],[184,35],[196,36],[98,19],[235,37],[118,38],[117,39],[200,40],[202,41],[96,42],[204,43],[209,44],[94,45],[169,46],[213,47],[155,48],[230,19],[208,49],[106,50],[126,51],[122,52],[123,53],[125,54],[121,55],[120,56],[124,57],[109,58],[110,59],[113,60],[154,47],[189,61],[188,62],[219,32],[223,63],[221,64],[176,38],[119,65],[194,66],[150,67],[136,68],[130,69],[180,70],[181,70],[100,71],[111,72],[152,73],[116,19],[199,74],[238,75],[142,22],[156,76],[224,26],[226,77],[225,77],[146,78],[148,79],[158,22],[201,19],[139,22],[99,80],[140,81],[143,22],[231,82],[212,83],[163,83],[186,84],[164,83],[165,83],[185,48],[151,85],[135,86],[141,87],[227,32],[229,63],[228,64],[214,22],[205,88],[234,89],[178,90],[191,91],[145,92],[144,93],[114,22],[157,22],[207,94],[127,22],[203,19],[105,83],[75,95],[65,96],[67,97],[73,98],[68,99],[71,95],[74,100],[66,101],[72,102],[327,103],[325,104],[326,105],[80,106],[83,107],[77,108],[79,109],[78,110],[76,111],[82,108],[334,112],[335,113],[342,114],[330,115],[331,116],[336,117],[328,118],[329,119],[337,120],[341,121],[332,122],[333,123],[310,124],[338,125],[339,126],[340,127],[320,128],[324,129],[312,130],[317,131],[311,132],[316,133],[313,134],[318,135],[321,136],[319,137],[315,138],[314,139],[322,140],[323,111],[281,141],[241,142]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,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,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342],"latestChangedDtsFile":"./src/index.d.ts","checkPending":true,"version":"5.7.2"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/react",
3
3
  "type": "module",
4
- "version": "0.0.7",
4
+ "version": "0.6.0",
5
5
  "author": {
6
6
  "name": "unnoq",
7
7
  "email": "contact@unnoq.com",
@@ -17,9 +17,6 @@
17
17
  "keywords": [
18
18
  "unnoq"
19
19
  ],
20
- "publishConfig": {
21
- "access": "public"
22
- },
23
20
  "exports": {
24
21
  ".": {
25
22
  "types": "./dist/src/index.d.ts",
@@ -35,17 +32,17 @@
35
32
  "src"
36
33
  ],
37
34
  "peerDependencies": {
38
- "@tanstack/react-query": "^5.59.9",
39
- "react": "^18.3.1 || ^19.0.0"
35
+ "@tanstack/react-query": ">=5.59.0",
36
+ "react": ">=18.3.0",
37
+ "@orpc/contract": "0.6.0",
38
+ "@orpc/client": "0.6.0",
39
+ "@orpc/server": "0.6.0"
40
40
  },
41
41
  "dependencies": {
42
- "@orpc/client": "0.0.6",
43
- "@orpc/shared": "0.1.1"
42
+ "@orpc/shared": "0.6.0"
44
43
  },
45
44
  "devDependencies": {
46
- "zod": "^3.23.8",
47
- "@orpc/contract": "0.1.3",
48
- "@orpc/server": "0.3.1"
45
+ "zod": "^3.23.8"
49
46
  },
50
47
  "scripts": {
51
48
  "build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
@@ -1,4 +1,3 @@
1
- import type {} from '@orpc/client'
2
1
  import type {
3
2
  ContractProcedure,
4
3
  ContractRouter,