@kubb/plugin-vue-query 5.0.0-alpha.9 → 5.0.0-beta.100
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/LICENSE +17 -10
- package/README.md +38 -23
- package/dist/index.cjs +1651 -140
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +358 -6
- package/dist/index.js +1618 -138
- package/dist/index.js.map +1 -1
- package/package.json +48 -76
- package/dist/components-Yjoe78Y7.cjs +0 -1119
- package/dist/components-Yjoe78Y7.cjs.map +0 -1
- package/dist/components-_AMBl0g-.js +0 -1029
- package/dist/components-_AMBl0g-.js.map +0 -1
- package/dist/components.cjs +0 -9
- package/dist/components.d.ts +0 -242
- package/dist/components.js +0 -2
- package/dist/generators-CR34GjVu.js +0 -661
- package/dist/generators-CR34GjVu.js.map +0 -1
- package/dist/generators-DH8VkK1q.cjs +0 -678
- package/dist/generators-DH8VkK1q.cjs.map +0 -1
- package/dist/generators.cjs +0 -5
- package/dist/generators.d.ts +0 -511
- package/dist/generators.js +0 -2
- package/dist/types-CgDFUvfZ.d.ts +0 -211
- package/src/components/InfiniteQuery.tsx +0 -208
- package/src/components/InfiniteQueryOptions.tsx +0 -249
- package/src/components/Mutation.tsx +0 -185
- package/src/components/MutationKey.tsx +0 -1
- package/src/components/Query.tsx +0 -208
- package/src/components/QueryKey.tsx +0 -94
- package/src/components/QueryOptions.tsx +0 -185
- package/src/components/index.ts +0 -7
- package/src/generators/index.ts +0 -3
- package/src/generators/infiniteQueryGenerator.tsx +0 -213
- package/src/generators/mutationGenerator.tsx +0 -176
- package/src/generators/queryGenerator.tsx +0 -191
- package/src/index.ts +0 -2
- package/src/plugin.ts +0 -218
- package/src/types.ts +0 -176
- /package/dist/{chunk--u3MIqq1.js → rolldown-runtime-C0LytTxp.js} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"generators-DH8VkK1q.cjs","names":["pluginClientName","pluginTsName","pluginZodName","File","path","QueryKey","Client","InfiniteQueryOptions","InfiniteQuery","pluginTsName","pluginZodName","pluginClientName","File","path","MutationKey","Client","Mutation","pluginClientName","pluginTsName","pluginZodName","File","path","QueryKey","Client","QueryOptions","Query"],"sources":["../src/generators/infiniteQueryGenerator.tsx","../src/generators/mutationGenerator.tsx","../src/generators/queryGenerator.tsx"],"sourcesContent":["import path from 'node:path'\nimport { usePluginDriver } from '@kubb/core/hooks'\nimport { pluginClientName } from '@kubb/plugin-client'\nimport { Client } from '@kubb/plugin-client/components'\nimport { createReactGenerator } from '@kubb/plugin-oas/generators'\nimport { useOas, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { getBanner, getFooter } from '@kubb/plugin-oas/utils'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\nimport { File } from '@kubb/react-fabric'\nimport { difference } from 'remeda'\nimport { InfiniteQuery, InfiniteQueryOptions, QueryKey } from '../components'\nimport type { PluginVueQuery } from '../types'\n\nexport const infiniteQueryGenerator = createReactGenerator<PluginVueQuery>({\n name: 'vue-infinite-query',\n Operation({ config, operation, generator, plugin }) {\n const {\n options,\n options: { output },\n } = plugin\n const driver = usePluginDriver()\n\n const oas = useOas()\n const { getSchemas, getName, getFile } = useOperationManager(generator)\n\n const isQuery = typeof options.query === 'boolean' ? true : options.query?.methods.some((method) => operation.method === method)\n const isMutation = difference(options.mutation ? options.mutation.methods : [], options.query ? options.query.methods : []).some(\n (method) => operation.method === method,\n )\n const isInfinite = isQuery && !!options.infinite\n const importPath = options.query ? options.query.importPath : '@tanstack/vue-query'\n\n const query = {\n name: getName(operation, {\n type: 'function',\n prefix: 'use',\n suffix: 'infinite',\n }),\n typeName: getName(operation, { type: 'type' }),\n file: getFile(operation, { prefix: 'use', suffix: 'infinite' }),\n }\n\n const hasClientPlugin = !!driver.getPluginByName(pluginClientName)\n // Class-based clients are not compatible with query hooks, so we generate inline clients\n const shouldUseClientPlugin = hasClientPlugin && options.client.clientType !== 'class'\n const client = {\n name: shouldUseClientPlugin\n ? getName(operation, {\n type: 'function',\n pluginName: pluginClientName,\n })\n : getName(operation, {\n type: 'function',\n suffix: 'infinite',\n }),\n file: getFile(operation, { pluginName: pluginClientName }),\n }\n\n const queryOptions = {\n name: getName(operation, {\n type: 'function',\n suffix: 'InfiniteQueryOptions',\n }),\n }\n\n const queryKey = {\n name: getName(operation, { type: 'const', suffix: 'InfiniteQueryKey' }),\n typeName: getName(operation, {\n type: 'type',\n suffix: 'InfiniteQueryKey',\n }),\n }\n\n const type = {\n file: getFile(operation, { pluginName: pluginTsName }),\n //todo remove type?\n schemas: getSchemas(operation, {\n pluginName: pluginTsName,\n type: 'type',\n }),\n }\n\n const zod = {\n file: getFile(operation, { pluginName: pluginZodName }),\n schemas: getSchemas(operation, {\n pluginName: pluginZodName,\n type: 'function',\n }),\n }\n\n if (!isQuery || isMutation || !isInfinite) {\n return null\n }\n\n return (\n <File\n baseName={query.file.baseName}\n path={query.file.path}\n meta={query.file.meta}\n banner={getBanner({ oas, output, config: driver.config })}\n footer={getFooter({ oas, output })}\n >\n {options.parser === 'zod' && (\n <File.Import name={[zod.schemas.response.name, zod.schemas.request?.name].filter(Boolean)} root={query.file.path} path={zod.file.path} />\n )}\n {options.client.importPath ? (\n <>\n {!shouldUseClientPlugin && <File.Import name={'fetch'} path={options.client.importPath} />}\n <File.Import name={['Client', 'RequestConfig', 'ResponseErrorConfig']} path={options.client.importPath} isTypeOnly />\n {options.client.dataReturnType === 'full' && <File.Import name={['ResponseConfig']} path={options.client.importPath} isTypeOnly />}\n </>\n ) : (\n <>\n {!shouldUseClientPlugin && (\n <File.Import name={['fetch']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')} />\n )}\n <File.Import\n name={['Client', 'RequestConfig', 'ResponseErrorConfig']}\n root={query.file.path}\n path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')}\n isTypeOnly\n />\n {options.client.dataReturnType === 'full' && (\n <File.Import name={['ResponseConfig']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')} isTypeOnly />\n )}\n </>\n )}\n <File.Import name={['toValue']} path=\"vue\" />\n <File.Import name={['MaybeRefOrGetter']} path=\"vue\" isTypeOnly />\n {shouldUseClientPlugin && <File.Import name={[client.name]} root={query.file.path} path={client.file.path} />}\n {!shouldUseClientPlugin && (\n <File.Import name={['buildFormData']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/config.ts')} />\n )}\n <File.Import\n name={[\n type.schemas.request?.name,\n type.schemas.response.name,\n type.schemas.pathParams?.name,\n type.schemas.queryParams?.name,\n type.schemas.headerParams?.name,\n ...(type.schemas.statusCodes?.map((item) => item.name) || []),\n ].filter(Boolean)}\n root={query.file.path}\n path={type.file.path}\n isTypeOnly\n />\n <QueryKey\n name={queryKey.name}\n typeName={queryKey.typeName}\n operation={operation}\n paramsCasing={options.paramsCasing}\n pathParamsType={options.pathParamsType}\n typeSchemas={type.schemas}\n transformer={options.queryKey}\n />\n {!shouldUseClientPlugin && (\n <Client\n name={client.name}\n baseURL={options.client.baseURL}\n operation={operation}\n typeSchemas={type.schemas}\n zodSchemas={zod.schemas}\n dataReturnType={options.client.dataReturnType || 'data'}\n paramsCasing={options.client?.paramsCasing || options.paramsCasing}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n parser={options.parser}\n />\n )}\n {options.infinite && (\n <>\n <File.Import name={['InfiniteData']} isTypeOnly path={importPath} />\n <File.Import name={['infiniteQueryOptions']} path={importPath} />\n <InfiniteQueryOptions\n name={queryOptions.name}\n clientName={client.name}\n queryKeyName={queryKey.name}\n typeSchemas={type.schemas}\n paramsType={options.paramsType}\n paramsCasing={options.paramsCasing}\n pathParamsType={options.pathParamsType}\n dataReturnType={options.client.dataReturnType || 'data'}\n cursorParam={options.infinite.cursorParam}\n nextParam={options.infinite.nextParam}\n previousParam={options.infinite.previousParam}\n initialPageParam={options.infinite.initialPageParam}\n queryParam={options.infinite.queryParam}\n />\n </>\n )}\n {options.infinite && (\n <>\n <File.Import name={['useInfiniteQuery']} path={importPath} />\n <File.Import name={['QueryKey', 'QueryClient', 'UseInfiniteQueryOptions', 'UseInfiniteQueryReturnType']} path={importPath} isTypeOnly />\n <InfiniteQuery\n name={query.name}\n queryOptionsName={queryOptions.name}\n typeSchemas={type.schemas}\n paramsCasing={options.paramsCasing}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n operation={operation}\n dataReturnType={options.client.dataReturnType || 'data'}\n queryKeyName={queryKey.name}\n queryKeyTypeName={queryKey.typeName}\n />\n </>\n )}\n </File>\n )\n },\n})\n","import path from 'node:path'\nimport { usePluginDriver } from '@kubb/core/hooks'\nimport { pluginClientName } from '@kubb/plugin-client'\nimport { Client } from '@kubb/plugin-client/components'\nimport { createReactGenerator } from '@kubb/plugin-oas/generators'\nimport { useOas, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { getBanner, getFooter } from '@kubb/plugin-oas/utils'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\nimport { File } from '@kubb/react-fabric'\nimport { difference } from 'remeda'\nimport { Mutation, MutationKey } from '../components'\nimport type { PluginVueQuery } from '../types'\n\nexport const mutationGenerator = createReactGenerator<PluginVueQuery>({\n name: 'vue-query',\n Operation({ config, operation, generator, plugin }) {\n const {\n options,\n options: { output },\n } = plugin\n const driver = usePluginDriver()\n\n const oas = useOas()\n const { getSchemas, getName, getFile } = useOperationManager(generator)\n\n const isQuery = !!options.query && options.query?.methods.some((method) => operation.method === method)\n const isMutation =\n options.mutation !== false &&\n !isQuery &&\n difference(options.mutation ? options.mutation.methods : [], options.query ? options.query.methods : []).some((method) => operation.method === method)\n\n const importPath = options.mutation ? options.mutation.importPath : '@tanstack/vue-query'\n\n const mutation = {\n name: getName(operation, { type: 'function', prefix: 'use' }),\n typeName: getName(operation, { type: 'type' }),\n file: getFile(operation, { prefix: 'use' }),\n }\n\n const type = {\n file: getFile(operation, { pluginName: pluginTsName }),\n //todo remove type?\n schemas: getSchemas(operation, { pluginName: pluginTsName, type: 'type' }),\n }\n\n const zod = {\n file: getFile(operation, { pluginName: pluginZodName }),\n schemas: getSchemas(operation, { pluginName: pluginZodName, type: 'function' }),\n }\n\n const hasClientPlugin = !!driver.getPluginByName(pluginClientName)\n // Class-based clients are not compatible with query hooks, so we generate inline clients\n const shouldUseClientPlugin = hasClientPlugin && options.client.clientType !== 'class'\n const client = {\n name: shouldUseClientPlugin\n ? getName(operation, {\n type: 'function',\n pluginName: pluginClientName,\n })\n : getName(operation, {\n type: 'function',\n }),\n file: getFile(operation, { pluginName: pluginClientName }),\n }\n\n const mutationKey = {\n name: getName(operation, { type: 'const', suffix: 'MutationKey' }),\n typeName: getName(operation, { type: 'type', suffix: 'MutationKey' }),\n }\n\n if (!isMutation) {\n return null\n }\n\n return (\n <File\n baseName={mutation.file.baseName}\n path={mutation.file.path}\n meta={mutation.file.meta}\n banner={getBanner({ oas, output, config: driver.config })}\n footer={getFooter({ oas, output })}\n >\n {options.parser === 'zod' && (\n <File.Import name={[zod.schemas.response.name, zod.schemas.request?.name].filter(Boolean)} root={mutation.file.path} path={zod.file.path} />\n )}\n {options.client.importPath ? (\n <>\n {!shouldUseClientPlugin && <File.Import name={'fetch'} path={options.client.importPath} />}\n <File.Import name={['Client', 'RequestConfig', 'ResponseErrorConfig']} path={options.client.importPath} isTypeOnly />\n {options.client.dataReturnType === 'full' && <File.Import name={['ResponseConfig']} path={options.client.importPath} isTypeOnly />}\n </>\n ) : (\n <>\n {!shouldUseClientPlugin && (\n <File.Import name={['fetch']} root={mutation.file.path} path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')} />\n )}\n <File.Import\n name={['Client', 'RequestConfig', 'ResponseErrorConfig']}\n root={mutation.file.path}\n path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')}\n isTypeOnly\n />\n {options.client.dataReturnType === 'full' && (\n <File.Import\n name={['ResponseConfig']}\n root={mutation.file.path}\n path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')}\n isTypeOnly\n />\n )}\n </>\n )}\n <File.Import name={['MaybeRefOrGetter']} path=\"vue\" isTypeOnly />\n {shouldUseClientPlugin && <File.Import name={[client.name]} root={mutation.file.path} path={client.file.path} />}\n {!shouldUseClientPlugin && (\n <File.Import name={['buildFormData']} root={mutation.file.path} path={path.resolve(config.root, config.output.path, '.kubb/config.ts')} />\n )}\n <File.Import\n name={[\n type.schemas.request?.name,\n type.schemas.response.name,\n type.schemas.pathParams?.name,\n type.schemas.queryParams?.name,\n type.schemas.headerParams?.name,\n ...(type.schemas.statusCodes?.map((item) => item.name) || []),\n ].filter(Boolean)}\n root={mutation.file.path}\n path={type.file.path}\n isTypeOnly\n />\n <MutationKey\n name={mutationKey.name}\n typeName={mutationKey.typeName}\n operation={operation}\n pathParamsType={options.pathParamsType}\n paramsCasing={options.paramsCasing}\n typeSchemas={type.schemas}\n transformer={options.mutationKey}\n />\n {!shouldUseClientPlugin && (\n <Client\n name={client.name}\n baseURL={options.client.baseURL}\n operation={operation}\n typeSchemas={type.schemas}\n zodSchemas={zod.schemas}\n dataReturnType={options.client.dataReturnType || 'data'}\n paramsCasing={options.client?.paramsCasing || options.paramsCasing}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n parser={options.parser}\n />\n )}\n {options.mutation && (\n <>\n <File.Import name={['useMutation']} path={importPath} />\n <File.Import name={['MutationObserverOptions', 'QueryClient']} path={importPath} isTypeOnly />\n <Mutation\n name={mutation.name}\n clientName={client.name}\n typeName={mutation.typeName}\n typeSchemas={type.schemas}\n operation={operation}\n paramsCasing={options.paramsCasing}\n dataReturnType={options.client.dataReturnType || 'data'}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n mutationKeyName={mutationKey.name}\n />\n </>\n )}\n </File>\n )\n },\n})\n","import path from 'node:path'\nimport { usePluginDriver } from '@kubb/core/hooks'\nimport { pluginClientName } from '@kubb/plugin-client'\nimport { Client } from '@kubb/plugin-client/components'\nimport { createReactGenerator } from '@kubb/plugin-oas/generators'\nimport { useOas, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { getBanner, getFooter } from '@kubb/plugin-oas/utils'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\nimport { File } from '@kubb/react-fabric'\nimport { difference } from 'remeda'\nimport { Query, QueryKey, QueryOptions } from '../components'\nimport type { PluginVueQuery } from '../types'\n\nexport const queryGenerator = createReactGenerator<PluginVueQuery>({\n name: 'vue-query',\n Operation({ config, operation, generator, plugin }) {\n const {\n options,\n options: { output },\n } = plugin\n const driver = usePluginDriver()\n\n const oas = useOas()\n const { getSchemas, getName, getFile } = useOperationManager(generator)\n\n const isQuery = typeof options.query === 'boolean' ? true : options.query?.methods.some((method) => operation.method === method)\n const isMutation = difference(options.mutation ? options.mutation.methods : [], options.query ? options.query.methods : []).some(\n (method) => operation.method === method,\n )\n const importPath = options.query ? options.query.importPath : '@tanstack/vue-query'\n\n const query = {\n name: getName(operation, { type: 'function', prefix: 'use' }),\n typeName: getName(operation, { type: 'type' }),\n file: getFile(operation, { prefix: 'use' }),\n }\n\n const hasClientPlugin = !!driver.getPluginByName(pluginClientName)\n // Class-based clients are not compatible with query hooks, so we generate inline clients\n const shouldUseClientPlugin = hasClientPlugin && options.client.clientType !== 'class'\n const client = {\n name: shouldUseClientPlugin\n ? getName(operation, {\n type: 'function',\n pluginName: pluginClientName,\n })\n : getName(operation, {\n type: 'function',\n }),\n file: getFile(operation, { pluginName: pluginClientName }),\n }\n\n const queryOptions = {\n name: getName(operation, { type: 'function', suffix: 'QueryOptions' }),\n }\n\n const queryKey = {\n name: getName(operation, { type: 'const', suffix: 'QueryKey' }),\n typeName: getName(operation, { type: 'type', suffix: 'QueryKey' }),\n }\n\n const type = {\n file: getFile(operation, { pluginName: pluginTsName }),\n //todo remove type?\n schemas: getSchemas(operation, {\n pluginName: pluginTsName,\n type: 'type',\n }),\n }\n\n const zod = {\n file: getFile(operation, { pluginName: pluginZodName }),\n schemas: getSchemas(operation, {\n pluginName: pluginZodName,\n type: 'function',\n }),\n }\n\n if (!isQuery || isMutation) {\n return null\n }\n\n return (\n <File\n baseName={query.file.baseName}\n path={query.file.path}\n meta={query.file.meta}\n banner={getBanner({ oas, output, config: driver.config })}\n footer={getFooter({ oas, output })}\n >\n {options.parser === 'zod' && (\n <File.Import name={[zod.schemas.response.name, zod.schemas.request?.name].filter(Boolean)} root={query.file.path} path={zod.file.path} />\n )}\n {options.client.importPath ? (\n <>\n {!shouldUseClientPlugin && <File.Import name={'fetch'} path={options.client.importPath} />}\n <File.Import name={['Client', 'RequestConfig', 'ResponseErrorConfig']} path={options.client.importPath} isTypeOnly />\n {options.client.dataReturnType === 'full' && <File.Import name={['ResponseConfig']} path={options.client.importPath} isTypeOnly />}\n </>\n ) : (\n <>\n {!shouldUseClientPlugin && (\n <File.Import name={['fetch']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')} />\n )}\n <File.Import\n name={['Client', 'RequestConfig', 'ResponseErrorConfig']}\n root={query.file.path}\n path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')}\n isTypeOnly\n />\n {options.client.dataReturnType === 'full' && (\n <File.Import name={['ResponseConfig']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/fetch.ts')} isTypeOnly />\n )}\n </>\n )}\n <File.Import name={['toValue']} path=\"vue\" />\n <File.Import name={['MaybeRefOrGetter']} path=\"vue\" isTypeOnly />\n {shouldUseClientPlugin && <File.Import name={[client.name]} root={query.file.path} path={client.file.path} />}\n {!shouldUseClientPlugin && (\n <File.Import name={['buildFormData']} root={query.file.path} path={path.resolve(config.root, config.output.path, '.kubb/config.ts')} />\n )}\n <File.Import\n name={[\n type.schemas.request?.name,\n type.schemas.response.name,\n type.schemas.pathParams?.name,\n type.schemas.queryParams?.name,\n type.schemas.headerParams?.name,\n ...(type.schemas.statusCodes?.map((item) => item.name) || []),\n ].filter(Boolean)}\n root={query.file.path}\n path={type.file.path}\n isTypeOnly\n />\n <QueryKey\n name={queryKey.name}\n typeName={queryKey.typeName}\n operation={operation}\n paramsCasing={options.paramsCasing}\n pathParamsType={options.pathParamsType}\n typeSchemas={type.schemas}\n transformer={options.queryKey}\n />\n {!shouldUseClientPlugin && (\n <Client\n name={client.name}\n baseURL={options.client.baseURL}\n operation={operation}\n typeSchemas={type.schemas}\n zodSchemas={zod.schemas}\n dataReturnType={options.client.dataReturnType || 'data'}\n paramsCasing={options.client?.paramsCasing || options.paramsCasing}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n parser={options.parser}\n />\n )}\n <File.Import name={['queryOptions']} path={importPath} />\n <QueryOptions\n name={queryOptions.name}\n clientName={client.name}\n queryKeyName={queryKey.name}\n paramsCasing={options.paramsCasing}\n typeSchemas={type.schemas}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n dataReturnType={options.client.dataReturnType || 'data'}\n />\n {options.query && (\n <>\n <File.Import name={['useQuery']} path={importPath} />\n <File.Import name={['QueryKey', 'QueryClient', 'UseQueryOptions', 'UseQueryReturnType']} path={importPath} isTypeOnly />\n <Query\n name={query.name}\n queryOptionsName={queryOptions.name}\n typeSchemas={type.schemas}\n paramsCasing={options.paramsCasing}\n paramsType={options.paramsType}\n pathParamsType={options.pathParamsType}\n operation={operation}\n dataReturnType={options.client.dataReturnType || 'data'}\n queryKeyName={queryKey.name}\n queryKeyTypeName={queryKey.typeName}\n />\n </>\n )}\n </File>\n )\n },\n})\n"],"mappings":"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"}
|
package/dist/generators.cjs
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_generators = require("./generators-DH8VkK1q.cjs");
|
|
3
|
-
exports.infiniteQueryGenerator = require_generators.infiniteQueryGenerator;
|
|
4
|
-
exports.mutationGenerator = require_generators.mutationGenerator;
|
|
5
|
-
exports.queryGenerator = require_generators.queryGenerator;
|
package/dist/generators.d.ts
DELETED
|
@@ -1,511 +0,0 @@
|
|
|
1
|
-
import { t as __name } from "./chunk--u3MIqq1.js";
|
|
2
|
-
import { r as PluginVueQuery } from "./types-CgDFUvfZ.js";
|
|
3
|
-
import { Config, FileMetaBase, Generator, Group, KubbEvents, Output, Plugin, PluginDriver, PluginFactoryOptions, ResolveNameParams } from "@kubb/core";
|
|
4
|
-
import { HttpMethod, Oas, Operation, SchemaObject, contentType } from "@kubb/oas";
|
|
5
|
-
import { FabricReactNode } from "@kubb/react-fabric/types";
|
|
6
|
-
import { Fabric, KubbFile } from "@kubb/fabric-core/types";
|
|
7
|
-
|
|
8
|
-
//#region ../../internals/utils/src/asyncEventEmitter.d.ts
|
|
9
|
-
/** A function that can be registered as an event listener, synchronous or async. */
|
|
10
|
-
type AsyncListener<TArgs extends unknown[]> = (...args: TArgs) => void | Promise<void>;
|
|
11
|
-
/**
|
|
12
|
-
* A typed EventEmitter that awaits all async listeners before resolving.
|
|
13
|
-
* Wraps Node's `EventEmitter` with full TypeScript event-map inference.
|
|
14
|
-
*/
|
|
15
|
-
declare class AsyncEventEmitter<TEvents extends { [K in keyof TEvents]: unknown[] }> {
|
|
16
|
-
#private;
|
|
17
|
-
/**
|
|
18
|
-
* `maxListener` controls the maximum number of listeners per event before Node emits a memory-leak warning.
|
|
19
|
-
* @default 10
|
|
20
|
-
*/
|
|
21
|
-
constructor(maxListener?: number);
|
|
22
|
-
/**
|
|
23
|
-
* Emits an event and awaits all registered listeners in parallel.
|
|
24
|
-
* Throws if any listener rejects, wrapping the cause with the event name and serialized arguments.
|
|
25
|
-
*/
|
|
26
|
-
emit<TEventName extends keyof TEvents & string>(eventName: TEventName, ...eventArgs: TEvents[TEventName]): Promise<void>;
|
|
27
|
-
/** Registers a persistent listener for the given event. */
|
|
28
|
-
on<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: AsyncListener<TEvents[TEventName]>): void;
|
|
29
|
-
/** Registers a one-shot listener that removes itself after the first invocation. */
|
|
30
|
-
onOnce<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: AsyncListener<TEvents[TEventName]>): void;
|
|
31
|
-
/** Removes a previously registered listener. */
|
|
32
|
-
off<TEventName extends keyof TEvents & string>(eventName: TEventName, handler: AsyncListener<TEvents[TEventName]>): void;
|
|
33
|
-
/** Removes all listeners from every event channel. */
|
|
34
|
-
removeAll(): void;
|
|
35
|
-
}
|
|
36
|
-
//#endregion
|
|
37
|
-
//#region ../plugin-oas/src/types.d.ts
|
|
38
|
-
type GetOasOptions = {
|
|
39
|
-
validate?: boolean;
|
|
40
|
-
};
|
|
41
|
-
type Context$2 = {
|
|
42
|
-
getOas(options?: GetOasOptions): Promise<Oas>;
|
|
43
|
-
getBaseURL(): Promise<string | undefined>;
|
|
44
|
-
};
|
|
45
|
-
declare global {
|
|
46
|
-
namespace Kubb {
|
|
47
|
-
interface PluginContext extends Context$2 {}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* `propertyName` is the ref name + resolved with the nameResolver
|
|
52
|
-
* @example import { Pet } from './Pet'
|
|
53
|
-
*
|
|
54
|
-
* `originalName` is the original name used(in PascalCase), only used to remove duplicates
|
|
55
|
-
*
|
|
56
|
-
* `pluginName` can be used to override the current plugin being used, handy when you want to import a type/schema out of another plugin
|
|
57
|
-
* @example import a type(plugin-ts) for a mock file(swagger-faker)
|
|
58
|
-
*/
|
|
59
|
-
type Ref = {
|
|
60
|
-
propertyName: string;
|
|
61
|
-
originalName: string;
|
|
62
|
-
path: KubbFile.Path;
|
|
63
|
-
pluginName?: string;
|
|
64
|
-
};
|
|
65
|
-
type Refs = Record<string, Ref>;
|
|
66
|
-
type OperationSchema = {
|
|
67
|
-
/**
|
|
68
|
-
* Converted name, contains already `PathParams`, `QueryParams`, ...
|
|
69
|
-
*/
|
|
70
|
-
name: string;
|
|
71
|
-
schema: SchemaObject;
|
|
72
|
-
operation?: Operation;
|
|
73
|
-
/**
|
|
74
|
-
* OperationName in PascalCase, only being used in OperationGenerator
|
|
75
|
-
*/
|
|
76
|
-
operationName: string;
|
|
77
|
-
description?: string;
|
|
78
|
-
statusCode?: number;
|
|
79
|
-
keys?: string[];
|
|
80
|
-
keysToOmit?: string[];
|
|
81
|
-
withData?: boolean;
|
|
82
|
-
};
|
|
83
|
-
type OperationSchemas = {
|
|
84
|
-
pathParams?: OperationSchema & {
|
|
85
|
-
keysToOmit?: never;
|
|
86
|
-
};
|
|
87
|
-
queryParams?: OperationSchema & {
|
|
88
|
-
keysToOmit?: never;
|
|
89
|
-
};
|
|
90
|
-
headerParams?: OperationSchema & {
|
|
91
|
-
keysToOmit?: never;
|
|
92
|
-
};
|
|
93
|
-
request?: OperationSchema;
|
|
94
|
-
response: OperationSchema;
|
|
95
|
-
responses: Array<OperationSchema>;
|
|
96
|
-
statusCodes?: Array<OperationSchema>;
|
|
97
|
-
errors?: Array<OperationSchema>;
|
|
98
|
-
};
|
|
99
|
-
type ByTag = {
|
|
100
|
-
type: 'tag';
|
|
101
|
-
pattern: string | RegExp;
|
|
102
|
-
};
|
|
103
|
-
type ByOperationId = {
|
|
104
|
-
type: 'operationId';
|
|
105
|
-
pattern: string | RegExp;
|
|
106
|
-
};
|
|
107
|
-
type ByPath = {
|
|
108
|
-
type: 'path';
|
|
109
|
-
pattern: string | RegExp;
|
|
110
|
-
};
|
|
111
|
-
type ByMethod = {
|
|
112
|
-
type: 'method';
|
|
113
|
-
pattern: HttpMethod | RegExp;
|
|
114
|
-
};
|
|
115
|
-
type BySchemaName = {
|
|
116
|
-
type: 'schemaName';
|
|
117
|
-
pattern: string | RegExp;
|
|
118
|
-
};
|
|
119
|
-
type ByContentType = {
|
|
120
|
-
type: 'contentType';
|
|
121
|
-
pattern: string | RegExp;
|
|
122
|
-
};
|
|
123
|
-
type Exclude = ByTag | ByOperationId | ByPath | ByMethod | ByContentType | BySchemaName;
|
|
124
|
-
type Include = ByTag | ByOperationId | ByPath | ByMethod | ByContentType | BySchemaName;
|
|
125
|
-
type Override<TOptions> = (ByTag | ByOperationId | ByPath | ByMethod | BySchemaName | ByContentType) & {
|
|
126
|
-
options: Partial<TOptions>;
|
|
127
|
-
};
|
|
128
|
-
//#endregion
|
|
129
|
-
//#region ../plugin-oas/src/OperationGenerator.d.ts
|
|
130
|
-
type Context$1<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
131
|
-
fabric: Fabric;
|
|
132
|
-
oas: Oas;
|
|
133
|
-
exclude: Array<Exclude> | undefined;
|
|
134
|
-
include: Array<Include> | undefined;
|
|
135
|
-
override: Array<Override<TOptions>> | undefined;
|
|
136
|
-
contentType: contentType | undefined;
|
|
137
|
-
driver: PluginDriver;
|
|
138
|
-
events?: AsyncEventEmitter<KubbEvents>;
|
|
139
|
-
/**
|
|
140
|
-
* Current plugin
|
|
141
|
-
*/
|
|
142
|
-
plugin: Plugin<TPluginOptions>;
|
|
143
|
-
mode: KubbFile.Mode;
|
|
144
|
-
UNSTABLE_NAMING?: true;
|
|
145
|
-
};
|
|
146
|
-
declare class OperationGenerator<TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
|
|
147
|
-
#private;
|
|
148
|
-
constructor(options: TPluginOptions['resolvedOptions'], context: Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>);
|
|
149
|
-
get options(): TPluginOptions['resolvedOptions'];
|
|
150
|
-
set options(options: TPluginOptions['resolvedOptions']);
|
|
151
|
-
get context(): Context$1<TPluginOptions['resolvedOptions'], TPluginOptions>;
|
|
152
|
-
getOptions(operation: Operation, method: HttpMethod): Partial<TPluginOptions['resolvedOptions']>;
|
|
153
|
-
getSchemas(operation: Operation, {
|
|
154
|
-
resolveName
|
|
155
|
-
}?: {
|
|
156
|
-
resolveName?: (name: string) => string;
|
|
157
|
-
}): OperationSchemas;
|
|
158
|
-
getOperations(): Promise<Array<{
|
|
159
|
-
path: string;
|
|
160
|
-
method: HttpMethod;
|
|
161
|
-
operation: Operation;
|
|
162
|
-
}>>;
|
|
163
|
-
build(...generators: Array<Generator$1<TPluginOptions>>): Promise<Array<KubbFile.File<TFileMeta>>>;
|
|
164
|
-
}
|
|
165
|
-
//#endregion
|
|
166
|
-
//#region ../plugin-oas/src/SchemaMapper.d.ts
|
|
167
|
-
type SchemaKeywordMapper = {
|
|
168
|
-
object: {
|
|
169
|
-
keyword: 'object';
|
|
170
|
-
args: {
|
|
171
|
-
properties: {
|
|
172
|
-
[x: string]: Schema[];
|
|
173
|
-
};
|
|
174
|
-
additionalProperties: Schema[];
|
|
175
|
-
patternProperties?: Record<string, Schema[]>;
|
|
176
|
-
strict?: boolean;
|
|
177
|
-
};
|
|
178
|
-
};
|
|
179
|
-
url: {
|
|
180
|
-
keyword: 'url';
|
|
181
|
-
};
|
|
182
|
-
readOnly: {
|
|
183
|
-
keyword: 'readOnly';
|
|
184
|
-
};
|
|
185
|
-
writeOnly: {
|
|
186
|
-
keyword: 'writeOnly';
|
|
187
|
-
};
|
|
188
|
-
uuid: {
|
|
189
|
-
keyword: 'uuid';
|
|
190
|
-
};
|
|
191
|
-
email: {
|
|
192
|
-
keyword: 'email';
|
|
193
|
-
};
|
|
194
|
-
firstName: {
|
|
195
|
-
keyword: 'firstName';
|
|
196
|
-
};
|
|
197
|
-
lastName: {
|
|
198
|
-
keyword: 'lastName';
|
|
199
|
-
};
|
|
200
|
-
phone: {
|
|
201
|
-
keyword: 'phone';
|
|
202
|
-
};
|
|
203
|
-
password: {
|
|
204
|
-
keyword: 'password';
|
|
205
|
-
};
|
|
206
|
-
date: {
|
|
207
|
-
keyword: 'date';
|
|
208
|
-
args: {
|
|
209
|
-
type?: 'date' | 'string';
|
|
210
|
-
};
|
|
211
|
-
};
|
|
212
|
-
time: {
|
|
213
|
-
keyword: 'time';
|
|
214
|
-
args: {
|
|
215
|
-
type?: 'date' | 'string';
|
|
216
|
-
};
|
|
217
|
-
};
|
|
218
|
-
datetime: {
|
|
219
|
-
keyword: 'datetime';
|
|
220
|
-
args: {
|
|
221
|
-
offset?: boolean;
|
|
222
|
-
local?: boolean;
|
|
223
|
-
};
|
|
224
|
-
};
|
|
225
|
-
tuple: {
|
|
226
|
-
keyword: 'tuple';
|
|
227
|
-
args: {
|
|
228
|
-
items: Schema[];
|
|
229
|
-
min?: number;
|
|
230
|
-
max?: number;
|
|
231
|
-
rest?: Schema;
|
|
232
|
-
};
|
|
233
|
-
};
|
|
234
|
-
array: {
|
|
235
|
-
keyword: 'array';
|
|
236
|
-
args: {
|
|
237
|
-
items: Schema[];
|
|
238
|
-
min?: number;
|
|
239
|
-
max?: number;
|
|
240
|
-
unique?: boolean;
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
enum: {
|
|
244
|
-
keyword: 'enum';
|
|
245
|
-
args: {
|
|
246
|
-
name: string;
|
|
247
|
-
typeName: string;
|
|
248
|
-
asConst: boolean;
|
|
249
|
-
items: Array<{
|
|
250
|
-
name: string | number;
|
|
251
|
-
format: 'string' | 'number' | 'boolean';
|
|
252
|
-
value?: string | number | boolean;
|
|
253
|
-
}>;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
and: {
|
|
257
|
-
keyword: 'and';
|
|
258
|
-
args: Schema[];
|
|
259
|
-
};
|
|
260
|
-
const: {
|
|
261
|
-
keyword: 'const';
|
|
262
|
-
args: {
|
|
263
|
-
name: string | number;
|
|
264
|
-
format: 'string' | 'number' | 'boolean';
|
|
265
|
-
value?: string | number | boolean;
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
union: {
|
|
269
|
-
keyword: 'union';
|
|
270
|
-
args: Schema[];
|
|
271
|
-
};
|
|
272
|
-
ref: {
|
|
273
|
-
keyword: 'ref';
|
|
274
|
-
args: {
|
|
275
|
-
name: string;
|
|
276
|
-
$ref: string;
|
|
277
|
-
/**
|
|
278
|
-
* Full qualified path.
|
|
279
|
-
*/
|
|
280
|
-
path: KubbFile.Path;
|
|
281
|
-
/**
|
|
282
|
-
* When true `File.Import` is used.
|
|
283
|
-
* When false a reference is used inside the current file.
|
|
284
|
-
*/
|
|
285
|
-
isImportable: boolean;
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
matches: {
|
|
289
|
-
keyword: 'matches';
|
|
290
|
-
args?: string;
|
|
291
|
-
};
|
|
292
|
-
boolean: {
|
|
293
|
-
keyword: 'boolean';
|
|
294
|
-
};
|
|
295
|
-
default: {
|
|
296
|
-
keyword: 'default';
|
|
297
|
-
args: string | number | boolean;
|
|
298
|
-
};
|
|
299
|
-
string: {
|
|
300
|
-
keyword: 'string';
|
|
301
|
-
};
|
|
302
|
-
integer: {
|
|
303
|
-
keyword: 'integer';
|
|
304
|
-
};
|
|
305
|
-
bigint: {
|
|
306
|
-
keyword: 'bigint';
|
|
307
|
-
};
|
|
308
|
-
number: {
|
|
309
|
-
keyword: 'number';
|
|
310
|
-
};
|
|
311
|
-
max: {
|
|
312
|
-
keyword: 'max';
|
|
313
|
-
args: number;
|
|
314
|
-
};
|
|
315
|
-
min: {
|
|
316
|
-
keyword: 'min';
|
|
317
|
-
args: number;
|
|
318
|
-
};
|
|
319
|
-
exclusiveMaximum: {
|
|
320
|
-
keyword: 'exclusiveMaximum';
|
|
321
|
-
args: number;
|
|
322
|
-
};
|
|
323
|
-
exclusiveMinimum: {
|
|
324
|
-
keyword: 'exclusiveMinimum';
|
|
325
|
-
args: number;
|
|
326
|
-
};
|
|
327
|
-
describe: {
|
|
328
|
-
keyword: 'describe';
|
|
329
|
-
args: string;
|
|
330
|
-
};
|
|
331
|
-
example: {
|
|
332
|
-
keyword: 'example';
|
|
333
|
-
args: string;
|
|
334
|
-
};
|
|
335
|
-
deprecated: {
|
|
336
|
-
keyword: 'deprecated';
|
|
337
|
-
};
|
|
338
|
-
optional: {
|
|
339
|
-
keyword: 'optional';
|
|
340
|
-
};
|
|
341
|
-
undefined: {
|
|
342
|
-
keyword: 'undefined';
|
|
343
|
-
};
|
|
344
|
-
nullish: {
|
|
345
|
-
keyword: 'nullish';
|
|
346
|
-
};
|
|
347
|
-
nullable: {
|
|
348
|
-
keyword: 'nullable';
|
|
349
|
-
};
|
|
350
|
-
null: {
|
|
351
|
-
keyword: 'null';
|
|
352
|
-
};
|
|
353
|
-
any: {
|
|
354
|
-
keyword: 'any';
|
|
355
|
-
};
|
|
356
|
-
unknown: {
|
|
357
|
-
keyword: 'unknown';
|
|
358
|
-
};
|
|
359
|
-
void: {
|
|
360
|
-
keyword: 'void';
|
|
361
|
-
};
|
|
362
|
-
blob: {
|
|
363
|
-
keyword: 'blob';
|
|
364
|
-
};
|
|
365
|
-
schema: {
|
|
366
|
-
keyword: 'schema';
|
|
367
|
-
args: {
|
|
368
|
-
type: 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'object';
|
|
369
|
-
format?: string;
|
|
370
|
-
};
|
|
371
|
-
};
|
|
372
|
-
name: {
|
|
373
|
-
keyword: 'name';
|
|
374
|
-
args: string;
|
|
375
|
-
};
|
|
376
|
-
catchall: {
|
|
377
|
-
keyword: 'catchall';
|
|
378
|
-
};
|
|
379
|
-
interface: {
|
|
380
|
-
keyword: 'interface';
|
|
381
|
-
};
|
|
382
|
-
};
|
|
383
|
-
type Schema = {
|
|
384
|
-
keyword: string;
|
|
385
|
-
} | SchemaKeywordMapper[keyof SchemaKeywordMapper];
|
|
386
|
-
//#endregion
|
|
387
|
-
//#region ../plugin-oas/src/SchemaGenerator.d.ts
|
|
388
|
-
type Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {
|
|
389
|
-
fabric: Fabric;
|
|
390
|
-
oas: Oas;
|
|
391
|
-
driver: PluginDriver;
|
|
392
|
-
events?: AsyncEventEmitter<KubbEvents>;
|
|
393
|
-
/**
|
|
394
|
-
* Current plugin
|
|
395
|
-
*/
|
|
396
|
-
plugin: Plugin<TPluginOptions>;
|
|
397
|
-
mode: KubbFile.Mode;
|
|
398
|
-
include?: Array<'schemas' | 'responses' | 'requestBodies'>;
|
|
399
|
-
override: Array<Override<TOptions>> | undefined;
|
|
400
|
-
contentType?: contentType;
|
|
401
|
-
output?: string;
|
|
402
|
-
};
|
|
403
|
-
type SchemaGeneratorOptions = {
|
|
404
|
-
dateType: false | 'string' | 'stringOffset' | 'stringLocal' | 'date';
|
|
405
|
-
integerType?: 'number' | 'bigint';
|
|
406
|
-
unknownType: 'any' | 'unknown' | 'void';
|
|
407
|
-
emptySchemaType: 'any' | 'unknown' | 'void';
|
|
408
|
-
enumType?: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal' | 'inlineLiteral';
|
|
409
|
-
enumSuffix?: string;
|
|
410
|
-
/**
|
|
411
|
-
* @deprecated Will be removed in v5. Use `collisionDetection: true` instead to prevent enum name collisions.
|
|
412
|
-
* When `collisionDetection` is enabled, the rootName-based approach eliminates the need for numeric suffixes.
|
|
413
|
-
* @internal
|
|
414
|
-
*/
|
|
415
|
-
usedEnumNames?: Record<string, number>;
|
|
416
|
-
mapper?: Record<string, string>;
|
|
417
|
-
typed?: boolean;
|
|
418
|
-
transformers: {
|
|
419
|
-
/**
|
|
420
|
-
* Customize the names based on the type that is provided by the plugin.
|
|
421
|
-
*/
|
|
422
|
-
name?: (name: ResolveNameParams['name'], type?: ResolveNameParams['type']) => string;
|
|
423
|
-
/**
|
|
424
|
-
* Receive schema and name(propertyName) and return Schema array.
|
|
425
|
-
* Return `undefined` to fall through to default schema generation.
|
|
426
|
-
* @beta
|
|
427
|
-
*/
|
|
428
|
-
schema?: (schemaProps: SchemaProps$1, defaultSchemas: Schema[]) => Array<Schema> | undefined;
|
|
429
|
-
};
|
|
430
|
-
};
|
|
431
|
-
type SchemaProps$1 = {
|
|
432
|
-
schema: SchemaObject | null;
|
|
433
|
-
name: string | null;
|
|
434
|
-
parentName: string | null;
|
|
435
|
-
rootName?: string | null;
|
|
436
|
-
};
|
|
437
|
-
declare class SchemaGenerator<TOptions extends SchemaGeneratorOptions = SchemaGeneratorOptions, TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions, TFileMeta extends FileMetaBase = FileMetaBase> {
|
|
438
|
-
#private;
|
|
439
|
-
constructor(options: TOptions, context: Context<TOptions, TPluginOptions>);
|
|
440
|
-
get options(): TOptions;
|
|
441
|
-
set options(options: TOptions);
|
|
442
|
-
get context(): Context<TOptions, TPluginOptions>;
|
|
443
|
-
refs: Refs;
|
|
444
|
-
/**
|
|
445
|
-
* Creates a type node from a given schema.
|
|
446
|
-
* Delegates to getBaseTypeFromSchema internally and
|
|
447
|
-
* optionally adds a union with null.
|
|
448
|
-
*/
|
|
449
|
-
parse(props: SchemaProps$1): Schema[];
|
|
450
|
-
static deepSearch<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): Array<SchemaKeywordMapper[T]>;
|
|
451
|
-
static find<T extends keyof SchemaKeywordMapper>(tree: Schema[] | undefined, keyword: T): SchemaKeywordMapper[T] | undefined;
|
|
452
|
-
static combineObjects(tree: Schema[] | undefined): Schema[];
|
|
453
|
-
build(...generators: Array<Generator$1<TPluginOptions>>): Promise<Array<KubbFile.File<TFileMeta>>>;
|
|
454
|
-
}
|
|
455
|
-
//#endregion
|
|
456
|
-
//#region ../plugin-oas/src/generators/createGenerator.d.ts
|
|
457
|
-
type CoreGenerator<TOptions extends PluginFactoryOptions> = {
|
|
458
|
-
name: string;
|
|
459
|
-
type: 'core';
|
|
460
|
-
version: '1';
|
|
461
|
-
operations: (props: OperationsProps<TOptions>) => Promise<KubbFile.File[]>;
|
|
462
|
-
operation: (props: OperationProps<TOptions>) => Promise<KubbFile.File[]>;
|
|
463
|
-
schema: (props: SchemaProps<TOptions>) => Promise<KubbFile.File[]>;
|
|
464
|
-
};
|
|
465
|
-
//#endregion
|
|
466
|
-
//#region ../plugin-oas/src/generators/types.d.ts
|
|
467
|
-
type OperationsProps<TOptions extends PluginFactoryOptions> = {
|
|
468
|
-
config: Config;
|
|
469
|
-
generator: Omit<OperationGenerator<TOptions>, 'build'>;
|
|
470
|
-
plugin: Plugin<TOptions>;
|
|
471
|
-
operations: Array<Operation>;
|
|
472
|
-
};
|
|
473
|
-
type OperationProps<TOptions extends PluginFactoryOptions> = {
|
|
474
|
-
config: Config;
|
|
475
|
-
generator: Omit<OperationGenerator<TOptions>, 'build'>;
|
|
476
|
-
plugin: Plugin<TOptions>;
|
|
477
|
-
operation: Operation;
|
|
478
|
-
};
|
|
479
|
-
type SchemaProps<TOptions extends PluginFactoryOptions> = {
|
|
480
|
-
config: Config;
|
|
481
|
-
generator: Omit<SchemaGenerator<SchemaGeneratorOptions, TOptions>, 'build'>;
|
|
482
|
-
plugin: Plugin<TOptions>;
|
|
483
|
-
schema: {
|
|
484
|
-
name: string;
|
|
485
|
-
tree: Array<Schema>;
|
|
486
|
-
value: SchemaObject;
|
|
487
|
-
};
|
|
488
|
-
};
|
|
489
|
-
type Generator$1<TOptions extends PluginFactoryOptions> = CoreGenerator<TOptions> | ReactGenerator<TOptions> | Generator<TOptions>;
|
|
490
|
-
//#endregion
|
|
491
|
-
//#region ../plugin-oas/src/generators/createReactGenerator.d.ts
|
|
492
|
-
type ReactGenerator<TOptions extends PluginFactoryOptions> = {
|
|
493
|
-
name: string;
|
|
494
|
-
type: 'react';
|
|
495
|
-
version: '1';
|
|
496
|
-
Operations: (props: OperationsProps<TOptions>) => FabricReactNode;
|
|
497
|
-
Operation: (props: OperationProps<TOptions>) => FabricReactNode;
|
|
498
|
-
Schema: (props: SchemaProps<TOptions>) => FabricReactNode;
|
|
499
|
-
};
|
|
500
|
-
//#endregion
|
|
501
|
-
//#region src/generators/infiniteQueryGenerator.d.ts
|
|
502
|
-
declare const infiniteQueryGenerator: ReactGenerator<PluginVueQuery>;
|
|
503
|
-
//#endregion
|
|
504
|
-
//#region src/generators/mutationGenerator.d.ts
|
|
505
|
-
declare const mutationGenerator: ReactGenerator<PluginVueQuery>;
|
|
506
|
-
//#endregion
|
|
507
|
-
//#region src/generators/queryGenerator.d.ts
|
|
508
|
-
declare const queryGenerator: ReactGenerator<PluginVueQuery>;
|
|
509
|
-
//#endregion
|
|
510
|
-
export { infiniteQueryGenerator, mutationGenerator, queryGenerator };
|
|
511
|
-
//# sourceMappingURL=generators.d.ts.map
|
package/dist/generators.js
DELETED