nuxt-graphql-middleware 5.0.0-alpha.6 → 5.0.0-alpha.8
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/client/200.html +7 -7
- package/dist/client/404.html +7 -7
- package/dist/client/_nuxt/{BvMfLM9s.js → BLvMh1Ga.js} +1 -1
- package/dist/client/_nuxt/C9pb_2rp.js +2 -0
- package/dist/client/_nuxt/{DkAo05uu.js → CBwfSTyQ.js} +1 -1
- package/dist/client/_nuxt/{BtHrwWER.js → CPyoLiCY.js} +1 -1
- package/dist/client/_nuxt/{BawWjxPx.js → VpkRx2_e.js} +4 -4
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/c16b1fe3-c3fb-4c15-952d-ba148d4025cb.json +1 -0
- package/dist/client/_nuxt/entry.Cn9qfNGa.css +1 -0
- package/dist/client/_nuxt/index.DGEN-H8t.css +1 -0
- package/dist/client/index.html +7 -7
- package/dist/module.d.mts +4 -198
- package/dist/module.d.ts +4 -198
- package/dist/module.json +2 -2
- package/dist/module.mjs +333 -246
- package/dist/runtime/composables/useAsyncGraphqlQuery.d.ts +1 -1
- package/dist/runtime/composables/useGraphqlMutation.d.ts +1 -1
- package/dist/runtime/composables/useGraphqlQuery.d.ts +1 -1
- package/dist/runtime/composables/useGraphqlState.js +1 -1
- package/dist/runtime/composables/useGraphqlUploadMutation.d.ts +1 -1
- package/dist/runtime/helpers/composables.d.ts +1 -1
- package/dist/runtime/server/helpers/index.d.ts +3 -3
- package/dist/runtime/server/helpers/index.js +1 -1
- package/dist/runtime/server/utils/doGraphqlRequest.d.ts +1 -1
- package/dist/runtime/server/utils/useGraphqlMutation.d.ts +1 -1
- package/dist/runtime/server/utils/useGraphqlQuery.d.ts +1 -1
- package/dist/runtime/serverOptions/defineGraphqlServerOptions.d.ts +1 -1
- package/dist/runtime/settings/index.d.ts +0 -63
- package/dist/runtime/settings/index.js +0 -19
- package/dist/runtime/types.d.ts +196 -1
- package/dist/types.d.mts +5 -5
- package/dist/types.d.ts +5 -5
- package/package.json +24 -28
- package/dist/client/_nuxt/B4KMzhZo.js +0 -2
- package/dist/client/_nuxt/builds/meta/9b9c571e-ce30-465b-8174-06afbdca446b.json +0 -1
- package/dist/client/_nuxt/entry.AjgXSF89.css +0 -1
- package/dist/client/_nuxt/index.D19Q16VT.css +0 -1
|
@@ -6,7 +6,7 @@ import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
|
6
6
|
import type { RequestCacheOptions } from './../types.js';
|
|
7
7
|
import type { AsyncData, AsyncDataOptions, NuxtError } from '#app';
|
|
8
8
|
import type { DefaultAsyncDataValue } from 'nuxt/app/defaults';
|
|
9
|
-
import type { Query } from '#nuxt-graphql-middleware/
|
|
9
|
+
import type { Query } from '#nuxt-graphql-middleware/operation-types';
|
|
10
10
|
type AsyncGraphqlQueryOptions<FetchOptions, ResT, DataT = ResT, PickKeys extends KeysOf<DataT> = KeysOf<DataT>, DefaultT = DefaultAsyncDataValue> = AsyncDataOptions<ResT, DataT, PickKeys, DefaultT> & {
|
|
11
11
|
/**
|
|
12
12
|
* Control how the GraphQL response can be cached.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type GetMutationArgs, type MutationObjectArgs, type GetMutationResult } from './../helpers/composables.js';
|
|
2
2
|
import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
3
|
-
import type { Mutation } from '#nuxt-graphql-middleware/
|
|
3
|
+
import type { Mutation } from '#nuxt-graphql-middleware/operation-types';
|
|
4
4
|
/**
|
|
5
5
|
* Performs a GraphQL mutation.
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type GetQueryArgs, type QueryObjectArgs, type GetQueryResult } from './../helpers/composables.js';
|
|
2
2
|
import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
3
|
-
import type { Query } from '#nuxt-graphql-middleware/
|
|
3
|
+
import type { Query } from '#nuxt-graphql-middleware/operation-types';
|
|
4
4
|
/**
|
|
5
5
|
* Performs a GraphQL query.
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type GetMutationArgs, type MutationObjectArgs, type GetMutationResult } from './../helpers/composables.js';
|
|
2
2
|
import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
3
|
-
import type { Mutation } from '#nuxt-graphql-middleware/
|
|
3
|
+
import type { Mutation } from '#nuxt-graphql-middleware/operation-types';
|
|
4
4
|
/**
|
|
5
5
|
* Performs a GraphQL upload mutation.
|
|
6
6
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { FetchOptions } from 'ofetch';
|
|
2
2
|
import type { RequestCacheOptions } from './../types.js';
|
|
3
3
|
import type { GraphqlClientContext } from '#nuxt-graphql-middleware/client-options';
|
|
4
|
-
import type { Query, Mutation } from '#nuxt-graphql-middleware/
|
|
4
|
+
import type { Query, Mutation } from '#nuxt-graphql-middleware/operation-types';
|
|
5
5
|
export type GraphqlComposableOptions = {
|
|
6
6
|
fetchOptions?: FetchOptions;
|
|
7
7
|
graphqlCaching?: RequestCacheOptions;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { QueryObject } from 'ufo';
|
|
2
2
|
import type { H3Event } from 'h3';
|
|
3
3
|
import type { FetchOptions, FetchResponse, FetchError } from 'ofetch';
|
|
4
|
-
import type { GraphqlMiddlewareRequestContext, GraphqlMiddlewareRuntimeConfig, GraphqlMiddlewareServerOptions } from '
|
|
4
|
+
import type { GraphqlMiddlewareRequestContext, GraphqlMiddlewareRuntimeConfig, GraphqlMiddlewareServerOptions } from './../../types.js';
|
|
5
5
|
import { type GraphqlMiddlewareOperation } from './../../settings/index.js';
|
|
6
|
-
import type { Mutation, Query } from '#nuxt-graphql-middleware/
|
|
6
|
+
import type { Mutation, Query } from '#nuxt-graphql-middleware/operation-types';
|
|
7
7
|
export declare function isValidMutation(v?: string): v is keyof Mutation;
|
|
8
8
|
export declare function isValidQuery(v?: string): v is keyof Query;
|
|
9
9
|
export declare function queryParamToVariables(query: QueryObject): any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { H3Event } from 'h3';
|
|
2
|
-
import type { GraphqlMiddlewareRequestContext } from '
|
|
2
|
+
import type { GraphqlMiddlewareRequestContext } from '../../types.js';
|
|
3
3
|
import type { GraphqlMiddlewareOperation } from '../../settings/index.js';
|
|
4
4
|
type RequestBody = {
|
|
5
5
|
query: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
2
2
|
import { type GetMutationArgs, type MutationObjectArgs, type GetMutationResult } from './../../helpers/composables.js';
|
|
3
|
-
import type { Mutation } from '#nuxt-graphql-middleware/
|
|
3
|
+
import type { Mutation } from '#nuxt-graphql-middleware/operation-types';
|
|
4
4
|
/**
|
|
5
5
|
* Performs a GraphQL mutation.
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
2
2
|
import { type GetQueryArgs, type QueryObjectArgs, type GetQueryResult } from './../../helpers/composables.js';
|
|
3
|
-
import type { Query } from '#nuxt-graphql-middleware/
|
|
3
|
+
import type { Query } from '#nuxt-graphql-middleware/operation-types';
|
|
4
4
|
/**
|
|
5
5
|
* Performs a GraphQL query.
|
|
6
6
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { GraphqlClientContext } from '#nuxt-graphql-middleware/client-options';
|
|
2
2
|
import type { GraphqlMiddlewareResponseUnion } from '#nuxt-graphql-middleware/response';
|
|
3
|
-
import {
|
|
3
|
+
import type { GraphqlMiddlewareServerOptions } from './../types.js';
|
|
4
4
|
export declare function defineGraphqlServerOptions<T extends object>(options: GraphqlMiddlewareServerOptions<T, GraphqlMiddlewareResponseUnion, GraphqlClientContext>): GraphqlMiddlewareServerOptions<T, GraphqlMiddlewareResponseUnion, GraphqlClientContext>;
|
|
@@ -1,66 +1,3 @@
|
|
|
1
|
-
export declare enum Template {
|
|
2
|
-
/**
|
|
3
|
-
* Contains the TS definitions for all GraphQL queries, mutations and fragments.
|
|
4
|
-
*/
|
|
5
|
-
OperationTypes = "graphql-operations/index.d.ts",
|
|
6
|
-
/**
|
|
7
|
-
* Contains the TS definitions for all GraphQL queries, mutations and fragments.
|
|
8
|
-
*/
|
|
9
|
-
OperationTypesAll = "nuxt-graphql-middleware/operations.d.ts",
|
|
10
|
-
/**
|
|
11
|
-
* Contains the TS definitions for all GraphQL queries, mutations and fragments.
|
|
12
|
-
*/
|
|
13
|
-
Enums = "graphql-operations/enums.ts",
|
|
14
|
-
/**
|
|
15
|
-
* Template for the middleware response types.
|
|
16
|
-
*/
|
|
17
|
-
ResponseTypes = "nuxt-graphql-middleware/response.d.ts",
|
|
18
|
-
/**
|
|
19
|
-
* Types for the generated endpoints.
|
|
20
|
-
*/
|
|
21
|
-
NitroTypes = "nuxt-graphql-middleware/nitro.d.ts",
|
|
22
|
-
/**
|
|
23
|
-
* Configuration template.
|
|
24
|
-
*/
|
|
25
|
-
Helpers = "nuxt-graphql-middleware/helpers.mjs",
|
|
26
|
-
/**
|
|
27
|
-
* Configuration template types.
|
|
28
|
-
*/
|
|
29
|
-
HelpersTypes = "nuxt-graphql-middleware/helpers.d.ts",
|
|
30
|
-
/**
|
|
31
|
-
* Exports a single opject containing the compiled queries and mutations.
|
|
32
|
-
*/
|
|
33
|
-
Documents = "nuxt-graphql-middleware/documents.mjs",
|
|
34
|
-
/**
|
|
35
|
-
* Exports a single opject containing the compiled queries and mutations.
|
|
36
|
-
*/
|
|
37
|
-
DocumentTypes = "nuxt-graphql-middleware/documents.d.ts",
|
|
38
|
-
/**
|
|
39
|
-
* Contains the source file paths for every operation.
|
|
40
|
-
*/
|
|
41
|
-
OperationSources = "nuxt-graphql-middleware/sources.mjs",
|
|
42
|
-
Types = "nuxt-graphql-middleware/types.d.ts",
|
|
43
|
-
/**
|
|
44
|
-
* The graphql-config file.
|
|
45
|
-
*/
|
|
46
|
-
GraphqlConfig = "nuxt-graphql-middleware/graphql.config.ts",
|
|
47
|
-
/**
|
|
48
|
-
* Imports and exports the user's server options file.
|
|
49
|
-
*/
|
|
50
|
-
ServerOptions = "nuxt-graphql-middleware/server-options.mjs",
|
|
51
|
-
/**
|
|
52
|
-
* Exports the server options types.
|
|
53
|
-
*/
|
|
54
|
-
ServerOptionsTypes = "nuxt-graphql-middleware/server-options.d.ts",
|
|
55
|
-
/**
|
|
56
|
-
* Imports and exports the user's client options file.
|
|
57
|
-
*/
|
|
58
|
-
ClientOptions = "nuxt-graphql-middleware/client-options.mjs",
|
|
59
|
-
/**
|
|
60
|
-
* Exports the client option specific types.
|
|
61
|
-
*/
|
|
62
|
-
ClientOptionsTypes = "nuxt-graphql-middleware/client-options.d.ts"
|
|
63
|
-
}
|
|
64
1
|
export declare enum GraphqlMiddlewareOperation {
|
|
65
2
|
Query = "query",
|
|
66
3
|
Mutation = "mutation"
|
|
@@ -1,22 +1,3 @@
|
|
|
1
|
-
export var Template = /* @__PURE__ */ ((Template2) => {
|
|
2
|
-
Template2["OperationTypes"] = "graphql-operations/index.d.ts";
|
|
3
|
-
Template2["OperationTypesAll"] = "nuxt-graphql-middleware/operations.d.ts";
|
|
4
|
-
Template2["Enums"] = "graphql-operations/enums.ts";
|
|
5
|
-
Template2["ResponseTypes"] = "nuxt-graphql-middleware/response.d.ts";
|
|
6
|
-
Template2["NitroTypes"] = "nuxt-graphql-middleware/nitro.d.ts";
|
|
7
|
-
Template2["Helpers"] = "nuxt-graphql-middleware/helpers.mjs";
|
|
8
|
-
Template2["HelpersTypes"] = "nuxt-graphql-middleware/helpers.d.ts";
|
|
9
|
-
Template2["Documents"] = "nuxt-graphql-middleware/documents.mjs";
|
|
10
|
-
Template2["DocumentTypes"] = "nuxt-graphql-middleware/documents.d.ts";
|
|
11
|
-
Template2["OperationSources"] = "nuxt-graphql-middleware/sources.mjs";
|
|
12
|
-
Template2["Types"] = "nuxt-graphql-middleware/types.d.ts";
|
|
13
|
-
Template2["GraphqlConfig"] = "nuxt-graphql-middleware/graphql.config.ts";
|
|
14
|
-
Template2["ServerOptions"] = "nuxt-graphql-middleware/server-options.mjs";
|
|
15
|
-
Template2["ServerOptionsTypes"] = "nuxt-graphql-middleware/server-options.d.ts";
|
|
16
|
-
Template2["ClientOptions"] = "nuxt-graphql-middleware/client-options.mjs";
|
|
17
|
-
Template2["ClientOptionsTypes"] = "nuxt-graphql-middleware/client-options.d.ts";
|
|
18
|
-
return Template2;
|
|
19
|
-
})(Template || {});
|
|
20
1
|
export var GraphqlMiddlewareOperation = /* @__PURE__ */ ((GraphqlMiddlewareOperation2) => {
|
|
21
2
|
GraphqlMiddlewareOperation2["Query"] = "query";
|
|
22
3
|
GraphqlMiddlewareOperation2["Mutation"] = "mutation";
|
package/dist/runtime/types.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { FetchOptions, FetchContext } from 'ofetch';
|
|
2
1
|
import type { GraphqlMiddlewareResponseUnion, GraphqlResponse } from '#nuxt-graphql-middleware/response';
|
|
2
|
+
import type { H3Event } from 'h3';
|
|
3
|
+
import type { FetchOptions, FetchResponse, FetchError, FetchContext } from 'ofetch';
|
|
3
4
|
export type OperationResponseError = {
|
|
4
5
|
operation: string;
|
|
5
6
|
operationName: string;
|
|
@@ -84,3 +85,197 @@ export type GraphqlClientOptions<T extends ContextType = ContextType> = {
|
|
|
84
85
|
*/
|
|
85
86
|
buildClientContext?: () => T;
|
|
86
87
|
};
|
|
88
|
+
export type GraphqlMiddlewareRequestContext<C extends ContextType = ContextType> = {
|
|
89
|
+
client?: Partial<C>;
|
|
90
|
+
};
|
|
91
|
+
export type GraphqlMiddlewareGraphqlEndpointMethod<C extends ContextType> = (event?: H3Event, operation?: string | null, operationName?: string | null, context?: GraphqlMiddlewareRequestContext<C> | null) => string | Promise<string> | undefined;
|
|
92
|
+
export type GraphqlMiddlewareServerFetchOptionsMethod<C extends ContextType> = (event?: H3Event, operation?: string | null, operationName?: string | null, context?: GraphqlMiddlewareRequestContext<C> | null) => FetchOptions | Promise<FetchOptions>;
|
|
93
|
+
export type GraphqlMiddlewareOnServerResponseMethod<ServerReponse, T, C extends ContextType> = (event: H3Event, response: FetchResponse<ServerReponse>, operation?: string | null, operationName?: string | null, context?: GraphqlMiddlewareRequestContext<C> | null) => T | Promise<T>;
|
|
94
|
+
export type GraphqlMiddlewareOnServerErrorMethod<C extends ContextType> = (event: H3Event, error: FetchError, operation?: string | null, operationName?: string | null, context?: GraphqlMiddlewareRequestContext<C> | null) => any | Promise<any>;
|
|
95
|
+
export type GraphqlMiddlewareDoRequestMethodContext<C extends ContextType> = {
|
|
96
|
+
/**
|
|
97
|
+
* The incoming request event from H3.
|
|
98
|
+
*/
|
|
99
|
+
event: H3Event;
|
|
100
|
+
/**
|
|
101
|
+
* The type of operation.
|
|
102
|
+
*/
|
|
103
|
+
operation?: 'query' | 'mutation';
|
|
104
|
+
/**
|
|
105
|
+
* The name of the operation.
|
|
106
|
+
*/
|
|
107
|
+
operationName?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The operation document (the raw GraphQL query/mutation as a string).
|
|
110
|
+
*/
|
|
111
|
+
operationDocument: string;
|
|
112
|
+
/**
|
|
113
|
+
* Variables for the operation.
|
|
114
|
+
*/
|
|
115
|
+
variables: Record<string, any>;
|
|
116
|
+
/**
|
|
117
|
+
* For file uploads (which are done using FormData), this contains the full
|
|
118
|
+
* form data with these keys:
|
|
119
|
+
*
|
|
120
|
+
* - operations: string
|
|
121
|
+
* A JSON string of an object with "query", "variables" and "operationName" properties.
|
|
122
|
+
* Example:
|
|
123
|
+
* operations='{ "query": "mutation ($id: String!, $file: Upload!) { uploadFile(id: $id, file: $file) { id filename } }", "variables": { "file": null, "id": "1" } }'
|
|
124
|
+
* - map: string
|
|
125
|
+
* A JSON string of an object whose keys are strings starting at '0' and the values being an array with a single string:
|
|
126
|
+
* Example:
|
|
127
|
+
* map='{ "0": ["variables.file"] }'
|
|
128
|
+
* - [number]
|
|
129
|
+
* For every file there is a FormData entry with a name that matches the key in `map`.
|
|
130
|
+
* Example:
|
|
131
|
+
* 0=[Binary File]
|
|
132
|
+
*/
|
|
133
|
+
formData?: FormData;
|
|
134
|
+
context: GraphqlMiddlewareRequestContext<C>;
|
|
135
|
+
};
|
|
136
|
+
export type GraphqlMiddlewareDoRequestMethod<T, C extends ContextType> = (context: GraphqlMiddlewareDoRequestMethodContext<C>) => Promise<T>;
|
|
137
|
+
/**
|
|
138
|
+
* Configuration options during runtime.
|
|
139
|
+
*/
|
|
140
|
+
export type GraphqlMiddlewareServerOptions<Additions extends object = object, ResponseUnion extends object = object, C extends ContextType = ContextType, CustomResponse = GraphqlServerResponse<ResponseUnion> & Additions> = {
|
|
141
|
+
/**
|
|
142
|
+
* Custom callback to return the GraphQL endpoint per request.
|
|
143
|
+
*
|
|
144
|
+
* The method is only called if no `doGraphqlRequest` method is implemented.
|
|
145
|
+
*
|
|
146
|
+
* @default undefined
|
|
147
|
+
*
|
|
148
|
+
* @example
|
|
149
|
+
* ```ts
|
|
150
|
+
* function graphqlEndpoint(event, operation, operationName) {
|
|
151
|
+
* const language = getLanguageFromRequest(event)
|
|
152
|
+
* return `https://api.example.com/${language}/graphql`
|
|
153
|
+
* }
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
graphqlEndpoint?: GraphqlMiddlewareGraphqlEndpointMethod<C>;
|
|
157
|
+
/**
|
|
158
|
+
* Provide the options for the ofetch request to the GraphQL server.
|
|
159
|
+
*
|
|
160
|
+
* The method is only called if no `doGraphqlRequest` method is implemented.
|
|
161
|
+
*
|
|
162
|
+
* @default undefined
|
|
163
|
+
*
|
|
164
|
+
* @example
|
|
165
|
+
* ```ts
|
|
166
|
+
* import { getHeader } from 'h3'
|
|
167
|
+
*
|
|
168
|
+
* // Pass the cookie from the client request to the GraphQL request.
|
|
169
|
+
* function serverFetchOptions(event, operation, operationName) {
|
|
170
|
+
* return {
|
|
171
|
+
* headers: {
|
|
172
|
+
* Cookie: getHeader(event, 'cookie')
|
|
173
|
+
* }
|
|
174
|
+
* }
|
|
175
|
+
* }
|
|
176
|
+
* ```
|
|
177
|
+
*/
|
|
178
|
+
serverFetchOptions?: GraphqlMiddlewareServerFetchOptionsMethod<C>;
|
|
179
|
+
/**
|
|
180
|
+
* Handle the response from the GraphQL server.
|
|
181
|
+
*
|
|
182
|
+
* The method is only called if no `doGraphqlRequest` method is implemented.
|
|
183
|
+
*
|
|
184
|
+
* You can alter the response, add additional properties to the data, get
|
|
185
|
+
* and set headers, etc.
|
|
186
|
+
*
|
|
187
|
+
* ```ts
|
|
188
|
+
* import type { H3Event } from 'h3'
|
|
189
|
+
* import type { FetchResponse } from 'ofetch'
|
|
190
|
+
*
|
|
191
|
+
* function onServerResponse(event: H3Event, graphqlResponse: FetchResponse) {
|
|
192
|
+
* // Set a static header.
|
|
193
|
+
* event.node.res.setHeader('x-nuxt-custom-header', 'A custom header value')
|
|
194
|
+
*
|
|
195
|
+
* // Pass the set-cookie header from the GraphQL response to the client.
|
|
196
|
+
* const setCookie = graphqlResponse.headers.get('set-cookie')
|
|
197
|
+
* if (setCookie) {
|
|
198
|
+
* event.node.res.setHeader('set-cookie', setCookie)
|
|
199
|
+
* }
|
|
200
|
+
*
|
|
201
|
+
* // Add additional properties to the response.
|
|
202
|
+
* graphqlResponse._data.__customProperty = ['My', 'values']
|
|
203
|
+
*
|
|
204
|
+
* // Return the GraphQL response.
|
|
205
|
+
* return graphqlResponse._data
|
|
206
|
+
* }
|
|
207
|
+
* ```
|
|
208
|
+
*/
|
|
209
|
+
onServerResponse?: GraphqlMiddlewareOnServerResponseMethod<GraphqlServerResponse<ResponseUnion>, CustomResponse, C>;
|
|
210
|
+
/**
|
|
211
|
+
* Handle a fetch error from the GraphQL request.
|
|
212
|
+
*
|
|
213
|
+
* The method is only called if no `doGraphqlRequest` method is implemented.
|
|
214
|
+
*
|
|
215
|
+
* Note that errors are only thrown for responses that are not status
|
|
216
|
+
* 200-299. See https://github.com/unjs/ofetch#%EF%B8%8F-handling-errors for
|
|
217
|
+
* more information.
|
|
218
|
+
*
|
|
219
|
+
* ```ts
|
|
220
|
+
* import { createError } from 'h3'
|
|
221
|
+
* import type { H3Event } from 'h3'
|
|
222
|
+
* import type { FetchError } from 'ofetch'
|
|
223
|
+
*
|
|
224
|
+
* function onServerError(
|
|
225
|
+
* event: H3Event,
|
|
226
|
+
* error: FetchError,
|
|
227
|
+
* operation: string,
|
|
228
|
+
* operationName: string,
|
|
229
|
+
* ) {
|
|
230
|
+
* // Throw a h3 error.
|
|
231
|
+
* throw createError({
|
|
232
|
+
* statusCode: 500,
|
|
233
|
+
* statusMessage: `Couldn't execute GraphQL ${operation} "${operationName}".`,
|
|
234
|
+
* data: error.message
|
|
235
|
+
* })
|
|
236
|
+
* }
|
|
237
|
+
* ```
|
|
238
|
+
*/
|
|
239
|
+
onServerError?: GraphqlMiddlewareOnServerErrorMethod<C>;
|
|
240
|
+
/**
|
|
241
|
+
* Provide a custom fetch method for requests to the GraphQL server.
|
|
242
|
+
*
|
|
243
|
+
* This can be used if onServerError, onServerResponse, serverFetchOptions
|
|
244
|
+
* and graphqlEndpoint are not enough to meet your requirements.
|
|
245
|
+
*
|
|
246
|
+
* When this method is implemented, all other methods are not called.
|
|
247
|
+
*
|
|
248
|
+
* The method will be called in the /api/graphql server route and should
|
|
249
|
+
* perform the GraphQL request and return the response.
|
|
250
|
+
*
|
|
251
|
+
* An example use case might be to handle expired tokens.
|
|
252
|
+
*
|
|
253
|
+
* * ```ts
|
|
254
|
+
* async function doGraphqlRequest({
|
|
255
|
+
* event,
|
|
256
|
+
* operation,
|
|
257
|
+
* operationName,
|
|
258
|
+
* operationDocument,
|
|
259
|
+
* variables,
|
|
260
|
+
* }) {
|
|
261
|
+
* const result = await $fetch.raw('https://example.com/graphql', {
|
|
262
|
+
* method: 'POST'
|
|
263
|
+
* body: {
|
|
264
|
+
* query: operationDocument,
|
|
265
|
+
* variables,
|
|
266
|
+
* operationName
|
|
267
|
+
* },
|
|
268
|
+
* headers: {
|
|
269
|
+
* 'custom-header': 'foobar'
|
|
270
|
+
* }
|
|
271
|
+
* })
|
|
272
|
+
*
|
|
273
|
+
* return result._data
|
|
274
|
+
* }
|
|
275
|
+
* ```
|
|
276
|
+
*/
|
|
277
|
+
doGraphqlRequest?: GraphqlMiddlewareDoRequestMethod<CustomResponse, C>;
|
|
278
|
+
};
|
|
279
|
+
export type GraphqlMiddlewareRuntimeConfig = {
|
|
280
|
+
graphqlEndpoint?: string;
|
|
281
|
+
};
|
package/dist/types.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
interface NuxtHooks extends ModuleHooks {}
|
|
5
|
-
}
|
|
3
|
+
import type { default as Module } from './module.js'
|
|
6
4
|
|
|
7
|
-
export
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
6
|
+
|
|
7
|
+
export { type GraphqlMiddlewareServerOptions } from './module.js'
|
package/dist/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { NuxtModule } from '@nuxt/schema'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
interface NuxtHooks extends ModuleHooks {}
|
|
5
|
-
}
|
|
3
|
+
import type { default as Module } from './module'
|
|
6
4
|
|
|
7
|
-
export
|
|
5
|
+
export type ModuleOptions = typeof Module extends NuxtModule<infer O> ? Partial<O> : Record<string, any>
|
|
6
|
+
|
|
7
|
+
export { type GraphqlMiddlewareServerOptions } from './module'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-graphql-middleware",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.8",
|
|
4
4
|
"description": "Module to perform GraphQL requests as a server middleware.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -67,45 +67,41 @@
|
|
|
67
67
|
"@clack/prompts": "^0.10.0",
|
|
68
68
|
"@graphql-codegen/cli": "^5.0.5",
|
|
69
69
|
"@graphql-codegen/schema-ast": "^4.1.0",
|
|
70
|
-
"@graphql-tools/utils": "^10.
|
|
71
|
-
"@nuxt/devtools-kit": "
|
|
72
|
-
"graphql-typescript-deluxe": "^0.0.
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"picocolors": "^1.0.1"
|
|
70
|
+
"@graphql-tools/utils": "^10.8.6",
|
|
71
|
+
"@nuxt/devtools-kit": "^2.3.1",
|
|
72
|
+
"graphql-typescript-deluxe": "^0.0.7",
|
|
73
|
+
"minisearch": "^7.1.2",
|
|
74
|
+
"picocolors": "^1.1.1"
|
|
76
75
|
},
|
|
77
76
|
"devDependencies": {
|
|
78
|
-
"@iconify-json/carbon": "^1.
|
|
79
|
-
"@nuxt/devtools": "^
|
|
80
|
-
"@nuxt/devtools-ui-kit": "
|
|
81
|
-
"@nuxt/eslint": "^
|
|
82
|
-
"@nuxt/kit": "^3.16.
|
|
77
|
+
"@iconify-json/carbon": "^1.2.8",
|
|
78
|
+
"@nuxt/devtools": "^2.3.1",
|
|
79
|
+
"@nuxt/devtools-ui-kit": "^2.3.1",
|
|
80
|
+
"@nuxt/eslint": "^1.2.0",
|
|
81
|
+
"@nuxt/kit": "^3.16.1",
|
|
83
82
|
"@nuxt/module-builder": "^0.8.4",
|
|
84
|
-
"@nuxt/schema": "^3.16.
|
|
85
|
-
"@types/capture-console": "^1.0.5",
|
|
86
|
-
"@types/cli-table": "^0.3.4",
|
|
87
|
-
"@types/inquirer": "^9.0.7",
|
|
83
|
+
"@nuxt/schema": "^3.16.1",
|
|
88
84
|
"@types/micromatch": "^4.0.9",
|
|
89
85
|
"cypress": "^13.12.0",
|
|
90
|
-
"eslint": "^
|
|
91
|
-
"eslint-config-prettier": "^
|
|
92
|
-
"eslint-plugin-prettier": "^5.
|
|
93
|
-
"
|
|
94
|
-
"nuxt": "^3.16.
|
|
86
|
+
"eslint": "^9.23.0",
|
|
87
|
+
"eslint-config-prettier": "^10.1.1",
|
|
88
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
89
|
+
"mermaid": "^11.5.0",
|
|
90
|
+
"nuxt": "^3.16.1",
|
|
95
91
|
"postcss": "^8.5.3",
|
|
96
|
-
"postcss-cli": "^11.0.
|
|
92
|
+
"postcss-cli": "^11.0.1",
|
|
97
93
|
"postcss-import": "^16.1.0",
|
|
98
94
|
"postcss-nested-import": "^1.3.0",
|
|
99
95
|
"postcss-replace": "^2.0.1",
|
|
100
96
|
"postcss-url": "^10.1.3",
|
|
101
|
-
"prettier": "^3.3
|
|
102
|
-
"strip-ansi": "^7.1.0",
|
|
97
|
+
"prettier": "^3.5.3",
|
|
103
98
|
"tailwindcss": "^3.4.17",
|
|
104
99
|
"tailwindcss-scoped-preflight": "^3.4.10",
|
|
105
|
-
"typedoc": "^0.
|
|
106
|
-
"typedoc-plugin-markdown": "^4.
|
|
107
|
-
"vitepress": "^1.
|
|
100
|
+
"typedoc": "^0.28.1",
|
|
101
|
+
"typedoc-plugin-markdown": "^4.5.2",
|
|
102
|
+
"vitepress": "^1.6.3",
|
|
103
|
+
"vitepress-plugin-mermaid": "^2.0.17",
|
|
108
104
|
"vitest": "^1.6.0",
|
|
109
|
-
"vue-tsc": "^2.
|
|
105
|
+
"vue-tsc": "^2.2.8"
|
|
110
106
|
}
|
|
111
107
|
}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{d as H,t as T,v as z,H as U,I as Ne,r as ne,J as xe,j as K,K as Ae,L as G,M as Se,N as Pe,O as $,x as O,P as Ee,Q as ze,R as j,S as R,y as J,T as We,U as Ue,V as ee,W as ye,z as q,A as de,B as Fe,X as Re,_ as Je}from"./BawWjxPx.js";const De=H({__name:"NIcon",props:{icon:{}},setup(i){return(e,t)=>(z(),T("div",{class:U(["n-icon",e.icon])},null,2))}});typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Qe=i=>typeof i<"u";function Ge(i){return JSON.parse(JSON.stringify(i))}function Ve(i,e,t,o={}){var n,r,a;const{clone:u=!1,passive:l=!1,eventName:s,deep:c=!1,defaultValue:f,shouldEmit:h}=o,d=Ne(),y=t||(d==null?void 0:d.emit)||((n=d==null?void 0:d.$emit)==null?void 0:n.bind(d))||((a=(r=d==null?void 0:d.proxy)==null?void 0:r.$emit)==null?void 0:a.bind(d==null?void 0:d.proxy));let v=s;e||(e="modelValue"),v=v||`update:${e.toString()}`;const m=p=>u?typeof u=="function"?u(p):Ge(p):p,g=()=>Qe(i[e])?m(i[e]):f,x=p=>{h?h(p)&&y(v,p):y(v,p)};if(l){const p=g(),A=ne(p);let _=!1;return xe(()=>i[e],S=>{_||(_=!0,A.value=m(S),Ae(()=>_=!1))}),xe(A,S=>{!_&&(S!==i[e]||c)&&x(S)},{deep:c}),A}else return K({get(){return g()},set(p){x(p)}})}const He={class:"n-text-input flex flex items-center border n-border-base rounded py-1 pl-1 pr-2 focus-within:n-focus-base focus-within:border-context n-bg-base"},Ke=H({__name:"NTextInput",props:{modelValue:{default:""},icon:{},placeholder:{},disabled:{type:Boolean},autofocus:{type:Boolean},autocomplete:{},readonly:{type:Boolean},type:{default:"text"}},setup(i,{emit:e}){const n=Ve(i,"modelValue",e,{passive:!0});return(r,a)=>{const u=De;return z(),T("div",He,[G(r.$slots,"icon",{},()=>[r.icon?(z(),j(u,{key:0,icon:r.icon,class:"ml-0.3em mr-0.1em text-1.1em op50"},null,8,["icon"])):R("",!0)]),Se(O("input",Ee({"onUpdate:modelValue":a[0]||(a[0]=l=>ze(n)?n.value=l:null)},r.$props,{class:"ml-0.4em w-full flex-auto n-bg-base !outline-none"}),null,16),[[Pe,$(n)]])])}}}),Me=H({__name:"Tag",props:{green:{type:Boolean},orange:{type:Boolean},text:{}},setup(i){const e=i,t=K(()=>e.green?"bg-green-400:10 text-green-400":e.orange?"bg-orange-400:10 text-orange-400":"bg-gray-400:10 text-gray");return(o,n)=>(z(),T("span",{class:U(["mx-0.5 select-none whitespace-nowrap rounded px-1.5 py-0.5 text-xs inline-block",$(t)])},J(o.text),3))}});let Z;const te=[];function Oe(i){if(te.push(i),!(typeof window>"u"))return window.__NUXT_DEVTOOLS__&&te.forEach(e=>e(window.__NUXT_DEVTOOLS__)),Object.defineProperty(window,"__NUXT_DEVTOOLS__",{set(e){e&&te.forEach(t=>t(e))},get(){return Z.value},configurable:!0}),()=>{te.splice(te.indexOf(i),1)}}function Xe(){Z||(Z=We(),Oe(e));function i(){Ue(Z)}function e(t){Z.value=t,t.host&&t.host.hooks.hook("host:update:reactivity",i)}return Z}const Ye=Xe(),Ze=["innerHTML"],qe={class:"shiki"},je=["textContent"],et=H({__name:"NCodeBlock",props:{code:{},lang:{},lines:{type:Boolean,default:!0},transformRendered:{}},emits:["loaded"],setup(i,{emit:e}){const t=i,o=e,n=K(()=>{var a;const r=t.lang==="text"?{code:t.code,supported:!1}:((a=Ye.value)==null?void 0:a.devtools.renderCodeHighlight(t.code,t.lang))||{code:t.code,supported:!1};return r.supported&&t.transformRendered&&(r.code=t.transformRendered(r.code)),r.supported&&Ae(()=>o("loaded")),r});return(r,a)=>r.lang&&n.value.supported?(z(),T("pre",{key:0,class:U(["n-code-block",r.lines?"n-code-block-lines":""]),innerHTML:n.value.code},null,10,Ze)):(z(),T("pre",{key:1,class:U(["n-code-block",r.lines?"n-code-block-lines":""])},[O("pre",qe,[O("code",null,[(z(!0),T(ee,null,ye(r.code.split(`
|
|
2
|
-
`),(u,l)=>(z(),T(ee,{key:l},[O("span",{class:"line",textContent:J(u)},null,8,je),a[0]||(a[0]=O("br",null,null,-1))],64))),128))])])],2))}}),tt={flex:"~ gap-3","items-center":""},rt=H({__name:"NIconTitle",props:{icon:{},text:{}},setup(i){return(e,t)=>(z(),T("div",tt,[e.icon?(z(),T("div",{key:0,class:U(e.icon)},null,2)):R("",!0),G(e.$slots,"default",{},()=>[O("div",null,J(e.text),1)])]))}}),nt=["open"],it={"text-base":""},ot={key:0,"text-sm":"",op50:""},at=H({__name:"NSectionBlock",props:{icon:{},text:{},description:{},containerClass:{default:""},headerClass:{},collapse:{type:Boolean,default:!0},open:{type:Boolean,default:!0},padding:{type:[Boolean,String],default:!0}},setup(i){const t=Ve(i,"open",void 0,{passive:!0});function o(n){t.value=n.target.open}return(n,r)=>{const a=De,u=rt;return z(),T(ee,null,[O("details",{open:$(t),onToggle:r[0]||(r[0]=(...l)=>o&&o(...l))},[O("summary",{class:U(["cursor-pointer select-none hover:bg-active p4",n.collapse?"":"pointer-events-none"])},[q(u,{icon:n.icon,text:n.text,"text-xl":"",transition:"",class:U([$(t)?"op100":"op60",n.headerClass])},{default:de(()=>[O("div",null,[O("div",it,[G(n.$slots,"text",{},()=>[Fe(J(n.text),1)],!0)]),n.description||n.$slots.description?(z(),T("div",ot,[G(n.$slots,"description",{},()=>[Fe(J(n.description),1)],!0)])):R("",!0)]),r[1]||(r[1]=O("div",{class:"flex-auto"},null,-1)),G(n.$slots,"actions",{},void 0,!0),n.collapse?(z(),j(a,{key:0,icon:"carbon-chevron-down",class:"chevron","cursor-pointer":"","place-self-start":"","text-base":"",op75:"",transition:"","duration-500":""})):R("",!0)]),_:3},8,["icon","text","class"])],2),r._lazyshow1||$(t)?(r._lazyshow1=!0,z(),T(ee,null,[Se(O("div",{class:U(["flex flex-col flex-gap2 pb6 pt2",typeof n.padding=="string"?n.padding:n.padding?"px4":""])},[G(n.$slots,"details",{},void 0,!0),O("div",{class:U([n.containerClass,"mt1"])},[G(n.$slots,"default",{},void 0,!0)],2),G(n.$slots,"footer",{},void 0,!0)],2),[[Re,$(t)]])],64)):R("v-show-if",!0)],40,nt),r[2]||(r[2]=O("div",{class:"x-divider"},null,-1))],64)}}}),ut=Je(at,[["__scopeId","data-v-c51ec814"]]),lt={class:"h-full of-auto p2"},st={class:"p5"},ct={class:"font-mono mb4 font-bold text-3xl"},ft={key:0,class:"mb3"},dt=["href"],ht={key:0,class:"font-mono bg-red-900 text-red-100 p2"},vt=H({__name:"DocumentDetail",props:{id:{},timestamp:{},source:{},name:{},identifier:{},filePath:{},serverApiPrefix:{}},setup(i){const e=i,t=K(()=>[]),o=K(()=>e.identifier!=="fragment"?`${e.serverApiPrefix}/${e.identifier}/${e.name}`:null);return(n,r)=>{const a=Me,u=et,l=ut;return z(),T("div",lt,[O("div",st,[O("h2",ct,J(n.name),1),$(o)?(z(),T("div",ft,[n.identifier==="query"?(z(),j(a,{key:0,green:"",text:"GET"})):(z(),j(a,{key:1,orange:"",text:"POST"})),O("a",{class:"n-transition n-link n-link-base hover:n-link-hover ml2",target:"_blank",href:$(o)},J($(o)),9,dt)])):R("",!0)]),q(l,{text:"Document",description:n.filePath,padding:"px4"},{default:de(()=>[q(u,{code:n.source,lang:"graphql"},null,8,["code"])]),_:1},8,["description"]),q(l,{text:"Errors",description:$(t).length+" errors",padding:"px4"},{default:de(()=>[$(t).length?(z(),T("div",ht,[(z(!0),T(ee,null,ye($(t),(s,c)=>(z(),T("div",{key:c},J(s),1))),128))])):R("",!0)]),_:1},8,["description"])])}}});var M=function(){return M=Object.assign||function(e){for(var t,o=1,n=arguments.length;o<n;o++){t=arguments[o];for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])}return e},M.apply(this,arguments)};function pt(i,e,t,o){function n(r){return r instanceof t?r:new t(function(a){a(r)})}return new(t||(t=Promise))(function(r,a){function u(c){try{s(o.next(c))}catch(f){a(f)}}function l(c){try{s(o.throw(c))}catch(f){a(f)}}function s(c){c.done?r(c.value):n(c.value).then(u,l)}s((o=o.apply(i,[])).next())})}function yt(i,e){var t={label:0,sent:function(){if(r[0]&1)throw r[1];return r[1]},trys:[],ops:[]},o,n,r,a;return a={next:u(0),throw:u(1),return:u(2)},typeof Symbol=="function"&&(a[Symbol.iterator]=function(){return this}),a;function u(s){return function(c){return l([s,c])}}function l(s){if(o)throw new TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(t=0)),t;)try{if(o=1,n&&(r=s[0]&2?n.return:s[0]?n.throw||((r=n.return)&&r.call(n),0):n.next)&&!(r=r.call(n,s[1])).done)return r;switch(n=0,r&&(s=[s[0]&2,r.value]),s[0]){case 0:case 1:r=s;break;case 4:return t.label++,{value:s[1],done:!1};case 5:t.label++,n=s[1],s=[0];continue;case 7:s=t.ops.pop(),t.trys.pop();continue;default:if(r=t.trys,!(r=r.length>0&&r[r.length-1])&&(s[0]===6||s[0]===2)){t=0;continue}if(s[0]===3&&(!r||s[1]>r[0]&&s[1]<r[3])){t.label=s[1];break}if(s[0]===6&&t.label<r[1]){t.label=r[1],r=s;break}if(r&&t.label<r[2]){t.label=r[2],t.ops.push(s);break}r[2]&&t.ops.pop(),t.trys.pop();continue}s=e.call(i,t)}catch(c){s=[6,c],n=0}finally{o=r=0}if(s[0]&5)throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}}function F(i){var e=typeof Symbol=="function"&&Symbol.iterator,t=e&&i[e],o=0;if(t)return t.call(i);if(i&&typeof i.length=="number")return{next:function(){return i&&o>=i.length&&(i=void 0),{value:i&&i[o++],done:!i}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function B(i,e){var t=typeof Symbol=="function"&&i[Symbol.iterator];if(!t)return i;var o=t.call(i),n,r=[],a;try{for(;(e===void 0||e-- >0)&&!(n=o.next()).done;)r.push(n.value)}catch(u){a={error:u}}finally{try{n&&!n.done&&(t=o.return)&&t.call(o)}finally{if(a)throw a.error}}return r}var mt="ENTRIES",ke="KEYS",Le="VALUES",I="",ae=function(){function i(e,t){var o=e._tree,n=Array.from(o.keys());this.set=e,this._type=t,this._path=n.length>0?[{node:o,keys:n}]:[]}return i.prototype.next=function(){var e=this.dive();return this.backtrack(),e},i.prototype.dive=function(){if(this._path.length===0)return{done:!0,value:void 0};var e=Y(this._path),t=e.node,o=e.keys;if(Y(o)===I)return{done:!1,value:this.result()};var n=t.get(Y(o));return this._path.push({node:n,keys:Array.from(n.keys())}),this.dive()},i.prototype.backtrack=function(){if(this._path.length!==0){var e=Y(this._path).keys;e.pop(),!(e.length>0)&&(this._path.pop(),this.backtrack())}},i.prototype.key=function(){return this.set._prefix+this._path.map(function(e){var t=e.keys;return Y(t)}).filter(function(e){return e!==I}).join("")},i.prototype.value=function(){return Y(this._path).node.get(I)},i.prototype.result=function(){switch(this._type){case Le:return this.value();case ke:return this.key();default:return[this.key(),this.value()]}},i.prototype[Symbol.iterator]=function(){return this},i}(),Y=function(i){return i[i.length-1]},gt=function(i,e,t){var o=new Map;if(e===void 0)return o;for(var n=e.length+1,r=n+t,a=new Uint8Array(r*n).fill(t+1),u=0;u<n;++u)a[u]=u;for(var l=1;l<r;++l)a[l*n]=l;return Be(i,e,t,o,a,1,n,""),o},Be=function(i,e,t,o,n,r,a,u){var l,s,c=r*a;try{e:for(var f=F(i.keys()),h=f.next();!h.done;h=f.next()){var d=h.value;if(d===I){var y=n[c-1];y<=t&&o.set(u,[i.get(d),y])}else{for(var v=r,m=0;m<d.length;++m,++v){for(var g=d[m],x=a*v,p=x-a,A=n[x],_=Math.max(0,v-t-1),S=Math.min(a-1,v+t),w=_;w<S;++w){var C=g!==e[w],E=n[p+w]+ +C,D=n[p+w+1]+1,k=n[x+w]+1,b=n[x+w+1]=Math.min(E,D,k);b<A&&(A=b)}if(A>t)continue e}Be(i.get(d),e,t,o,n,v,a,u+d)}}}catch(L){l={error:L}}finally{try{h&&!h.done&&(s=f.return)&&s.call(f)}finally{if(l)throw l.error}}},ue=function(){function i(e,t){e===void 0&&(e=new Map),t===void 0&&(t=""),this._size=void 0,this._tree=e,this._prefix=t}return i.prototype.atPrefix=function(e){var t,o;if(!e.startsWith(this._prefix))throw new Error("Mismatched prefix");var n=B(oe(this._tree,e.slice(this._prefix.length)),2),r=n[0],a=n[1];if(r===void 0){var u=B(me(a),2),l=u[0],s=u[1];try{for(var c=F(l.keys()),f=c.next();!f.done;f=c.next()){var h=f.value;if(h!==I&&h.startsWith(s)){var d=new Map;return d.set(h.slice(s.length),l.get(h)),new i(d,e)}}}catch(y){t={error:y}}finally{try{f&&!f.done&&(o=c.return)&&o.call(c)}finally{if(t)throw t.error}}}return new i(r,e)},i.prototype.clear=function(){this._size=void 0,this._tree.clear()},i.prototype.delete=function(e){return this._size=void 0,xt(this._tree,e)},i.prototype.entries=function(){return new ae(this,mt)},i.prototype.forEach=function(e){var t,o;try{for(var n=F(this),r=n.next();!r.done;r=n.next()){var a=B(r.value,2),u=a[0],l=a[1];e(u,l,this)}}catch(s){t={error:s}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}},i.prototype.fuzzyGet=function(e,t){return gt(this._tree,e,t)},i.prototype.get=function(e){var t=he(this._tree,e);return t!==void 0?t.get(I):void 0},i.prototype.has=function(e){var t=he(this._tree,e);return t!==void 0&&t.has(I)},i.prototype.keys=function(){return new ae(this,ke)},i.prototype.set=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var o=le(this._tree,e);return o.set(I,t),this},Object.defineProperty(i.prototype,"size",{get:function(){if(this._size)return this._size;this._size=0;for(var e=this.entries();!e.next().done;)this._size+=1;return this._size},enumerable:!1,configurable:!0}),i.prototype.update=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var o=le(this._tree,e);return o.set(I,t(o.get(I))),this},i.prototype.fetch=function(e,t){if(typeof e!="string")throw new Error("key must be a string");this._size=void 0;var o=le(this._tree,e),n=o.get(I);return n===void 0&&o.set(I,n=t()),n},i.prototype.values=function(){return new ae(this,Le)},i.prototype[Symbol.iterator]=function(){return this.entries()},i.from=function(e){var t,o,n=new i;try{for(var r=F(e),a=r.next();!a.done;a=r.next()){var u=B(a.value,2),l=u[0],s=u[1];n.set(l,s)}}catch(c){t={error:c}}finally{try{a&&!a.done&&(o=r.return)&&o.call(r)}finally{if(t)throw t.error}}return n},i.fromObject=function(e){return i.from(Object.entries(e))},i}(),oe=function(i,e,t){var o,n;if(t===void 0&&(t=[]),e.length===0||i==null)return[i,t];try{for(var r=F(i.keys()),a=r.next();!a.done;a=r.next()){var u=a.value;if(u!==I&&e.startsWith(u))return t.push([i,u]),oe(i.get(u),e.slice(u.length),t)}}catch(l){o={error:l}}finally{try{a&&!a.done&&(n=r.return)&&n.call(r)}finally{if(o)throw o.error}}return t.push([i,e]),oe(void 0,"",t)},he=function(i,e){var t,o;if(e.length===0||i==null)return i;try{for(var n=F(i.keys()),r=n.next();!r.done;r=n.next()){var a=r.value;if(a!==I&&e.startsWith(a))return he(i.get(a),e.slice(a.length))}}catch(u){t={error:u}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}},le=function(i,e){var t,o,n=e.length;e:for(var r=0;i&&r<n;){try{for(var a=(t=void 0,F(i.keys())),u=a.next();!u.done;u=a.next()){var l=u.value;if(l!==I&&e[r]===l[0]){for(var s=Math.min(n-r,l.length),c=1;c<s&&e[r+c]===l[c];)++c;var f=i.get(l);if(c===l.length)i=f;else{var h=new Map;h.set(l.slice(c),f),i.set(e.slice(r,r+c),h),i.delete(l),i=h}r+=c;continue e}}}catch(y){t={error:y}}finally{try{u&&!u.done&&(o=a.return)&&o.call(a)}finally{if(t)throw t.error}}var d=new Map;return i.set(e.slice(r),d),d}return i},xt=function(i,e){var t=B(oe(i,e),2),o=t[0],n=t[1];if(o!==void 0){if(o.delete(I),o.size===0)Te(n);else if(o.size===1){var r=B(o.entries().next().value,2),a=r[0],u=r[1];Ie(n,a,u)}}},Te=function(i){if(i.length!==0){var e=B(me(i),2),t=e[0],o=e[1];if(t.delete(o),t.size===0)Te(i.slice(0,-1));else if(t.size===1){var n=B(t.entries().next().value,2),r=n[0],a=n[1];r!==I&&Ie(i.slice(0,-1),r,a)}}},Ie=function(i,e,t){if(i.length!==0){var o=B(me(i),2),n=o[0],r=o[1];n.set(r+e,t),n.delete(r)}},me=function(i){return i[i.length-1]},re,ge="or",$e="and",Ft="and_not",wt=function(){function i(e){if((e==null?void 0:e.fields)==null)throw new Error('MiniSearch: option "fields" must be provided');var t=e.autoVacuum==null||e.autoVacuum===!0?fe:e.autoVacuum;this._options=M(M(M({},ce),e),{autoVacuum:t,searchOptions:M(M({},we),e.searchOptions||{}),autoSuggestOptions:M(M({},St),e.autoSuggestOptions||{})}),this._index=new ue,this._documentCount=0,this._documentIds=new Map,this._idToShortId=new Map,this._fieldIds={},this._fieldLength=new Map,this._avgFieldLength=[],this._nextId=0,this._storedFields=new Map,this._dirtCount=0,this._currentVacuum=null,this._enqueuedVacuum=null,this._enqueuedVacuumConditions=pe,this.addFields(this._options.fields)}return i.prototype.add=function(e){var t,o,n,r,a,u,l=this._options,s=l.extractField,c=l.tokenize,f=l.processTerm,h=l.fields,d=l.idField,y=s(e,d);if(y==null)throw new Error('MiniSearch: document does not have ID field "'.concat(d,'"'));if(this._idToShortId.has(y))throw new Error("MiniSearch: duplicate ID ".concat(y));var v=this.addDocumentId(y);this.saveStoredFields(v,e);try{for(var m=F(h),g=m.next();!g.done;g=m.next()){var x=g.value,p=s(e,x);if(p!=null){var A=c(p.toString(),x),_=this._fieldIds[x],S=new Set(A).size;this.addFieldLength(v,_,this._documentCount-1,S);try{for(var w=(n=void 0,F(A)),C=w.next();!C.done;C=w.next()){var E=C.value,D=f(E,x);if(Array.isArray(D))try{for(var k=(a=void 0,F(D)),b=k.next();!b.done;b=k.next()){var L=b.value;this.addTerm(_,v,L)}}catch(V){a={error:V}}finally{try{b&&!b.done&&(u=k.return)&&u.call(k)}finally{if(a)throw a.error}}else D&&this.addTerm(_,v,D)}}catch(V){n={error:V}}finally{try{C&&!C.done&&(r=w.return)&&r.call(w)}finally{if(n)throw n.error}}}}}catch(V){t={error:V}}finally{try{g&&!g.done&&(o=m.return)&&o.call(m)}finally{if(t)throw t.error}}},i.prototype.addAll=function(e){var t,o;try{for(var n=F(e),r=n.next();!r.done;r=n.next()){var a=r.value;this.add(a)}}catch(u){t={error:u}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}},i.prototype.addAllAsync=function(e,t){var o=this;t===void 0&&(t={});var n=t.chunkSize,r=n===void 0?10:n,a={chunk:[],promise:Promise.resolve()},u=e.reduce(function(c,f,h){var d=c.chunk,y=c.promise;return d.push(f),(h+1)%r===0?{chunk:[],promise:y.then(function(){return new Promise(function(v){return setTimeout(v,0)})}).then(function(){return o.addAll(d)})}:{chunk:d,promise:y}},a),l=u.chunk,s=u.promise;return s.then(function(){return o.addAll(l)})},i.prototype.remove=function(e){var t,o,n,r,a,u,l=this._options,s=l.tokenize,c=l.processTerm,f=l.extractField,h=l.fields,d=l.idField,y=f(e,d);if(y==null)throw new Error('MiniSearch: document does not have ID field "'.concat(d,'"'));var v=this._idToShortId.get(y);if(v==null)throw new Error("MiniSearch: cannot remove document with ID ".concat(y,": it is not in the index"));try{for(var m=F(h),g=m.next();!g.done;g=m.next()){var x=g.value,p=f(e,x);if(p!=null){var A=s(p.toString(),x),_=this._fieldIds[x],S=new Set(A).size;this.removeFieldLength(v,_,this._documentCount,S);try{for(var w=(n=void 0,F(A)),C=w.next();!C.done;C=w.next()){var E=C.value,D=c(E,x);if(Array.isArray(D))try{for(var k=(a=void 0,F(D)),b=k.next();!b.done;b=k.next()){var L=b.value;this.removeTerm(_,v,L)}}catch(V){a={error:V}}finally{try{b&&!b.done&&(u=k.return)&&u.call(k)}finally{if(a)throw a.error}}else D&&this.removeTerm(_,v,D)}}catch(V){n={error:V}}finally{try{C&&!C.done&&(r=w.return)&&r.call(w)}finally{if(n)throw n.error}}}}}catch(V){t={error:V}}finally{try{g&&!g.done&&(o=m.return)&&o.call(m)}finally{if(t)throw t.error}}this._storedFields.delete(v),this._documentIds.delete(v),this._idToShortId.delete(y),this._fieldLength.delete(v),this._documentCount-=1},i.prototype.removeAll=function(e){var t,o;if(e)try{for(var n=F(e),r=n.next();!r.done;r=n.next()){var a=r.value;this.remove(a)}}catch(u){t={error:u}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}else{if(arguments.length>0)throw new Error("Expected documents to be present. Omit the argument to remove all documents.");this._index=new ue,this._documentCount=0,this._documentIds=new Map,this._idToShortId=new Map,this._fieldLength=new Map,this._avgFieldLength=[],this._storedFields=new Map,this._nextId=0}},i.prototype.discard=function(e){var t=this,o=this._idToShortId.get(e);if(o==null)throw new Error("MiniSearch: cannot discard document with ID ".concat(e,": it is not in the index"));this._idToShortId.delete(e),this._documentIds.delete(o),this._storedFields.delete(o),(this._fieldLength.get(o)||[]).forEach(function(n,r){t.removeFieldLength(o,r,t._documentCount,n)}),this._fieldLength.delete(o),this._documentCount-=1,this._dirtCount+=1,this.maybeAutoVacuum()},i.prototype.maybeAutoVacuum=function(){if(this._options.autoVacuum!==!1){var e=this._options.autoVacuum,t=e.minDirtFactor,o=e.minDirtCount,n=e.batchSize,r=e.batchWait;this.conditionalVacuum({batchSize:n,batchWait:r},{minDirtCount:o,minDirtFactor:t})}},i.prototype.discardAll=function(e){var t,o,n=this._options.autoVacuum;try{this._options.autoVacuum=!1;try{for(var r=F(e),a=r.next();!a.done;a=r.next()){var u=a.value;this.discard(u)}}catch(l){t={error:l}}finally{try{a&&!a.done&&(o=r.return)&&o.call(r)}finally{if(t)throw t.error}}}finally{this._options.autoVacuum=n}this.maybeAutoVacuum()},i.prototype.replace=function(e){var t=this._options,o=t.idField,n=t.extractField,r=n(e,o);this.discard(r),this.add(e)},i.prototype.vacuum=function(e){return e===void 0&&(e={}),this.conditionalVacuum(e)},i.prototype.conditionalVacuum=function(e,t){var o=this;return this._currentVacuum?(this._enqueuedVacuumConditions=this._enqueuedVacuumConditions&&t,this._enqueuedVacuum!=null?this._enqueuedVacuum:(this._enqueuedVacuum=this._currentVacuum.then(function(){var n=o._enqueuedVacuumConditions;return o._enqueuedVacuumConditions=pe,o.performVacuuming(e,n)}),this._enqueuedVacuum)):this.vacuumConditionsMet(t)===!1?Promise.resolve():(this._currentVacuum=this.performVacuuming(e),this._currentVacuum)},i.prototype.performVacuuming=function(e,t){return pt(this,void 0,void 0,function(){var o,n,r,a,u,l,s,c,f,h,d,y,v,m,g,x,p,A,_,S,w,C,E,D,k;return yt(this,function(b){switch(b.label){case 0:if(o=this._dirtCount,!this.vacuumConditionsMet(t))return[3,10];n=e.batchSize||ve.batchSize,r=e.batchWait||ve.batchWait,a=1,b.label=1;case 1:b.trys.push([1,7,8,9]),u=F(this._index),l=u.next(),b.label=2;case 2:if(l.done)return[3,6];s=B(l.value,2),c=s[0],f=s[1];try{for(h=(C=void 0,F(f)),d=h.next();!d.done;d=h.next()){y=B(d.value,2),v=y[0],m=y[1];try{for(g=(D=void 0,F(m)),x=g.next();!x.done;x=g.next())p=B(x.value,1),A=p[0],!this._documentIds.has(A)&&(m.size<=1?f.delete(v):m.delete(A))}catch(L){D={error:L}}finally{try{x&&!x.done&&(k=g.return)&&k.call(g)}finally{if(D)throw D.error}}}}catch(L){C={error:L}}finally{try{d&&!d.done&&(E=h.return)&&E.call(h)}finally{if(C)throw C.error}}return this._index.get(c).size===0&&this._index.delete(c),a%n!==0?[3,4]:[4,new Promise(function(L){return setTimeout(L,r)})];case 3:b.sent(),b.label=4;case 4:a+=1,b.label=5;case 5:return l=u.next(),[3,2];case 6:return[3,9];case 7:return _=b.sent(),S={error:_},[3,9];case 8:try{l&&!l.done&&(w=u.return)&&w.call(u)}finally{if(S)throw S.error}return[7];case 9:this._dirtCount-=o,b.label=10;case 10:return[4,null];case 11:return b.sent(),this._currentVacuum=this._enqueuedVacuum,this._enqueuedVacuum=null,[2]}})})},i.prototype.vacuumConditionsMet=function(e){if(e==null)return!0;var t=e.minDirtCount,o=e.minDirtFactor;return t=t||fe.minDirtCount,o=o||fe.minDirtFactor,this.dirtCount>=t&&this.dirtFactor>=o},Object.defineProperty(i.prototype,"isVacuuming",{get:function(){return this._currentVacuum!=null},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"dirtCount",{get:function(){return this._dirtCount},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"dirtFactor",{get:function(){return this._dirtCount/(1+this._documentCount+this._dirtCount)},enumerable:!1,configurable:!0}),i.prototype.has=function(e){return this._idToShortId.has(e)},i.prototype.getStoredFields=function(e){var t=this._idToShortId.get(e);if(t!=null)return this._storedFields.get(t)},i.prototype.search=function(e,t){var o,n;t===void 0&&(t={});var r=this.executeQuery(e,t),a=[];try{for(var u=F(r),l=u.next();!l.done;l=u.next()){var s=B(l.value,2),c=s[0],f=s[1],h=f.score,d=f.terms,y=f.match,v=d.length||1,m={id:this._documentIds.get(c),score:h*v,terms:Object.keys(y),queryTerms:d,match:y};Object.assign(m,this._storedFields.get(c)),(t.filter==null||t.filter(m))&&a.push(m)}}catch(g){o={error:g}}finally{try{l&&!l.done&&(n=u.return)&&n.call(u)}finally{if(o)throw o.error}}return e===i.wildcard&&t.boostDocument==null&&this._options.searchOptions.boostDocument==null||a.sort(_e),a},i.prototype.autoSuggest=function(e,t){var o,n,r,a;t===void 0&&(t={}),t=M(M({},this._options.autoSuggestOptions),t);var u=new Map;try{for(var l=F(this.search(e,t)),s=l.next();!s.done;s=l.next()){var c=s.value,f=c.score,h=c.terms,d=h.join(" "),y=u.get(d);y!=null?(y.score+=f,y.count+=1):u.set(d,{score:f,terms:h,count:1})}}catch(_){o={error:_}}finally{try{s&&!s.done&&(n=l.return)&&n.call(l)}finally{if(o)throw o.error}}var v=[];try{for(var m=F(u),g=m.next();!g.done;g=m.next()){var x=B(g.value,2),y=x[0],p=x[1],f=p.score,h=p.terms,A=p.count;v.push({suggestion:y,terms:h,score:f/A})}}catch(_){r={error:_}}finally{try{g&&!g.done&&(a=m.return)&&a.call(m)}finally{if(r)throw r.error}}return v.sort(_e),v},Object.defineProperty(i.prototype,"documentCount",{get:function(){return this._documentCount},enumerable:!1,configurable:!0}),Object.defineProperty(i.prototype,"termCount",{get:function(){return this._index.size},enumerable:!1,configurable:!0}),i.loadJSON=function(e,t){if(t==null)throw new Error("MiniSearch: loadJSON should be given the same options used when serializing the index");return this.loadJS(JSON.parse(e),t)},i.getDefault=function(e){if(ce.hasOwnProperty(e))return se(ce,e);throw new Error('MiniSearch: unknown option "'.concat(e,'"'))},i.loadJS=function(e,t){var o,n,r,a,u,l,s=e.index,c=e.documentCount,f=e.nextId,h=e.documentIds,d=e.fieldIds,y=e.fieldLength,v=e.averageFieldLength,m=e.storedFields,g=e.dirtCount,x=e.serializationVersion;if(x!==1&&x!==2)throw new Error("MiniSearch: cannot deserialize an index created with an incompatible version");var p=new i(t);p._documentCount=c,p._nextId=f,p._documentIds=ie(h),p._idToShortId=new Map,p._fieldIds=d,p._fieldLength=ie(y),p._avgFieldLength=v,p._storedFields=ie(m),p._dirtCount=g||0,p._index=new ue;try{for(var A=F(p._documentIds),_=A.next();!_.done;_=A.next()){var S=B(_.value,2),w=S[0],C=S[1];p._idToShortId.set(C,w)}}catch(W){o={error:W}}finally{try{_&&!_.done&&(n=A.return)&&n.call(A)}finally{if(o)throw o.error}}try{for(var E=F(s),D=E.next();!D.done;D=E.next()){var k=B(D.value,2),b=k[0],L=k[1],V=new Map;try{for(var P=(u=void 0,F(Object.keys(L))),N=P.next();!N.done;N=P.next()){var Q=N.value,X=L[Q];x===1&&(X=X.ds),V.set(parseInt(Q,10),ie(X))}}catch(W){u={error:W}}finally{try{N&&!N.done&&(l=P.return)&&l.call(P)}finally{if(u)throw u.error}}p._index.set(b,V)}}catch(W){r={error:W}}finally{try{D&&!D.done&&(a=E.return)&&a.call(E)}finally{if(r)throw r.error}}return p},i.prototype.executeQuery=function(e,t){var o=this;if(t===void 0&&(t={}),e===i.wildcard)return this.executeWildcardQuery(t);if(typeof e!="string"){var n=M(M(M({},t),e),{queries:void 0}),r=e.queries.map(function(m){return o.executeQuery(m,n)});return this.combineResults(r,n.combineWith)}var a=this._options,u=a.tokenize,l=a.processTerm,s=a.searchOptions,c=M(M({tokenize:u,processTerm:l},s),t),f=c.tokenize,h=c.processTerm,d=f(e).flatMap(function(m){return h(m)}).filter(function(m){return!!m}),y=d.map(At(c)),v=y.map(function(m){return o.executeQuerySpec(m,c)});return this.combineResults(v,c.combineWith)},i.prototype.executeQuerySpec=function(e,t){var o,n,r,a,u=M(M({},this._options.searchOptions),t),l=(u.fields||this._options.fields).reduce(function(Q,X){var W;return M(M({},Q),(W={},W[X]=se(u.boost,X)||1,W))},{}),s=u.boostDocument,c=u.weights,f=u.maxFuzzy,h=u.bm25,d=M(M({},we.weights),c),y=d.fuzzy,v=d.prefix,m=this._index.get(e.term),g=this.termResults(e.term,e.term,1,m,l,s,h),x,p;if(e.prefix&&(x=this._index.atPrefix(e.term)),e.fuzzy){var A=e.fuzzy===!0?.2:e.fuzzy,_=A<1?Math.min(f,Math.round(e.term.length*A)):A;_&&(p=this._index.fuzzyGet(e.term,_))}if(x)try{for(var S=F(x),w=S.next();!w.done;w=S.next()){var C=B(w.value,2),E=C[0],D=C[1],k=E.length-e.term.length;if(k){p==null||p.delete(E);var b=v*E.length/(E.length+.3*k);this.termResults(e.term,E,b,D,l,s,h,g)}}}catch(Q){o={error:Q}}finally{try{w&&!w.done&&(n=S.return)&&n.call(S)}finally{if(o)throw o.error}}if(p)try{for(var L=F(p.keys()),V=L.next();!V.done;V=L.next()){var E=V.value,P=B(p.get(E),2),N=P[0],k=P[1];if(k){var b=y*E.length/(E.length+k);this.termResults(e.term,E,b,N,l,s,h,g)}}}catch(Q){r={error:Q}}finally{try{V&&!V.done&&(a=L.return)&&a.call(L)}finally{if(r)throw r.error}}return g},i.prototype.executeWildcardQuery=function(e){var t,o,n=new Map,r=M(M({},this._options.searchOptions),e);try{for(var a=F(this._documentIds),u=a.next();!u.done;u=a.next()){var l=B(u.value,2),s=l[0],c=l[1],f=r.boostDocument?r.boostDocument(c,"",this._storedFields.get(s)):1;n.set(s,{score:f,terms:[],match:{}})}}catch(h){t={error:h}}finally{try{u&&!u.done&&(o=a.return)&&o.call(a)}finally{if(t)throw t.error}}return n},i.prototype.combineResults=function(e,t){if(t===void 0&&(t=ge),e.length===0)return new Map;var o=t.toLowerCase();return e.reduce(bt[o])||new Map},i.prototype.toJSON=function(){var e,t,o,n,r=[];try{for(var a=F(this._index),u=a.next();!u.done;u=a.next()){var l=B(u.value,2),s=l[0],c=l[1],f={};try{for(var h=(o=void 0,F(c)),d=h.next();!d.done;d=h.next()){var y=B(d.value,2),v=y[0],m=y[1];f[v]=Object.fromEntries(m)}}catch(g){o={error:g}}finally{try{d&&!d.done&&(n=h.return)&&n.call(h)}finally{if(o)throw o.error}}r.push([s,f])}}catch(g){e={error:g}}finally{try{u&&!u.done&&(t=a.return)&&t.call(a)}finally{if(e)throw e.error}}return{documentCount:this._documentCount,nextId:this._nextId,documentIds:Object.fromEntries(this._documentIds),fieldIds:this._fieldIds,fieldLength:Object.fromEntries(this._fieldLength),averageFieldLength:this._avgFieldLength,storedFields:Object.fromEntries(this._storedFields),dirtCount:this._dirtCount,index:r,serializationVersion:2}},i.prototype.termResults=function(e,t,o,n,r,a,u,l){var s,c,f,h,d;if(l===void 0&&(l=new Map),n==null)return l;try{for(var y=F(Object.keys(r)),v=y.next();!v.done;v=y.next()){var m=v.value,g=r[m],x=this._fieldIds[m],p=n.get(x);if(p!=null){var A=p.size,_=this._avgFieldLength[x];try{for(var S=(f=void 0,F(p.keys())),w=S.next();!w.done;w=S.next()){var C=w.value;if(!this._documentIds.has(C)){this.removeTerm(x,C,t),A-=1;continue}var E=a?a(this._documentIds.get(C),t,this._storedFields.get(C)):1;if(E){var D=p.get(C),k=this._fieldLength.get(C)[x],b=Ct(D,A,this._documentCount,k,_,u),L=o*g*E*b,V=l.get(C);if(V){V.score+=L,Et(V.terms,e);var P=se(V.match,t);P?P.push(m):V.match[t]=[m]}else l.set(C,{score:L,terms:[e],match:(d={},d[t]=[m],d)})}}}catch(N){f={error:N}}finally{try{w&&!w.done&&(h=S.return)&&h.call(S)}finally{if(f)throw f.error}}}}}catch(N){s={error:N}}finally{try{v&&!v.done&&(c=y.return)&&c.call(y)}finally{if(s)throw s.error}}return l},i.prototype.addTerm=function(e,t,o){var n=this._index.fetch(o,Ce),r=n.get(e);if(r==null)r=new Map,r.set(t,1),n.set(e,r);else{var a=r.get(t);r.set(t,(a||0)+1)}},i.prototype.removeTerm=function(e,t,o){if(!this._index.has(o)){this.warnDocumentChanged(t,e,o);return}var n=this._index.fetch(o,Ce),r=n.get(e);r==null||r.get(t)==null?this.warnDocumentChanged(t,e,o):r.get(t)<=1?r.size<=1?n.delete(e):r.delete(t):r.set(t,r.get(t)-1),this._index.get(o).size===0&&this._index.delete(o)},i.prototype.warnDocumentChanged=function(e,t,o){var n,r;try{for(var a=F(Object.keys(this._fieldIds)),u=a.next();!u.done;u=a.next()){var l=u.value;if(this._fieldIds[l]===t){this._options.logger("warn","MiniSearch: document with ID ".concat(this._documentIds.get(e),' has changed before removal: term "').concat(o,'" was not present in field "').concat(l,'". Removing a document after it has changed can corrupt the index!'),"version_conflict");return}}}catch(s){n={error:s}}finally{try{u&&!u.done&&(r=a.return)&&r.call(a)}finally{if(n)throw n.error}}},i.prototype.addDocumentId=function(e){var t=this._nextId;return this._idToShortId.set(e,t),this._documentIds.set(t,e),this._documentCount+=1,this._nextId+=1,t},i.prototype.addFields=function(e){for(var t=0;t<e.length;t++)this._fieldIds[e[t]]=t},i.prototype.addFieldLength=function(e,t,o,n){var r=this._fieldLength.get(e);r==null&&this._fieldLength.set(e,r=[]),r[t]=n;var a=this._avgFieldLength[t]||0,u=a*o+n;this._avgFieldLength[t]=u/(o+1)},i.prototype.removeFieldLength=function(e,t,o,n){if(o===1){this._avgFieldLength[t]=0;return}var r=this._avgFieldLength[t]*o-n;this._avgFieldLength[t]=r/(o-1)},i.prototype.saveStoredFields=function(e,t){var o,n,r=this._options,a=r.storeFields,u=r.extractField;if(!(a==null||a.length===0)){var l=this._storedFields.get(e);l==null&&this._storedFields.set(e,l={});try{for(var s=F(a),c=s.next();!c.done;c=s.next()){var f=c.value,h=u(t,f);h!==void 0&&(l[f]=h)}}catch(d){o={error:d}}finally{try{c&&!c.done&&(n=s.return)&&n.call(s)}finally{if(o)throw o.error}}}},i.wildcard=Symbol("*"),i}(),se=function(i,e){return Object.prototype.hasOwnProperty.call(i,e)?i[e]:void 0},bt=(re={},re[ge]=function(i,e){var t,o;try{for(var n=F(e.keys()),r=n.next();!r.done;r=n.next()){var a=r.value,u=i.get(a);if(u==null)i.set(a,e.get(a));else{var l=e.get(a),s=l.score,c=l.terms,f=l.match;u.score=u.score+s,u.match=Object.assign(u.match,f),be(u.terms,c)}}}catch(h){t={error:h}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}return i},re[$e]=function(i,e){var t,o,n=new Map;try{for(var r=F(e.keys()),a=r.next();!a.done;a=r.next()){var u=a.value,l=i.get(u);if(l!=null){var s=e.get(u),c=s.score,f=s.terms,h=s.match;be(l.terms,f),n.set(u,{score:l.score+c,terms:l.terms,match:Object.assign(l.match,h)})}}}catch(d){t={error:d}}finally{try{a&&!a.done&&(o=r.return)&&o.call(r)}finally{if(t)throw t.error}}return n},re[Ft]=function(i,e){var t,o;try{for(var n=F(e.keys()),r=n.next();!r.done;r=n.next()){var a=r.value;i.delete(a)}}catch(u){t={error:u}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}return i},re),_t={k:1.2,b:.7,d:.5},Ct=function(i,e,t,o,n,r){var a=r.k,u=r.b,l=r.d,s=Math.log(1+(t-e+.5)/(e+.5));return s*(l+i*(a+1)/(i+a*(1-u+u*o/n)))},At=function(i){return function(e,t,o){var n=typeof i.fuzzy=="function"?i.fuzzy(e,t,o):i.fuzzy||!1,r=typeof i.prefix=="function"?i.prefix(e,t,o):i.prefix===!0;return{term:e,fuzzy:n,prefix:r}}},ce={idField:"id",extractField:function(i,e){return i[e]},tokenize:function(i){return i.split(zt)},processTerm:function(i){return i.toLowerCase()},fields:void 0,searchOptions:void 0,storeFields:[],logger:function(i,e){typeof(console==null?void 0:console[i])=="function"&&console[i](e)},autoVacuum:!0},we={combineWith:ge,prefix:!1,fuzzy:!1,maxFuzzy:6,boost:{},weights:{fuzzy:.45,prefix:.375},bm25:_t},St={combineWith:$e,prefix:function(i,e,t){return e===t.length-1}},ve={batchSize:1e3,batchWait:10},pe={minDirtFactor:.1,minDirtCount:20},fe=M(M({},ve),pe),Et=function(i,e){i.includes(e)||i.push(e)},be=function(i,e){var t,o;try{for(var n=F(e),r=n.next();!r.done;r=n.next()){var a=r.value;i.includes(a)||i.push(a)}}catch(u){t={error:u}}finally{try{r&&!r.done&&(o=n.return)&&o.call(n)}finally{if(t)throw t.error}}},_e=function(i,e){var t=i.score,o=e.score;return o-t},Ce=function(){return new Map},ie=function(i){var e,t,o=new Map;try{for(var n=F(Object.keys(i)),r=n.next();!r.done;r=n.next()){var a=r.value;o.set(parseInt(a,10),i[a])}}catch(u){e={error:u}}finally{try{r&&!r.done&&(t=n.return)&&t.call(n)}finally{if(e)throw e.error}}return o},zt=/[\n\r -#%-*,-/:;?@[-\]_{}\u00A0\u00A1\u00A7\u00AB\u00B6\u00B7\u00BB\u00BF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u1680\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2000-\u200A\u2010-\u2029\u202F-\u2043\u2045-\u2051\u2053-\u205F\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u3000-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]+/u;const Dt={class:"relative",style:{height:"100vh"}},Vt={class:"flex h-full"},Mt={class:"h-full border-r border-r-gray-800 of-auto","h-full":"",style:{width:"22rem","min-width":"0",flex:"0 0 auto"}},Ot={flex:"~ col gap2",border:"b base",class:"border-b-gray-800 p3 flex-1"},kt=["onClick"],Lt={style:{width:"6rem"},class:"text-left"},Bt=["onClick"],Tt={key:0,class:"h-full relative w-full of-auto"},It="nuxt-graphql-middleware",Nt=H({__name:"index",setup(i){const e=new wt({fields:["id","source","name","filePath","identifier"],storeFields:["id","source","name","identifier","filePath"],searchOptions:{fuzzy:.7}}),t=ne(""),o=ne([]),n=ne(""),r=ne(""),a=K(()=>{if(t.value)return o.value.find(c=>c.id===t.value)});async function u(c){e.removeAll(),o.value=c,e.addAll(c)}Oe(async c=>{const f=c.devtools.extendClientRpc(It,{showNotification(){},documentsUpdated(y){u(y)}}),h=await f.getDocuments();u(h);const d=await f.getModuleOptions();r.value=d.serverApiPrefix});function l(c){const f=document.createElement("textarea");f.value=c.source,f.style.top="0",f.style.left="0",f.style.position="fixed",document.body.appendChild(f),f.focus(),f.select();try{const h=document.execCommand("copy")}catch{}document.body.removeChild(f)}const s=K(()=>n.value?e.search(n.value):o.value);return(c,f)=>{const h=Ke,d=Me,y=vt;return z(),T("div",Dt,[O("div",Vt,[O("div",Mt,[O("div",Ot,[q(h,{modelValue:$(n),"onUpdate:modelValue":f[0]||(f[0]=v=>ze(n)?n.value=v:null),placeholder:"Search documents...",icon:"carbon-search",class:"w-full"},null,8,["modelValue"])]),(z(!0),T(ee,null,ye($(s),v=>(z(),T("div",{key:v.id,class:"relative group"},[O("button",{class:"text-secondary hover:n-bg-hover flex select-none truncate px2 py2 font-mono text-sm w-full",onClick:m=>t.value=v.id},[O("div",Lt,[v.identifier==="query"?(z(),j(d,{key:0,green:"",text:"Query"})):v.identifier==="mutation"?(z(),j(d,{key:1,orange:"",text:"Mutation"})):R("",!0)]),O("div",null,J(v.name),1)],8,kt),O("button",{class:"absolute right-0 top-0 text-sm h-full flex items-center opacity-0 group-hover:opacity-100 pr2",onClick:m=>l(v)},f[1]||(f[1]=[O("span",null,"Copy",-1)]),8,Bt)]))),128))]),f[2]||(f[2]=O("div",{class:"splitpanes__splitter"},null,-1)),$(a)?(z(),T("div",Tt,[q(y,Ee($(a),{"server-api-prefix":$(r)}),null,16,["server-api-prefix"])])):R("",!0)])])}}});export{Nt as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"id":"9b9c571e-ce30-465b-8174-06afbdca446b","timestamp":1742140121878,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|