chore(codegen): refresh geo graphql types
All checks were successful
Build Docker Image / build (push) Successful in 4m56s

This commit is contained in:
Ruslan Bakiev
2026-02-06 19:48:45 +07:00
parent 795aa0381e
commit 2d85e7187e

View File

@@ -13,12 +13,6 @@ export type Scalars = {
Boolean: { input: boolean; output: boolean; } Boolean: { input: boolean; output: boolean; }
Int: { input: number; output: number; } Int: { input: number; output: number; }
Float: { input: number; output: number; } Float: { input: number; output: number; }
/**
* Allows use of a JSON String for input / output from the GraphQL schema.
*
* Use of this type is *not recommended* as you lose the benefits of having a defined, static
* schema (one of the key benefits of GraphQL).
*/
JSONString: { input: Record<string, unknown>; output: Record<string, unknown>; } JSONString: { input: Record<string, unknown>; output: Record<string, unknown>; }
}; };