Files
klz-cables.com/.pnpm-store/v10/files/5b/55a21236b35a32c9b9e3b9e091cc10e459ea88306d4248795d3135a6c1d475819095f73f50e9dc500c764cdb5e428a97d4c39200df51f5350cfa534f6fd751
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

38 lines
877 B
Plaintext

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