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>
38 lines
No EOL
877 B
Text
38 lines
No EOL
877 B
Text
export declare enum AllowedOperationTypes {
|
|
QUERY = "query",
|
|
MUTATION = "mutation",
|
|
SUBSCRIPTION = "subscription"
|
|
}
|
|
export declare enum TokenKind {
|
|
SOF = "<SOF>",
|
|
EOF = "<EOF>",
|
|
BANG = "!",
|
|
DOLLAR = "$",
|
|
AMP = "&",
|
|
PAREN_L = "(",
|
|
PAREN_R = ")",
|
|
SPREAD = "...",
|
|
COLON = ":",
|
|
EQUALS = "=",
|
|
AT = "@",
|
|
BRACKET_L = "[",
|
|
BRACKET_R = "]",
|
|
BRACE_L = "{",
|
|
PIPE = "|",
|
|
BRACE_R = "}",
|
|
NAME = "Name",
|
|
INT = "Int",
|
|
FLOAT = "Float",
|
|
STRING = "String",
|
|
BLOCK_STRING = "BlockString",
|
|
COMMENT = "Comment"
|
|
}
|
|
export declare enum SpanNames {
|
|
EXECUTE = "graphql.execute",
|
|
PARSE = "graphql.parse",
|
|
RESOLVE = "graphql.resolve",
|
|
VALIDATE = "graphql.validate",
|
|
SCHEMA_VALIDATE = "graphql.validateSchema",
|
|
SCHEMA_PARSE = "graphql.parseSchema"
|
|
}
|
|
//# sourceMappingURL=enum.d.ts.map |