Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/012cb23207e1140c82855272ede8a71028420868f9696c3619137e94ade61712e25ad2d90c065e744308b33afabb6592494b0e02cc58576e0aa0084f497425
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

73 lines
No EOL
3 KiB
Text

import type * as graphqlTypes from 'graphql';
import type * as api from '@opentelemetry/api';
import type { PromiseOrValue } from 'graphql/jsutils/PromiseOrValue';
import type { DocumentNode } from 'graphql/language/ast';
import type { GraphQLFieldResolver, GraphQLTypeResolver } from 'graphql/type/definition';
import { OTEL_GRAPHQL_DATA_SYMBOL, OTEL_PATCHED_SYMBOL } from './symbols';
export declare const OPERATION_NOT_SUPPORTED: string;
export declare type executeFunctionWithObj = (args: graphqlTypes.ExecutionArgs) => PromiseOrValue<graphqlTypes.ExecutionResult>;
export declare type executeArgumentsArray = [
graphqlTypes.GraphQLSchema,
graphqlTypes.DocumentNode,
any,
any,
Maybe<{
[key: string]: any;
}>,
Maybe<string>,
Maybe<graphqlTypes.GraphQLFieldResolver<any, any>>,
Maybe<graphqlTypes.GraphQLTypeResolver<any, any>>
];
export declare type executeFunctionWithArgs = (schema: graphqlTypes.GraphQLSchema, document: graphqlTypes.DocumentNode, rootValue?: any, contextValue?: any, variableValues?: Maybe<{
[key: string]: any;
}>, operationName?: Maybe<string>, fieldResolver?: Maybe<graphqlTypes.GraphQLFieldResolver<any, any>>, typeResolver?: Maybe<graphqlTypes.GraphQLTypeResolver<any, any>>) => PromiseOrValue<graphqlTypes.ExecutionResult>;
export interface OtelExecutionArgs {
schema: graphqlTypes.GraphQLSchema;
document: DocumentNode & ObjectWithGraphQLData;
rootValue?: any;
contextValue?: any & ObjectWithGraphQLData;
variableValues?: Maybe<{
[key: string]: any;
}>;
operationName?: Maybe<string>;
fieldResolver?: Maybe<GraphQLFieldResolver<any, any> & OtelPatched>;
typeResolver?: Maybe<GraphQLTypeResolver<any, any>>;
}
export declare type executeType = executeFunctionWithObj | executeFunctionWithArgs;
export declare type parseType = (source: string | graphqlTypes.Source, options?: graphqlTypes.ParseOptions) => graphqlTypes.DocumentNode;
export declare type validateType = (schema: graphqlTypes.GraphQLSchema, documentAST: graphqlTypes.DocumentNode, rules?: ReadonlyArray<graphqlTypes.ValidationRule>, options?: {
maxErrors?: number;
}, typeInfo?: graphqlTypes.TypeInfo) => ReadonlyArray<graphqlTypes.GraphQLError>;
export interface GraphQLField {
parent: api.Span;
span: api.Span;
error: Error | null;
}
interface OtelGraphQLData {
source?: any;
span: api.Span;
fields: {
[key: string]: GraphQLField;
};
}
export interface ObjectWithGraphQLData {
[OTEL_GRAPHQL_DATA_SYMBOL]?: OtelGraphQLData;
}
export interface OtelPatched {
[OTEL_PATCHED_SYMBOL]?: boolean;
}
export interface GraphQLPath {
prev: GraphQLPath | undefined;
key: string | number;
/**
* optional as it didn't exist yet in ver 14
*/
typename?: string | undefined;
}
/**
* Moving this type from ver 15 of graphql as it is nto available in ver. 14s
* this way it can compile against ver 14.
*/
export declare type Maybe<T> = null | undefined | T;
export {};
//# sourceMappingURL=internal-types.d.ts.map