/* eslint-disable */ import { AllTypesProps, ReturnTypes, Ops } from './const.js'; export const HOST="Specify host" export const HEADERS = {} export const apiSubscription = (options: chainOptions) => (query: string) => { try { const queryString = options[0] + '?query=' + encodeURIComponent(query); const wsString = queryString.replace('http', 'ws'); const host = (options.length > 1 && options[1]?.websocket?.[0]) || wsString; const webSocketOptions = options[1]?.websocket || [host]; const ws = new WebSocket(...webSocketOptions); return { ws, on: (e: (args: any) => void) => { ws.onmessage = (event: any) => { if (event.data) { const parsed = JSON.parse(event.data); const data = parsed.data; return e(data); } }; }, off: (e: (args: any) => void) => { ws.onclose = e; }, error: (e: (args: any) => void) => { ws.onerror = e; }, open: (e: () => void) => { ws.onopen = e; }, }; } catch { throw new Error('No websockets implemented'); } }; export const apiSubscriptionSSE = (options: chainOptions) => (query: string, variables?: Record) => { const url = options[0]; const fetchOptions = options[1] || {}; let abortController: AbortController | null = null; let reader: ReadableStreamDefaultReader | null = null; let onCallback: ((args: unknown) => void) | null = null; let errorCallback: ((args: unknown) => void) | null = null; let openCallback: (() => void) | null = null; let offCallback: ((args: unknown) => void) | null = null; let isClosing = false; // Flag to track intentional close const startStream = async () => { try { abortController = new AbortController(); const response = await fetch(url, { method: 'POST', headers: { Accept: 'text/event-stream', 'Content-Type': 'application/json', 'Cache-Control': 'no-cache', ...fetchOptions.headers, }, body: JSON.stringify({ query, variables }), signal: abortController.signal, ...fetchOptions, }); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } if (openCallback) { openCallback(); } reader = response.body?.getReader() || null; if (!reader) { throw new Error('No response body'); } const decoder = new TextDecoder(); let buffer = ''; while (true) { const { done, value } = await reader.read(); if (done) { if (offCallback) { offCallback({ data: null, code: 1000, reason: 'Stream completed' }); } break; } buffer += decoder.decode(value, { stream: true }); const lines = buffer.split('\n'); buffer = lines.pop() || ''; for (const line of lines) { if (line.startsWith('data: ')) { try { const data = line.slice(6); const parsed = JSON.parse(data); if (parsed.errors) { if (errorCallback) { errorCallback({ data: parsed.data, errors: parsed.errors }); } } else if (onCallback && parsed.data) { onCallback(parsed.data); } } catch { if (errorCallback) { errorCallback({ errors: ['Failed to parse SSE data'] }); } } } } } } catch (err: unknown) { const error = err as Error; // Don't report errors if we're intentionally closing (AbortError) or during cleanup if (error.name !== 'AbortError' && !isClosing && errorCallback) { errorCallback({ errors: [error.message || 'Unknown error'] }); } } }; return { on: (e: (args: unknown) => void) => { onCallback = e; }, off: (e: (args: unknown) => void) => { offCallback = e; }, error: (e: (args: unknown) => void) => { errorCallback = e; }, open: (e?: () => void) => { if (e) { openCallback = e; } startStream(); }, close: () => { isClosing = true; // Mark as intentionally closing to suppress error callbacks if (abortController) { abortController.abort(); } if (reader) { // Wrap in try-catch to suppress AbortError during cleanup reader.cancel().catch(() => { // Ignore cancel errors - stream may already be closed }); } }, }; }; const handleFetchResponse = (response: Response): Promise => { if (!response.ok) { return new Promise((_, reject) => { response .text() .then((text) => { try { reject(JSON.parse(text)); } catch (err) { reject(text); } }) .catch(reject); }); } return response.json() as Promise; }; export const apiFetch = (options: fetchOptions) => (query: string, variables: Record = {}) => { const fetchOptions = options[1] || {}; if (fetchOptions.method && fetchOptions.method === 'GET') { return fetch(`${options[0]}?query=${encodeURIComponent(query)}`, fetchOptions) .then(handleFetchResponse) .then((response: GraphQLResponse) => { if (response.errors) { throw new GraphQLError(response); } return response.data; }); } return fetch(`${options[0]}`, { body: JSON.stringify({ query, variables }), method: 'POST', headers: { 'Content-Type': 'application/json', }, ...fetchOptions, }) .then(handleFetchResponse) .then((response: GraphQLResponse) => { if (response.errors) { throw new GraphQLError(response); } return response.data; }); }; export const InternalsBuildQuery = ({ ops, props, returns, options, scalars, }: { props: AllTypesPropsType; returns: ReturnTypesType; ops: Operations; options?: OperationOptions; scalars?: ScalarDefinition; }) => { const ibb = ( k: string, o: InputValueType | VType, p = '', root = true, vars: Array<{ name: string; graphQLType: string }> = [], ): string => { const keyForPath = purifyGraphQLKey(k); const newPath = [p, keyForPath].join(SEPARATOR); if (!o) { return ''; } if (typeof o === 'boolean' || typeof o === 'number') { return k; } if (typeof o === 'string') { return `${k} ${o}`; } if (Array.isArray(o)) { const args = InternalArgsBuilt({ props, returns, ops, scalars, vars, })(o[0], newPath); return `${ibb(args ? `${k}(${args})` : k, o[1], p, false, vars)}`; } if (k === '__alias') { return Object.entries(o) .map(([alias, objectUnderAlias]) => { if (typeof objectUnderAlias !== 'object' || Array.isArray(objectUnderAlias)) { throw new Error( 'Invalid alias it should be __alias:{ YOUR_ALIAS_NAME: { OPERATION_NAME: { ...selectors }}}', ); } const operationName = Object.keys(objectUnderAlias)[0]; const operation = objectUnderAlias[operationName]; return ibb(`${alias}:${operationName}`, operation, p, false, vars); }) .join('\n'); } const hasOperationName = root && options?.operationName ? ' ' + options.operationName : ''; const keyForDirectives = o.__directives ?? ''; const query = `{${Object.entries(o) .filter(([k]) => k !== '__directives') .map((e) => ibb(...e, [p, `field<>${keyForPath}`].join(SEPARATOR), false, vars)) .join('\n')}}`; if (!root) { return `${k} ${keyForDirectives}${hasOperationName} ${query}`; } const varsString = vars.map((v) => `${v.name}: ${v.graphQLType}`).join(', '); return `${k} ${keyForDirectives}${hasOperationName}${varsString ? `(${varsString})` : ''} ${query}`; }; return ibb; }; type UnionOverrideKeys = Omit & U; export const Thunder = (fn: FetchFunction, thunderGraphQLOptions?: ThunderGraphQLOptions) => >( operation: O, graphqlOptions?: ThunderGraphQLOptions, ) => ( o: Z & { [P in keyof Z]: P extends keyof ValueTypes[R] ? Z[P] : never; }, ops?: OperationOptions & { variables?: Record }, ) => { const options = { ...thunderGraphQLOptions, ...graphqlOptions, }; return fn( Zeus(operation, o, { operationOptions: ops, scalars: options?.scalars, }), ops?.variables, ).then((data) => { if (options?.scalars) { return decodeScalarsInResponse({ response: data, initialOp: operation, initialZeusQuery: o as VType, returns: ReturnTypes, scalars: options.scalars, ops: Ops, }); } return data; }) as Promise>>; }; export const Chain = (...options: chainOptions) => Thunder(apiFetch(options)); export const SubscriptionThunder = (fn: SubscriptionFunction, thunderGraphQLOptions?: ThunderGraphQLOptions) => >( operation: O, graphqlOptions?: ThunderGraphQLOptions, ) => ( o: Z & { [P in keyof Z]: P extends keyof ValueTypes[R] ? Z[P] : never; }, ops?: OperationOptions & { variables?: Record }, ) => { const options = { ...thunderGraphQLOptions, ...graphqlOptions, }; type CombinedSCLR = UnionOverrideKeys; const returnedFunction = fn( Zeus(operation, o, { operationOptions: ops, scalars: options?.scalars, }), ) as SubscriptionToGraphQL; if (returnedFunction?.on && options?.scalars) { const wrapped = returnedFunction.on; returnedFunction.on = (fnToCall: (args: InputType) => void) => wrapped((data: InputType) => { if (options?.scalars) { return fnToCall( decodeScalarsInResponse({ response: data, initialOp: operation, initialZeusQuery: o as VType, returns: ReturnTypes, scalars: options.scalars, ops: Ops, }), ); } return fnToCall(data); }); } return returnedFunction; }; export const Subscription = (...options: chainOptions) => SubscriptionThunder(apiSubscription(options)); export type SubscriptionToGraphQLSSE = { on: (fn: (args: InputType) => void) => void; off: (fn: (e: { data?: InputType; code?: number; reason?: string; message?: string }) => void) => void; error: (fn: (e: { data?: InputType; errors?: string[] }) => void) => void; open: (fn?: () => void) => void; close: () => void; }; export const SubscriptionThunderSSE = (fn: SubscriptionFunction, thunderGraphQLOptions?: ThunderGraphQLOptions) => >( operation: O, graphqlOptions?: ThunderGraphQLOptions, ) => ( o: Z & { [P in keyof Z]: P extends keyof ValueTypes[R] ? Z[P] : never; }, ops?: OperationOptions & { variables?: Record }, ) => { const options = { ...thunderGraphQLOptions, ...graphqlOptions, }; type CombinedSCLR = UnionOverrideKeys; const returnedFunction = fn( Zeus(operation, o, { operationOptions: ops, scalars: options?.scalars, }), ops?.variables, ) as SubscriptionToGraphQLSSE; if (returnedFunction?.on && options?.scalars) { const wrapped = returnedFunction.on; returnedFunction.on = (fnToCall: (args: InputType) => void) => wrapped((data: InputType) => { if (options?.scalars) { return fnToCall( decodeScalarsInResponse({ response: data, initialOp: operation, initialZeusQuery: o as VType, returns: ReturnTypes, scalars: options.scalars, ops: Ops, }), ); } return fnToCall(data); }); } return returnedFunction; }; export const SubscriptionSSE = (...options: chainOptions) => SubscriptionThunderSSE(apiSubscriptionSSE(options)); export const Zeus = < Z extends ValueTypes[R], O extends keyof typeof Ops, R extends keyof ValueTypes = GenericOperation, >( operation: O, o: Z, ops?: { operationOptions?: OperationOptions; scalars?: ScalarDefinition; }, ) => InternalsBuildQuery({ props: AllTypesProps, returns: ReturnTypes, ops: Ops, options: ops?.operationOptions, scalars: ops?.scalars, })(operation, o as VType); export const ZeusSelect = () => ((t: unknown) => t) as SelectionFunction; export const Selector = (key: T) => key && ZeusSelect(); export const TypeFromSelector = (key: T) => key && ZeusSelect(); export const Gql = Chain(HOST, { headers: { 'Content-Type': 'application/json', ...HEADERS, }, }); export const ZeusScalars = ZeusSelect(); type BaseSymbol = number | string | undefined | boolean | null; type ScalarsSelector = { [X in Required<{ [P in keyof T]: P extends keyof V ? V[P] extends Array | undefined ? never : T[P] extends BaseSymbol | Array ? P : never : never; }>[keyof T]]: true; }; export const fields = (k: T) => { const t = ReturnTypes[k]; const fnType = k in AllTypesProps ? AllTypesProps[k as keyof typeof AllTypesProps] : undefined; const hasFnTypes = typeof fnType === 'object' ? fnType : undefined; const o = Object.fromEntries( Object.entries(t) .filter(([k, value]) => { const isFunctionType = hasFnTypes && k in hasFnTypes && !!hasFnTypes[k as keyof typeof hasFnTypes]; if (isFunctionType) return false; const isReturnType = ReturnTypes[value as string]; if (!isReturnType) return true; if (typeof isReturnType !== 'string') return false; if (isReturnType.startsWith('scalar.')) { return true; } return false; }) .map(([key]) => [key, true as const]), ); return o as ScalarsSelector; }; export const decodeScalarsInResponse = ({ response, scalars, returns, ops, initialZeusQuery, initialOp, }: { ops: O; response: any; returns: ReturnTypesType; scalars?: Record; initialOp: keyof O; initialZeusQuery: InputValueType | VType; }) => { if (!scalars) { return response; } const builder = PrepareScalarPaths({ ops, returns, }); const scalarPaths = builder(initialOp as string, ops[initialOp], initialZeusQuery); if (scalarPaths) { const r = traverseResponse({ scalarPaths, resolvers: scalars })(initialOp as string, response, [ops[initialOp]]); return r; } return response; }; export const traverseResponse = ({ resolvers, scalarPaths, }: { scalarPaths: { [x: string]: `scalar.${string}` }; resolvers: { [x: string]: ScalarResolver | undefined; }; }) => { const ibb = (k: string, o: InputValueType | VType, p: string[] = []): unknown => { if (Array.isArray(o)) { return o.map((eachO) => ibb(k, eachO, p)); } if (o == null) { return o; } const scalarPathString = p.join(SEPARATOR); const currentScalarString = scalarPaths[scalarPathString]; if (currentScalarString) { const currentDecoder = resolvers[currentScalarString.split('.')[1]]?.decode; if (currentDecoder) { return currentDecoder(o); } } if (typeof o === 'boolean' || typeof o === 'number' || typeof o === 'string' || !o) { return o; } const entries = Object.entries(o).map(([k, v]) => [k, ibb(k, v, [...p, purifyGraphQLKey(k)])] as const); const objectFromEntries = entries.reduce>((a, [k, v]) => { a[k] = v; return a; }, {}); return objectFromEntries; }; return ibb; }; export type AllTypesPropsType = { [x: string]: | undefined | `scalar.${string}` | 'enum' | { [x: string]: | undefined | string | { [x: string]: string | undefined; }; }; }; export type ReturnTypesType = { [x: string]: | { [x: string]: string | undefined; } | `scalar.${string}` | undefined; }; export type InputValueType = { [x: string]: undefined | boolean | string | number | [any, undefined | boolean | InputValueType] | InputValueType; }; export type VType = | undefined | boolean | string | number | [any, undefined | boolean | InputValueType] | InputValueType; export type PlainType = boolean | number | string | null | undefined; export type ZeusArgsType = | PlainType | { [x: string]: ZeusArgsType; } | Array; export type Operations = Record; export type VariableDefinition = { [x: string]: unknown; }; export const SEPARATOR = '|'; export type fetchOptions = Parameters; type websocketOptions = typeof WebSocket extends new (...args: infer R) => WebSocket ? R : never; export type chainOptions = [fetchOptions[0], fetchOptions[1] & { websocket?: websocketOptions }] | [fetchOptions[0]]; export type FetchFunction = (query: string, variables?: Record) => Promise; export type SubscriptionFunction = (query: string, variables?: Record) => any; type NotUndefined = T extends undefined ? never : T; export type ResolverType = NotUndefined; export type OperationOptions = { operationName?: string; }; export type ScalarCoder = Record string>; export interface GraphQLResponse { data?: Record; errors?: Array<{ message: string; }>; } export class GraphQLError extends Error { constructor(public response: GraphQLResponse) { super(''); console.error(response); } toString() { return 'GraphQL Response Error'; } } export type GenericOperation = O extends keyof typeof Ops ? (typeof Ops)[O] : never; export type ThunderGraphQLOptions = { scalars?: SCLR | ScalarCoders; }; const ExtractScalar = (mappedParts: string[], returns: ReturnTypesType): `scalar.${string}` | undefined => { if (mappedParts.length === 0) { return; } const oKey = mappedParts[0]; const returnP1 = returns[oKey]; if (typeof returnP1 === 'object') { const returnP2 = returnP1[mappedParts[1]]; if (returnP2) { return ExtractScalar([returnP2, ...mappedParts.slice(2)], returns); } return undefined; } return returnP1 as `scalar.${string}` | undefined; }; export const PrepareScalarPaths = ({ ops, returns }: { returns: ReturnTypesType; ops: Operations }) => { const ibb = ( k: string, originalKey: string, o: InputValueType | VType, p: string[] = [], pOriginals: string[] = [], root = true, ): { [x: string]: `scalar.${string}` } | undefined => { if (!o) { return; } if (typeof o === 'boolean' || typeof o === 'number' || typeof o === 'string') { const extractionArray = [...pOriginals, originalKey]; const isScalar = ExtractScalar(extractionArray, returns); if (isScalar?.startsWith('scalar')) { const partOfTree = { [[...p, k].join(SEPARATOR)]: isScalar, }; return partOfTree; } return {}; } if (Array.isArray(o)) { return ibb(k, k, o[1], p, pOriginals, false); } if (k === '__alias') { return Object.entries(o) .map(([alias, objectUnderAlias]) => { if (typeof objectUnderAlias !== 'object' || Array.isArray(objectUnderAlias)) { throw new Error( 'Invalid alias it should be __alias:{ YOUR_ALIAS_NAME: { OPERATION_NAME: { ...selectors }}}', ); } const operationName = Object.keys(objectUnderAlias)[0]; const operation = objectUnderAlias[operationName]; return ibb(alias, operationName, operation, p, pOriginals, false); }) .reduce((a, b) => ({ ...a, ...b, })); } const keyName = root ? ops[k] : k; return Object.entries(o) .filter(([k]) => k !== '__directives') .map(([k, v]) => { // Inline fragments shouldn't be added to the path as they aren't a field const isInlineFragment = originalKey.match(/^...\s*on/) != null; return ibb( k, k, v, isInlineFragment ? p : [...p, purifyGraphQLKey(keyName || k)], isInlineFragment ? pOriginals : [...pOriginals, purifyGraphQLKey(originalKey)], false, ); }) .reduce((a, b) => ({ ...a, ...b, })); }; return ibb; }; export const purifyGraphQLKey = (k: string) => k.replace(/\([^)]*\)/g, '').replace(/^[^:]*\:/g, ''); const mapPart = (p: string) => { const [isArg, isField] = p.split('<>'); if (isField) { return { v: isField, __type: 'field', } as const; } return { v: isArg, __type: 'arg', } as const; }; type Part = ReturnType; export const ResolveFromPath = (props: AllTypesPropsType, returns: ReturnTypesType, ops: Operations) => { const ResolvePropsType = (mappedParts: Part[]) => { const oKey = ops[mappedParts[0].v]; const propsP1 = oKey ? props[oKey] : props[mappedParts[0].v]; if (propsP1 === 'enum' && mappedParts.length === 1) { return 'enum'; } if (typeof propsP1 === 'string' && propsP1.startsWith('scalar.') && mappedParts.length === 1) { return propsP1; } if (typeof propsP1 === 'object') { if (mappedParts.length < 2) { return 'not'; } const propsP2 = propsP1[mappedParts[1].v]; if (typeof propsP2 === 'string') { return rpp( `${propsP2}${SEPARATOR}${mappedParts .slice(2) .map((mp) => mp.v) .join(SEPARATOR)}`, ); } if (typeof propsP2 === 'object') { if (mappedParts.length < 3) { return 'not'; } const propsP3 = propsP2[mappedParts[2].v]; if (propsP3 && mappedParts[2].__type === 'arg') { return rpp( `${propsP3}${SEPARATOR}${mappedParts .slice(3) .map((mp) => mp.v) .join(SEPARATOR)}`, ); } } } }; const ResolveReturnType = (mappedParts: Part[]) => { if (mappedParts.length === 0) { return 'not'; } const oKey = ops[mappedParts[0].v]; const returnP1 = oKey ? returns[oKey] : returns[mappedParts[0].v]; if (typeof returnP1 === 'object') { if (mappedParts.length < 2) return 'not'; const returnP2 = returnP1[mappedParts[1].v]; if (returnP2) { return rpp( `${returnP2}${SEPARATOR}${mappedParts .slice(2) .map((mp) => mp.v) .join(SEPARATOR)}`, ); } } }; const rpp = (path: string): 'enum' | 'not' | `scalar.${string}` => { const parts = path.split(SEPARATOR).filter((l) => l.length > 0); const mappedParts = parts.map(mapPart); const propsP1 = ResolvePropsType(mappedParts); if (propsP1) { return propsP1; } const returnP1 = ResolveReturnType(mappedParts); if (returnP1) { return returnP1; } return 'not'; }; return rpp; }; export const InternalArgsBuilt = ({ props, ops, returns, scalars, vars, }: { props: AllTypesPropsType; returns: ReturnTypesType; ops: Operations; scalars?: ScalarDefinition; vars: Array<{ name: string; graphQLType: string }>; }) => { const arb = (a: ZeusArgsType, p = '', root = true): string => { if (typeof a === 'string') { if (a.startsWith(START_VAR_NAME)) { const [varName, graphQLType] = a.replace(START_VAR_NAME, '$').split(GRAPHQL_TYPE_SEPARATOR); const v = vars.find((v) => v.name === varName); if (!v) { vars.push({ name: varName, graphQLType, }); } else { if (v.graphQLType !== graphQLType) { throw new Error( `Invalid variable exists with two different GraphQL Types, "${v.graphQLType}" and ${graphQLType}`, ); } } return varName; } } const checkType = ResolveFromPath(props, returns, ops)(p); if (checkType.startsWith('scalar.')) { // eslint-disable-next-line @typescript-eslint/no-unused-vars const [_, ...splittedScalar] = checkType.split('.'); const scalarKey = splittedScalar.join('.'); return (scalars?.[scalarKey]?.encode?.(a) as string) || JSON.stringify(a); } if (Array.isArray(a)) { return `[${a.map((arr) => arb(arr, p, false)).join(', ')}]`; } if (typeof a === 'string') { if (checkType === 'enum') { return a; } return `${JSON.stringify(a)}`; } if (typeof a === 'object') { if (a === null) { return `null`; } const returnedObjectString = Object.entries(a) .filter(([, v]) => typeof v !== 'undefined') .map(([k, v]) => `${k}: ${arb(v, [p, k].join(SEPARATOR), false)}`) .join(',\n'); if (!root) { return `{${returnedObjectString}}`; } return returnedObjectString; } return `${a}`; }; return arb; }; export const resolverFor = ( _type: T, _field: Z, fn: ( args: Required[Z] extends [infer Input, any] ? Input : any, source: any, ) => Z extends keyof ModelTypes[T] ? ModelTypes[T][Z] | Promise | X : never, ) => fn as (args?: any, source?: any) => ReturnType; export type UnwrapPromise = T extends Promise ? R : T; export type ZeusState Promise> = NonNullable>>; export type ZeusHook< T extends (...args: any[]) => Record Promise>, N extends keyof ReturnType, > = ZeusState[N]>; export type WithTypeNameValue = T & { __typename?: boolean; __directives?: string; }; export type AliasType = WithTypeNameValue & { __alias?: Record>; }; type DeepAnify = { [P in keyof T]?: any; }; type IsPayLoad = T extends [any, infer PayLoad] ? PayLoad : T; export type ScalarDefinition = Record; type IsScalar = S extends 'scalar' & { name: infer T } ? T extends keyof SCLR ? SCLR[T]['decode'] extends (s: unknown) => unknown ? ReturnType : unknown : unknown : S extends Array ? Array> : S; type IsArray = T extends Array ? InputType[] : InputType; type FlattenArray = T extends Array ? R : T; type BaseZeusResolver = boolean | 1 | string | Variable; type IsInterfaced, DST, SCLR extends ScalarDefinition> = FlattenArray extends | ZEUS_INTERFACES | ZEUS_UNIONS ? { [P in keyof SRC]: SRC[P] extends '__union' & infer R ? P extends keyof DST ? IsArray : IsArray, SCLR> : never; }[keyof SRC] & { [P in keyof Omit< Pick< SRC, { [P in keyof DST]: SRC[P] extends '__union' & infer _R ? never : P; }[keyof DST] >, '__typename' >]: IsPayLoad extends BaseZeusResolver ? IsScalar : IsArray; } : { [P in keyof Pick]: IsPayLoad extends BaseZeusResolver ? IsScalar : IsArray; }; export type MapType = SRC extends DeepAnify ? IsInterfaced : never; // eslint-disable-next-line @typescript-eslint/ban-types export type InputType = IsPayLoad extends { __alias: infer R } ? { [P in keyof R]: MapType[keyof MapType]; } & MapType, '__alias'>, SCLR> : MapType, SCLR>; export type SubscriptionToGraphQL = { ws: WebSocket; on: (fn: (args: InputType) => void) => void; off: (fn: (e: { data?: InputType; code?: number; reason?: string; message?: string }) => void) => void; error: (fn: (e: { data?: InputType; errors?: string[] }) => void) => void; open: () => void; }; // eslint-disable-next-line @typescript-eslint/ban-types export type FromSelector = InputType< GraphQLTypes[NAME], SELECTOR, SCLR >; export type ScalarResolver = { encode?: (s: unknown) => string; decode?: (s: unknown) => unknown; }; export type SelectionFunction = ( t: Z & { [P in keyof Z]: P extends keyof V ? Z[P] : never; }, ) => Z; type BuiltInVariableTypes = { ['String']: string; ['Int']: number; ['Float']: number; ['Boolean']: boolean; }; type AllVariableTypes = keyof BuiltInVariableTypes | keyof ZEUS_VARIABLES; type VariableRequired = `${T}!` | T | `[${T}]` | `[${T}]!` | `[${T}!]` | `[${T}!]!`; type VR = VariableRequired>; export type GraphQLVariableType = VR; type ExtractVariableTypeString = T extends VR ? R1 extends VR ? R2 extends VR ? R3 extends VR ? R4 extends VR ? R5 : R4 : R3 : R2 : R1 : T; type DecomposeType = T extends `[${infer R}]` ? Array> | undefined : T extends `${infer R}!` ? NonNullable> : Type | undefined; type ExtractTypeFromGraphQLType = T extends keyof ZEUS_VARIABLES ? ZEUS_VARIABLES[T] : T extends keyof BuiltInVariableTypes ? BuiltInVariableTypes[T] : any; export type GetVariableType = DecomposeType< T, ExtractTypeFromGraphQLType> >; type UndefinedKeys = { [K in keyof T]-?: T[K] extends NonNullable ? never : K; }[keyof T]; type WithNullableKeys = Pick>; type WithNonNullableKeys = Omit>; type OptionalKeys = { [P in keyof T]?: T[P]; }; export type WithOptionalNullables = OptionalKeys> & WithNonNullableKeys; export type ComposableSelector = ReturnType>; export type Variable = { ' __zeus_name': Name; ' __zeus_type': T; }; export type ExtractVariablesDeep = Query extends Variable ? { [key in VName]: GetVariableType } : Query extends string | number | boolean | Array ? // eslint-disable-next-line @typescript-eslint/ban-types {} : UnionToIntersection<{ [K in keyof Query]: WithOptionalNullables> }[keyof Query]>; export type ExtractVariables = Query extends Variable ? { [key in VName]: GetVariableType } : Query extends [infer Inputs, infer Outputs] ? ExtractVariablesDeep & ExtractVariables : Query extends string | number | boolean | Array ? // eslint-disable-next-line @typescript-eslint/ban-types {} : UnionToIntersection<{ [K in keyof Query]: WithOptionalNullables> }[keyof Query]>; type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; export const START_VAR_NAME = `$ZEUS_VAR`; export const GRAPHQL_TYPE_SEPARATOR = `__$GRAPHQL__`; export const $ = (name: Name, graphqlType: Type) => { return (START_VAR_NAME + name + GRAPHQL_TYPE_SEPARATOR + graphqlType) as unknown as Variable; }; type ZEUS_INTERFACES = never export type ScalarCoders = { ObjectId?: ScalarResolver; S3Scalar?: ScalarResolver; Timestamp?: ScalarResolver; ModelNavigationCompiled?: ScalarResolver; BakedIpsumData?: ScalarResolver; ShapeAsScalar?: ScalarResolver; ModelAsScalar?: ScalarResolver; ViewAsScalar?: ScalarResolver; FormAsScalar?: ScalarResolver; JSON?: ScalarResolver; RootParamsAdminType?: ScalarResolver; BackupFile?: ScalarResolver; ID?: ScalarResolver; } type ZEUS_UNIONS = never export type ValueTypes = { ["VersionField"]: AliasType<{ name?:boolean | `@${string}`, from?:boolean | `@${string}`, to?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on VersionField']?: Omit }>; ["RangeField"]: AliasType<{ min?:boolean | `@${string}`, max?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on RangeField']?: Omit }>; ["ImageField"]: AliasType<{ url?:boolean | `@${string}`, thumbnail?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ImageField']?: Omit }>; ["VideoField"]: AliasType<{ url?:boolean | `@${string}`, previewImage?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on VideoField']?: Omit }>; ["InternalLink"]: AliasType<{ _id?:boolean | `@${string}`, keys?:boolean | `@${string}`, href?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on InternalLink']?: Omit }>; ["RootCMSParam"]: AliasType<{ name?:boolean | `@${string}`, options?:boolean | `@${string}`, default?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on RootCMSParam']?: Omit }>; ["ModelNavigation"]: AliasType<{ name?:boolean | `@${string}`, display?:boolean | `@${string}`, fields?:ValueTypes["CMSField"], fieldSet?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ModelNavigation']?: Omit }>; ["CMSField"]: AliasType<{ name?:boolean | `@${string}`, display?:boolean | `@${string}`, type?:boolean | `@${string}`, list?:boolean | `@${string}`, searchable?:boolean | `@${string}`, sortable?:boolean | `@${string}`, filterable?:boolean | `@${string}`, rangeValues?:boolean | `@${string}`, options?:boolean | `@${string}`, relation?:boolean | `@${string}`, fields?:ValueTypes["CMSField"], builtIn?:boolean | `@${string}`, visual?:ValueTypes["Visual"], conditions?:ValueTypes["Condition"], nonTranslatable?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on CMSField']?: Omit }>; ["Condition"]: AliasType<{ type?:boolean | `@${string}`, path?:boolean | `@${string}`, operator?:boolean | `@${string}`, setOperator?:boolean | `@${string}`, value?:boolean | `@${string}`, children?:ValueTypes["Condition"], __typename?: boolean | `@${string}`, ['...on Condition']?: Omit }>; ["Action"]: AliasType<{ path?:boolean | `@${string}`, type?:boolean | `@${string}`, value?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Action']?: Omit }>; ["Rule"]: AliasType<{ conditions?:ValueTypes["Condition"], actions?:ValueTypes["Action"], __typename?: boolean | `@${string}`, ['...on Rule']?: Omit }>; ["Visual"]: AliasType<{ className?:boolean | `@${string}`, component?:boolean | `@${string}`, rules?:ValueTypes["Rule"], __typename?: boolean | `@${string}`, ['...on Visual']?: Omit }>; ["FilterInputString"]: { eq?: string | undefined | null | Variable, ne?: string | undefined | null | Variable, contain?: string | undefined | null | Variable }; ["StructureSortInput"]: { key: string | Variable, direction?: ValueTypes["Sort"] | undefined | null | Variable }; ["ModelNavigationConnection"]: AliasType<{ items?:ValueTypes["ModelNavigation"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on ModelNavigationConnection']?: Omit }>; ["ViewConnection"]: AliasType<{ items?:ValueTypes["View"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on ViewConnection']?: Omit }>; ["ShapeConnection"]: AliasType<{ items?:ValueTypes["Shape"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on ShapeConnection']?: Omit }>; ["View"]: AliasType<{ name?:boolean | `@${string}`, fields?:ValueTypes["CMSField"], slug?:boolean | `@${string}`, display?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on View']?: Omit }>; ["AiComponent"]: AliasType<{ name?:boolean | `@${string}`, htmlComponent?:boolean | `@${string}`, className?:boolean | `@${string}`, textContent?:boolean | `@${string}`, children?:ValueTypes["AiComponent"], __typename?: boolean | `@${string}`, ['...on AiComponent']?: Omit }>; ["InputField"]: AliasType<{ label?:boolean | `@${string}`, placeholder?:boolean | `@${string}`, type?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on InputField']?: Omit }>; ["LinkField"]: AliasType<{ label?:boolean | `@${string}`, href?:boolean | `@${string}`, target?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on LinkField']?: Omit }>; ["ButtonField"]: AliasType<{ label?:boolean | `@${string}`, type?:boolean | `@${string}`, loadingLabel?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ButtonField']?: Omit }>; ["CheckboxField"]: AliasType<{ label?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on CheckboxField']?: Omit }>; ["VariableField"]: AliasType<{ label?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, shouldRender?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on VariableField']?: Omit }>; ["GenerateHusarShapeImplementorInput"]: { prompt: string | Variable, existingFileContent?: string | undefined | null | Variable, backendGraphQlContent?: string | undefined | null | Variable, includeShapes?: Array | undefined | null | Variable }; ["ShapeLibrary"]: AliasType<{ id?:boolean | `@${string}`, name?:boolean | `@${string}`, shapes?:ValueTypes["Shape"], description?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ShapeLibrary']?: Omit }>; ["ObjectId"]:unknown; ["S3Scalar"]:unknown; ["Timestamp"]:unknown; ["ModelNavigationCompiled"]:unknown; ["BakedIpsumData"]:unknown; ["ShapeAsScalar"]:unknown; ["ModelAsScalar"]:unknown; ["ViewAsScalar"]:unknown; ["FormAsScalar"]:unknown; ["JSON"]:unknown; ["TailwindConfiguration"]: AliasType<{ content?:boolean | `@${string}`, contentForClient?:boolean | `@${string}`, compiledForIframe?:boolean | `@${string}`, libraries?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on TailwindConfiguration']?: Omit }>; ["Sort"]:Sort; ["ConditionSetOperator"]:ConditionSetOperator; ["ConditionOperator"]:ConditionOperator; ["ConditionType"]:ConditionType; ["ActionType"]:ActionType; ["PageInfo"]: AliasType<{ total?:boolean | `@${string}`, hasNext?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on PageInfo']?: Omit }>; ["PageInput"]: { limit: number | Variable, start?: number | undefined | null | Variable }; ["RootParamsAdminType"]:unknown; ["Shape"]: AliasType<{ name?:boolean | `@${string}`, slug?:boolean | `@${string}`, display?:boolean | `@${string}`, previewFields?:boolean | `@${string}`, prompt?:boolean | `@${string}`, promptResponse?:ValueTypes["AiComponent"], fields?:ValueTypes["CMSField"], __typename?: boolean | `@${string}`, ['...on Shape']?: Omit }>; ["TailwindLibrary"]:TailwindLibrary; ["TailwindConfigurationInput"]: { content: string | Variable, libraries?: Array | undefined | null | Variable }; ["ImageFieldInput"]: { thumbnail?: ValueTypes["S3Scalar"] | undefined | null | Variable, url?: ValueTypes["S3Scalar"] | undefined | null | Variable, alt?: string | undefined | null | Variable }; ["VideoFieldInput"]: { previewImage?: ValueTypes["S3Scalar"] | undefined | null | Variable, url?: ValueTypes["S3Scalar"] | undefined | null | Variable, alt?: string | undefined | null | Variable }; ["DuplicateDocumentsInput"]: { originalRootParams: ValueTypes["RootParamsInput"] | Variable, newRootParams: ValueTypes["RootParamsInput"] | Variable, inputLanguage?: ValueTypes["Languages"] | undefined | null | Variable, resultLanguage?: ValueTypes["Languages"] | undefined | null | Variable, overrideExistingDocuments?: boolean | undefined | null | Variable }; ["AnalyticsResponse"]: AliasType<{ date?:boolean | `@${string}`, value?:ValueTypes["AnalyticsModelResponse"], __typename?: boolean | `@${string}`, ['...on AnalyticsResponse']?: Omit }>; ["AnalyticsModelResponse"]: AliasType<{ modelName?:boolean | `@${string}`, calls?:boolean | `@${string}`, rootParamsKey?:boolean | `@${string}`, tokens?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AnalyticsModelResponse']?: Omit }>; ["CreateRootCMSParam"]: { name: string | Variable, options: Array | Variable, default?: string | undefined | null | Variable }; ["CreateVersion"]: { name: string | Variable, from: ValueTypes["Timestamp"] | Variable, to?: ValueTypes["Timestamp"] | undefined | null | Variable }; ["CreateInternalLink"]: { keys: Array | Variable, href: string | Variable }; ["FileResponse"]: AliasType<{ key?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, modifiedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on FileResponse']?: Omit }>; ["FileConnection"]: AliasType<{ items?:ValueTypes["FileResponse"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on FileConnection']?: Omit }>; ["MediaResponse"]: AliasType<{ key?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, thumbnailCdnURL?:boolean | `@${string}`, alt?:boolean | `@${string}`, modifiedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on MediaResponse']?: Omit }>; ["MediaConnection"]: AliasType<{ items?:ValueTypes["MediaResponse"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on MediaConnection']?: Omit }>; ["MediaOrderByInput"]: { date?: ValueTypes["Sort"] | undefined | null | Variable }; ["MediaParamsInput"]: { model?: string | undefined | null | Variable, search?: string | undefined | null | Variable, allowedExtensions?: Array | undefined | null | Variable, page?: ValueTypes["PageInput"] | undefined | null | Variable, sort?: ValueTypes["MediaOrderByInput"] | undefined | null | Variable, unusedFilesOnly?: boolean | undefined | null | Variable }; ["UploadFileInput"]: { key: string | Variable, prefix?: string | undefined | null | Variable, alt?: string | undefined | null | Variable }; ["UploadFileResponseBase"]: AliasType<{ key?:boolean | `@${string}`, putURL?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on UploadFileResponseBase']?: Omit }>; ["ImageUploadResponse"]: AliasType<{ file?:ValueTypes["UploadFileResponseBase"], thumbnail?:ValueTypes["UploadFileResponseBase"], __typename?: boolean | `@${string}`, ['...on ImageUploadResponse']?: Omit }>; ["ActionInput"]: { path: string | Variable, type: ValueTypes["ActionType"] | Variable, value: string | Variable }; ["RuleInput"]: { conditions: Array | Variable, actions: Array | Variable }; ["InputCMSField"]: { name: string | Variable, type: ValueTypes["CMSType"] | Variable, list?: boolean | undefined | null | Variable, searchable?: boolean | undefined | null | Variable, sortable?: boolean | undefined | null | Variable, filterable?: boolean | undefined | null | Variable, options?: Array | undefined | null | Variable, relation?: string | undefined | null | Variable, builtIn?: boolean | undefined | null | Variable, fields?: Array | undefined | null | Variable, visual?: ValueTypes["InputVisual"] | undefined | null | Variable, nonTranslatable?: boolean | undefined | null | Variable, display?: string | undefined | null | Variable }; ["InputVisual"]: { className?: string | undefined | null | Variable, component?: string | undefined | null | Variable, rules?: Array | undefined | null | Variable }; ["InputCondition"]: { type: ValueTypes["ConditionType"] | Variable, path?: string | undefined | null | Variable, operator?: ValueTypes["ConditionOperator"] | undefined | null | Variable, setOperator?: ValueTypes["ConditionSetOperator"] | undefined | null | Variable, value?: string | undefined | null | Variable, children?: Array | undefined | null | Variable }; ["ApiKey"]: AliasType<{ name?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, _id?:boolean | `@${string}`, value?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ApiKey']?: Omit }>; ["Languages"]:Languages; ["Formality"]:Formality; ["BackupFile"]:unknown; ["GenerateTailwindClassList"]: AliasType<{ className?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on GenerateTailwindClassList']?: Omit }>; ["GenerateJSONLDInput"]: { data: ValueTypes["JSON"] | Variable }; ["RemoveWhiteBackgroundInput"]: { url: string | Variable }; ["ParseFileOutputType"]:ParseFileOutputType; ["ParseFileInput"]: { key: string | Variable, fileURL: string | Variable, name: string | Variable, type: ValueTypes["ParseFileOutputType"] | Variable }; ["ParseFileResponse"]: AliasType<{ name?:boolean | `@${string}`, type?:boolean | `@${string}`, status?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ParseFileResponse']?: Omit }>; ["GenerateContentFromVideoToContentInput"]: { existingContent: string | Variable }; ["GenerateContentInput"]: { document: string | Variable, field: string | Variable, description?: string | undefined | null | Variable, keywords?: Array | undefined | null | Variable, language?: ValueTypes["Languages"] | undefined | null | Variable }; ["GenerateAllContentInput"]: { fields: string | Variable, prompt: string | Variable, document?: string | undefined | null | Variable, language?: string | undefined | null | Variable }; ["CaptionImageInput"]: { imageURL: string | Variable }; ["TranscribeAudioInput"]: { audioURL: string | Variable, language: ValueTypes["Languages"] | Variable }; ["GenerateImageModel"]:GenerateImageModel; ["ImagePricingForSize"]: AliasType<{ size?:boolean | `@${string}`, price?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ImagePricingForSize']?: Omit }>; ["BackgroundType"]:BackgroundType; ["ImageModelSource"]:ImageModelSource; ["AvailableImageModel"]: AliasType<{ model?:boolean | `@${string}`, sizes?:ValueTypes["ImagePricingForSize"], styles?:boolean | `@${string}`, backgrounds?:boolean | `@${string}`, source?:boolean | `@${string}`, disabled?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AvailableImageModel']?: Omit }>; ["GenerateImageSize"]:GenerateImageSize; ["GenerateImageStyle"]:GenerateImageStyle; ["GenerateImageInput"]: { model: ValueTypes["GenerateImageModel"] | Variable, prompt: string | Variable, size: ValueTypes["GenerateImageSize"] | Variable, style?: ValueTypes["GenerateImageStyle"] | undefined | null | Variable, background?: ValueTypes["BackgroundType"] | undefined | null | Variable }; ["TranslateDocInput"]: { modelName: string | Variable, slug: string | Variable, originalRootParams: ValueTypes["RootParamsInput"] | Variable, newRootParams: ValueTypes["RootParamsInput"] | Variable, resultLanguages: Array | Variable, formality?: ValueTypes["Formality"] | undefined | null | Variable, context?: string | undefined | null | Variable, inputLanguage?: ValueTypes["Languages"] | undefined | null | Variable }; ["TranslateViewInput"]: { viewName: string | Variable, originalRootParams: ValueTypes["RootParamsInput"] | Variable, newRootParams: ValueTypes["RootParamsInput"] | Variable, resultLanguages: Array | Variable, inputLanguage?: ValueTypes["Languages"] | undefined | null | Variable, formality?: ValueTypes["Formality"] | undefined | null | Variable, context?: string | undefined | null | Variable }; ["TranslateFormInput"]: { name: string | Variable, originalRootParams: ValueTypes["RootParamsInput"] | Variable, newRootParams: ValueTypes["RootParamsInput"] | Variable, resultLanguages: Array | Variable, inputLanguage?: ValueTypes["Languages"] | undefined | null | Variable, formality?: ValueTypes["Formality"] | undefined | null | Variable, context?: string | undefined | null | Variable }; ["PrefixInput"]: { old: Array | Variable, new: Array | Variable }; ["TranscribeAudioChunk"]: AliasType<{ start?:boolean | `@${string}`, end?:boolean | `@${string}`, text?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on TranscribeAudioChunk']?: Omit }>; ["InputFieldInput"]: { label?: string | undefined | null | Variable, placeholder?: string | undefined | null | Variable, type?: string | undefined | null | Variable, defaultValue?: string | undefined | null | Variable }; ["LinkFieldInput"]: { label?: string | undefined | null | Variable, href?: string | undefined | null | Variable, target?: string | undefined | null | Variable }; ["ButtonFieldInput"]: { label?: string | undefined | null | Variable, type?: string | undefined | null | Variable, loadingLabel?: string | undefined | null | Variable }; ["CheckboxFieldInput"]: { label?: string | undefined | null | Variable, defaultValue?: boolean | undefined | null | Variable }; ["VariableFieldInput"]: { label?: string | undefined | null | Variable, defaultValue?: string | undefined | null | Variable, shouldRender?: boolean | undefined | null | Variable }; ["SocialQuery"]: AliasType<{ reddit?:ValueTypes["SocialRedditQuery"], __typename?: boolean | `@${string}`, ['...on SocialQuery']?: Omit }>; ["SocialMutation"]: AliasType<{ reddit?:ValueTypes["SocialRedditMutation"], __typename?: boolean | `@${string}`, ['...on SocialMutation']?: Omit }>; ["SocialRedditQuery"]: AliasType<{ settings?:ValueTypes["SocialRedditSettings"], history?:ValueTypes["SocialRedditHistory"], getRedditAuthorizeLink?: [{ redirect: string | Variable},boolean | `@${string}`], isAuthorized?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on SocialRedditQuery']?: Omit }>; ["SocialRedditMutation"]: AliasType<{ updateSettings?: [{ settings: ValueTypes["SocialRedditSettingsInput"] | Variable},boolean | `@${string}`], __typename?: boolean | `@${string}`, ['...on SocialRedditMutation']?: Omit }>; ["SocialRedditSettings"]: AliasType<{ on?:boolean | `@${string}`, subreddit?:boolean | `@${string}`, configurations?:ValueTypes["SocialRedditPostConfiguration"], client_id?:boolean | `@${string}`, secret?:boolean | `@${string}`, app_name?:boolean | `@${string}`, username?:boolean | `@${string}`, redirect_uri?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on SocialRedditSettings']?: Omit }>; ["SocialRedditSettingsInput"]: { subreddit: string | Variable, on?: boolean | undefined | null | Variable, configurations?: Array | undefined | null | Variable, client_id: string | Variable, secret: string | Variable, app_name: string | Variable, username: string | Variable, redirect_uri: string | Variable }; ["SocialRedditPostConfiguration"]: AliasType<{ model?:boolean | `@${string}`, /** url template for example https://husar.ai/blog/{{slug}} */ urlTemplate?:boolean | `@${string}`, /** name of the title field */ titleField?:boolean | `@${string}`, rootParams?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on SocialRedditPostConfiguration']?: Omit }>; ["SocialRedditPostConfigurationInput"]: { model: string | Variable, urlTemplate: string | Variable, titleField: string | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable }; ["SocialRedditHistory"]: AliasType<{ model?:boolean | `@${string}`, slug?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, linkPosted?:boolean | `@${string}`, rootParams?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on SocialRedditHistory']?: Omit }>; ["AgentMessageInput"]: { role: string | Variable, content: string | Variable }; ["AgentRunInput"]: { prompt: string | Variable, tools?: Array | undefined | null | Variable, dryRun?: boolean | undefined | null | Variable, maxSteps?: number | undefined | null | Variable, temperature?: number | undefined | null | Variable, history?: Array | undefined | null | Variable, previousResponseId?: string | undefined | null | Variable, model?: string | undefined | null | Variable }; ["AgentToolRunInput"]: { name: string | Variable, args?: ValueTypes["JSON"] | undefined | null | Variable, argsArray?: Array | undefined | null | Variable, dryRun?: boolean | undefined | null | Variable }; ["AgentMessage"]: AliasType<{ role?:boolean | `@${string}`, content?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AgentMessage']?: Omit }>; ["AgentToolCall"]: AliasType<{ name?:boolean | `@${string}`, args?:boolean | `@${string}`, ok?:boolean | `@${string}`, error?:boolean | `@${string}`, isMutation?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AgentToolCall']?: Omit }>; ["AgentRunResult"]: AliasType<{ messages?:ValueTypes["AgentMessage"], toolCalls?:ValueTypes["AgentToolCall"], summary?:boolean | `@${string}`, tokensUsed?:boolean | `@${string}`, success?:boolean | `@${string}`, responseId?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AgentRunResult']?: Omit }>; ["AgentToolRunResult"]: AliasType<{ ok?:boolean | `@${string}`, error?:boolean | `@${string}`, result?:boolean | `@${string}`, executed?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on AgentToolRunResult']?: Omit }>; ["PersistedType"]: AliasType<{ shapes?:boolean | `@${string}`, view?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on PersistedType']?: Omit }>; ["Mutation"]: AliasType<{ submitResponseState?: [{ name: string | Variable, fields: ValueTypes["JSON"] | Variable, state: ValueTypes["JSON"] | Variable},boolean | `@${string}`], admin?:ValueTypes["AdminMutation"], superAdmin?:ValueTypes["SuperAdminMutation"], __typename?: boolean | `@${string}`, ['...on Mutation']?: Omit }>; ["AdminQuery"]: AliasType<{ getImageModels?:ValueTypes["AvailableImageModel"], analytics?: [{ fromDate: string | Variable, toDate?: string | undefined | null | Variable},ValueTypes["AnalyticsResponse"]], translationAnalytics?: [{ fromDate: string | Variable, toDate?: string | undefined | null | Variable},ValueTypes["AnalyticsResponse"]], generationAnalytics?: [{ fromDate: string | Variable, toDate?: string | undefined | null | Variable},ValueTypes["AnalyticsResponse"]], backup?:boolean | `@${string}`, backups?:ValueTypes["MediaResponse"], uploadBackupFile?: [{ file: ValueTypes["UploadFileInput"] | Variable},ValueTypes["UploadFileResponseBase"]], apiKeys?:ValueTypes["ApiKey"], tailwind?:ValueTypes["TailwindConfiguration"], dynamicTailwind?: [{ base: string | Variable},boolean | `@${string}`], social?:ValueTypes["SocialQuery"], me?:ValueTypes["User"], __typename?: boolean | `@${string}`, ['...on AdminQuery']?: Omit }>; ["PublicUsersQuery"]: AliasType<{ login?:ValueTypes["LoginQuery"], __typename?: boolean | `@${string}`, ['...on PublicUsersQuery']?: Omit }>; ["ChangePasswordWhenLoggedError"]:ChangePasswordWhenLoggedError; ["ChangePasswordWhenLoggedResponse"]: AliasType<{ result?:boolean | `@${string}`, hasError?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on ChangePasswordWhenLoggedResponse']?: Omit }>; ["LoginInput"]: { username: string | Variable, password: string | Variable }; ["ChangePasswordWhenLoggedInput"]: { oldPassword: string | Variable, newPassword: string | Variable }; ["User"]: AliasType<{ username?:boolean | `@${string}`, emailConfirmed?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, fullName?:boolean | `@${string}`, avatarUrl?:boolean | `@${string}`, /** @deprecated Use permissions system instead */ role?:boolean | `@${string}`, _id?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on User']?: Omit }>; ["LoginQuery"]: AliasType<{ password?: [{ user: ValueTypes["LoginInput"] | Variable},ValueTypes["LoginResponse"]], refreshToken?: [{ refreshToken: string | Variable},boolean | `@${string}`], __typename?: boolean | `@${string}`, ['...on LoginQuery']?: Omit }>; ["LoginErrors"]:LoginErrors; ["LoginResponse"]: AliasType<{ /** same value as accessToken, for delete in future, improvise, adapt, overcome, frontend! */ login?:boolean | `@${string}`, accessToken?:boolean | `@${string}`, refreshToken?:boolean | `@${string}`, hasError?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on LoginResponse']?: Omit }>; ["CMSRole"]:CMSRole; ["SuperAdminMutation"]: AliasType<{ addUser?: [{ user: ValueTypes["CreateUser"] | Variable},ValueTypes["CreateUserResponse"]], userOps?: [{ _id: string | Variable},ValueTypes["UserOps"]], upsertUserPermissions?: [{ input: ValueTypes["UpsertUserPermissionsInput"] | Variable},ValueTypes["UserPermissions"]], deleteUserPermissions?: [{ userId: string | Variable},boolean | `@${string}`], __typename?: boolean | `@${string}`, ['...on SuperAdminMutation']?: Omit }>; ["CreateUser"]: { username: string | Variable, permissions?: Array | undefined | null | Variable, /** Optional password. If not provided, a random password will be generated. */ password?: string | undefined | null | Variable, fullName?: string | undefined | null | Variable }; ["SuperAdminQuery"]: AliasType<{ users?:ValueTypes["User"], userPermissions?: [{ userId: string | Variable},ValueTypes["UserPermissions"]], allUserPermissions?:ValueTypes["UserPermissions"], permissionPresets?:ValueTypes["PermissionPresetInfo"], __typename?: boolean | `@${string}`, ['...on SuperAdminQuery']?: Omit }>; ["EditUser"]: { username?: string | undefined | null | Variable, permissions?: Array | undefined | null | Variable, /** Optional new password */ password?: string | undefined | null | Variable, fullName?: string | undefined | null | Variable }; ["CreateUserResponse"]: AliasType<{ _id?:boolean | `@${string}`, /** Only returned if password was auto-generated (not provided in input) */ generatedPassword?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on CreateUserResponse']?: Omit }>; ["UserOps"]: AliasType<{ remove?:boolean | `@${string}`, update?: [{ user: ValueTypes["EditUser"] | Variable},boolean | `@${string}`], __typename?: boolean | `@${string}`, ['...on UserOps']?: Omit }>; /** User permissions document */ ["UserPermissions"]: AliasType<{ _id?:boolean | `@${string}`, userId?:boolean | `@${string}`, permissions?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, createdBy?:boolean | `@${string}`, updatedBy?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on UserPermissions']?: Omit }>; ["UpsertUserPermissionsInput"]: { userId: string | Variable, permissions: Array | Variable }; /** Permission presets for quick setup */ ["PermissionPreset"]:PermissionPreset; ["PermissionPresetInfo"]: AliasType<{ name?:boolean | `@${string}`, permissions?:boolean | `@${string}`, description?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on PermissionPresetInfo']?: Omit }>; /** This enum is defined externally and injected via federation */ ["CMSType"]:CMSType; ["RootParamsType"]: AliasType<{ _version?:boolean | `@${string}`, locale?:boolean | `@${string}`, env?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on RootParamsType']?: Omit }>; ["Query"]: AliasType<{ navigation?:ValueTypes["ModelNavigation"], rootParams?:ValueTypes["RootCMSParam"], versions?:ValueTypes["VersionField"], links?:ValueTypes["InternalLink"], listViews?:ValueTypes["View"], listShapes?:ValueTypes["Shape"], tailwind?:ValueTypes["TailwindConfiguration"], shapeLibraries?:ValueTypes["ShapeLibrary"], responses?: [{ filter?: ValueTypes["JSON"] | undefined | null | Variable, skip?: number | undefined | null | Variable, take?: number | undefined | null | Variable},boolean | `@${string}`], response?: [{ id: string | Variable},boolean | `@${string}`], paginatedNavigation?: [{ page: ValueTypes["PageInput"] | Variable, search?: string | undefined | null | Variable, sort?: ValueTypes["StructureSortInput"] | undefined | null | Variable},ValueTypes["ModelNavigationConnection"]], paginatedListViews?: [{ page: ValueTypes["PageInput"] | Variable, search?: string | undefined | null | Variable, sort?: ValueTypes["StructureSortInput"] | undefined | null | Variable},ValueTypes["ViewConnection"]], paginatedListShapes?: [{ page: ValueTypes["PageInput"] | Variable, search?: string | undefined | null | Variable, sort?: ValueTypes["StructureSortInput"] | undefined | null | Variable},ValueTypes["ShapeConnection"]], admin?:ValueTypes["AdminQuery"], isLoggedIn?:boolean | `@${string}`, logoURL?:boolean | `@${string}`, faviconURL?:boolean | `@${string}`, publicUsers?:ValueTypes["PublicUsersQuery"], superAdmin?:ValueTypes["SuperAdminQuery"], listtest?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["test"]], variantstestBySlug?: [{ slug: string | Variable},ValueTypes["test"]], fieldSettest?:boolean | `@${string}`, modeltest?:boolean | `@${string}`, previewFieldstest?:boolean | `@${string}`, variantsViewbpk_homepage?:ValueTypes["Viewbpk_homepage"], fieldSetViewbpk_homepage?:boolean | `@${string}`, modelViewbpk_homepage?:boolean | `@${string}`, previewFieldsViewbpk_homepage?:boolean | `@${string}`, oneViewbpk_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewbpk_homepage"]], oneAsScalarViewbpk_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewcontact_page?:ValueTypes["Viewcontact_page"], fieldSetViewcontact_page?:boolean | `@${string}`, modelViewcontact_page?:boolean | `@${string}`, previewFieldsViewcontact_page?:boolean | `@${string}`, oneViewcontact_page?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewcontact_page"]], oneAsScalarViewcontact_page?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg5_homepage?:ValueTypes["Viewg5_homepage"], fieldSetViewg5_homepage?:boolean | `@${string}`, modelViewg5_homepage?:boolean | `@${string}`, previewFieldsViewg5_homepage?:boolean | `@${string}`, oneViewg5_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg5_homepage"]], oneAsScalarViewg5_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg51c_homepage?:ValueTypes["Viewg51c_homepage"], fieldSetViewg51c_homepage?:boolean | `@${string}`, modelViewg51c_homepage?:boolean | `@${string}`, previewFieldsViewg51c_homepage?:boolean | `@${string}`, oneViewg51c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg51c_homepage"]], oneAsScalarViewg51c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg51m_homepage?:ValueTypes["Viewg51m_homepage"], fieldSetViewg51m_homepage?:boolean | `@${string}`, modelViewg51m_homepage?:boolean | `@${string}`, previewFieldsViewg51m_homepage?:boolean | `@${string}`, oneViewg51m_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg51m_homepage"]], oneAsScalarViewg51m_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg52_homepage?:ValueTypes["Viewg52_homepage"], fieldSetViewg52_homepage?:boolean | `@${string}`, modelViewg52_homepage?:boolean | `@${string}`, previewFieldsViewg52_homepage?:boolean | `@${string}`, oneViewg52_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg52_homepage"]], oneAsScalarViewg52_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg52c_homepage?:ValueTypes["Viewg52c_homepage"], fieldSetViewg52c_homepage?:boolean | `@${string}`, modelViewg52c_homepage?:boolean | `@${string}`, previewFieldsViewg52c_homepage?:boolean | `@${string}`, oneViewg52c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg52c_homepage"]], oneAsScalarViewg52c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg53_homepage?:ValueTypes["Viewg53_homepage"], fieldSetViewg53_homepage?:boolean | `@${string}`, modelViewg53_homepage?:boolean | `@${string}`, previewFieldsViewg53_homepage?:boolean | `@${string}`, oneViewg53_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg53_homepage"]], oneAsScalarViewg53_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg5c_homepage?:ValueTypes["Viewg5c_homepage"], fieldSetViewg5c_homepage?:boolean | `@${string}`, modelViewg5c_homepage?:boolean | `@${string}`, previewFieldsViewg5c_homepage?:boolean | `@${string}`, oneViewg5c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg5c_homepage"]], oneAsScalarViewg5c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewg5n_homepage?:ValueTypes["Viewg5n_homepage"], fieldSetViewg5n_homepage?:boolean | `@${string}`, modelViewg5n_homepage?:boolean | `@${string}`, previewFieldsViewg5n_homepage?:boolean | `@${string}`, oneViewg5n_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewg5n_homepage"]], oneAsScalarViewg5n_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewgem_homepage?:ValueTypes["Viewgem_homepage"], fieldSetViewgem_homepage?:boolean | `@${string}`, modelViewgem_homepage?:boolean | `@${string}`, previewFieldsViewgem_homepage?:boolean | `@${string}`, oneViewgem_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewgem_homepage"]], oneAsScalarViewgem_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewglm_homepage?:ValueTypes["Viewglm_homepage"], fieldSetViewglm_homepage?:boolean | `@${string}`, modelViewglm_homepage?:boolean | `@${string}`, previewFieldsViewglm_homepage?:boolean | `@${string}`, oneViewglm_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewglm_homepage"]], oneAsScalarViewglm_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewglm47_homepage?:ValueTypes["Viewglm47_homepage"], fieldSetViewglm47_homepage?:boolean | `@${string}`, modelViewglm47_homepage?:boolean | `@${string}`, previewFieldsViewglm47_homepage?:boolean | `@${string}`, oneViewglm47_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewglm47_homepage"]], oneAsScalarViewglm47_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewgm31_homepage?:ValueTypes["Viewgm31_homepage"], fieldSetViewgm31_homepage?:boolean | `@${string}`, modelViewgm31_homepage?:boolean | `@${string}`, previewFieldsViewgm31_homepage?:boolean | `@${string}`, oneViewgm31_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewgm31_homepage"]], oneAsScalarViewgm31_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewgm3p_homepage?:ValueTypes["Viewgm3p_homepage"], fieldSetViewgm3p_homepage?:boolean | `@${string}`, modelViewgm3p_homepage?:boolean | `@${string}`, previewFieldsViewgm3p_homepage?:boolean | `@${string}`, oneViewgm3p_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewgm3p_homepage"]], oneAsScalarViewgm3p_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewgpt_homepage?:ValueTypes["Viewgpt_homepage"], fieldSetViewgpt_homepage?:boolean | `@${string}`, modelViewgpt_homepage?:boolean | `@${string}`, previewFieldsViewgpt_homepage?:boolean | `@${string}`, oneViewgpt_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewgpt_homepage"]], oneAsScalarViewgpt_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewhk45_homepage?:ValueTypes["Viewhk45_homepage"], fieldSetViewhk45_homepage?:boolean | `@${string}`, modelViewhk45_homepage?:boolean | `@${string}`, previewFieldsViewhk45_homepage?:boolean | `@${string}`, oneViewhk45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewhk45_homepage"]], oneAsScalarViewhk45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewk2_homepage?:ValueTypes["Viewk2_homepage"], fieldSetViewk2_homepage?:boolean | `@${string}`, modelViewk2_homepage?:boolean | `@${string}`, previewFieldsViewk2_homepage?:boolean | `@${string}`, oneViewk2_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewk2_homepage"]], oneAsScalarViewk2_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewk2t_homepage?:ValueTypes["Viewk2t_homepage"], fieldSetViewk2t_homepage?:boolean | `@${string}`, modelViewk2t_homepage?:boolean | `@${string}`, previewFieldsViewk2t_homepage?:boolean | `@${string}`, oneViewk2t_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewk2t_homepage"]], oneAsScalarViewk2t_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewmm25_homepage?:ValueTypes["Viewmm25_homepage"], fieldSetViewmm25_homepage?:boolean | `@${string}`, modelViewmm25_homepage?:boolean | `@${string}`, previewFieldsViewmm25_homepage?:boolean | `@${string}`, oneViewmm25_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewmm25_homepage"]], oneAsScalarViewmm25_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewmm25f_homepage?:ValueTypes["Viewmm25f_homepage"], fieldSetViewmm25f_homepage?:boolean | `@${string}`, modelViewmm25f_homepage?:boolean | `@${string}`, previewFieldsViewmm25f_homepage?:boolean | `@${string}`, oneViewmm25f_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewmm25f_homepage"]], oneAsScalarViewmm25f_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewop41_homepage?:ValueTypes["Viewop41_homepage"], fieldSetViewop41_homepage?:boolean | `@${string}`, modelViewop41_homepage?:boolean | `@${string}`, previewFieldsViewop41_homepage?:boolean | `@${string}`, oneViewop41_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewop41_homepage"]], oneAsScalarViewop41_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewop46_homepage?:ValueTypes["Viewop46_homepage"], fieldSetViewop46_homepage?:boolean | `@${string}`, modelViewop46_homepage?:boolean | `@${string}`, previewFieldsViewop46_homepage?:boolean | `@${string}`, oneViewop46_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewop46_homepage"]], oneAsScalarViewop46_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewopus_homepage?:ValueTypes["Viewopus_homepage"], fieldSetViewopus_homepage?:boolean | `@${string}`, modelViewopus_homepage?:boolean | `@${string}`, previewFieldsViewopus_homepage?:boolean | `@${string}`, oneViewopus_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewopus_homepage"]], oneAsScalarViewopus_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewpizzeria_homepage?:ValueTypes["Viewpizzeria_homepage"], fieldSetViewpizzeria_homepage?:boolean | `@${string}`, modelViewpizzeria_homepage?:boolean | `@${string}`, previewFieldsViewpizzeria_homepage?:boolean | `@${string}`, oneViewpizzeria_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewpizzeria_homepage"]], oneAsScalarViewpizzeria_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewsn4_homepage?:ValueTypes["Viewsn4_homepage"], fieldSetViewsn4_homepage?:boolean | `@${string}`, modelViewsn4_homepage?:boolean | `@${string}`, previewFieldsViewsn4_homepage?:boolean | `@${string}`, oneViewsn4_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewsn4_homepage"]], oneAsScalarViewsn4_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewsn45_homepage?:ValueTypes["Viewsn45_homepage"], fieldSetViewsn45_homepage?:boolean | `@${string}`, modelViewsn45_homepage?:boolean | `@${string}`, previewFieldsViewsn45_homepage?:boolean | `@${string}`, oneViewsn45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewsn45_homepage"]], oneAsScalarViewsn45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], variantsViewsonnet_homepage?:ValueTypes["Viewsonnet_homepage"], fieldSetViewsonnet_homepage?:boolean | `@${string}`, modelViewsonnet_homepage?:boolean | `@${string}`, previewFieldsViewsonnet_homepage?:boolean | `@${string}`, oneViewsonnet_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["Viewsonnet_homepage"]], oneAsScalarViewsonnet_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], fieldSetShapeglm_feature_card?:boolean | `@${string}`, modelShapeglm_feature_card?:boolean | `@${string}`, previewFieldsShapeglm_feature_card?:boolean | `@${string}`, fieldSetShapeglm_testimonial?:boolean | `@${string}`, modelShapeglm_testimonial?:boolean | `@${string}`, previewFieldsShapeglm_testimonial?:boolean | `@${string}`, fieldSetShapegpt_feature_card?:boolean | `@${string}`, modelShapegpt_feature_card?:boolean | `@${string}`, previewFieldsShapegpt_feature_card?:boolean | `@${string}`, fieldSetShapegpt_testimonial?:boolean | `@${string}`, modelShapegpt_testimonial?:boolean | `@${string}`, previewFieldsShapegpt_testimonial?:boolean | `@${string}`, fieldSetShapeopus_feature_card?:boolean | `@${string}`, modelShapeopus_feature_card?:boolean | `@${string}`, previewFieldsShapeopus_feature_card?:boolean | `@${string}`, fieldSetShapeopus_testimonial?:boolean | `@${string}`, modelShapeopus_testimonial?:boolean | `@${string}`, previewFieldsShapeopus_testimonial?:boolean | `@${string}`, fieldSetShapesonnet_feature_card?:boolean | `@${string}`, modelShapesonnet_feature_card?:boolean | `@${string}`, previewFieldsShapesonnet_feature_card?:boolean | `@${string}`, fieldSetShapesonnet_testimonial?:boolean | `@${string}`, modelShapesonnet_testimonial?:boolean | `@${string}`, previewFieldsShapesonnet_testimonial?:boolean | `@${string}`, fieldSetShapeg52c_feature_card?:boolean | `@${string}`, modelShapeg52c_feature_card?:boolean | `@${string}`, previewFieldsShapeg52c_feature_card?:boolean | `@${string}`, fieldSetShapeg52c_testimonial?:boolean | `@${string}`, modelShapeg52c_testimonial?:boolean | `@${string}`, previewFieldsShapeg52c_testimonial?:boolean | `@${string}`, fieldSetShapeg53_feature_card?:boolean | `@${string}`, modelShapeg53_feature_card?:boolean | `@${string}`, previewFieldsShapeg53_feature_card?:boolean | `@${string}`, fieldSetShapeg53_testimonial?:boolean | `@${string}`, modelShapeg53_testimonial?:boolean | `@${string}`, previewFieldsShapeg53_testimonial?:boolean | `@${string}`, fieldSetShapeop46_feature_card?:boolean | `@${string}`, modelShapeop46_feature_card?:boolean | `@${string}`, previewFieldsShapeop46_feature_card?:boolean | `@${string}`, fieldSetShapeop46_testimonial?:boolean | `@${string}`, modelShapeop46_testimonial?:boolean | `@${string}`, previewFieldsShapeop46_testimonial?:boolean | `@${string}`, fieldSetShapebpk_feature_card?:boolean | `@${string}`, modelShapebpk_feature_card?:boolean | `@${string}`, previewFieldsShapebpk_feature_card?:boolean | `@${string}`, fieldSetShapebpk_testimonial?:boolean | `@${string}`, modelShapebpk_testimonial?:boolean | `@${string}`, previewFieldsShapebpk_testimonial?:boolean | `@${string}`, fieldSetShapeop41_feature_card?:boolean | `@${string}`, modelShapeop41_feature_card?:boolean | `@${string}`, previewFieldsShapeop41_feature_card?:boolean | `@${string}`, fieldSetShapeop41_testimonial?:boolean | `@${string}`, modelShapeop41_testimonial?:boolean | `@${string}`, previewFieldsShapeop41_testimonial?:boolean | `@${string}`, fieldSetShapesn45_feature_card?:boolean | `@${string}`, modelShapesn45_feature_card?:boolean | `@${string}`, previewFieldsShapesn45_feature_card?:boolean | `@${string}`, fieldSetShapesn45_testimonial?:boolean | `@${string}`, modelShapesn45_testimonial?:boolean | `@${string}`, previewFieldsShapesn45_testimonial?:boolean | `@${string}`, fieldSetShapehk45_feature_card?:boolean | `@${string}`, modelShapehk45_feature_card?:boolean | `@${string}`, previewFieldsShapehk45_feature_card?:boolean | `@${string}`, fieldSetShapehk45_testimonial?:boolean | `@${string}`, modelShapehk45_testimonial?:boolean | `@${string}`, previewFieldsShapehk45_testimonial?:boolean | `@${string}`, fieldSetShapeg51c_feature_card?:boolean | `@${string}`, modelShapeg51c_feature_card?:boolean | `@${string}`, previewFieldsShapeg51c_feature_card?:boolean | `@${string}`, fieldSetShapeg51c_testimonial?:boolean | `@${string}`, modelShapeg51c_testimonial?:boolean | `@${string}`, previewFieldsShapeg51c_testimonial?:boolean | `@${string}`, fieldSetShapemm25_feature_card?:boolean | `@${string}`, modelShapemm25_feature_card?:boolean | `@${string}`, previewFieldsShapemm25_feature_card?:boolean | `@${string}`, fieldSetShapemm25_testimonial?:boolean | `@${string}`, modelShapemm25_testimonial?:boolean | `@${string}`, previewFieldsShapemm25_testimonial?:boolean | `@${string}`, fieldSetShapek2t_feature_card?:boolean | `@${string}`, modelShapek2t_feature_card?:boolean | `@${string}`, previewFieldsShapek2t_feature_card?:boolean | `@${string}`, fieldSetShapek2t_testimonial?:boolean | `@${string}`, modelShapek2t_testimonial?:boolean | `@${string}`, previewFieldsShapek2t_testimonial?:boolean | `@${string}`, fieldSetShapeg52_feature_card?:boolean | `@${string}`, modelShapeg52_feature_card?:boolean | `@${string}`, previewFieldsShapeg52_feature_card?:boolean | `@${string}`, fieldSetShapeg52_testimonial?:boolean | `@${string}`, modelShapeg52_testimonial?:boolean | `@${string}`, previewFieldsShapeg52_testimonial?:boolean | `@${string}`, fieldSetShapeg51m_feature_card?:boolean | `@${string}`, modelShapeg51m_feature_card?:boolean | `@${string}`, previewFieldsShapeg51m_feature_card?:boolean | `@${string}`, fieldSetShapeg51m_testimonial?:boolean | `@${string}`, modelShapeg51m_testimonial?:boolean | `@${string}`, previewFieldsShapeg51m_testimonial?:boolean | `@${string}`, fieldSetShapesn4_feature_card?:boolean | `@${string}`, modelShapesn4_feature_card?:boolean | `@${string}`, previewFieldsShapesn4_feature_card?:boolean | `@${string}`, fieldSetShapesn4_testimonial?:boolean | `@${string}`, modelShapesn4_testimonial?:boolean | `@${string}`, previewFieldsShapesn4_testimonial?:boolean | `@${string}`, fieldSetShapeg5c_feature_card?:boolean | `@${string}`, modelShapeg5c_feature_card?:boolean | `@${string}`, previewFieldsShapeg5c_feature_card?:boolean | `@${string}`, fieldSetShapeg5c_testimonial?:boolean | `@${string}`, modelShapeg5c_testimonial?:boolean | `@${string}`, previewFieldsShapeg5c_testimonial?:boolean | `@${string}`, fieldSetShapemm25f_feature_card?:boolean | `@${string}`, modelShapemm25f_feature_card?:boolean | `@${string}`, previewFieldsShapemm25f_feature_card?:boolean | `@${string}`, fieldSetShapemm25f_testimonial?:boolean | `@${string}`, modelShapemm25f_testimonial?:boolean | `@${string}`, previewFieldsShapemm25f_testimonial?:boolean | `@${string}`, fieldSetShapeglm47_feature_card?:boolean | `@${string}`, modelShapeglm47_feature_card?:boolean | `@${string}`, previewFieldsShapeglm47_feature_card?:boolean | `@${string}`, fieldSetShapeglm47_testimonial?:boolean | `@${string}`, modelShapeglm47_testimonial?:boolean | `@${string}`, previewFieldsShapeglm47_testimonial?:boolean | `@${string}`, fieldSetShapek2_feature_card?:boolean | `@${string}`, modelShapek2_feature_card?:boolean | `@${string}`, previewFieldsShapek2_feature_card?:boolean | `@${string}`, fieldSetShapek2_testimonial?:boolean | `@${string}`, modelShapek2_testimonial?:boolean | `@${string}`, previewFieldsShapek2_testimonial?:boolean | `@${string}`, fieldSetShapegem_feature_card?:boolean | `@${string}`, modelShapegem_feature_card?:boolean | `@${string}`, previewFieldsShapegem_feature_card?:boolean | `@${string}`, fieldSetShapegem_testimonial?:boolean | `@${string}`, modelShapegem_testimonial?:boolean | `@${string}`, previewFieldsShapegem_testimonial?:boolean | `@${string}`, fieldSetShapegm31_feature_card?:boolean | `@${string}`, modelShapegm31_feature_card?:boolean | `@${string}`, previewFieldsShapegm31_feature_card?:boolean | `@${string}`, fieldSetShapegm31_testimonial?:boolean | `@${string}`, modelShapegm31_testimonial?:boolean | `@${string}`, previewFieldsShapegm31_testimonial?:boolean | `@${string}`, fieldSetShapegm3p_feature_card?:boolean | `@${string}`, modelShapegm3p_feature_card?:boolean | `@${string}`, previewFieldsShapegm3p_feature_card?:boolean | `@${string}`, fieldSetShapegm3p_testimonial?:boolean | `@${string}`, modelShapegm3p_testimonial?:boolean | `@${string}`, previewFieldsShapegm3p_testimonial?:boolean | `@${string}`, fieldSetShapecontact_info_card?:boolean | `@${string}`, modelShapecontact_info_card?:boolean | `@${string}`, previewFieldsShapecontact_info_card?:boolean | `@${string}`, fieldSetShapepizza_menu_item?:boolean | `@${string}`, modelShapepizza_menu_item?:boolean | `@${string}`, previewFieldsShapepizza_menu_item?:boolean | `@${string}`, fieldSetShapepizza_testimonial?:boolean | `@${string}`, modelShapepizza_testimonial?:boolean | `@${string}`, previewFieldsShapepizza_testimonial?:boolean | `@${string}`, mediaQuery?: [{ mediaParams?: ValueTypes["MediaParamsInput"] | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["MediaConnection"]], filesQuery?: [{ mediaParams?: ValueTypes["MediaParamsInput"] | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},ValueTypes["FileConnection"]], __typename?: boolean | `@${string}`, ['...on Query']?: Omit }>; ["AdminMutation"]: AliasType<{ upsertModel?: [{ modelName: string | Variable, fields: Array | Variable, display: string | Variable, prefixUpdate?: Array | undefined | null | Variable},boolean | `@${string}`], removeModel?: [{ modelName: string | Variable},boolean | `@${string}`], upsertView?: [{ viewName: string | Variable, fields: Array | Variable, display: string | Variable, prefixUpdate?: Array | undefined | null | Variable},boolean | `@${string}`], removeView?: [{ viewName: string | Variable},boolean | `@${string}`], upsertShape?: [{ shapeName: string | Variable, fields: Array | Variable, previewFields?: ValueTypes["BakedIpsumData"] | undefined | null | Variable, prompt?: string | undefined | null | Variable, display: string | Variable, prefixUpdate?: Array | undefined | null | Variable},boolean | `@${string}`], removeShape?: [{ shapeName: string | Variable},boolean | `@${string}`], upsertVersion?: [{ version: ValueTypes["CreateVersion"] | Variable},boolean | `@${string}`], removeVersion?: [{ name: string | Variable},boolean | `@${string}`], upsertInternalLink?: [{ link: ValueTypes["CreateInternalLink"] | Variable},boolean | `@${string}`], removeInternalLink?: [{ href: string | Variable},boolean | `@${string}`], upsertParam?: [{ param: ValueTypes["CreateRootCMSParam"] | Variable},boolean | `@${string}`], removeParam?: [{ name: string | Variable},boolean | `@${string}`], uploadFile?: [{ file: ValueTypes["UploadFileInput"] | Variable},ValueTypes["UploadFileResponseBase"]], uploadImage?: [{ file: ValueTypes["UploadFileInput"] | Variable},ValueTypes["ImageUploadResponse"]], removeFiles?: [{ keys: Array | Variable},boolean | `@${string}`], removeAllUnusedFiles?:boolean | `@${string}`, restore?: [{ backup?: ValueTypes["BackupFile"] | undefined | null | Variable},boolean | `@${string}`], restoreFromBackupKey?: [{ key: string | Variable},boolean | `@${string}`], generateApiKey?: [{ name: string | Variable},boolean | `@${string}`], revokeApiKey?: [{ name: string | Variable},boolean | `@${string}`], translateDocument?: [{ param: ValueTypes["TranslateDocInput"] | Variable},boolean | `@${string}`], translateView?: [{ param: ValueTypes["TranslateViewInput"] | Variable},boolean | `@${string}`], translateForm?: [{ param: ValueTypes["TranslateFormInput"] | Variable},boolean | `@${string}`], generateTailwindClassList?: [{ prompt: string | Variable},ValueTypes["GenerateTailwindClassList"]], removeWhiteBackground?: [{ input: ValueTypes["RemoveWhiteBackgroundInput"] | Variable},boolean | `@${string}`], parseFile?: [{ input: ValueTypes["ParseFileInput"] | Variable},ValueTypes["ParseFileResponse"]], generateContent?: [{ input: ValueTypes["GenerateContentInput"] | Variable},boolean | `@${string}`], generateAllContent?: [{ input: ValueTypes["GenerateAllContentInput"] | Variable},boolean | `@${string}`], generateContentFromVideoToContent?: [{ input: ValueTypes["GenerateContentFromVideoToContentInput"] | Variable},boolean | `@${string}`], generateImage?: [{ input: ValueTypes["GenerateImageInput"] | Variable},boolean | `@${string}`], generateJsonLD?: [{ input: ValueTypes["GenerateJSONLDInput"] | Variable},boolean | `@${string}`], captionImage?: [{ input: ValueTypes["CaptionImageInput"] | Variable},boolean | `@${string}`], transcribeAudio?: [{ input: ValueTypes["TranscribeAudioInput"] | Variable},ValueTypes["TranscribeAudioChunk"]], changeLogo?: [{ logoURL: string | Variable},boolean | `@${string}`], removeLogo?:boolean | `@${string}`, changeFavicon?: [{ faviconURL: string | Variable},boolean | `@${string}`], removeFavicon?:boolean | `@${string}`, duplicateAll?: [{ params: ValueTypes["DuplicateDocumentsInput"] | Variable},boolean | `@${string}`], dupicateModel?: [{ modelName: string | Variable, params: ValueTypes["DuplicateDocumentsInput"] | Variable},boolean | `@${string}`], duplicateView?: [{ viewName: string | Variable, params: ValueTypes["DuplicateDocumentsInput"] | Variable},boolean | `@${string}`], removeModelWithDocuments?: [{ modelName: string | Variable},boolean | `@${string}`], removeDocumentsWithParams?: [{ param?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], setTailwind?: [{ tailwind: ValueTypes["TailwindConfigurationInput"] | Variable},boolean | `@${string}`], social?:ValueTypes["SocialMutation"], runAgentTool?: [{ input: ValueTypes["AgentToolRunInput"] | Variable},ValueTypes["AgentToolRunResult"]], generateShapePreviewFields?: [{ fields: Array | Variable, shapeName?: string | undefined | null | Variable},boolean | `@${string}`], changePasswordWhenLogged?: [{ changePasswordData: ValueTypes["ChangePasswordWhenLoggedInput"] | Variable},ValueTypes["ChangePasswordWhenLoggedResponse"]], upserttest?: [{ slug: string | Variable, data?: ValueTypes["Modifytest"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removetest?: [{ slug: string | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], duplicatetest?: [{ oldSlug: string | Variable, newSlug: string | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewbpk_homepage?: [{ data?: ValueTypes["ModifyViewbpk_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewbpk_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewcontact_page?: [{ data?: ValueTypes["ModifyViewcontact_page"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewcontact_page?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg5_homepage?: [{ data?: ValueTypes["ModifyViewg5_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg5_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg51c_homepage?: [{ data?: ValueTypes["ModifyViewg51c_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg51c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg51m_homepage?: [{ data?: ValueTypes["ModifyViewg51m_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg51m_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg52_homepage?: [{ data?: ValueTypes["ModifyViewg52_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg52_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg52c_homepage?: [{ data?: ValueTypes["ModifyViewg52c_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg52c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg53_homepage?: [{ data?: ValueTypes["ModifyViewg53_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg53_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg5c_homepage?: [{ data?: ValueTypes["ModifyViewg5c_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg5c_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewg5n_homepage?: [{ data?: ValueTypes["ModifyViewg5n_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewg5n_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewgem_homepage?: [{ data?: ValueTypes["ModifyViewgem_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewgem_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewglm_homepage?: [{ data?: ValueTypes["ModifyViewglm_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewglm_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewglm47_homepage?: [{ data?: ValueTypes["ModifyViewglm47_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewglm47_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewgm31_homepage?: [{ data?: ValueTypes["ModifyViewgm31_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewgm31_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewgm3p_homepage?: [{ data?: ValueTypes["ModifyViewgm3p_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewgm3p_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewgpt_homepage?: [{ data?: ValueTypes["ModifyViewgpt_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewgpt_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewhk45_homepage?: [{ data?: ValueTypes["ModifyViewhk45_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewhk45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewk2_homepage?: [{ data?: ValueTypes["ModifyViewk2_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewk2_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewk2t_homepage?: [{ data?: ValueTypes["ModifyViewk2t_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewk2t_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewmm25_homepage?: [{ data?: ValueTypes["ModifyViewmm25_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewmm25_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewmm25f_homepage?: [{ data?: ValueTypes["ModifyViewmm25f_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewmm25f_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewop41_homepage?: [{ data?: ValueTypes["ModifyViewop41_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewop41_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewop46_homepage?: [{ data?: ValueTypes["ModifyViewop46_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewop46_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewopus_homepage?: [{ data?: ValueTypes["ModifyViewopus_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewopus_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewpizzeria_homepage?: [{ data?: ValueTypes["ModifyViewpizzeria_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewpizzeria_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewsn4_homepage?: [{ data?: ValueTypes["ModifyViewsn4_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewsn4_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewsn45_homepage?: [{ data?: ValueTypes["ModifyViewsn45_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewsn45_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], upsertViewsonnet_homepage?: [{ data?: ValueTypes["ModifyViewsonnet_homepage"] | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], removeViewsonnet_homepage?: [{ rootParams?: ValueTypes["RootParamsInput"] | undefined | null | Variable},boolean | `@${string}`], __typename?: boolean | `@${string}`, ['...on AdminMutation']?: Omit }>; ["test__Connection"]: AliasType<{ items?:ValueTypes["test"], pageInfo?:ValueTypes["PageInfo"], __typename?: boolean | `@${string}`, ['...on test__Connection']?: Omit }>; ["test"]: AliasType<{ _version?:ValueTypes["VersionField"], lolo?:boolean | `@${string}`, env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on test']?: Omit }>; ["Viewbpk_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageHero']?: Omit }>; ["Viewbpk_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapebpk_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewbpk_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewbpk_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageFeatures_section']?: Omit }>; ["Viewbpk_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapebpk_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewbpk_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewbpk_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageTestimonials_section']?: Omit }>; ["Viewbpk_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageFooterFooter_inner']?: Omit }>; ["Viewbpk_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewbpk_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewbpk_homepageFooter']?: Omit }>; ["Viewbpk_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewbpk_homepageHero"], features_section?:ValueTypes["Viewbpk_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewbpk_homepageTestimonials_section"], footer?:ValueTypes["Viewbpk_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewbpk_homepage']?: Omit }>; ["Viewcontact_pageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewcontact_pageHero']?: Omit }>; ["Viewcontact_pageContact_sectionInfo_cards"]: AliasType<{ cards?:ValueTypes["Shapecontact_info_card"], __typename?: boolean | `@${string}`, ['...on Viewcontact_pageContact_sectionInfo_cards']?: Omit }>; ["Viewcontact_pageContact_sectionForm_area"]: AliasType<{ form_title?:boolean | `@${string}`, form_subtitle?:boolean | `@${string}`, name_label?:boolean | `@${string}`, email_label?:boolean | `@${string}`, subject_label?:boolean | `@${string}`, message_label?:boolean | `@${string}`, submit_text?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewcontact_pageContact_sectionForm_area']?: Omit }>; ["Viewcontact_pageContact_section"]: AliasType<{ info_cards?:ValueTypes["Viewcontact_pageContact_sectionInfo_cards"], form_area?:ValueTypes["Viewcontact_pageContact_sectionForm_area"], __typename?: boolean | `@${string}`, ['...on Viewcontact_pageContact_section']?: Omit }>; ["Viewcontact_pageMap_sectionOffices"]: AliasType<{ office_1_name?:boolean | `@${string}`, office_1_address?:boolean | `@${string}`, office_2_name?:boolean | `@${string}`, office_2_address?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewcontact_pageMap_sectionOffices']?: Omit }>; ["Viewcontact_pageMap_section"]: AliasType<{ section_label?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, offices?:ValueTypes["Viewcontact_pageMap_sectionOffices"], __typename?: boolean | `@${string}`, ['...on Viewcontact_pageMap_section']?: Omit }>; ["Viewcontact_pageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewcontact_pageFooterFooter_inner']?: Omit }>; ["Viewcontact_pageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewcontact_pageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewcontact_pageFooter']?: Omit }>; ["Viewcontact_page"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewcontact_pageHero"], contact_section?:ValueTypes["Viewcontact_pageContact_section"], map_section?:ValueTypes["Viewcontact_pageMap_section"], footer?:ValueTypes["Viewcontact_pageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewcontact_page']?: Omit }>; ["Viewg5_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5_homepageHero']?: Omit }>; ["Viewg5_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg5c_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg5_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg5_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg5_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg5_homepageFeatures_section']?: Omit }>; ["Viewg5_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg5c_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg5_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg5_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg5_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg5_homepageTestimonials_section']?: Omit }>; ["Viewg5_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5_homepageFooterFooter_inner']?: Omit }>; ["Viewg5_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg5_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg5_homepageFooter']?: Omit }>; ["Viewg5_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg5_homepageHero"], features_section?:ValueTypes["Viewg5_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg5_homepageTestimonials_section"], footer?:ValueTypes["Viewg5_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5_homepage']?: Omit }>; ["Viewg51c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageHero']?: Omit }>; ["Viewg51c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg51c_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg51c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg51c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageFeatures_section']?: Omit }>; ["Viewg51c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg51c_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg51c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg51c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageTestimonials_section']?: Omit }>; ["Viewg51c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageFooterFooter_inner']?: Omit }>; ["Viewg51c_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg51c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg51c_homepageFooter']?: Omit }>; ["Viewg51c_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg51c_homepageHero"], features_section?:ValueTypes["Viewg51c_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg51c_homepageTestimonials_section"], footer?:ValueTypes["Viewg51c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51c_homepage']?: Omit }>; ["Viewg51m_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageHero']?: Omit }>; ["Viewg51m_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg51m_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg51m_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg51m_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageFeatures_section']?: Omit }>; ["Viewg51m_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg51m_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg51m_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg51m_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageTestimonials_section']?: Omit }>; ["Viewg51m_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageFooterFooter_inner']?: Omit }>; ["Viewg51m_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg51m_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg51m_homepageFooter']?: Omit }>; ["Viewg51m_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg51m_homepageHero"], features_section?:ValueTypes["Viewg51m_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg51m_homepageTestimonials_section"], footer?:ValueTypes["Viewg51m_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg51m_homepage']?: Omit }>; ["Viewg52_homepageHeroContainerCta_row"]: AliasType<{ cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, secondary_note?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52_homepageHeroContainerCta_row']?: Omit }>; ["Viewg52_homepageHeroContainer"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_row?:ValueTypes["Viewg52_homepageHeroContainerCta_row"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageHeroContainer']?: Omit }>; ["Viewg52_homepageHero"]: AliasType<{ container?:ValueTypes["Viewg52_homepageHeroContainer"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageHero']?: Omit }>; ["Viewg52_homepageFeatures_sectionSection_header"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52_homepageFeatures_sectionSection_header']?: Omit }>; ["Viewg52_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg52_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg52_homepageFeatures_section"]: AliasType<{ section_header?:ValueTypes["Viewg52_homepageFeatures_sectionSection_header"], features_grid?:ValueTypes["Viewg52_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageFeatures_section']?: Omit }>; ["Viewg52_homepageTestimonials_sectionSection_header"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52_homepageTestimonials_sectionSection_header']?: Omit }>; ["Viewg52_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg52_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg52_homepageTestimonials_section"]: AliasType<{ section_header?:ValueTypes["Viewg52_homepageTestimonials_sectionSection_header"], testimonials_grid?:ValueTypes["Viewg52_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageTestimonials_section']?: Omit }>; ["Viewg52_homepageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52_homepageFooterFooter_inner']?: Omit }>; ["Viewg52_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg52_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg52_homepageFooter']?: Omit }>; ["Viewg52_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg52_homepageHero"], features_section?:ValueTypes["Viewg52_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg52_homepageTestimonials_section"], footer?:ValueTypes["Viewg52_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52_homepage']?: Omit }>; ["Viewg52c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageHero']?: Omit }>; ["Viewg52c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg52c_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg52c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg52c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageFeatures_section']?: Omit }>; ["Viewg52c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg52c_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg52c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg52c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageTestimonials_section']?: Omit }>; ["Viewg52c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageFooterFooter_inner']?: Omit }>; ["Viewg52c_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg52c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg52c_homepageFooter']?: Omit }>; ["Viewg52c_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg52c_homepageHero"], features_section?:ValueTypes["Viewg52c_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg52c_homepageTestimonials_section"], footer?:ValueTypes["Viewg52c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg52c_homepage']?: Omit }>; ["Viewg53_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg53_homepageHero']?: Omit }>; ["Viewg53_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg53_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg53_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg53_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg53_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg53_homepageFeatures_section']?: Omit }>; ["Viewg53_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg53_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg53_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg53_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg53_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg53_homepageTestimonials_section']?: Omit }>; ["Viewg53_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg53_homepageFooterFooter_inner']?: Omit }>; ["Viewg53_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg53_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg53_homepageFooter']?: Omit }>; ["Viewg53_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg53_homepageHero"], features_section?:ValueTypes["Viewg53_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg53_homepageTestimonials_section"], footer?:ValueTypes["Viewg53_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg53_homepage']?: Omit }>; ["Viewg5c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageHero']?: Omit }>; ["Viewg5c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeg5c_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewg5c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewg5c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageFeatures_section']?: Omit }>; ["Viewg5c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeg5c_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewg5c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewg5c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageTestimonials_section']?: Omit }>; ["Viewg5c_homepageFooterFooter_innerLinks_group"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageFooterFooter_innerLinks_group']?: Omit }>; ["Viewg5c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links_group?:ValueTypes["Viewg5c_homepageFooterFooter_innerLinks_group"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageFooterFooter_inner']?: Omit }>; ["Viewg5c_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewg5c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewg5c_homepageFooter']?: Omit }>; ["Viewg5c_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewg5c_homepageHero"], features_section?:ValueTypes["Viewg5c_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewg5c_homepageTestimonials_section"], footer?:ValueTypes["Viewg5c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5c_homepage']?: Omit }>; ["Viewg5n_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:boolean | `@${string}`, features_section?:boolean | `@${string}`, testimonials_section?:boolean | `@${string}`, env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewg5n_homepage']?: Omit }>; ["Viewgem_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgem_homepageHero']?: Omit }>; ["Viewgem_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapegem_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewgem_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewgem_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewgem_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewgem_homepageFeatures_section']?: Omit }>; ["Viewgem_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapegem_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewgem_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewgem_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewgem_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewgem_homepageTestimonials_section']?: Omit }>; ["Viewgem_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgem_homepageFooterFooter_inner']?: Omit }>; ["Viewgem_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewgem_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewgem_homepageFooter']?: Omit }>; ["Viewgem_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewgem_homepageHero"], features_section?:ValueTypes["Viewgem_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewgem_homepageTestimonials_section"], footer?:ValueTypes["Viewgem_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgem_homepage']?: Omit }>; ["Viewglm_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm_homepageHero']?: Omit }>; ["Viewglm_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features?:ValueTypes["Shapeglm_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewglm_homepageFeatures_section']?: Omit }>; ["Viewglm_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials?:ValueTypes["Shapeglm_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewglm_homepageTestimonials_section']?: Omit }>; ["Viewglm_homepageFooter"]: AliasType<{ logo_text?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm_homepageFooter']?: Omit }>; ["Viewglm_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewglm_homepageHero"], features_section?:ValueTypes["Viewglm_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewglm_homepageTestimonials_section"], footer?:ValueTypes["Viewglm_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm_homepage']?: Omit }>; ["Viewglm47_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageHero']?: Omit }>; ["Viewglm47_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeglm47_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewglm47_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewglm47_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageFeatures_section']?: Omit }>; ["Viewglm47_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeglm47_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewglm47_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewglm47_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageTestimonials_section']?: Omit }>; ["Viewglm47_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageFooterFooter_inner']?: Omit }>; ["Viewglm47_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewglm47_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewglm47_homepageFooter']?: Omit }>; ["Viewglm47_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewglm47_homepageHero"], features_section?:ValueTypes["Viewglm47_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewglm47_homepageTestimonials_section"], footer?:ValueTypes["Viewglm47_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewglm47_homepage']?: Omit }>; ["Viewgm31_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageHero']?: Omit }>; ["Viewgm31_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapegm31_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewgm31_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewgm31_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageFeatures_section']?: Omit }>; ["Viewgm31_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapegm31_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewgm31_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewgm31_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageTestimonials_section']?: Omit }>; ["Viewgm31_homepageFooterFooter_innerLinks_container"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageFooterFooter_innerLinks_container']?: Omit }>; ["Viewgm31_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links_container?:ValueTypes["Viewgm31_homepageFooterFooter_innerLinks_container"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageFooterFooter_inner']?: Omit }>; ["Viewgm31_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewgm31_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewgm31_homepageFooter']?: Omit }>; ["Viewgm31_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewgm31_homepageHero"], features_section?:ValueTypes["Viewgm31_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewgm31_homepageTestimonials_section"], footer?:ValueTypes["Viewgm31_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm31_homepage']?: Omit }>; ["Viewgm3p_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageHero']?: Omit }>; ["Viewgm3p_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapegm3p_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewgm3p_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewgm3p_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageFeatures_section']?: Omit }>; ["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapegm3p_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewgm3p_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageTestimonials_section']?: Omit }>; ["Viewgm3p_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageFooterFooter_inner']?: Omit }>; ["Viewgm3p_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewgm3p_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepageFooter']?: Omit }>; ["Viewgm3p_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewgm3p_homepageHero"], features_section?:ValueTypes["Viewgm3p_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewgm3p_homepageTestimonials_section"], footer?:ValueTypes["Viewgm3p_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgm3p_homepage']?: Omit }>; ["Viewgpt_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, support_text?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgpt_homepageHero']?: Omit }>; ["Viewgpt_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features?:ValueTypes["Shapegpt_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewgpt_homepageFeatures_section']?: Omit }>; ["Viewgpt_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials?:ValueTypes["Shapegpt_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewgpt_homepageTestimonials_section']?: Omit }>; ["Viewgpt_homepageFooter"]: AliasType<{ brand_text?:boolean | `@${string}`, description?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgpt_homepageFooter']?: Omit }>; ["Viewgpt_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewgpt_homepageHero"], features_section?:ValueTypes["Viewgpt_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewgpt_homepageTestimonials_section"], footer?:ValueTypes["Viewgpt_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewgpt_homepage']?: Omit }>; ["Viewhk45_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageHero']?: Omit }>; ["Viewhk45_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapehk45_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewhk45_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewhk45_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageFeatures_section']?: Omit }>; ["Viewhk45_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapehk45_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewhk45_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewhk45_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageTestimonials_section']?: Omit }>; ["Viewhk45_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageFooterFooter_inner']?: Omit }>; ["Viewhk45_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewhk45_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewhk45_homepageFooter']?: Omit }>; ["Viewhk45_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewhk45_homepageHero"], features_section?:ValueTypes["Viewhk45_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewhk45_homepageTestimonials_section"], footer?:ValueTypes["Viewhk45_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewhk45_homepage']?: Omit }>; ["Viewk2_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2_homepageHero']?: Omit }>; ["Viewk2_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapek2_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewk2_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewk2_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewk2_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewk2_homepageFeatures_section']?: Omit }>; ["Viewk2_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapek2_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewk2_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewk2_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewk2_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewk2_homepageTestimonials_section']?: Omit }>; ["Viewk2_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2_homepageFooterFooter_inner']?: Omit }>; ["Viewk2_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewk2_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewk2_homepageFooter']?: Omit }>; ["Viewk2_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewk2_homepageHero"], features_section?:ValueTypes["Viewk2_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewk2_homepageTestimonials_section"], footer?:ValueTypes["Viewk2_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2_homepage']?: Omit }>; ["Viewk2t_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageHero']?: Omit }>; ["Viewk2t_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapek2t_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewk2t_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewk2t_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageFeatures_section']?: Omit }>; ["Viewk2t_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapek2t_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewk2t_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewk2t_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageTestimonials_section']?: Omit }>; ["Viewk2t_homepageFooter"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2t_homepageFooter']?: Omit }>; ["Viewk2t_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewk2t_homepageHero"], features_section?:ValueTypes["Viewk2t_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewk2t_homepageTestimonials_section"], footer?:ValueTypes["Viewk2t_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewk2t_homepage']?: Omit }>; ["Viewmm25_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageHero']?: Omit }>; ["Viewmm25_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapemm25_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewmm25_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewmm25_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageFeatures_section']?: Omit }>; ["Viewmm25_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapemm25_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewmm25_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewmm25_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageTestimonials_section']?: Omit }>; ["Viewmm25_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageFooterFooter_inner']?: Omit }>; ["Viewmm25_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewmm25_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewmm25_homepageFooter']?: Omit }>; ["Viewmm25_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewmm25_homepageHero"], features_section?:ValueTypes["Viewmm25_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewmm25_homepageTestimonials_section"], footer?:ValueTypes["Viewmm25_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25_homepage']?: Omit }>; ["Viewmm25f_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageHero']?: Omit }>; ["Viewmm25f_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapemm25f_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewmm25f_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewmm25f_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageFeatures_section']?: Omit }>; ["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapemm25f_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewmm25f_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageTestimonials_section']?: Omit }>; ["Viewmm25f_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageFooterFooter_inner']?: Omit }>; ["Viewmm25f_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewmm25f_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepageFooter']?: Omit }>; ["Viewmm25f_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewmm25f_homepageHero"], features_section?:ValueTypes["Viewmm25f_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewmm25f_homepageTestimonials_section"], footer?:ValueTypes["Viewmm25f_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewmm25f_homepage']?: Omit }>; ["Viewop41_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop41_homepageHero']?: Omit }>; ["Viewop41_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeop41_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewop41_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewop41_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ValueTypes["Viewop41_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewop41_homepageFeatures_section']?: Omit }>; ["Viewop41_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeop41_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewop41_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewop41_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewop41_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewop41_homepageTestimonials_section']?: Omit }>; ["Viewop41_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop41_homepageFooterFooter_inner']?: Omit }>; ["Viewop41_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewop41_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewop41_homepageFooter']?: Omit }>; ["Viewop41_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewop41_homepageHero"], features_section?:ValueTypes["Viewop41_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewop41_homepageTestimonials_section"], footer?:ValueTypes["Viewop41_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop41_homepage']?: Omit }>; ["Viewop46_homepageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop46_homepageHero']?: Omit }>; ["Viewop46_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeop46_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewop46_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewop46_homepageFeatures_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ValueTypes["Viewop46_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewop46_homepageFeatures_section']?: Omit }>; ["Viewop46_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeop46_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewop46_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewop46_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewop46_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewop46_homepageTestimonials_section']?: Omit }>; ["Viewop46_homepageFooterFooter_inner"]: AliasType<{ brand_name?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop46_homepageFooterFooter_inner']?: Omit }>; ["Viewop46_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewop46_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewop46_homepageFooter']?: Omit }>; ["Viewop46_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewop46_homepageHero"], features_section?:ValueTypes["Viewop46_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewop46_homepageTestimonials_section"], footer?:ValueTypes["Viewop46_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewop46_homepage']?: Omit }>; ["Viewopus_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewopus_homepageHero']?: Omit }>; ["Viewopus_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapeopus_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewopus_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewopus_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewopus_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewopus_homepageFeatures_section']?: Omit }>; ["Viewopus_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapeopus_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewopus_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewopus_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewopus_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewopus_homepageTestimonials_section']?: Omit }>; ["Viewopus_homepageFooterFooter_content"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewopus_homepageFooterFooter_content']?: Omit }>; ["Viewopus_homepageFooter"]: AliasType<{ footer_content?:ValueTypes["Viewopus_homepageFooterFooter_content"], __typename?: boolean | `@${string}`, ['...on Viewopus_homepageFooter']?: Omit }>; ["Viewopus_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewopus_homepageHero"], features_section?:ValueTypes["Viewopus_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewopus_homepageTestimonials_section"], footer?:ValueTypes["Viewopus_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewopus_homepage']?: Omit }>; ["Viewpizzeria_homepageHero"]: AliasType<{ bg_image?:boolean | `@${string}`, eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageHero']?: Omit }>; ["Viewpizzeria_homepageAbout_sectionStats_row"]: AliasType<{ stat_1_number?:boolean | `@${string}`, stat_1_label?:boolean | `@${string}`, stat_2_number?:boolean | `@${string}`, stat_2_label?:boolean | `@${string}`, stat_3_number?:boolean | `@${string}`, stat_3_label?:boolean | `@${string}`, stat_4_number?:boolean | `@${string}`, stat_4_label?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageAbout_sectionStats_row']?: Omit }>; ["Viewpizzeria_homepageAbout_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, stats_row?:ValueTypes["Viewpizzeria_homepageAbout_sectionStats_row"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageAbout_section']?: Omit }>; ["Viewpizzeria_homepageMenu_sectionMenu_grid"]: AliasType<{ items?:ValueTypes["Shapepizza_menu_item"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageMenu_sectionMenu_grid']?: Omit }>; ["Viewpizzeria_homepageMenu_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, menu_grid?:ValueTypes["Viewpizzeria_homepageMenu_sectionMenu_grid"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageMenu_section']?: Omit }>; ["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapepizza_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewpizzeria_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageTestimonials_section']?: Omit }>; ["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageFooterFooter_innerLinks_wrapper']?: Omit }>; ["Viewpizzeria_homepageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, address?:boolean | `@${string}`, copyright?:boolean | `@${string}`, links_wrapper?:ValueTypes["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageFooterFooter_inner']?: Omit }>; ["Viewpizzeria_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewpizzeria_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepageFooter']?: Omit }>; ["Viewpizzeria_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewpizzeria_homepageHero"], about_section?:ValueTypes["Viewpizzeria_homepageAbout_section"], menu_section?:ValueTypes["Viewpizzeria_homepageMenu_section"], testimonials_section?:ValueTypes["Viewpizzeria_homepageTestimonials_section"], footer?:ValueTypes["Viewpizzeria_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewpizzeria_homepage']?: Omit }>; ["Viewsn4_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageHero']?: Omit }>; ["Viewsn4_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapesn4_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewsn4_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewsn4_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageFeatures_section']?: Omit }>; ["Viewsn4_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapesn4_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewsn4_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewsn4_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageTestimonials_section']?: Omit }>; ["Viewsn4_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageFooterFooter_inner']?: Omit }>; ["Viewsn4_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewsn4_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewsn4_homepageFooter']?: Omit }>; ["Viewsn4_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewsn4_homepageHero"], features_section?:ValueTypes["Viewsn4_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewsn4_homepageTestimonials_section"], footer?:ValueTypes["Viewsn4_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn4_homepage']?: Omit }>; ["Viewsn45_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageHero']?: Omit }>; ["Viewsn45_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapesn45_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewsn45_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ValueTypes["Viewsn45_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageFeatures_section']?: Omit }>; ["Viewsn45_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapesn45_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewsn45_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewsn45_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageTestimonials_section']?: Omit }>; ["Viewsn45_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageFooterFooter_inner']?: Omit }>; ["Viewsn45_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewsn45_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewsn45_homepageFooter']?: Omit }>; ["Viewsn45_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewsn45_homepageHero"], features_section?:ValueTypes["Viewsn45_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewsn45_homepageTestimonials_section"], footer?:ValueTypes["Viewsn45_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsn45_homepage']?: Omit }>; ["Viewsonnet_homepageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_primary_text?:boolean | `@${string}`, cta_primary_link?:boolean | `@${string}`, cta_secondary_text?:boolean | `@${string}`, cta_secondary_link?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageHero']?: Omit }>; ["Viewsonnet_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ValueTypes["Shapesonnet_feature_card"], __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageFeatures_sectionFeatures_grid']?: Omit }>; ["Viewsonnet_homepageFeatures_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ValueTypes["Viewsonnet_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageFeatures_section']?: Omit }>; ["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ValueTypes["Shapesonnet_testimonial"], __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageTestimonials_sectionTestimonials_grid']?: Omit }>; ["Viewsonnet_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ValueTypes["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageTestimonials_section']?: Omit }>; ["Viewsonnet_homepageFooterFooter_inner"]: AliasType<{ brand_name?:boolean | `@${string}`, tagline?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageFooterFooter_inner']?: Omit }>; ["Viewsonnet_homepageFooter"]: AliasType<{ footer_inner?:ValueTypes["Viewsonnet_homepageFooterFooter_inner"], __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepageFooter']?: Omit }>; ["Viewsonnet_homepage"]: AliasType<{ _version?:ValueTypes["VersionField"], hero?:ValueTypes["Viewsonnet_homepageHero"], features_section?:ValueTypes["Viewsonnet_homepageFeatures_section"], testimonials_section?:ValueTypes["Viewsonnet_homepageTestimonials_section"], footer?:ValueTypes["Viewsonnet_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Viewsonnet_homepage']?: Omit }>; ["Shapebpk_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapebpk_feature_card']?: Omit }>; ["Shapebpk_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapebpk_testimonial']?: Omit }>; ["Shapecontact_info_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, detail?:boolean | `@${string}`, link?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapecontact_info_card']?: Omit }>; ["Shapeg51c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg51c_feature_card']?: Omit }>; ["Shapeg51c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg51c_testimonial']?: Omit }>; ["Shapeg51m_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg51m_feature_card']?: Omit }>; ["Shapeg51m_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg51m_testimonial']?: Omit }>; ["Shapeg52_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg52_feature_card']?: Omit }>; ["Shapeg52_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg52_testimonial']?: Omit }>; ["Shapeg52c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg52c_feature_card']?: Omit }>; ["Shapeg52c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg52c_testimonial']?: Omit }>; ["Shapeg53_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg53_feature_card']?: Omit }>; ["Shapeg53_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg53_testimonial']?: Omit }>; ["Shapeg5c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg5c_feature_card']?: Omit }>; ["Shapeg5c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeg5c_testimonial']?: Omit }>; ["Shapegem_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegem_feature_card']?: Omit }>; ["Shapegem_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegem_testimonial']?: Omit }>; ["Shapeglm_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeglm_feature_card']?: Omit }>; ["Shapeglm_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, avatar?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeglm_testimonial']?: Omit }>; ["Shapeglm47_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeglm47_feature_card']?: Omit }>; ["Shapeglm47_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeglm47_testimonial']?: Omit }>; ["Shapegm31_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegm31_feature_card']?: Omit }>; ["Shapegm31_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegm31_testimonial']?: Omit }>; ["Shapegm3p_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegm3p_feature_card']?: Omit }>; ["Shapegm3p_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegm3p_testimonial']?: Omit }>; ["Shapegpt_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegpt_feature_card']?: Omit }>; ["Shapegpt_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapegpt_testimonial']?: Omit }>; ["Shapehk45_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapehk45_feature_card']?: Omit }>; ["Shapehk45_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, author_company?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapehk45_testimonial']?: Omit }>; ["Shapek2_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapek2_feature_card']?: Omit }>; ["Shapek2_testimonial"]: AliasType<{ name?:boolean | `@${string}`, role?:boolean | `@${string}`, quote?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapek2_testimonial']?: Omit }>; ["Shapek2t_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapek2t_feature_card']?: Omit }>; ["Shapek2t_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapek2t_testimonial']?: Omit }>; ["Shapemm25_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapemm25_feature_card']?: Omit }>; ["Shapemm25_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapemm25_testimonial']?: Omit }>; ["Shapemm25f_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapemm25f_feature_card']?: Omit }>; ["Shapemm25f_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapemm25f_testimonial']?: Omit }>; ["Shapeop41_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeop41_feature_card']?: Omit }>; ["Shapeop41_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeop41_testimonial']?: Omit }>; ["Shapeop46_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeop46_feature_card']?: Omit }>; ["Shapeop46_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeop46_testimonial']?: Omit }>; ["Shapeopus_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeopus_feature_card']?: Omit }>; ["Shapeopus_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapeopus_testimonial']?: Omit }>; ["Shapepizza_menu_item"]: AliasType<{ image?:boolean | `@${string}`, name?:boolean | `@${string}`, description?:boolean | `@${string}`, price?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapepizza_menu_item']?: Omit }>; ["Shapepizza_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_location?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapepizza_testimonial']?: Omit }>; ["Shapesn4_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesn4_feature_card']?: Omit }>; ["Shapesn4_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesn4_testimonial']?: Omit }>; ["Shapesn45_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesn45_feature_card']?: Omit }>; ["Shapesn45_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesn45_testimonial']?: Omit }>; ["Shapesonnet_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesonnet_feature_card']?: Omit }>; ["Shapesonnet_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}`, ['...on Shapesonnet_testimonial']?: Omit }>; ["Modifytest"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, lolo?: Array | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewbpk_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewbpk_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewbpk_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewbpk_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewbpk_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewbpk_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewbpk_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewbpk_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewbpk_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewbpk_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewbpk_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewcontact_pageHero"]: { eyebrow?: string | undefined | null | Variable, headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable }; ["ModifyViewcontact_pageContact_sectionInfo_cards"]: { cards?: Array | undefined | null | Variable }; ["ModifyViewcontact_pageContact_sectionForm_area"]: { form_title?: string | undefined | null | Variable, form_subtitle?: string | undefined | null | Variable, name_label?: string | undefined | null | Variable, email_label?: string | undefined | null | Variable, subject_label?: string | undefined | null | Variable, message_label?: string | undefined | null | Variable, submit_text?: string | undefined | null | Variable }; ["ModifyViewcontact_pageContact_section"]: { info_cards?: ValueTypes["ModifyViewcontact_pageContact_sectionInfo_cards"] | undefined | null | Variable, form_area?: ValueTypes["ModifyViewcontact_pageContact_sectionForm_area"] | undefined | null | Variable }; ["ModifyViewcontact_pageMap_sectionOffices"]: { office_1_name?: string | undefined | null | Variable, office_1_address?: string | undefined | null | Variable, office_2_name?: string | undefined | null | Variable, office_2_address?: string | undefined | null | Variable }; ["ModifyViewcontact_pageMap_section"]: { section_label?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, offices?: ValueTypes["ModifyViewcontact_pageMap_sectionOffices"] | undefined | null | Variable }; ["ModifyViewcontact_pageFooterFooter_inner"]: { brand?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewcontact_pageFooter"]: { footer_inner?: ValueTypes["ModifyViewcontact_pageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewcontact_page"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewcontact_pageHero"] | undefined | null | Variable, contact_section?: ValueTypes["ModifyViewcontact_pageContact_section"] | undefined | null | Variable, map_section?: ValueTypes["ModifyViewcontact_pageMap_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewcontact_pageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg5_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg5_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg5_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg5_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewg5_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg5_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg5_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg5_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg5_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg5_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg5_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg51c_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg51c_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg51c_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg51c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewg51c_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg51c_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg51c_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg51c_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg51c_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg51c_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg51c_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg51m_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg51m_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg51m_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg51m_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewg51m_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg51m_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg51m_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg51m_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg51m_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg51m_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg51m_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg52_homepageHeroContainerCta_row"]: { cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable, secondary_note?: string | undefined | null | Variable }; ["ModifyViewg52_homepageHeroContainer"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_row?: ValueTypes["ModifyViewg52_homepageHeroContainerCta_row"] | undefined | null | Variable }; ["ModifyViewg52_homepageHero"]: { container?: ValueTypes["ModifyViewg52_homepageHeroContainer"] | undefined | null | Variable }; ["ModifyViewg52_homepageFeatures_sectionSection_header"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable }; ["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg52_homepageFeatures_section"]: { section_header?: ValueTypes["ModifyViewg52_homepageFeatures_sectionSection_header"] | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg52_homepageTestimonials_sectionSection_header"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable }; ["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg52_homepageTestimonials_section"]: { section_header?: ValueTypes["ModifyViewg52_homepageTestimonials_sectionSection_header"] | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg52_homepageFooterFooter_inner"]: { brand?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewg52_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg52_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg52_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg52_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg52_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg52_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg52_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg52c_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg52c_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg52c_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg52c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewg52c_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg52c_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg52c_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg52c_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg52c_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg52c_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg52c_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg53_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg53_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg53_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg53_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewg53_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg53_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg53_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg53_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg53_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg53_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg53_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg5c_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewg5c_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewg5c_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]: { links?: Array | undefined | null | Variable }; ["ModifyViewg5c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links_group?: ValueTypes["ModifyViewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null | Variable }; ["ModifyViewg5c_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewg5c_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewg5c_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewg5c_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewg5c_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewg5c_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewg5c_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewg5n_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: string | undefined | null | Variable, features_section?: string | undefined | null | Variable, testimonials_section?: string | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewgem_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewgem_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewgem_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewgem_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewgem_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewgem_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewgem_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewgem_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewgem_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewgem_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewgem_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewglm_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewglm_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features?: Array | undefined | null | Variable }; ["ModifyViewglm_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials?: Array | undefined | null | Variable }; ["ModifyViewglm_homepageFooter"]: { logo_text?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewglm_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewglm_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewglm_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewglm_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewglm_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewglm47_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewglm47_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewglm47_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewglm47_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewglm47_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewglm47_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewglm47_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewglm47_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewglm47_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewglm47_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewglm47_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewgm31_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewgm31_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewgm31_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]: { links?: Array | undefined | null | Variable }; ["ModifyViewgm31_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links_container?: ValueTypes["ModifyViewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null | Variable }; ["ModifyViewgm31_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewgm31_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewgm31_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewgm31_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewgm31_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewgm31_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewgm31_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewgm3p_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewgm3p_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewgm3p_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewgm3p_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewgm3p_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewgm3p_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewgm3p_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewgm3p_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewgm3p_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewgm3p_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewgm3p_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewgpt_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, support_text?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewgpt_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features?: Array | undefined | null | Variable }; ["ModifyViewgpt_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials?: Array | undefined | null | Variable }; ["ModifyViewgpt_homepageFooter"]: { brand_text?: string | undefined | null | Variable, description?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewgpt_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewgpt_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewgpt_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewgpt_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewgpt_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewhk45_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewhk45_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewhk45_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewhk45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewhk45_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewhk45_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewhk45_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewhk45_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewhk45_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewhk45_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewhk45_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewk2_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewk2_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewk2_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewk2_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewk2_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewk2_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewk2_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewk2_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewk2_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewk2_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewk2_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewk2t_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewk2t_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewk2t_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewk2t_homepageFooter"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewk2t_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewk2t_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewk2t_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewk2t_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewk2t_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewmm25_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewmm25_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewmm25_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewmm25_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewmm25_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewmm25_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewmm25_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewmm25_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewmm25_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewmm25_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewmm25_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewmm25f_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewmm25f_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewmm25f_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewmm25f_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewmm25f_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewmm25f_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewmm25f_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewmm25f_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewmm25f_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewmm25f_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewmm25f_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewop41_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewop41_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewop41_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewop41_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewop41_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewop41_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewop41_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewop41_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewop41_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewop41_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewop41_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewop46_homepageHero"]: { eyebrow?: string | undefined | null | Variable, headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewop46_homepageFeatures_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewop46_homepageTestimonials_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewop46_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewop46_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewop46_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewop46_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewop46_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewop46_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewop46_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewop46_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewopus_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewopus_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewopus_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewopus_homepageFooterFooter_content"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewopus_homepageFooter"]: { footer_content?: ValueTypes["ModifyViewopus_homepageFooterFooter_content"] | undefined | null | Variable }; ["ModifyViewopus_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewopus_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewopus_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewopus_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewopus_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewpizzeria_homepageHero"]: { bg_image?: string | undefined | null | Variable, eyebrow?: string | undefined | null | Variable, headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewpizzeria_homepageAbout_sectionStats_row"]: { stat_1_number?: string | undefined | null | Variable, stat_1_label?: string | undefined | null | Variable, stat_2_number?: string | undefined | null | Variable, stat_2_label?: string | undefined | null | Variable, stat_3_number?: string | undefined | null | Variable, stat_3_label?: string | undefined | null | Variable, stat_4_number?: string | undefined | null | Variable, stat_4_label?: string | undefined | null | Variable }; ["ModifyViewpizzeria_homepageAbout_section"]: { eyebrow?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, stats_row?: ValueTypes["ModifyViewpizzeria_homepageAbout_sectionStats_row"] | undefined | null | Variable }; ["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]: { items?: Array | undefined | null | Variable }; ["ModifyViewpizzeria_homepageMenu_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, menu_grid?: ValueTypes["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null | Variable }; ["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewpizzeria_homepageTestimonials_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { links?: Array | undefined | null | Variable }; ["ModifyViewpizzeria_homepageFooterFooter_inner"]: { brand?: string | undefined | null | Variable, address?: string | undefined | null | Variable, copyright?: string | undefined | null | Variable, links_wrapper?: ValueTypes["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null | Variable }; ["ModifyViewpizzeria_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewpizzeria_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewpizzeria_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewpizzeria_homepageHero"] | undefined | null | Variable, about_section?: ValueTypes["ModifyViewpizzeria_homepageAbout_section"] | undefined | null | Variable, menu_section?: ValueTypes["ModifyViewpizzeria_homepageMenu_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewpizzeria_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewpizzeria_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewsn4_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewsn4_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewsn4_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewsn4_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewsn4_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewsn4_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewsn4_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewsn4_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewsn4_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewsn4_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewsn4_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewsn45_homepageHero"]: { headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_text?: string | undefined | null | Variable, cta_link?: string | undefined | null | Variable }; ["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewsn45_homepageFeatures_section"]: { section_title?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewsn45_homepageTestimonials_section"]: { section_title?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewsn45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null | Variable, links?: Array | undefined | null | Variable }; ["ModifyViewsn45_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewsn45_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewsn45_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewsn45_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewsn45_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewsn45_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewsn45_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyViewsonnet_homepageHero"]: { eyebrow?: string | undefined | null | Variable, headline?: string | undefined | null | Variable, subtitle?: string | undefined | null | Variable, cta_primary_text?: string | undefined | null | Variable, cta_primary_link?: string | undefined | null | Variable, cta_secondary_text?: string | undefined | null | Variable, cta_secondary_link?: string | undefined | null | Variable }; ["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null | Variable }; ["ModifyViewsonnet_homepageFeatures_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, features_grid?: ValueTypes["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null | Variable }; ["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null | Variable }; ["ModifyViewsonnet_homepageTestimonials_section"]: { eyebrow?: string | undefined | null | Variable, section_title?: string | undefined | null | Variable, section_subtitle?: string | undefined | null | Variable, testimonials_grid?: ValueTypes["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null | Variable }; ["ModifyViewsonnet_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null | Variable, tagline?: string | undefined | null | Variable, links?: Array | undefined | null | Variable, copyright?: string | undefined | null | Variable }; ["ModifyViewsonnet_homepageFooter"]: { footer_inner?: ValueTypes["ModifyViewsonnet_homepageFooterFooter_inner"] | undefined | null | Variable }; ["ModifyViewsonnet_homepage"]: { _version?: ValueTypes["CreateVersion"] | undefined | null | Variable, hero?: ValueTypes["ModifyViewsonnet_homepageHero"] | undefined | null | Variable, features_section?: ValueTypes["ModifyViewsonnet_homepageFeatures_section"] | undefined | null | Variable, testimonials_section?: ValueTypes["ModifyViewsonnet_homepageTestimonials_section"] | undefined | null | Variable, footer?: ValueTypes["ModifyViewsonnet_homepageFooter"] | undefined | null | Variable, env?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, slug?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable, draft_version?: boolean | undefined | null | Variable, json_ld?: string | undefined | null | Variable }; ["ModifyShapebpk_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapebpk_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapecontact_info_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, detail?: string | undefined | null | Variable, link?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg51c_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg51c_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg51m_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg51m_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg52_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg52_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg52c_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg52c_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg53_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg53_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg5c_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeg5c_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegem_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegem_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeglm_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeglm_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, avatar?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeglm47_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeglm47_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegm31_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegm31_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegm3p_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegm3p_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegpt_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapegpt_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapehk45_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapehk45_testimonial"]: { quote?: string | undefined | null | Variable, author_name?: string | undefined | null | Variable, author_role?: string | undefined | null | Variable, author_company?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapek2_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapek2_testimonial"]: { name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapek2t_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapek2t_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapemm25_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapemm25_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapemm25f_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapemm25f_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeop41_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeop41_testimonial"]: { quote?: string | undefined | null | Variable, author_name?: string | undefined | null | Variable, author_role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeop46_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeop46_testimonial"]: { quote?: string | undefined | null | Variable, author_name?: string | undefined | null | Variable, author_role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeopus_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapeopus_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapepizza_menu_item"]: { image?: string | undefined | null | Variable, name?: string | undefined | null | Variable, description?: string | undefined | null | Variable, price?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapepizza_testimonial"]: { quote?: string | undefined | null | Variable, author_name?: string | undefined | null | Variable, author_location?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesn4_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesn4_testimonial"]: { quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesn45_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesn45_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, name?: string | undefined | null | Variable, role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesonnet_feature_card"]: { icon?: string | undefined | null | Variable, title?: string | undefined | null | Variable, description?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["ModifyShapesonnet_testimonial"]: { avatar?: string | undefined | null | Variable, quote?: string | undefined | null | Variable, author_name?: string | undefined | null | Variable, author_role?: string | undefined | null | Variable, createdAt?: number | undefined | null | Variable, updatedAt?: number | undefined | null | Variable }; ["RootParamsInput"]: { _version?: string | undefined | null | Variable, locale?: string | undefined | null | Variable, env?: string | undefined | null | Variable }; ["RootParamsEnum"]:RootParamsEnum; ["testSortInput"]: { slug?: ValueTypes["Sort"] | undefined | null | Variable, createdAt?: ValueTypes["Sort"] | undefined | null | Variable, updatedAt?: ValueTypes["Sort"] | undefined | null | Variable }; ["testFilterInput"]: { slug?: ValueTypes["FilterInputString"] | undefined | null | Variable }; ["Subscription"]: AliasType<{ agentRun?: [{ input: ValueTypes["AgentRunInput"] | Variable},ValueTypes["AgentRunResult"]], __typename?: boolean | `@${string}`, ['...on Subscription']?: Omit }>; ["ID"]:unknown } export type ResolverInputTypes = { ["VersionField"]: AliasType<{ name?:boolean | `@${string}`, from?:boolean | `@${string}`, to?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["RangeField"]: AliasType<{ min?:boolean | `@${string}`, max?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["ImageField"]: AliasType<{ url?:boolean | `@${string}`, thumbnail?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["VideoField"]: AliasType<{ url?:boolean | `@${string}`, previewImage?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["InternalLink"]: AliasType<{ _id?:boolean | `@${string}`, keys?:boolean | `@${string}`, href?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["RootCMSParam"]: AliasType<{ name?:boolean | `@${string}`, options?:boolean | `@${string}`, default?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["ModelNavigation"]: AliasType<{ name?:boolean | `@${string}`, display?:boolean | `@${string}`, fields?:ResolverInputTypes["CMSField"], fieldSet?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["CMSField"]: AliasType<{ name?:boolean | `@${string}`, display?:boolean | `@${string}`, type?:boolean | `@${string}`, list?:boolean | `@${string}`, searchable?:boolean | `@${string}`, sortable?:boolean | `@${string}`, filterable?:boolean | `@${string}`, rangeValues?:boolean | `@${string}`, options?:boolean | `@${string}`, relation?:boolean | `@${string}`, fields?:ResolverInputTypes["CMSField"], builtIn?:boolean | `@${string}`, visual?:ResolverInputTypes["Visual"], conditions?:ResolverInputTypes["Condition"], nonTranslatable?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Condition"]: AliasType<{ type?:boolean | `@${string}`, path?:boolean | `@${string}`, operator?:boolean | `@${string}`, setOperator?:boolean | `@${string}`, value?:boolean | `@${string}`, children?:ResolverInputTypes["Condition"], __typename?: boolean | `@${string}` }>; ["Action"]: AliasType<{ path?:boolean | `@${string}`, type?:boolean | `@${string}`, value?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Rule"]: AliasType<{ conditions?:ResolverInputTypes["Condition"], actions?:ResolverInputTypes["Action"], __typename?: boolean | `@${string}` }>; ["Visual"]: AliasType<{ className?:boolean | `@${string}`, component?:boolean | `@${string}`, rules?:ResolverInputTypes["Rule"], __typename?: boolean | `@${string}` }>; ["FilterInputString"]: { eq?: string | undefined | null, ne?: string | undefined | null, contain?: string | undefined | null }; ["StructureSortInput"]: { key: string, direction?: ResolverInputTypes["Sort"] | undefined | null }; ["ModelNavigationConnection"]: AliasType<{ items?:ResolverInputTypes["ModelNavigation"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["ViewConnection"]: AliasType<{ items?:ResolverInputTypes["View"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["ShapeConnection"]: AliasType<{ items?:ResolverInputTypes["Shape"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["View"]: AliasType<{ name?:boolean | `@${string}`, fields?:ResolverInputTypes["CMSField"], slug?:boolean | `@${string}`, display?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["AiComponent"]: AliasType<{ name?:boolean | `@${string}`, htmlComponent?:boolean | `@${string}`, className?:boolean | `@${string}`, textContent?:boolean | `@${string}`, children?:ResolverInputTypes["AiComponent"], __typename?: boolean | `@${string}` }>; ["InputField"]: AliasType<{ label?:boolean | `@${string}`, placeholder?:boolean | `@${string}`, type?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["LinkField"]: AliasType<{ label?:boolean | `@${string}`, href?:boolean | `@${string}`, target?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["ButtonField"]: AliasType<{ label?:boolean | `@${string}`, type?:boolean | `@${string}`, loadingLabel?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["CheckboxField"]: AliasType<{ label?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["VariableField"]: AliasType<{ label?:boolean | `@${string}`, defaultValue?:boolean | `@${string}`, shouldRender?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["GenerateHusarShapeImplementorInput"]: { prompt: string, existingFileContent?: string | undefined | null, backendGraphQlContent?: string | undefined | null, includeShapes?: Array | undefined | null }; ["ShapeLibrary"]: AliasType<{ id?:boolean | `@${string}`, name?:boolean | `@${string}`, shapes?:ResolverInputTypes["Shape"], description?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["ObjectId"]:unknown; ["S3Scalar"]:unknown; ["Timestamp"]:unknown; ["ModelNavigationCompiled"]:unknown; ["BakedIpsumData"]:unknown; ["ShapeAsScalar"]:unknown; ["ModelAsScalar"]:unknown; ["ViewAsScalar"]:unknown; ["FormAsScalar"]:unknown; ["JSON"]:unknown; ["TailwindConfiguration"]: AliasType<{ content?:boolean | `@${string}`, contentForClient?:boolean | `@${string}`, compiledForIframe?:boolean | `@${string}`, libraries?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Sort"]:Sort; ["ConditionSetOperator"]:ConditionSetOperator; ["ConditionOperator"]:ConditionOperator; ["ConditionType"]:ConditionType; ["ActionType"]:ActionType; ["PageInfo"]: AliasType<{ total?:boolean | `@${string}`, hasNext?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["PageInput"]: { limit: number, start?: number | undefined | null }; ["RootParamsAdminType"]:unknown; ["Shape"]: AliasType<{ name?:boolean | `@${string}`, slug?:boolean | `@${string}`, display?:boolean | `@${string}`, previewFields?:boolean | `@${string}`, prompt?:boolean | `@${string}`, promptResponse?:ResolverInputTypes["AiComponent"], fields?:ResolverInputTypes["CMSField"], __typename?: boolean | `@${string}` }>; ["TailwindLibrary"]:TailwindLibrary; ["TailwindConfigurationInput"]: { content: string, libraries?: Array | undefined | null }; ["ImageFieldInput"]: { thumbnail?: ResolverInputTypes["S3Scalar"] | undefined | null, url?: ResolverInputTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["VideoFieldInput"]: { previewImage?: ResolverInputTypes["S3Scalar"] | undefined | null, url?: ResolverInputTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["DuplicateDocumentsInput"]: { originalRootParams: ResolverInputTypes["RootParamsInput"], newRootParams: ResolverInputTypes["RootParamsInput"], inputLanguage?: ResolverInputTypes["Languages"] | undefined | null, resultLanguage?: ResolverInputTypes["Languages"] | undefined | null, overrideExistingDocuments?: boolean | undefined | null }; ["AnalyticsResponse"]: AliasType<{ date?:boolean | `@${string}`, value?:ResolverInputTypes["AnalyticsModelResponse"], __typename?: boolean | `@${string}` }>; ["AnalyticsModelResponse"]: AliasType<{ modelName?:boolean | `@${string}`, calls?:boolean | `@${string}`, rootParamsKey?:boolean | `@${string}`, tokens?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["CreateRootCMSParam"]: { name: string, options: Array, default?: string | undefined | null }; ["CreateVersion"]: { name: string, from: ResolverInputTypes["Timestamp"], to?: ResolverInputTypes["Timestamp"] | undefined | null }; ["CreateInternalLink"]: { keys: Array, href: string }; ["FileResponse"]: AliasType<{ key?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, modifiedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["FileConnection"]: AliasType<{ items?:ResolverInputTypes["FileResponse"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["MediaResponse"]: AliasType<{ key?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, thumbnailCdnURL?:boolean | `@${string}`, alt?:boolean | `@${string}`, modifiedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["MediaConnection"]: AliasType<{ items?:ResolverInputTypes["MediaResponse"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["MediaOrderByInput"]: { date?: ResolverInputTypes["Sort"] | undefined | null }; ["MediaParamsInput"]: { model?: string | undefined | null, search?: string | undefined | null, allowedExtensions?: Array | undefined | null, page?: ResolverInputTypes["PageInput"] | undefined | null, sort?: ResolverInputTypes["MediaOrderByInput"] | undefined | null, unusedFilesOnly?: boolean | undefined | null }; ["UploadFileInput"]: { key: string, prefix?: string | undefined | null, alt?: string | undefined | null }; ["UploadFileResponseBase"]: AliasType<{ key?:boolean | `@${string}`, putURL?:boolean | `@${string}`, cdnURL?:boolean | `@${string}`, alt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["ImageUploadResponse"]: AliasType<{ file?:ResolverInputTypes["UploadFileResponseBase"], thumbnail?:ResolverInputTypes["UploadFileResponseBase"], __typename?: boolean | `@${string}` }>; ["ActionInput"]: { path: string, type: ResolverInputTypes["ActionType"], value: string }; ["RuleInput"]: { conditions: Array, actions: Array }; ["InputCMSField"]: { name: string, type: ResolverInputTypes["CMSType"], list?: boolean | undefined | null, searchable?: boolean | undefined | null, sortable?: boolean | undefined | null, filterable?: boolean | undefined | null, options?: Array | undefined | null, relation?: string | undefined | null, builtIn?: boolean | undefined | null, fields?: Array | undefined | null, visual?: ResolverInputTypes["InputVisual"] | undefined | null, nonTranslatable?: boolean | undefined | null, display?: string | undefined | null }; ["InputVisual"]: { className?: string | undefined | null, component?: string | undefined | null, rules?: Array | undefined | null }; ["InputCondition"]: { type: ResolverInputTypes["ConditionType"], path?: string | undefined | null, operator?: ResolverInputTypes["ConditionOperator"] | undefined | null, setOperator?: ResolverInputTypes["ConditionSetOperator"] | undefined | null, value?: string | undefined | null, children?: Array | undefined | null }; ["ApiKey"]: AliasType<{ name?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, _id?:boolean | `@${string}`, value?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Languages"]:Languages; ["Formality"]:Formality; ["BackupFile"]:unknown; ["GenerateTailwindClassList"]: AliasType<{ className?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["GenerateJSONLDInput"]: { data: ResolverInputTypes["JSON"] }; ["RemoveWhiteBackgroundInput"]: { url: string }; ["ParseFileOutputType"]:ParseFileOutputType; ["ParseFileInput"]: { key: string, fileURL: string, name: string, type: ResolverInputTypes["ParseFileOutputType"] }; ["ParseFileResponse"]: AliasType<{ name?:boolean | `@${string}`, type?:boolean | `@${string}`, status?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["GenerateContentFromVideoToContentInput"]: { existingContent: string }; ["GenerateContentInput"]: { document: string, field: string, description?: string | undefined | null, keywords?: Array | undefined | null, language?: ResolverInputTypes["Languages"] | undefined | null }; ["GenerateAllContentInput"]: { fields: string, prompt: string, document?: string | undefined | null, language?: string | undefined | null }; ["CaptionImageInput"]: { imageURL: string }; ["TranscribeAudioInput"]: { audioURL: string, language: ResolverInputTypes["Languages"] }; ["GenerateImageModel"]:GenerateImageModel; ["ImagePricingForSize"]: AliasType<{ size?:boolean | `@${string}`, price?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["BackgroundType"]:BackgroundType; ["ImageModelSource"]:ImageModelSource; ["AvailableImageModel"]: AliasType<{ model?:boolean | `@${string}`, sizes?:ResolverInputTypes["ImagePricingForSize"], styles?:boolean | `@${string}`, backgrounds?:boolean | `@${string}`, source?:boolean | `@${string}`, disabled?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["GenerateImageSize"]:GenerateImageSize; ["GenerateImageStyle"]:GenerateImageStyle; ["GenerateImageInput"]: { model: ResolverInputTypes["GenerateImageModel"], prompt: string, size: ResolverInputTypes["GenerateImageSize"], style?: ResolverInputTypes["GenerateImageStyle"] | undefined | null, background?: ResolverInputTypes["BackgroundType"] | undefined | null }; ["TranslateDocInput"]: { modelName: string, slug: string, originalRootParams: ResolverInputTypes["RootParamsInput"], newRootParams: ResolverInputTypes["RootParamsInput"], resultLanguages: Array, formality?: ResolverInputTypes["Formality"] | undefined | null, context?: string | undefined | null, inputLanguage?: ResolverInputTypes["Languages"] | undefined | null }; ["TranslateViewInput"]: { viewName: string, originalRootParams: ResolverInputTypes["RootParamsInput"], newRootParams: ResolverInputTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: ResolverInputTypes["Languages"] | undefined | null, formality?: ResolverInputTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["TranslateFormInput"]: { name: string, originalRootParams: ResolverInputTypes["RootParamsInput"], newRootParams: ResolverInputTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: ResolverInputTypes["Languages"] | undefined | null, formality?: ResolverInputTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["PrefixInput"]: { old: Array, new: Array }; ["TranscribeAudioChunk"]: AliasType<{ start?:boolean | `@${string}`, end?:boolean | `@${string}`, text?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["InputFieldInput"]: { label?: string | undefined | null, placeholder?: string | undefined | null, type?: string | undefined | null, defaultValue?: string | undefined | null }; ["LinkFieldInput"]: { label?: string | undefined | null, href?: string | undefined | null, target?: string | undefined | null }; ["ButtonFieldInput"]: { label?: string | undefined | null, type?: string | undefined | null, loadingLabel?: string | undefined | null }; ["CheckboxFieldInput"]: { label?: string | undefined | null, defaultValue?: boolean | undefined | null }; ["VariableFieldInput"]: { label?: string | undefined | null, defaultValue?: string | undefined | null, shouldRender?: boolean | undefined | null }; ["SocialQuery"]: AliasType<{ reddit?:ResolverInputTypes["SocialRedditQuery"], __typename?: boolean | `@${string}` }>; ["SocialMutation"]: AliasType<{ reddit?:ResolverInputTypes["SocialRedditMutation"], __typename?: boolean | `@${string}` }>; ["SocialRedditQuery"]: AliasType<{ settings?:ResolverInputTypes["SocialRedditSettings"], history?:ResolverInputTypes["SocialRedditHistory"], getRedditAuthorizeLink?: [{ redirect: string},boolean | `@${string}`], isAuthorized?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["SocialRedditMutation"]: AliasType<{ updateSettings?: [{ settings: ResolverInputTypes["SocialRedditSettingsInput"]},boolean | `@${string}`], __typename?: boolean | `@${string}` }>; ["SocialRedditSettings"]: AliasType<{ on?:boolean | `@${string}`, subreddit?:boolean | `@${string}`, configurations?:ResolverInputTypes["SocialRedditPostConfiguration"], client_id?:boolean | `@${string}`, secret?:boolean | `@${string}`, app_name?:boolean | `@${string}`, username?:boolean | `@${string}`, redirect_uri?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["SocialRedditSettingsInput"]: { subreddit: string, on?: boolean | undefined | null, configurations?: Array | undefined | null, client_id: string, secret: string, app_name: string, username: string, redirect_uri: string }; ["SocialRedditPostConfiguration"]: AliasType<{ model?:boolean | `@${string}`, /** url template for example https://husar.ai/blog/{{slug}} */ urlTemplate?:boolean | `@${string}`, /** name of the title field */ titleField?:boolean | `@${string}`, rootParams?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["SocialRedditPostConfigurationInput"]: { model: string, urlTemplate: string, titleField: string, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null }; ["SocialRedditHistory"]: AliasType<{ model?:boolean | `@${string}`, slug?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, linkPosted?:boolean | `@${string}`, rootParams?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["AgentMessageInput"]: { role: string, content: string }; ["AgentRunInput"]: { prompt: string, tools?: Array | undefined | null, dryRun?: boolean | undefined | null, maxSteps?: number | undefined | null, temperature?: number | undefined | null, history?: Array | undefined | null, previousResponseId?: string | undefined | null, model?: string | undefined | null }; ["AgentToolRunInput"]: { name: string, args?: ResolverInputTypes["JSON"] | undefined | null, argsArray?: Array | undefined | null, dryRun?: boolean | undefined | null }; ["AgentMessage"]: AliasType<{ role?:boolean | `@${string}`, content?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["AgentToolCall"]: AliasType<{ name?:boolean | `@${string}`, args?:boolean | `@${string}`, ok?:boolean | `@${string}`, error?:boolean | `@${string}`, isMutation?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["AgentRunResult"]: AliasType<{ messages?:ResolverInputTypes["AgentMessage"], toolCalls?:ResolverInputTypes["AgentToolCall"], summary?:boolean | `@${string}`, tokensUsed?:boolean | `@${string}`, success?:boolean | `@${string}`, responseId?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["AgentToolRunResult"]: AliasType<{ ok?:boolean | `@${string}`, error?:boolean | `@${string}`, result?:boolean | `@${string}`, executed?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["PersistedType"]: AliasType<{ shapes?:boolean | `@${string}`, view?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Mutation"]: AliasType<{ submitResponseState?: [{ name: string, fields: ResolverInputTypes["JSON"], state: ResolverInputTypes["JSON"]},boolean | `@${string}`], admin?:ResolverInputTypes["AdminMutation"], superAdmin?:ResolverInputTypes["SuperAdminMutation"], __typename?: boolean | `@${string}` }>; ["AdminQuery"]: AliasType<{ getImageModels?:ResolverInputTypes["AvailableImageModel"], analytics?: [{ fromDate: string, toDate?: string | undefined | null},ResolverInputTypes["AnalyticsResponse"]], translationAnalytics?: [{ fromDate: string, toDate?: string | undefined | null},ResolverInputTypes["AnalyticsResponse"]], generationAnalytics?: [{ fromDate: string, toDate?: string | undefined | null},ResolverInputTypes["AnalyticsResponse"]], backup?:boolean | `@${string}`, backups?:ResolverInputTypes["MediaResponse"], uploadBackupFile?: [{ file: ResolverInputTypes["UploadFileInput"]},ResolverInputTypes["UploadFileResponseBase"]], apiKeys?:ResolverInputTypes["ApiKey"], tailwind?:ResolverInputTypes["TailwindConfiguration"], dynamicTailwind?: [{ base: string},boolean | `@${string}`], social?:ResolverInputTypes["SocialQuery"], me?:ResolverInputTypes["User"], __typename?: boolean | `@${string}` }>; ["PublicUsersQuery"]: AliasType<{ login?:ResolverInputTypes["LoginQuery"], __typename?: boolean | `@${string}` }>; ["ChangePasswordWhenLoggedError"]:ChangePasswordWhenLoggedError; ["ChangePasswordWhenLoggedResponse"]: AliasType<{ result?:boolean | `@${string}`, hasError?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["LoginInput"]: { username: string, password: string }; ["ChangePasswordWhenLoggedInput"]: { oldPassword: string, newPassword: string }; ["User"]: AliasType<{ username?:boolean | `@${string}`, emailConfirmed?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, fullName?:boolean | `@${string}`, avatarUrl?:boolean | `@${string}`, /** @deprecated Use permissions system instead */ role?:boolean | `@${string}`, _id?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["LoginQuery"]: AliasType<{ password?: [{ user: ResolverInputTypes["LoginInput"]},ResolverInputTypes["LoginResponse"]], refreshToken?: [{ refreshToken: string},boolean | `@${string}`], __typename?: boolean | `@${string}` }>; ["LoginErrors"]:LoginErrors; ["LoginResponse"]: AliasType<{ /** same value as accessToken, for delete in future, improvise, adapt, overcome, frontend! */ login?:boolean | `@${string}`, accessToken?:boolean | `@${string}`, refreshToken?:boolean | `@${string}`, hasError?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["CMSRole"]:CMSRole; ["SuperAdminMutation"]: AliasType<{ addUser?: [{ user: ResolverInputTypes["CreateUser"]},ResolverInputTypes["CreateUserResponse"]], userOps?: [{ _id: string},ResolverInputTypes["UserOps"]], upsertUserPermissions?: [{ input: ResolverInputTypes["UpsertUserPermissionsInput"]},ResolverInputTypes["UserPermissions"]], deleteUserPermissions?: [{ userId: string},boolean | `@${string}`], __typename?: boolean | `@${string}` }>; ["CreateUser"]: { username: string, permissions?: Array | undefined | null, /** Optional password. If not provided, a random password will be generated. */ password?: string | undefined | null, fullName?: string | undefined | null }; ["SuperAdminQuery"]: AliasType<{ users?:ResolverInputTypes["User"], userPermissions?: [{ userId: string},ResolverInputTypes["UserPermissions"]], allUserPermissions?:ResolverInputTypes["UserPermissions"], permissionPresets?:ResolverInputTypes["PermissionPresetInfo"], __typename?: boolean | `@${string}` }>; ["EditUser"]: { username?: string | undefined | null, permissions?: Array | undefined | null, /** Optional new password */ password?: string | undefined | null, fullName?: string | undefined | null }; ["CreateUserResponse"]: AliasType<{ _id?:boolean | `@${string}`, /** Only returned if password was auto-generated (not provided in input) */ generatedPassword?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["UserOps"]: AliasType<{ remove?:boolean | `@${string}`, update?: [{ user: ResolverInputTypes["EditUser"]},boolean | `@${string}`], __typename?: boolean | `@${string}` }>; /** User permissions document */ ["UserPermissions"]: AliasType<{ _id?:boolean | `@${string}`, userId?:boolean | `@${string}`, permissions?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, createdBy?:boolean | `@${string}`, updatedBy?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["UpsertUserPermissionsInput"]: { userId: string, permissions: Array }; /** Permission presets for quick setup */ ["PermissionPreset"]:PermissionPreset; ["PermissionPresetInfo"]: AliasType<{ name?:boolean | `@${string}`, permissions?:boolean | `@${string}`, description?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; /** This enum is defined externally and injected via federation */ ["CMSType"]:CMSType; ["RootParamsType"]: AliasType<{ _version?:boolean | `@${string}`, locale?:boolean | `@${string}`, env?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Query"]: AliasType<{ navigation?:ResolverInputTypes["ModelNavigation"], rootParams?:ResolverInputTypes["RootCMSParam"], versions?:ResolverInputTypes["VersionField"], links?:ResolverInputTypes["InternalLink"], listViews?:ResolverInputTypes["View"], listShapes?:ResolverInputTypes["Shape"], tailwind?:ResolverInputTypes["TailwindConfiguration"], shapeLibraries?:ResolverInputTypes["ShapeLibrary"], responses?: [{ filter?: ResolverInputTypes["JSON"] | undefined | null, skip?: number | undefined | null, take?: number | undefined | null},boolean | `@${string}`], response?: [{ id: string},boolean | `@${string}`], paginatedNavigation?: [{ page: ResolverInputTypes["PageInput"], search?: string | undefined | null, sort?: ResolverInputTypes["StructureSortInput"] | undefined | null},ResolverInputTypes["ModelNavigationConnection"]], paginatedListViews?: [{ page: ResolverInputTypes["PageInput"], search?: string | undefined | null, sort?: ResolverInputTypes["StructureSortInput"] | undefined | null},ResolverInputTypes["ViewConnection"]], paginatedListShapes?: [{ page: ResolverInputTypes["PageInput"], search?: string | undefined | null, sort?: ResolverInputTypes["StructureSortInput"] | undefined | null},ResolverInputTypes["ShapeConnection"]], admin?:ResolverInputTypes["AdminQuery"], isLoggedIn?:boolean | `@${string}`, logoURL?:boolean | `@${string}`, faviconURL?:boolean | `@${string}`, publicUsers?:ResolverInputTypes["PublicUsersQuery"], superAdmin?:ResolverInputTypes["SuperAdminQuery"], listtest?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["test"]], variantstestBySlug?: [{ slug: string},ResolverInputTypes["test"]], fieldSettest?:boolean | `@${string}`, modeltest?:boolean | `@${string}`, previewFieldstest?:boolean | `@${string}`, variantsViewbpk_homepage?:ResolverInputTypes["Viewbpk_homepage"], fieldSetViewbpk_homepage?:boolean | `@${string}`, modelViewbpk_homepage?:boolean | `@${string}`, previewFieldsViewbpk_homepage?:boolean | `@${string}`, oneViewbpk_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewbpk_homepage"]], oneAsScalarViewbpk_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewcontact_page?:ResolverInputTypes["Viewcontact_page"], fieldSetViewcontact_page?:boolean | `@${string}`, modelViewcontact_page?:boolean | `@${string}`, previewFieldsViewcontact_page?:boolean | `@${string}`, oneViewcontact_page?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewcontact_page"]], oneAsScalarViewcontact_page?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg5_homepage?:ResolverInputTypes["Viewg5_homepage"], fieldSetViewg5_homepage?:boolean | `@${string}`, modelViewg5_homepage?:boolean | `@${string}`, previewFieldsViewg5_homepage?:boolean | `@${string}`, oneViewg5_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg5_homepage"]], oneAsScalarViewg5_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg51c_homepage?:ResolverInputTypes["Viewg51c_homepage"], fieldSetViewg51c_homepage?:boolean | `@${string}`, modelViewg51c_homepage?:boolean | `@${string}`, previewFieldsViewg51c_homepage?:boolean | `@${string}`, oneViewg51c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg51c_homepage"]], oneAsScalarViewg51c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg51m_homepage?:ResolverInputTypes["Viewg51m_homepage"], fieldSetViewg51m_homepage?:boolean | `@${string}`, modelViewg51m_homepage?:boolean | `@${string}`, previewFieldsViewg51m_homepage?:boolean | `@${string}`, oneViewg51m_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg51m_homepage"]], oneAsScalarViewg51m_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg52_homepage?:ResolverInputTypes["Viewg52_homepage"], fieldSetViewg52_homepage?:boolean | `@${string}`, modelViewg52_homepage?:boolean | `@${string}`, previewFieldsViewg52_homepage?:boolean | `@${string}`, oneViewg52_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg52_homepage"]], oneAsScalarViewg52_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg52c_homepage?:ResolverInputTypes["Viewg52c_homepage"], fieldSetViewg52c_homepage?:boolean | `@${string}`, modelViewg52c_homepage?:boolean | `@${string}`, previewFieldsViewg52c_homepage?:boolean | `@${string}`, oneViewg52c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg52c_homepage"]], oneAsScalarViewg52c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg53_homepage?:ResolverInputTypes["Viewg53_homepage"], fieldSetViewg53_homepage?:boolean | `@${string}`, modelViewg53_homepage?:boolean | `@${string}`, previewFieldsViewg53_homepage?:boolean | `@${string}`, oneViewg53_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg53_homepage"]], oneAsScalarViewg53_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg5c_homepage?:ResolverInputTypes["Viewg5c_homepage"], fieldSetViewg5c_homepage?:boolean | `@${string}`, modelViewg5c_homepage?:boolean | `@${string}`, previewFieldsViewg5c_homepage?:boolean | `@${string}`, oneViewg5c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg5c_homepage"]], oneAsScalarViewg5c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewg5n_homepage?:ResolverInputTypes["Viewg5n_homepage"], fieldSetViewg5n_homepage?:boolean | `@${string}`, modelViewg5n_homepage?:boolean | `@${string}`, previewFieldsViewg5n_homepage?:boolean | `@${string}`, oneViewg5n_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewg5n_homepage"]], oneAsScalarViewg5n_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewgem_homepage?:ResolverInputTypes["Viewgem_homepage"], fieldSetViewgem_homepage?:boolean | `@${string}`, modelViewgem_homepage?:boolean | `@${string}`, previewFieldsViewgem_homepage?:boolean | `@${string}`, oneViewgem_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewgem_homepage"]], oneAsScalarViewgem_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewglm_homepage?:ResolverInputTypes["Viewglm_homepage"], fieldSetViewglm_homepage?:boolean | `@${string}`, modelViewglm_homepage?:boolean | `@${string}`, previewFieldsViewglm_homepage?:boolean | `@${string}`, oneViewglm_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewglm_homepage"]], oneAsScalarViewglm_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewglm47_homepage?:ResolverInputTypes["Viewglm47_homepage"], fieldSetViewglm47_homepage?:boolean | `@${string}`, modelViewglm47_homepage?:boolean | `@${string}`, previewFieldsViewglm47_homepage?:boolean | `@${string}`, oneViewglm47_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewglm47_homepage"]], oneAsScalarViewglm47_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewgm31_homepage?:ResolverInputTypes["Viewgm31_homepage"], fieldSetViewgm31_homepage?:boolean | `@${string}`, modelViewgm31_homepage?:boolean | `@${string}`, previewFieldsViewgm31_homepage?:boolean | `@${string}`, oneViewgm31_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewgm31_homepage"]], oneAsScalarViewgm31_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewgm3p_homepage?:ResolverInputTypes["Viewgm3p_homepage"], fieldSetViewgm3p_homepage?:boolean | `@${string}`, modelViewgm3p_homepage?:boolean | `@${string}`, previewFieldsViewgm3p_homepage?:boolean | `@${string}`, oneViewgm3p_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewgm3p_homepage"]], oneAsScalarViewgm3p_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewgpt_homepage?:ResolverInputTypes["Viewgpt_homepage"], fieldSetViewgpt_homepage?:boolean | `@${string}`, modelViewgpt_homepage?:boolean | `@${string}`, previewFieldsViewgpt_homepage?:boolean | `@${string}`, oneViewgpt_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewgpt_homepage"]], oneAsScalarViewgpt_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewhk45_homepage?:ResolverInputTypes["Viewhk45_homepage"], fieldSetViewhk45_homepage?:boolean | `@${string}`, modelViewhk45_homepage?:boolean | `@${string}`, previewFieldsViewhk45_homepage?:boolean | `@${string}`, oneViewhk45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewhk45_homepage"]], oneAsScalarViewhk45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewk2_homepage?:ResolverInputTypes["Viewk2_homepage"], fieldSetViewk2_homepage?:boolean | `@${string}`, modelViewk2_homepage?:boolean | `@${string}`, previewFieldsViewk2_homepage?:boolean | `@${string}`, oneViewk2_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewk2_homepage"]], oneAsScalarViewk2_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewk2t_homepage?:ResolverInputTypes["Viewk2t_homepage"], fieldSetViewk2t_homepage?:boolean | `@${string}`, modelViewk2t_homepage?:boolean | `@${string}`, previewFieldsViewk2t_homepage?:boolean | `@${string}`, oneViewk2t_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewk2t_homepage"]], oneAsScalarViewk2t_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewmm25_homepage?:ResolverInputTypes["Viewmm25_homepage"], fieldSetViewmm25_homepage?:boolean | `@${string}`, modelViewmm25_homepage?:boolean | `@${string}`, previewFieldsViewmm25_homepage?:boolean | `@${string}`, oneViewmm25_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewmm25_homepage"]], oneAsScalarViewmm25_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewmm25f_homepage?:ResolverInputTypes["Viewmm25f_homepage"], fieldSetViewmm25f_homepage?:boolean | `@${string}`, modelViewmm25f_homepage?:boolean | `@${string}`, previewFieldsViewmm25f_homepage?:boolean | `@${string}`, oneViewmm25f_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewmm25f_homepage"]], oneAsScalarViewmm25f_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewop41_homepage?:ResolverInputTypes["Viewop41_homepage"], fieldSetViewop41_homepage?:boolean | `@${string}`, modelViewop41_homepage?:boolean | `@${string}`, previewFieldsViewop41_homepage?:boolean | `@${string}`, oneViewop41_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewop41_homepage"]], oneAsScalarViewop41_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewop46_homepage?:ResolverInputTypes["Viewop46_homepage"], fieldSetViewop46_homepage?:boolean | `@${string}`, modelViewop46_homepage?:boolean | `@${string}`, previewFieldsViewop46_homepage?:boolean | `@${string}`, oneViewop46_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewop46_homepage"]], oneAsScalarViewop46_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewopus_homepage?:ResolverInputTypes["Viewopus_homepage"], fieldSetViewopus_homepage?:boolean | `@${string}`, modelViewopus_homepage?:boolean | `@${string}`, previewFieldsViewopus_homepage?:boolean | `@${string}`, oneViewopus_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewopus_homepage"]], oneAsScalarViewopus_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewpizzeria_homepage?:ResolverInputTypes["Viewpizzeria_homepage"], fieldSetViewpizzeria_homepage?:boolean | `@${string}`, modelViewpizzeria_homepage?:boolean | `@${string}`, previewFieldsViewpizzeria_homepage?:boolean | `@${string}`, oneViewpizzeria_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewpizzeria_homepage"]], oneAsScalarViewpizzeria_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewsn4_homepage?:ResolverInputTypes["Viewsn4_homepage"], fieldSetViewsn4_homepage?:boolean | `@${string}`, modelViewsn4_homepage?:boolean | `@${string}`, previewFieldsViewsn4_homepage?:boolean | `@${string}`, oneViewsn4_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewsn4_homepage"]], oneAsScalarViewsn4_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewsn45_homepage?:ResolverInputTypes["Viewsn45_homepage"], fieldSetViewsn45_homepage?:boolean | `@${string}`, modelViewsn45_homepage?:boolean | `@${string}`, previewFieldsViewsn45_homepage?:boolean | `@${string}`, oneViewsn45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewsn45_homepage"]], oneAsScalarViewsn45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], variantsViewsonnet_homepage?:ResolverInputTypes["Viewsonnet_homepage"], fieldSetViewsonnet_homepage?:boolean | `@${string}`, modelViewsonnet_homepage?:boolean | `@${string}`, previewFieldsViewsonnet_homepage?:boolean | `@${string}`, oneViewsonnet_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["Viewsonnet_homepage"]], oneAsScalarViewsonnet_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], fieldSetShapeglm_feature_card?:boolean | `@${string}`, modelShapeglm_feature_card?:boolean | `@${string}`, previewFieldsShapeglm_feature_card?:boolean | `@${string}`, fieldSetShapeglm_testimonial?:boolean | `@${string}`, modelShapeglm_testimonial?:boolean | `@${string}`, previewFieldsShapeglm_testimonial?:boolean | `@${string}`, fieldSetShapegpt_feature_card?:boolean | `@${string}`, modelShapegpt_feature_card?:boolean | `@${string}`, previewFieldsShapegpt_feature_card?:boolean | `@${string}`, fieldSetShapegpt_testimonial?:boolean | `@${string}`, modelShapegpt_testimonial?:boolean | `@${string}`, previewFieldsShapegpt_testimonial?:boolean | `@${string}`, fieldSetShapeopus_feature_card?:boolean | `@${string}`, modelShapeopus_feature_card?:boolean | `@${string}`, previewFieldsShapeopus_feature_card?:boolean | `@${string}`, fieldSetShapeopus_testimonial?:boolean | `@${string}`, modelShapeopus_testimonial?:boolean | `@${string}`, previewFieldsShapeopus_testimonial?:boolean | `@${string}`, fieldSetShapesonnet_feature_card?:boolean | `@${string}`, modelShapesonnet_feature_card?:boolean | `@${string}`, previewFieldsShapesonnet_feature_card?:boolean | `@${string}`, fieldSetShapesonnet_testimonial?:boolean | `@${string}`, modelShapesonnet_testimonial?:boolean | `@${string}`, previewFieldsShapesonnet_testimonial?:boolean | `@${string}`, fieldSetShapeg52c_feature_card?:boolean | `@${string}`, modelShapeg52c_feature_card?:boolean | `@${string}`, previewFieldsShapeg52c_feature_card?:boolean | `@${string}`, fieldSetShapeg52c_testimonial?:boolean | `@${string}`, modelShapeg52c_testimonial?:boolean | `@${string}`, previewFieldsShapeg52c_testimonial?:boolean | `@${string}`, fieldSetShapeg53_feature_card?:boolean | `@${string}`, modelShapeg53_feature_card?:boolean | `@${string}`, previewFieldsShapeg53_feature_card?:boolean | `@${string}`, fieldSetShapeg53_testimonial?:boolean | `@${string}`, modelShapeg53_testimonial?:boolean | `@${string}`, previewFieldsShapeg53_testimonial?:boolean | `@${string}`, fieldSetShapeop46_feature_card?:boolean | `@${string}`, modelShapeop46_feature_card?:boolean | `@${string}`, previewFieldsShapeop46_feature_card?:boolean | `@${string}`, fieldSetShapeop46_testimonial?:boolean | `@${string}`, modelShapeop46_testimonial?:boolean | `@${string}`, previewFieldsShapeop46_testimonial?:boolean | `@${string}`, fieldSetShapebpk_feature_card?:boolean | `@${string}`, modelShapebpk_feature_card?:boolean | `@${string}`, previewFieldsShapebpk_feature_card?:boolean | `@${string}`, fieldSetShapebpk_testimonial?:boolean | `@${string}`, modelShapebpk_testimonial?:boolean | `@${string}`, previewFieldsShapebpk_testimonial?:boolean | `@${string}`, fieldSetShapeop41_feature_card?:boolean | `@${string}`, modelShapeop41_feature_card?:boolean | `@${string}`, previewFieldsShapeop41_feature_card?:boolean | `@${string}`, fieldSetShapeop41_testimonial?:boolean | `@${string}`, modelShapeop41_testimonial?:boolean | `@${string}`, previewFieldsShapeop41_testimonial?:boolean | `@${string}`, fieldSetShapesn45_feature_card?:boolean | `@${string}`, modelShapesn45_feature_card?:boolean | `@${string}`, previewFieldsShapesn45_feature_card?:boolean | `@${string}`, fieldSetShapesn45_testimonial?:boolean | `@${string}`, modelShapesn45_testimonial?:boolean | `@${string}`, previewFieldsShapesn45_testimonial?:boolean | `@${string}`, fieldSetShapehk45_feature_card?:boolean | `@${string}`, modelShapehk45_feature_card?:boolean | `@${string}`, previewFieldsShapehk45_feature_card?:boolean | `@${string}`, fieldSetShapehk45_testimonial?:boolean | `@${string}`, modelShapehk45_testimonial?:boolean | `@${string}`, previewFieldsShapehk45_testimonial?:boolean | `@${string}`, fieldSetShapeg51c_feature_card?:boolean | `@${string}`, modelShapeg51c_feature_card?:boolean | `@${string}`, previewFieldsShapeg51c_feature_card?:boolean | `@${string}`, fieldSetShapeg51c_testimonial?:boolean | `@${string}`, modelShapeg51c_testimonial?:boolean | `@${string}`, previewFieldsShapeg51c_testimonial?:boolean | `@${string}`, fieldSetShapemm25_feature_card?:boolean | `@${string}`, modelShapemm25_feature_card?:boolean | `@${string}`, previewFieldsShapemm25_feature_card?:boolean | `@${string}`, fieldSetShapemm25_testimonial?:boolean | `@${string}`, modelShapemm25_testimonial?:boolean | `@${string}`, previewFieldsShapemm25_testimonial?:boolean | `@${string}`, fieldSetShapek2t_feature_card?:boolean | `@${string}`, modelShapek2t_feature_card?:boolean | `@${string}`, previewFieldsShapek2t_feature_card?:boolean | `@${string}`, fieldSetShapek2t_testimonial?:boolean | `@${string}`, modelShapek2t_testimonial?:boolean | `@${string}`, previewFieldsShapek2t_testimonial?:boolean | `@${string}`, fieldSetShapeg52_feature_card?:boolean | `@${string}`, modelShapeg52_feature_card?:boolean | `@${string}`, previewFieldsShapeg52_feature_card?:boolean | `@${string}`, fieldSetShapeg52_testimonial?:boolean | `@${string}`, modelShapeg52_testimonial?:boolean | `@${string}`, previewFieldsShapeg52_testimonial?:boolean | `@${string}`, fieldSetShapeg51m_feature_card?:boolean | `@${string}`, modelShapeg51m_feature_card?:boolean | `@${string}`, previewFieldsShapeg51m_feature_card?:boolean | `@${string}`, fieldSetShapeg51m_testimonial?:boolean | `@${string}`, modelShapeg51m_testimonial?:boolean | `@${string}`, previewFieldsShapeg51m_testimonial?:boolean | `@${string}`, fieldSetShapesn4_feature_card?:boolean | `@${string}`, modelShapesn4_feature_card?:boolean | `@${string}`, previewFieldsShapesn4_feature_card?:boolean | `@${string}`, fieldSetShapesn4_testimonial?:boolean | `@${string}`, modelShapesn4_testimonial?:boolean | `@${string}`, previewFieldsShapesn4_testimonial?:boolean | `@${string}`, fieldSetShapeg5c_feature_card?:boolean | `@${string}`, modelShapeg5c_feature_card?:boolean | `@${string}`, previewFieldsShapeg5c_feature_card?:boolean | `@${string}`, fieldSetShapeg5c_testimonial?:boolean | `@${string}`, modelShapeg5c_testimonial?:boolean | `@${string}`, previewFieldsShapeg5c_testimonial?:boolean | `@${string}`, fieldSetShapemm25f_feature_card?:boolean | `@${string}`, modelShapemm25f_feature_card?:boolean | `@${string}`, previewFieldsShapemm25f_feature_card?:boolean | `@${string}`, fieldSetShapemm25f_testimonial?:boolean | `@${string}`, modelShapemm25f_testimonial?:boolean | `@${string}`, previewFieldsShapemm25f_testimonial?:boolean | `@${string}`, fieldSetShapeglm47_feature_card?:boolean | `@${string}`, modelShapeglm47_feature_card?:boolean | `@${string}`, previewFieldsShapeglm47_feature_card?:boolean | `@${string}`, fieldSetShapeglm47_testimonial?:boolean | `@${string}`, modelShapeglm47_testimonial?:boolean | `@${string}`, previewFieldsShapeglm47_testimonial?:boolean | `@${string}`, fieldSetShapek2_feature_card?:boolean | `@${string}`, modelShapek2_feature_card?:boolean | `@${string}`, previewFieldsShapek2_feature_card?:boolean | `@${string}`, fieldSetShapek2_testimonial?:boolean | `@${string}`, modelShapek2_testimonial?:boolean | `@${string}`, previewFieldsShapek2_testimonial?:boolean | `@${string}`, fieldSetShapegem_feature_card?:boolean | `@${string}`, modelShapegem_feature_card?:boolean | `@${string}`, previewFieldsShapegem_feature_card?:boolean | `@${string}`, fieldSetShapegem_testimonial?:boolean | `@${string}`, modelShapegem_testimonial?:boolean | `@${string}`, previewFieldsShapegem_testimonial?:boolean | `@${string}`, fieldSetShapegm31_feature_card?:boolean | `@${string}`, modelShapegm31_feature_card?:boolean | `@${string}`, previewFieldsShapegm31_feature_card?:boolean | `@${string}`, fieldSetShapegm31_testimonial?:boolean | `@${string}`, modelShapegm31_testimonial?:boolean | `@${string}`, previewFieldsShapegm31_testimonial?:boolean | `@${string}`, fieldSetShapegm3p_feature_card?:boolean | `@${string}`, modelShapegm3p_feature_card?:boolean | `@${string}`, previewFieldsShapegm3p_feature_card?:boolean | `@${string}`, fieldSetShapegm3p_testimonial?:boolean | `@${string}`, modelShapegm3p_testimonial?:boolean | `@${string}`, previewFieldsShapegm3p_testimonial?:boolean | `@${string}`, fieldSetShapecontact_info_card?:boolean | `@${string}`, modelShapecontact_info_card?:boolean | `@${string}`, previewFieldsShapecontact_info_card?:boolean | `@${string}`, fieldSetShapepizza_menu_item?:boolean | `@${string}`, modelShapepizza_menu_item?:boolean | `@${string}`, previewFieldsShapepizza_menu_item?:boolean | `@${string}`, fieldSetShapepizza_testimonial?:boolean | `@${string}`, modelShapepizza_testimonial?:boolean | `@${string}`, previewFieldsShapepizza_testimonial?:boolean | `@${string}`, mediaQuery?: [{ mediaParams?: ResolverInputTypes["MediaParamsInput"] | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["MediaConnection"]], filesQuery?: [{ mediaParams?: ResolverInputTypes["MediaParamsInput"] | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},ResolverInputTypes["FileConnection"]], __typename?: boolean | `@${string}` }>; ["AdminMutation"]: AliasType<{ upsertModel?: [{ modelName: string, fields: Array, display: string, prefixUpdate?: Array | undefined | null},boolean | `@${string}`], removeModel?: [{ modelName: string},boolean | `@${string}`], upsertView?: [{ viewName: string, fields: Array, display: string, prefixUpdate?: Array | undefined | null},boolean | `@${string}`], removeView?: [{ viewName: string},boolean | `@${string}`], upsertShape?: [{ shapeName: string, fields: Array, previewFields?: ResolverInputTypes["BakedIpsumData"] | undefined | null, prompt?: string | undefined | null, display: string, prefixUpdate?: Array | undefined | null},boolean | `@${string}`], removeShape?: [{ shapeName: string},boolean | `@${string}`], upsertVersion?: [{ version: ResolverInputTypes["CreateVersion"]},boolean | `@${string}`], removeVersion?: [{ name: string},boolean | `@${string}`], upsertInternalLink?: [{ link: ResolverInputTypes["CreateInternalLink"]},boolean | `@${string}`], removeInternalLink?: [{ href: string},boolean | `@${string}`], upsertParam?: [{ param: ResolverInputTypes["CreateRootCMSParam"]},boolean | `@${string}`], removeParam?: [{ name: string},boolean | `@${string}`], uploadFile?: [{ file: ResolverInputTypes["UploadFileInput"]},ResolverInputTypes["UploadFileResponseBase"]], uploadImage?: [{ file: ResolverInputTypes["UploadFileInput"]},ResolverInputTypes["ImageUploadResponse"]], removeFiles?: [{ keys: Array},boolean | `@${string}`], removeAllUnusedFiles?:boolean | `@${string}`, restore?: [{ backup?: ResolverInputTypes["BackupFile"] | undefined | null},boolean | `@${string}`], restoreFromBackupKey?: [{ key: string},boolean | `@${string}`], generateApiKey?: [{ name: string},boolean | `@${string}`], revokeApiKey?: [{ name: string},boolean | `@${string}`], translateDocument?: [{ param: ResolverInputTypes["TranslateDocInput"]},boolean | `@${string}`], translateView?: [{ param: ResolverInputTypes["TranslateViewInput"]},boolean | `@${string}`], translateForm?: [{ param: ResolverInputTypes["TranslateFormInput"]},boolean | `@${string}`], generateTailwindClassList?: [{ prompt: string},ResolverInputTypes["GenerateTailwindClassList"]], removeWhiteBackground?: [{ input: ResolverInputTypes["RemoveWhiteBackgroundInput"]},boolean | `@${string}`], parseFile?: [{ input: ResolverInputTypes["ParseFileInput"]},ResolverInputTypes["ParseFileResponse"]], generateContent?: [{ input: ResolverInputTypes["GenerateContentInput"]},boolean | `@${string}`], generateAllContent?: [{ input: ResolverInputTypes["GenerateAllContentInput"]},boolean | `@${string}`], generateContentFromVideoToContent?: [{ input: ResolverInputTypes["GenerateContentFromVideoToContentInput"]},boolean | `@${string}`], generateImage?: [{ input: ResolverInputTypes["GenerateImageInput"]},boolean | `@${string}`], generateJsonLD?: [{ input: ResolverInputTypes["GenerateJSONLDInput"]},boolean | `@${string}`], captionImage?: [{ input: ResolverInputTypes["CaptionImageInput"]},boolean | `@${string}`], transcribeAudio?: [{ input: ResolverInputTypes["TranscribeAudioInput"]},ResolverInputTypes["TranscribeAudioChunk"]], changeLogo?: [{ logoURL: string},boolean | `@${string}`], removeLogo?:boolean | `@${string}`, changeFavicon?: [{ faviconURL: string},boolean | `@${string}`], removeFavicon?:boolean | `@${string}`, duplicateAll?: [{ params: ResolverInputTypes["DuplicateDocumentsInput"]},boolean | `@${string}`], dupicateModel?: [{ modelName: string, params: ResolverInputTypes["DuplicateDocumentsInput"]},boolean | `@${string}`], duplicateView?: [{ viewName: string, params: ResolverInputTypes["DuplicateDocumentsInput"]},boolean | `@${string}`], removeModelWithDocuments?: [{ modelName: string},boolean | `@${string}`], removeDocumentsWithParams?: [{ param?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], setTailwind?: [{ tailwind: ResolverInputTypes["TailwindConfigurationInput"]},boolean | `@${string}`], social?:ResolverInputTypes["SocialMutation"], runAgentTool?: [{ input: ResolverInputTypes["AgentToolRunInput"]},ResolverInputTypes["AgentToolRunResult"]], generateShapePreviewFields?: [{ fields: Array, shapeName?: string | undefined | null},boolean | `@${string}`], changePasswordWhenLogged?: [{ changePasswordData: ResolverInputTypes["ChangePasswordWhenLoggedInput"]},ResolverInputTypes["ChangePasswordWhenLoggedResponse"]], upserttest?: [{ slug: string, data?: ResolverInputTypes["Modifytest"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removetest?: [{ slug: string, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], duplicatetest?: [{ oldSlug: string, newSlug: string, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewbpk_homepage?: [{ data?: ResolverInputTypes["ModifyViewbpk_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewbpk_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewcontact_page?: [{ data?: ResolverInputTypes["ModifyViewcontact_page"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewcontact_page?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg5_homepage?: [{ data?: ResolverInputTypes["ModifyViewg5_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg5_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg51c_homepage?: [{ data?: ResolverInputTypes["ModifyViewg51c_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg51c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg51m_homepage?: [{ data?: ResolverInputTypes["ModifyViewg51m_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg51m_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg52_homepage?: [{ data?: ResolverInputTypes["ModifyViewg52_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg52_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg52c_homepage?: [{ data?: ResolverInputTypes["ModifyViewg52c_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg52c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg53_homepage?: [{ data?: ResolverInputTypes["ModifyViewg53_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg53_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg5c_homepage?: [{ data?: ResolverInputTypes["ModifyViewg5c_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg5c_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewg5n_homepage?: [{ data?: ResolverInputTypes["ModifyViewg5n_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewg5n_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewgem_homepage?: [{ data?: ResolverInputTypes["ModifyViewgem_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewgem_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewglm_homepage?: [{ data?: ResolverInputTypes["ModifyViewglm_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewglm_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewglm47_homepage?: [{ data?: ResolverInputTypes["ModifyViewglm47_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewglm47_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewgm31_homepage?: [{ data?: ResolverInputTypes["ModifyViewgm31_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewgm31_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewgm3p_homepage?: [{ data?: ResolverInputTypes["ModifyViewgm3p_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewgm3p_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewgpt_homepage?: [{ data?: ResolverInputTypes["ModifyViewgpt_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewgpt_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewhk45_homepage?: [{ data?: ResolverInputTypes["ModifyViewhk45_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewhk45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewk2_homepage?: [{ data?: ResolverInputTypes["ModifyViewk2_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewk2_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewk2t_homepage?: [{ data?: ResolverInputTypes["ModifyViewk2t_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewk2t_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewmm25_homepage?: [{ data?: ResolverInputTypes["ModifyViewmm25_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewmm25_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewmm25f_homepage?: [{ data?: ResolverInputTypes["ModifyViewmm25f_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewmm25f_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewop41_homepage?: [{ data?: ResolverInputTypes["ModifyViewop41_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewop41_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewop46_homepage?: [{ data?: ResolverInputTypes["ModifyViewop46_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewop46_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewopus_homepage?: [{ data?: ResolverInputTypes["ModifyViewopus_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewopus_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewpizzeria_homepage?: [{ data?: ResolverInputTypes["ModifyViewpizzeria_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewpizzeria_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewsn4_homepage?: [{ data?: ResolverInputTypes["ModifyViewsn4_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewsn4_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewsn45_homepage?: [{ data?: ResolverInputTypes["ModifyViewsn45_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewsn45_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], upsertViewsonnet_homepage?: [{ data?: ResolverInputTypes["ModifyViewsonnet_homepage"] | undefined | null, draft_version?: boolean | undefined | null, rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], removeViewsonnet_homepage?: [{ rootParams?: ResolverInputTypes["RootParamsInput"] | undefined | null},boolean | `@${string}`], __typename?: boolean | `@${string}` }>; ["test__Connection"]: AliasType<{ items?:ResolverInputTypes["test"], pageInfo?:ResolverInputTypes["PageInfo"], __typename?: boolean | `@${string}` }>; ["test"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], lolo?:boolean | `@${string}`, env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapebpk_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewbpk_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapebpk_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewbpk_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewbpk_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewbpk_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewbpk_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewbpk_homepageHero"], features_section?:ResolverInputTypes["Viewbpk_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewbpk_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewbpk_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewcontact_pageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewcontact_pageContact_sectionInfo_cards"]: AliasType<{ cards?:ResolverInputTypes["Shapecontact_info_card"], __typename?: boolean | `@${string}` }>; ["Viewcontact_pageContact_sectionForm_area"]: AliasType<{ form_title?:boolean | `@${string}`, form_subtitle?:boolean | `@${string}`, name_label?:boolean | `@${string}`, email_label?:boolean | `@${string}`, subject_label?:boolean | `@${string}`, message_label?:boolean | `@${string}`, submit_text?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewcontact_pageContact_section"]: AliasType<{ info_cards?:ResolverInputTypes["Viewcontact_pageContact_sectionInfo_cards"], form_area?:ResolverInputTypes["Viewcontact_pageContact_sectionForm_area"], __typename?: boolean | `@${string}` }>; ["Viewcontact_pageMap_sectionOffices"]: AliasType<{ office_1_name?:boolean | `@${string}`, office_1_address?:boolean | `@${string}`, office_2_name?:boolean | `@${string}`, office_2_address?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewcontact_pageMap_section"]: AliasType<{ section_label?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, offices?:ResolverInputTypes["Viewcontact_pageMap_sectionOffices"], __typename?: boolean | `@${string}` }>; ["Viewcontact_pageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewcontact_pageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewcontact_pageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewcontact_page"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewcontact_pageHero"], contact_section?:ResolverInputTypes["Viewcontact_pageContact_section"], map_section?:ResolverInputTypes["Viewcontact_pageMap_section"], footer?:ResolverInputTypes["Viewcontact_pageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg5c_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg5_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg5_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg5_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg5c_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg5_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg5_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg5_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg5_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg5_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg5_homepageHero"], features_section?:ResolverInputTypes["Viewg5_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg5_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg5_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg51c_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg51c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg51c_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg51c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51c_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg51c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg51c_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg51c_homepageHero"], features_section?:ResolverInputTypes["Viewg51c_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg51c_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg51c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg51m_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg51m_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg51m_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg51m_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg51m_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg51m_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg51m_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg51m_homepageHero"], features_section?:ResolverInputTypes["Viewg51m_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg51m_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg51m_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52_homepageHeroContainerCta_row"]: AliasType<{ cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, secondary_note?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52_homepageHeroContainer"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_row?:ResolverInputTypes["Viewg52_homepageHeroContainerCta_row"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageHero"]: AliasType<{ container?:ResolverInputTypes["Viewg52_homepageHeroContainer"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageFeatures_sectionSection_header"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg52_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageFeatures_section"]: AliasType<{ section_header?:ResolverInputTypes["Viewg52_homepageFeatures_sectionSection_header"], features_grid?:ResolverInputTypes["Viewg52_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageTestimonials_sectionSection_header"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg52_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageTestimonials_section"]: AliasType<{ section_header?:ResolverInputTypes["Viewg52_homepageTestimonials_sectionSection_header"], testimonials_grid?:ResolverInputTypes["Viewg52_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg52_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg52_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg52_homepageHero"], features_section?:ResolverInputTypes["Viewg52_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg52_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg52_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg52c_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg52c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg52c_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg52c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg52c_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg52c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg52c_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg52c_homepageHero"], features_section?:ResolverInputTypes["Viewg52c_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg52c_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg52c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg53_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg53_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg53_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg53_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg53_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg53_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg53_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg53_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg53_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg53_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg53_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg53_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg53_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg53_homepageHero"], features_section?:ResolverInputTypes["Viewg53_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg53_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg53_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeg5c_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewg5c_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeg5c_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewg5c_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageFooterFooter_innerLinks_group"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links_group?:ResolverInputTypes["Viewg5c_homepageFooterFooter_innerLinks_group"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewg5c_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewg5c_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewg5c_homepageHero"], features_section?:ResolverInputTypes["Viewg5c_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewg5c_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewg5c_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewg5n_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:boolean | `@${string}`, features_section?:boolean | `@${string}`, testimonials_section?:boolean | `@${string}`, env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgem_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgem_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapegem_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewgem_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewgem_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewgem_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapegem_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewgem_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewgem_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewgem_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgem_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewgem_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewgem_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewgem_homepageHero"], features_section?:ResolverInputTypes["Viewgem_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewgem_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewgem_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features?:ResolverInputTypes["Shapeglm_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewglm_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials?:ResolverInputTypes["Shapeglm_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewglm_homepageFooter"]: AliasType<{ logo_text?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewglm_homepageHero"], features_section?:ResolverInputTypes["Viewglm_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewglm_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewglm_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeglm47_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewglm47_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeglm47_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewglm47_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewglm47_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewglm47_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewglm47_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewglm47_homepageHero"], features_section?:ResolverInputTypes["Viewglm47_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewglm47_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewglm47_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapegm31_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewgm31_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapegm31_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewgm31_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageFooterFooter_innerLinks_container"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links_container?:ResolverInputTypes["Viewgm31_homepageFooterFooter_innerLinks_container"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewgm31_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewgm31_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewgm31_homepageHero"], features_section?:ResolverInputTypes["Viewgm31_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewgm31_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewgm31_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapegm3p_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewgm3p_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapegm3p_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewgm3p_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewgm3p_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewgm3p_homepageHero"], features_section?:ResolverInputTypes["Viewgm3p_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewgm3p_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewgm3p_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgpt_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, support_text?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgpt_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features?:ResolverInputTypes["Shapegpt_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewgpt_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials?:ResolverInputTypes["Shapegpt_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewgpt_homepageFooter"]: AliasType<{ brand_text?:boolean | `@${string}`, description?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewgpt_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewgpt_homepageHero"], features_section?:ResolverInputTypes["Viewgpt_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewgpt_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewgpt_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapehk45_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewhk45_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapehk45_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewhk45_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewhk45_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewhk45_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewhk45_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewhk45_homepageHero"], features_section?:ResolverInputTypes["Viewhk45_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewhk45_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewhk45_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapek2_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewk2_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewk2_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewk2_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapek2_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewk2_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewk2_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewk2_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewk2_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewk2_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewk2_homepageHero"], features_section?:ResolverInputTypes["Viewk2_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewk2_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewk2_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapek2t_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewk2t_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapek2t_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewk2t_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewk2t_homepageFooter"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewk2t_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewk2t_homepageHero"], features_section?:ResolverInputTypes["Viewk2t_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewk2t_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewk2t_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapemm25_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewmm25_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapemm25_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewmm25_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewmm25_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewmm25_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewmm25_homepageHero"], features_section?:ResolverInputTypes["Viewmm25_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewmm25_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewmm25_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapemm25f_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewmm25f_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapemm25f_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewmm25f_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewmm25f_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewmm25f_homepageHero"], features_section?:ResolverInputTypes["Viewmm25f_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewmm25f_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewmm25f_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop41_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop41_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeop41_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewop41_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewop41_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewop41_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeop41_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewop41_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewop41_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewop41_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop41_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewop41_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewop41_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewop41_homepageHero"], features_section?:ResolverInputTypes["Viewop41_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewop41_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewop41_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop46_homepageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop46_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeop46_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewop46_homepageFeatures_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewop46_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewop46_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeop46_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewop46_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewop46_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewop46_homepageFooterFooter_inner"]: AliasType<{ brand_name?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewop46_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewop46_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewop46_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewop46_homepageHero"], features_section?:ResolverInputTypes["Viewop46_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewop46_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewop46_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewopus_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewopus_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapeopus_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewopus_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewopus_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewopus_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapeopus_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewopus_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewopus_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewopus_homepageFooterFooter_content"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewopus_homepageFooter"]: AliasType<{ footer_content?:ResolverInputTypes["Viewopus_homepageFooterFooter_content"], __typename?: boolean | `@${string}` }>; ["Viewopus_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewopus_homepageHero"], features_section?:ResolverInputTypes["Viewopus_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewopus_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewopus_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageHero"]: AliasType<{ bg_image?:boolean | `@${string}`, eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageAbout_sectionStats_row"]: AliasType<{ stat_1_number?:boolean | `@${string}`, stat_1_label?:boolean | `@${string}`, stat_2_number?:boolean | `@${string}`, stat_2_label?:boolean | `@${string}`, stat_3_number?:boolean | `@${string}`, stat_3_label?:boolean | `@${string}`, stat_4_number?:boolean | `@${string}`, stat_4_label?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageAbout_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, stats_row?:ResolverInputTypes["Viewpizzeria_homepageAbout_sectionStats_row"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageMenu_sectionMenu_grid"]: AliasType<{ items?:ResolverInputTypes["Shapepizza_menu_item"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageMenu_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, menu_grid?:ResolverInputTypes["Viewpizzeria_homepageMenu_sectionMenu_grid"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapepizza_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: AliasType<{ links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageFooterFooter_inner"]: AliasType<{ brand?:boolean | `@${string}`, address?:boolean | `@${string}`, copyright?:boolean | `@${string}`, links_wrapper?:ResolverInputTypes["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewpizzeria_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewpizzeria_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewpizzeria_homepageHero"], about_section?:ResolverInputTypes["Viewpizzeria_homepageAbout_section"], menu_section?:ResolverInputTypes["Viewpizzeria_homepageMenu_section"], testimonials_section?:ResolverInputTypes["Viewpizzeria_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewpizzeria_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapesn4_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewsn4_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapesn4_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewsn4_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn4_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewsn4_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewsn4_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewsn4_homepageHero"], features_section?:ResolverInputTypes["Viewsn4_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewsn4_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewsn4_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageHero"]: AliasType<{ headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_text?:boolean | `@${string}`, cta_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapesn45_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageFeatures_section"]: AliasType<{ section_title?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewsn45_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapesn45_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageTestimonials_section"]: AliasType<{ section_title?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewsn45_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageFooterFooter_inner"]: AliasType<{ copyright?:boolean | `@${string}`, links?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsn45_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewsn45_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewsn45_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewsn45_homepageHero"], features_section?:ResolverInputTypes["Viewsn45_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewsn45_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewsn45_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageHero"]: AliasType<{ eyebrow?:boolean | `@${string}`, headline?:boolean | `@${string}`, subtitle?:boolean | `@${string}`, cta_primary_text?:boolean | `@${string}`, cta_primary_link?:boolean | `@${string}`, cta_secondary_text?:boolean | `@${string}`, cta_secondary_link?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageFeatures_sectionFeatures_grid"]: AliasType<{ features?:ResolverInputTypes["Shapesonnet_feature_card"], __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageFeatures_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, features_grid?:ResolverInputTypes["Viewsonnet_homepageFeatures_sectionFeatures_grid"], __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"]: AliasType<{ testimonials?:ResolverInputTypes["Shapesonnet_testimonial"], __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageTestimonials_section"]: AliasType<{ eyebrow?:boolean | `@${string}`, section_title?:boolean | `@${string}`, section_subtitle?:boolean | `@${string}`, testimonials_grid?:ResolverInputTypes["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"], __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageFooterFooter_inner"]: AliasType<{ brand_name?:boolean | `@${string}`, tagline?:boolean | `@${string}`, links?:boolean | `@${string}`, copyright?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepageFooter"]: AliasType<{ footer_inner?:ResolverInputTypes["Viewsonnet_homepageFooterFooter_inner"], __typename?: boolean | `@${string}` }>; ["Viewsonnet_homepage"]: AliasType<{ _version?:ResolverInputTypes["VersionField"], hero?:ResolverInputTypes["Viewsonnet_homepageHero"], features_section?:ResolverInputTypes["Viewsonnet_homepageFeatures_section"], testimonials_section?:ResolverInputTypes["Viewsonnet_homepageTestimonials_section"], footer?:ResolverInputTypes["Viewsonnet_homepageFooter"], env?:boolean | `@${string}`, locale?:boolean | `@${string}`, slug?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, draft_version?:boolean | `@${string}`, json_ld?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapebpk_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapebpk_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapecontact_info_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, detail?:boolean | `@${string}`, link?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg51c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg51c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg51m_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg51m_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg52_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg52_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg52c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg52c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg53_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg53_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg5c_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeg5c_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegem_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegem_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeglm_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeglm_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, avatar?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeglm47_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeglm47_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegm31_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegm31_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegm3p_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegm3p_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegpt_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapegpt_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapehk45_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapehk45_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, author_company?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapek2_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapek2_testimonial"]: AliasType<{ name?:boolean | `@${string}`, role?:boolean | `@${string}`, quote?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapek2t_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapek2t_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapemm25_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapemm25_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapemm25f_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapemm25f_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeop41_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeop41_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeop46_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeop46_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeopus_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapeopus_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapepizza_menu_item"]: AliasType<{ image?:boolean | `@${string}`, name?:boolean | `@${string}`, description?:boolean | `@${string}`, price?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapepizza_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_location?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesn4_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesn4_testimonial"]: AliasType<{ quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesn45_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesn45_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, name?:boolean | `@${string}`, role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesonnet_feature_card"]: AliasType<{ icon?:boolean | `@${string}`, title?:boolean | `@${string}`, description?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Shapesonnet_testimonial"]: AliasType<{ avatar?:boolean | `@${string}`, quote?:boolean | `@${string}`, author_name?:boolean | `@${string}`, author_role?:boolean | `@${string}`, _id?:boolean | `@${string}`, createdAt?:boolean | `@${string}`, updatedAt?:boolean | `@${string}`, __typename?: boolean | `@${string}` }>; ["Modifytest"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, lolo?: Array | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewbpk_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewbpk_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewbpk_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewbpk_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewbpk_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewbpk_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewbpk_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewbpk_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewbpk_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewbpk_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewbpk_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewcontact_pageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null }; ["ModifyViewcontact_pageContact_sectionInfo_cards"]: { cards?: Array | undefined | null }; ["ModifyViewcontact_pageContact_sectionForm_area"]: { form_title?: string | undefined | null, form_subtitle?: string | undefined | null, name_label?: string | undefined | null, email_label?: string | undefined | null, subject_label?: string | undefined | null, message_label?: string | undefined | null, submit_text?: string | undefined | null }; ["ModifyViewcontact_pageContact_section"]: { info_cards?: ResolverInputTypes["ModifyViewcontact_pageContact_sectionInfo_cards"] | undefined | null, form_area?: ResolverInputTypes["ModifyViewcontact_pageContact_sectionForm_area"] | undefined | null }; ["ModifyViewcontact_pageMap_sectionOffices"]: { office_1_name?: string | undefined | null, office_1_address?: string | undefined | null, office_2_name?: string | undefined | null, office_2_address?: string | undefined | null }; ["ModifyViewcontact_pageMap_section"]: { section_label?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, offices?: ResolverInputTypes["ModifyViewcontact_pageMap_sectionOffices"] | undefined | null }; ["ModifyViewcontact_pageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewcontact_pageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewcontact_pageFooterFooter_inner"] | undefined | null }; ["ModifyViewcontact_page"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewcontact_pageHero"] | undefined | null, contact_section?: ResolverInputTypes["ModifyViewcontact_pageContact_section"] | undefined | null, map_section?: ResolverInputTypes["ModifyViewcontact_pageMap_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewcontact_pageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg5_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg5_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg5_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg5_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg5_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg5_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51c_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg51c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51c_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg51c_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg51c_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg51c_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg51c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51m_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51m_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51m_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51m_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51m_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg51m_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51m_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg51m_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg51m_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg51m_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg51m_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainerCta_row"]: { cta_text?: string | undefined | null, cta_link?: string | undefined | null, secondary_note?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainer"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_row?: ResolverInputTypes["ModifyViewg52_homepageHeroContainerCta_row"] | undefined | null }; ["ModifyViewg52_homepageHero"]: { container?: ResolverInputTypes["ModifyViewg52_homepageHeroContainer"] | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52_homepageFeatures_section"]: { section_header?: ResolverInputTypes["ModifyViewg52_homepageFeatures_sectionSection_header"] | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52_homepageTestimonials_section"]: { section_header?: ResolverInputTypes["ModifyViewg52_homepageTestimonials_sectionSection_header"] | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52_homepageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewg52_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg52_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg52_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg52_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg52_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg52_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg52c_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg52c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52c_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg52c_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg52c_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg52c_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg52c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg53_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg53_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg53_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg53_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg53_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg53_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg53_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg53_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg53_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg53_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg53_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]: { links?: Array | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_group?: ResolverInputTypes["ModifyViewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null }; ["ModifyViewg5c_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewg5c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5c_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewg5c_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewg5c_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewg5c_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewg5c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5n_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: string | undefined | null, features_section?: string | undefined | null, testimonials_section?: string | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgem_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgem_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgem_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgem_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgem_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewgem_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgem_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewgem_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewgem_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewgem_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewgem_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewglm_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewglm_homepageFooter"]: { logo_text?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewglm_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewglm_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewglm_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewglm_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewglm_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm47_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewglm47_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewglm47_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewglm47_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewglm47_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewglm47_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewglm47_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewglm47_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewglm47_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewglm47_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewglm47_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm31_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm31_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm31_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]: { links?: Array | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_container?: ResolverInputTypes["ModifyViewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null }; ["ModifyViewgm31_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewgm31_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm31_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewgm31_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewgm31_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewgm31_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewgm31_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm3p_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm3p_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm3p_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgm3p_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewgm3p_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm3p_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewgm3p_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewgm3p_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewgm3p_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewgm3p_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgpt_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, support_text?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgpt_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewgpt_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewgpt_homepageFooter"]: { brand_text?: string | undefined | null, description?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewgpt_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewgpt_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewgpt_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewgpt_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewgpt_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewhk45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewhk45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewhk45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewhk45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewhk45_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewhk45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewhk45_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewhk45_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewhk45_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewhk45_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewhk45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewk2_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewk2_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewk2_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewk2_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewk2_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewk2_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2t_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2t_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2t_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2t_homepageFooter"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2t_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewk2t_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewk2t_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewk2t_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewk2t_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewmm25_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewmm25_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewmm25_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewmm25_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewmm25_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25f_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25f_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25f_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25f_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewmm25f_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25f_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewmm25f_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewmm25f_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewmm25f_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewmm25f_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop41_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop41_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop41_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop41_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewop41_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewop41_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop41_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewop41_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewop41_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewop41_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewop41_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop46_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop46_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop46_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop46_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewop46_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewop46_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop46_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewop46_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewop46_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewop46_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewop46_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewopus_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewopus_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewopus_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewopus_homepageFooterFooter_content"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewopus_homepageFooter"]: { footer_content?: ResolverInputTypes["ModifyViewopus_homepageFooterFooter_content"] | undefined | null }; ["ModifyViewopus_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewopus_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewopus_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewopus_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewopus_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewpizzeria_homepageHero"]: { bg_image?: string | undefined | null, eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_sectionStats_row"]: { stat_1_number?: string | undefined | null, stat_1_label?: string | undefined | null, stat_2_number?: string | undefined | null, stat_2_label?: string | undefined | null, stat_3_number?: string | undefined | null, stat_3_label?: string | undefined | null, stat_4_number?: string | undefined | null, stat_4_label?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_section"]: { eyebrow?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, stats_row?: ResolverInputTypes["ModifyViewpizzeria_homepageAbout_sectionStats_row"] | undefined | null }; ["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]: { items?: Array | undefined | null }; ["ModifyViewpizzeria_homepageMenu_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, menu_grid?: ResolverInputTypes["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { links?: Array | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_inner"]: { brand?: string | undefined | null, address?: string | undefined | null, copyright?: string | undefined | null, links_wrapper?: ResolverInputTypes["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null }; ["ModifyViewpizzeria_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewpizzeria_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewpizzeria_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewpizzeria_homepageHero"] | undefined | null, about_section?: ResolverInputTypes["ModifyViewpizzeria_homepageAbout_section"] | undefined | null, menu_section?: ResolverInputTypes["ModifyViewpizzeria_homepageMenu_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewpizzeria_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewpizzeria_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn4_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn4_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn4_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn4_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn4_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewsn4_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn4_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewsn4_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewsn4_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewsn4_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewsn4_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn45_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewsn45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn45_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewsn45_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewsn45_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewsn45_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewsn45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsonnet_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_primary_text?: string | undefined | null, cta_primary_link?: string | undefined | null, cta_secondary_text?: string | undefined | null, cta_secondary_link?: string | undefined | null }; ["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsonnet_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ResolverInputTypes["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ResolverInputTypes["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsonnet_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, tagline?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewsonnet_homepageFooter"]: { footer_inner?: ResolverInputTypes["ModifyViewsonnet_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsonnet_homepage"]: { _version?: ResolverInputTypes["CreateVersion"] | undefined | null, hero?: ResolverInputTypes["ModifyViewsonnet_homepageHero"] | undefined | null, features_section?: ResolverInputTypes["ModifyViewsonnet_homepageFeatures_section"] | undefined | null, testimonials_section?: ResolverInputTypes["ModifyViewsonnet_homepageTestimonials_section"] | undefined | null, footer?: ResolverInputTypes["ModifyViewsonnet_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyShapebpk_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapebpk_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapecontact_info_card"]: { icon?: string | undefined | null, title?: string | undefined | null, detail?: string | undefined | null, link?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, avatar?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, author_company?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_testimonial"]: { name?: string | undefined | null, role?: string | undefined | null, quote?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_menu_item"]: { image?: string | undefined | null, name?: string | undefined | null, description?: string | undefined | null, price?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_location?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["RootParamsInput"]: { _version?: string | undefined | null, locale?: string | undefined | null, env?: string | undefined | null }; ["RootParamsEnum"]:RootParamsEnum; ["testSortInput"]: { slug?: ResolverInputTypes["Sort"] | undefined | null, createdAt?: ResolverInputTypes["Sort"] | undefined | null, updatedAt?: ResolverInputTypes["Sort"] | undefined | null }; ["testFilterInput"]: { slug?: ResolverInputTypes["FilterInputString"] | undefined | null }; ["Subscription"]: AliasType<{ agentRun?: [{ input: ResolverInputTypes["AgentRunInput"]},ResolverInputTypes["AgentRunResult"]], __typename?: boolean | `@${string}` }>; ["schema"]: AliasType<{ query?:ResolverInputTypes["Query"], mutation?:ResolverInputTypes["Mutation"], subscription?:ResolverInputTypes["Subscription"], __typename?: boolean | `@${string}` }>; ["ID"]:unknown } export type ModelTypes = { ["VersionField"]: { name: string, from: ModelTypes["Timestamp"], to?: ModelTypes["Timestamp"] | undefined | null }; ["RangeField"]: { min: number, max: number }; ["ImageField"]: { url?: ModelTypes["S3Scalar"] | undefined | null, thumbnail?: ModelTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["VideoField"]: { url?: ModelTypes["S3Scalar"] | undefined | null, previewImage?: ModelTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["InternalLink"]: { _id: ModelTypes["ObjectId"], keys: Array, href: string }; ["RootCMSParam"]: { name: string, options: Array, default?: string | undefined | null }; ["ModelNavigation"]: { name: string, display: string, fields: Array, fieldSet: string }; ["CMSField"]: { name: string, display?: string | undefined | null, type: ModelTypes["CMSType"], list?: boolean | undefined | null, searchable?: boolean | undefined | null, sortable?: boolean | undefined | null, filterable?: boolean | undefined | null, rangeValues?: Array | undefined | null, options?: Array | undefined | null, relation?: string | undefined | null, fields?: Array | undefined | null, builtIn?: boolean | undefined | null, visual?: ModelTypes["Visual"] | undefined | null, conditions?: ModelTypes["Condition"] | undefined | null, nonTranslatable?: boolean | undefined | null }; ["Condition"]: { type: ModelTypes["ConditionType"], path?: string | undefined | null, operator?: ModelTypes["ConditionOperator"] | undefined | null, setOperator?: ModelTypes["ConditionSetOperator"] | undefined | null, value?: string | undefined | null, children?: Array | undefined | null }; ["Action"]: { path: string, type: ModelTypes["ActionType"], value: string }; ["Rule"]: { conditions: Array, actions: Array }; ["Visual"]: { className?: string | undefined | null, component?: string | undefined | null, rules?: Array | undefined | null }; ["FilterInputString"]: { eq?: string | undefined | null, ne?: string | undefined | null, contain?: string | undefined | null }; ["StructureSortInput"]: { key: string, direction?: ModelTypes["Sort"] | undefined | null }; ["ModelNavigationConnection"]: { items: Array, pageInfo?: ModelTypes["PageInfo"] | undefined | null }; ["ViewConnection"]: { items: Array, pageInfo?: ModelTypes["PageInfo"] | undefined | null }; ["ShapeConnection"]: { items: Array, pageInfo?: ModelTypes["PageInfo"] | undefined | null }; ["View"]: { name: string, fields: Array, slug: string, display: string }; ["AiComponent"]: { name: string, htmlComponent?: string | undefined | null, className: string, textContent?: string | undefined | null, children?: Array | undefined | null }; ["InputField"]: { label?: string | undefined | null, placeholder?: string | undefined | null, type?: string | undefined | null, defaultValue?: string | undefined | null }; ["LinkField"]: { label?: string | undefined | null, href?: string | undefined | null, target?: string | undefined | null }; ["ButtonField"]: { label?: string | undefined | null, type?: string | undefined | null, loadingLabel?: string | undefined | null }; ["CheckboxField"]: { label?: string | undefined | null, defaultValue?: boolean | undefined | null }; ["VariableField"]: { label?: string | undefined | null, defaultValue?: string | undefined | null, shouldRender?: boolean | undefined | null }; ["GenerateHusarShapeImplementorInput"]: { prompt: string, existingFileContent?: string | undefined | null, backendGraphQlContent?: string | undefined | null, includeShapes?: Array | undefined | null }; ["ShapeLibrary"]: { id: string, name: string, shapes?: Array | undefined | null, description?: string | undefined | null }; ["ObjectId"]:any; ["S3Scalar"]:any; ["Timestamp"]:any; ["ModelNavigationCompiled"]:any; ["BakedIpsumData"]:any; ["ShapeAsScalar"]:any; ["ModelAsScalar"]:any; ["ViewAsScalar"]:any; ["FormAsScalar"]:any; ["JSON"]:any; ["TailwindConfiguration"]: { content: string, contentForClient: string, compiledForIframe: string, libraries?: Array | undefined | null }; ["Sort"]:Sort; ["ConditionSetOperator"]:ConditionSetOperator; ["ConditionOperator"]:ConditionOperator; ["ConditionType"]:ConditionType; ["ActionType"]:ActionType; ["PageInfo"]: { total: number, hasNext?: boolean | undefined | null }; ["PageInput"]: { limit: number, start?: number | undefined | null }; ["RootParamsAdminType"]:any; ["Shape"]: { name: string, slug: string, display: string, previewFields?: ModelTypes["BakedIpsumData"] | undefined | null, prompt?: string | undefined | null, promptResponse?: ModelTypes["AiComponent"] | undefined | null, fields: Array }; ["TailwindLibrary"]:TailwindLibrary; ["TailwindConfigurationInput"]: { content: string, libraries?: Array | undefined | null }; ["ImageFieldInput"]: { thumbnail?: ModelTypes["S3Scalar"] | undefined | null, url?: ModelTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["VideoFieldInput"]: { previewImage?: ModelTypes["S3Scalar"] | undefined | null, url?: ModelTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["DuplicateDocumentsInput"]: { originalRootParams: ModelTypes["RootParamsInput"], newRootParams: ModelTypes["RootParamsInput"], inputLanguage?: ModelTypes["Languages"] | undefined | null, resultLanguage?: ModelTypes["Languages"] | undefined | null, overrideExistingDocuments?: boolean | undefined | null }; ["AnalyticsResponse"]: { date?: string | undefined | null, value?: Array | undefined | null }; ["AnalyticsModelResponse"]: { modelName: string, calls: number, rootParamsKey?: string | undefined | null, tokens?: number | undefined | null }; ["CreateRootCMSParam"]: { name: string, options: Array, default?: string | undefined | null }; ["CreateVersion"]: { name: string, from: ModelTypes["Timestamp"], to?: ModelTypes["Timestamp"] | undefined | null }; ["CreateInternalLink"]: { keys: Array, href: string }; ["FileResponse"]: { key: string, cdnURL: string, modifiedAt?: string | undefined | null }; ["FileConnection"]: { items: Array, pageInfo?: ModelTypes["PageInfo"] | undefined | null }; ["MediaResponse"]: { key?: string | undefined | null, cdnURL?: string | undefined | null, thumbnailCdnURL?: string | undefined | null, alt?: string | undefined | null, modifiedAt?: string | undefined | null }; ["MediaConnection"]: { items: Array, pageInfo?: ModelTypes["PageInfo"] | undefined | null }; ["MediaOrderByInput"]: { date?: ModelTypes["Sort"] | undefined | null }; ["MediaParamsInput"]: { model?: string | undefined | null, search?: string | undefined | null, allowedExtensions?: Array | undefined | null, page?: ModelTypes["PageInput"] | undefined | null, sort?: ModelTypes["MediaOrderByInput"] | undefined | null, unusedFilesOnly?: boolean | undefined | null }; ["UploadFileInput"]: { key: string, prefix?: string | undefined | null, alt?: string | undefined | null }; ["UploadFileResponseBase"]: { key: string, putURL: string, cdnURL: string, alt?: string | undefined | null }; ["ImageUploadResponse"]: { file: ModelTypes["UploadFileResponseBase"], thumbnail: ModelTypes["UploadFileResponseBase"] }; ["ActionInput"]: { path: string, type: ModelTypes["ActionType"], value: string }; ["RuleInput"]: { conditions: Array, actions: Array }; ["InputCMSField"]: { name: string, type: ModelTypes["CMSType"], list?: boolean | undefined | null, searchable?: boolean | undefined | null, sortable?: boolean | undefined | null, filterable?: boolean | undefined | null, options?: Array | undefined | null, relation?: string | undefined | null, builtIn?: boolean | undefined | null, fields?: Array | undefined | null, visual?: ModelTypes["InputVisual"] | undefined | null, nonTranslatable?: boolean | undefined | null, display?: string | undefined | null }; ["InputVisual"]: { className?: string | undefined | null, component?: string | undefined | null, rules?: Array | undefined | null }; ["InputCondition"]: { type: ModelTypes["ConditionType"], path?: string | undefined | null, operator?: ModelTypes["ConditionOperator"] | undefined | null, setOperator?: ModelTypes["ConditionSetOperator"] | undefined | null, value?: string | undefined | null, children?: Array | undefined | null }; ["ApiKey"]: { name: string, createdAt: string, _id: ModelTypes["ObjectId"], value: string }; ["Languages"]:Languages; ["Formality"]:Formality; ["BackupFile"]:any; ["GenerateTailwindClassList"]: { className: string }; ["GenerateJSONLDInput"]: { data: ModelTypes["JSON"] }; ["RemoveWhiteBackgroundInput"]: { url: string }; ["ParseFileOutputType"]:ParseFileOutputType; ["ParseFileInput"]: { key: string, fileURL: string, name: string, type: ModelTypes["ParseFileOutputType"] }; ["ParseFileResponse"]: { name: string, type: ModelTypes["ParseFileOutputType"], status: string }; ["GenerateContentFromVideoToContentInput"]: { existingContent: string }; ["GenerateContentInput"]: { document: string, field: string, description?: string | undefined | null, keywords?: Array | undefined | null, language?: ModelTypes["Languages"] | undefined | null }; ["GenerateAllContentInput"]: { fields: string, prompt: string, document?: string | undefined | null, language?: string | undefined | null }; ["CaptionImageInput"]: { imageURL: string }; ["TranscribeAudioInput"]: { audioURL: string, language: ModelTypes["Languages"] }; ["GenerateImageModel"]:GenerateImageModel; ["ImagePricingForSize"]: { size: ModelTypes["GenerateImageSize"], price: number }; ["BackgroundType"]:BackgroundType; ["ImageModelSource"]:ImageModelSource; ["AvailableImageModel"]: { model: ModelTypes["GenerateImageModel"], sizes: Array, styles?: Array | undefined | null, backgrounds?: Array | undefined | null, source?: ModelTypes["ImageModelSource"] | undefined | null, disabled?: string | undefined | null }; ["GenerateImageSize"]:GenerateImageSize; ["GenerateImageStyle"]:GenerateImageStyle; ["GenerateImageInput"]: { model: ModelTypes["GenerateImageModel"], prompt: string, size: ModelTypes["GenerateImageSize"], style?: ModelTypes["GenerateImageStyle"] | undefined | null, background?: ModelTypes["BackgroundType"] | undefined | null }; ["TranslateDocInput"]: { modelName: string, slug: string, originalRootParams: ModelTypes["RootParamsInput"], newRootParams: ModelTypes["RootParamsInput"], resultLanguages: Array, formality?: ModelTypes["Formality"] | undefined | null, context?: string | undefined | null, inputLanguage?: ModelTypes["Languages"] | undefined | null }; ["TranslateViewInput"]: { viewName: string, originalRootParams: ModelTypes["RootParamsInput"], newRootParams: ModelTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: ModelTypes["Languages"] | undefined | null, formality?: ModelTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["TranslateFormInput"]: { name: string, originalRootParams: ModelTypes["RootParamsInput"], newRootParams: ModelTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: ModelTypes["Languages"] | undefined | null, formality?: ModelTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["PrefixInput"]: { old: Array, new: Array }; ["TranscribeAudioChunk"]: { start: number, end: number, text: string }; ["InputFieldInput"]: { label?: string | undefined | null, placeholder?: string | undefined | null, type?: string | undefined | null, defaultValue?: string | undefined | null }; ["LinkFieldInput"]: { label?: string | undefined | null, href?: string | undefined | null, target?: string | undefined | null }; ["ButtonFieldInput"]: { label?: string | undefined | null, type?: string | undefined | null, loadingLabel?: string | undefined | null }; ["CheckboxFieldInput"]: { label?: string | undefined | null, defaultValue?: boolean | undefined | null }; ["VariableFieldInput"]: { label?: string | undefined | null, defaultValue?: string | undefined | null, shouldRender?: boolean | undefined | null }; ["SocialQuery"]: { reddit?: ModelTypes["SocialRedditQuery"] | undefined | null }; ["SocialMutation"]: { reddit?: ModelTypes["SocialRedditMutation"] | undefined | null }; ["SocialRedditQuery"]: { settings?: ModelTypes["SocialRedditSettings"] | undefined | null, history?: Array | undefined | null, getRedditAuthorizeLink: string, isAuthorized?: boolean | undefined | null }; ["SocialRedditMutation"]: { updateSettings?: boolean | undefined | null }; ["SocialRedditSettings"]: { on?: boolean | undefined | null, subreddit: string, configurations?: Array | undefined | null, client_id: string, secret: string, app_name: string, username: string, redirect_uri: string }; ["SocialRedditSettingsInput"]: { subreddit: string, on?: boolean | undefined | null, configurations?: Array | undefined | null, client_id: string, secret: string, app_name: string, username: string, redirect_uri: string }; ["SocialRedditPostConfiguration"]: { model: string, /** url template for example https://husar.ai/blog/{{slug}} */ urlTemplate: string, /** name of the title field */ titleField: string, rootParams?: ModelTypes["RootParamsAdminType"] | undefined | null }; ["SocialRedditPostConfigurationInput"]: { model: string, urlTemplate: string, titleField: string, rootParams?: ModelTypes["RootParamsInput"] | undefined | null }; ["SocialRedditHistory"]: { model: string, slug: string, createdAt: string, linkPosted: string, rootParams?: ModelTypes["RootParamsAdminType"] | undefined | null }; ["AgentMessageInput"]: { role: string, content: string }; ["AgentRunInput"]: { prompt: string, tools?: Array | undefined | null, dryRun?: boolean | undefined | null, maxSteps?: number | undefined | null, temperature?: number | undefined | null, history?: Array | undefined | null, previousResponseId?: string | undefined | null, model?: string | undefined | null }; ["AgentToolRunInput"]: { name: string, args?: ModelTypes["JSON"] | undefined | null, argsArray?: Array | undefined | null, dryRun?: boolean | undefined | null }; ["AgentMessage"]: { role: string, content: string }; ["AgentToolCall"]: { name: string, args: string, ok: boolean, error?: string | undefined | null, isMutation?: boolean | undefined | null }; ["AgentRunResult"]: { messages: Array, toolCalls: Array, summary?: string | undefined | null, tokensUsed?: number | undefined | null, success: boolean, responseId?: string | undefined | null }; ["AgentToolRunResult"]: { ok: boolean, error?: string | undefined | null, result?: ModelTypes["JSON"] | undefined | null, executed: boolean }; ["PersistedType"]: { shapes?: Array | undefined | null, view?: boolean | undefined | null }; ["Mutation"]: { submitResponseState: ModelTypes["JSON"], admin?: ModelTypes["AdminMutation"] | undefined | null, superAdmin?: ModelTypes["SuperAdminMutation"] | undefined | null }; ["AdminQuery"]: { getImageModels?: Array | undefined | null, analytics?: Array | undefined | null, translationAnalytics?: Array | undefined | null, generationAnalytics?: Array | undefined | null, backup?: boolean | undefined | null, backups?: Array | undefined | null, uploadBackupFile?: ModelTypes["UploadFileResponseBase"] | undefined | null, apiKeys?: Array | undefined | null, tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null, dynamicTailwind?: string | undefined | null, social?: ModelTypes["SocialQuery"] | undefined | null, me?: ModelTypes["User"] | undefined | null }; ["PublicUsersQuery"]: { login: ModelTypes["LoginQuery"] }; ["ChangePasswordWhenLoggedError"]:ChangePasswordWhenLoggedError; ["ChangePasswordWhenLoggedResponse"]: { result?: boolean | undefined | null, hasError?: ModelTypes["ChangePasswordWhenLoggedError"] | undefined | null }; ["LoginInput"]: { username: string, password: string }; ["ChangePasswordWhenLoggedInput"]: { oldPassword: string, newPassword: string }; ["User"]: { username: string, emailConfirmed: boolean, createdAt?: string | undefined | null, fullName?: string | undefined | null, avatarUrl?: string | undefined | null, /** @deprecated Use permissions system instead */ role?: ModelTypes["CMSRole"] | undefined | null, _id: string }; ["LoginQuery"]: { password: ModelTypes["LoginResponse"], /** endpoint for refreshing accessToken based on refreshToken */ refreshToken: string }; ["LoginErrors"]:LoginErrors; ["LoginResponse"]: { /** same value as accessToken, for delete in future, improvise, adapt, overcome, frontend! */ login?: string | undefined | null, accessToken?: string | undefined | null, refreshToken?: string | undefined | null, hasError?: ModelTypes["LoginErrors"] | undefined | null }; ["CMSRole"]:CMSRole; ["SuperAdminMutation"]: { addUser?: ModelTypes["CreateUserResponse"] | undefined | null, userOps?: ModelTypes["UserOps"] | undefined | null, upsertUserPermissions: ModelTypes["UserPermissions"], deleteUserPermissions: boolean }; ["CreateUser"]: { username: string, permissions?: Array | undefined | null, /** Optional password. If not provided, a random password will be generated. */ password?: string | undefined | null, fullName?: string | undefined | null }; ["SuperAdminQuery"]: { users?: Array | undefined | null, userPermissions?: ModelTypes["UserPermissions"] | undefined | null, allUserPermissions: Array, permissionPresets: Array }; ["EditUser"]: { username?: string | undefined | null, permissions?: Array | undefined | null, /** Optional new password */ password?: string | undefined | null, fullName?: string | undefined | null }; ["CreateUserResponse"]: { _id: string, /** Only returned if password was auto-generated (not provided in input) */ generatedPassword?: string | undefined | null }; ["UserOps"]: { remove?: boolean | undefined | null, update?: boolean | undefined | null }; /** User permissions document */ ["UserPermissions"]: { _id: string, userId: string, permissions: Array, createdAt: string, updatedAt: string, createdBy?: string | undefined | null, updatedBy?: string | undefined | null }; ["UpsertUserPermissionsInput"]: { userId: string, permissions: Array }; ["PermissionPreset"]:PermissionPreset; ["PermissionPresetInfo"]: { name: ModelTypes["PermissionPreset"], permissions: Array, description?: string | undefined | null }; ["CMSType"]:CMSType; ["RootParamsType"]: { _version?: string | undefined | null, locale?: string | undefined | null, env?: string | undefined | null }; ["Query"]: { navigation?: Array | undefined | null, rootParams?: Array | undefined | null, versions?: Array | undefined | null, links?: Array | undefined | null, listViews?: Array | undefined | null, listShapes?: Array | undefined | null, tailwind?: ModelTypes["TailwindConfiguration"] | undefined | null, shapeLibraries?: Array | undefined | null, responses?: ModelTypes["JSON"] | undefined | null, response?: ModelTypes["JSON"] | undefined | null, paginatedNavigation: ModelTypes["ModelNavigationConnection"], paginatedListViews: ModelTypes["ViewConnection"], paginatedListShapes: ModelTypes["ShapeConnection"], admin?: ModelTypes["AdminQuery"] | undefined | null, isLoggedIn?: boolean | undefined | null, logoURL?: string | undefined | null, faviconURL?: string | undefined | null, publicUsers?: ModelTypes["PublicUsersQuery"] | undefined | null, superAdmin?: ModelTypes["SuperAdminQuery"] | undefined | null, listtest?: Array | undefined | null, variantstestBySlug?: Array | undefined | null, fieldSettest: string, modeltest: ModelTypes["ModelNavigationCompiled"], previewFieldstest: ModelTypes["ModelNavigationCompiled"], variantsViewbpk_homepage?: Array | undefined | null, fieldSetViewbpk_homepage: string, modelViewbpk_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewbpk_homepage: ModelTypes["ModelNavigationCompiled"], oneViewbpk_homepage?: ModelTypes["Viewbpk_homepage"] | undefined | null, oneAsScalarViewbpk_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewcontact_page?: Array | undefined | null, fieldSetViewcontact_page: string, modelViewcontact_page: ModelTypes["ModelNavigationCompiled"], previewFieldsViewcontact_page: ModelTypes["ModelNavigationCompiled"], oneViewcontact_page?: ModelTypes["Viewcontact_page"] | undefined | null, oneAsScalarViewcontact_page?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg5_homepage?: Array | undefined | null, fieldSetViewg5_homepage: string, modelViewg5_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg5_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg5_homepage?: ModelTypes["Viewg5_homepage"] | undefined | null, oneAsScalarViewg5_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg51c_homepage?: Array | undefined | null, fieldSetViewg51c_homepage: string, modelViewg51c_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg51c_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg51c_homepage?: ModelTypes["Viewg51c_homepage"] | undefined | null, oneAsScalarViewg51c_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg51m_homepage?: Array | undefined | null, fieldSetViewg51m_homepage: string, modelViewg51m_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg51m_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg51m_homepage?: ModelTypes["Viewg51m_homepage"] | undefined | null, oneAsScalarViewg51m_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg52_homepage?: Array | undefined | null, fieldSetViewg52_homepage: string, modelViewg52_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg52_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg52_homepage?: ModelTypes["Viewg52_homepage"] | undefined | null, oneAsScalarViewg52_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg52c_homepage?: Array | undefined | null, fieldSetViewg52c_homepage: string, modelViewg52c_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg52c_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg52c_homepage?: ModelTypes["Viewg52c_homepage"] | undefined | null, oneAsScalarViewg52c_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg53_homepage?: Array | undefined | null, fieldSetViewg53_homepage: string, modelViewg53_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg53_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg53_homepage?: ModelTypes["Viewg53_homepage"] | undefined | null, oneAsScalarViewg53_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg5c_homepage?: Array | undefined | null, fieldSetViewg5c_homepage: string, modelViewg5c_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg5c_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg5c_homepage?: ModelTypes["Viewg5c_homepage"] | undefined | null, oneAsScalarViewg5c_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewg5n_homepage?: Array | undefined | null, fieldSetViewg5n_homepage: string, modelViewg5n_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewg5n_homepage: ModelTypes["ModelNavigationCompiled"], oneViewg5n_homepage?: ModelTypes["Viewg5n_homepage"] | undefined | null, oneAsScalarViewg5n_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewgem_homepage?: Array | undefined | null, fieldSetViewgem_homepage: string, modelViewgem_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewgem_homepage: ModelTypes["ModelNavigationCompiled"], oneViewgem_homepage?: ModelTypes["Viewgem_homepage"] | undefined | null, oneAsScalarViewgem_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewglm_homepage?: Array | undefined | null, fieldSetViewglm_homepage: string, modelViewglm_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewglm_homepage: ModelTypes["ModelNavigationCompiled"], oneViewglm_homepage?: ModelTypes["Viewglm_homepage"] | undefined | null, oneAsScalarViewglm_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewglm47_homepage?: Array | undefined | null, fieldSetViewglm47_homepage: string, modelViewglm47_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewglm47_homepage: ModelTypes["ModelNavigationCompiled"], oneViewglm47_homepage?: ModelTypes["Viewglm47_homepage"] | undefined | null, oneAsScalarViewglm47_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewgm31_homepage?: Array | undefined | null, fieldSetViewgm31_homepage: string, modelViewgm31_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewgm31_homepage: ModelTypes["ModelNavigationCompiled"], oneViewgm31_homepage?: ModelTypes["Viewgm31_homepage"] | undefined | null, oneAsScalarViewgm31_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewgm3p_homepage?: Array | undefined | null, fieldSetViewgm3p_homepage: string, modelViewgm3p_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewgm3p_homepage: ModelTypes["ModelNavigationCompiled"], oneViewgm3p_homepage?: ModelTypes["Viewgm3p_homepage"] | undefined | null, oneAsScalarViewgm3p_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewgpt_homepage?: Array | undefined | null, fieldSetViewgpt_homepage: string, modelViewgpt_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewgpt_homepage: ModelTypes["ModelNavigationCompiled"], oneViewgpt_homepage?: ModelTypes["Viewgpt_homepage"] | undefined | null, oneAsScalarViewgpt_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewhk45_homepage?: Array | undefined | null, fieldSetViewhk45_homepage: string, modelViewhk45_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewhk45_homepage: ModelTypes["ModelNavigationCompiled"], oneViewhk45_homepage?: ModelTypes["Viewhk45_homepage"] | undefined | null, oneAsScalarViewhk45_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewk2_homepage?: Array | undefined | null, fieldSetViewk2_homepage: string, modelViewk2_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewk2_homepage: ModelTypes["ModelNavigationCompiled"], oneViewk2_homepage?: ModelTypes["Viewk2_homepage"] | undefined | null, oneAsScalarViewk2_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewk2t_homepage?: Array | undefined | null, fieldSetViewk2t_homepage: string, modelViewk2t_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewk2t_homepage: ModelTypes["ModelNavigationCompiled"], oneViewk2t_homepage?: ModelTypes["Viewk2t_homepage"] | undefined | null, oneAsScalarViewk2t_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewmm25_homepage?: Array | undefined | null, fieldSetViewmm25_homepage: string, modelViewmm25_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewmm25_homepage: ModelTypes["ModelNavigationCompiled"], oneViewmm25_homepage?: ModelTypes["Viewmm25_homepage"] | undefined | null, oneAsScalarViewmm25_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewmm25f_homepage?: Array | undefined | null, fieldSetViewmm25f_homepage: string, modelViewmm25f_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewmm25f_homepage: ModelTypes["ModelNavigationCompiled"], oneViewmm25f_homepage?: ModelTypes["Viewmm25f_homepage"] | undefined | null, oneAsScalarViewmm25f_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewop41_homepage?: Array | undefined | null, fieldSetViewop41_homepage: string, modelViewop41_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewop41_homepage: ModelTypes["ModelNavigationCompiled"], oneViewop41_homepage?: ModelTypes["Viewop41_homepage"] | undefined | null, oneAsScalarViewop41_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewop46_homepage?: Array | undefined | null, fieldSetViewop46_homepage: string, modelViewop46_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewop46_homepage: ModelTypes["ModelNavigationCompiled"], oneViewop46_homepage?: ModelTypes["Viewop46_homepage"] | undefined | null, oneAsScalarViewop46_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewopus_homepage?: Array | undefined | null, fieldSetViewopus_homepage: string, modelViewopus_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewopus_homepage: ModelTypes["ModelNavigationCompiled"], oneViewopus_homepage?: ModelTypes["Viewopus_homepage"] | undefined | null, oneAsScalarViewopus_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewpizzeria_homepage?: Array | undefined | null, fieldSetViewpizzeria_homepage: string, modelViewpizzeria_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewpizzeria_homepage: ModelTypes["ModelNavigationCompiled"], oneViewpizzeria_homepage?: ModelTypes["Viewpizzeria_homepage"] | undefined | null, oneAsScalarViewpizzeria_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewsn4_homepage?: Array | undefined | null, fieldSetViewsn4_homepage: string, modelViewsn4_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewsn4_homepage: ModelTypes["ModelNavigationCompiled"], oneViewsn4_homepage?: ModelTypes["Viewsn4_homepage"] | undefined | null, oneAsScalarViewsn4_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewsn45_homepage?: Array | undefined | null, fieldSetViewsn45_homepage: string, modelViewsn45_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewsn45_homepage: ModelTypes["ModelNavigationCompiled"], oneViewsn45_homepage?: ModelTypes["Viewsn45_homepage"] | undefined | null, oneAsScalarViewsn45_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, variantsViewsonnet_homepage?: Array | undefined | null, fieldSetViewsonnet_homepage: string, modelViewsonnet_homepage: ModelTypes["ModelNavigationCompiled"], previewFieldsViewsonnet_homepage: ModelTypes["ModelNavigationCompiled"], oneViewsonnet_homepage?: ModelTypes["Viewsonnet_homepage"] | undefined | null, oneAsScalarViewsonnet_homepage?: ModelTypes["ViewAsScalar"] | undefined | null, fieldSetShapeglm_feature_card: string, modelShapeglm_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeglm_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeglm_testimonial: string, modelShapeglm_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeglm_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapegpt_feature_card: string, modelShapegpt_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegpt_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapegpt_testimonial: string, modelShapegpt_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegpt_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeopus_feature_card: string, modelShapeopus_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeopus_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeopus_testimonial: string, modelShapeopus_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeopus_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapesonnet_feature_card: string, modelShapesonnet_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesonnet_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapesonnet_testimonial: string, modelShapesonnet_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesonnet_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg52c_feature_card: string, modelShapeg52c_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg52c_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg52c_testimonial: string, modelShapeg52c_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg52c_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg53_feature_card: string, modelShapeg53_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg53_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg53_testimonial: string, modelShapeg53_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg53_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeop46_feature_card: string, modelShapeop46_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeop46_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeop46_testimonial: string, modelShapeop46_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeop46_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapebpk_feature_card: string, modelShapebpk_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapebpk_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapebpk_testimonial: string, modelShapebpk_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapebpk_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeop41_feature_card: string, modelShapeop41_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeop41_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeop41_testimonial: string, modelShapeop41_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeop41_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapesn45_feature_card: string, modelShapesn45_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesn45_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapesn45_testimonial: string, modelShapesn45_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesn45_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapehk45_feature_card: string, modelShapehk45_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapehk45_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapehk45_testimonial: string, modelShapehk45_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapehk45_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg51c_feature_card: string, modelShapeg51c_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg51c_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg51c_testimonial: string, modelShapeg51c_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg51c_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapemm25_feature_card: string, modelShapemm25_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapemm25_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapemm25_testimonial: string, modelShapemm25_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapemm25_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapek2t_feature_card: string, modelShapek2t_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapek2t_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapek2t_testimonial: string, modelShapek2t_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapek2t_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg52_feature_card: string, modelShapeg52_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg52_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg52_testimonial: string, modelShapeg52_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg52_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg51m_feature_card: string, modelShapeg51m_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg51m_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg51m_testimonial: string, modelShapeg51m_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg51m_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapesn4_feature_card: string, modelShapesn4_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesn4_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapesn4_testimonial: string, modelShapesn4_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapesn4_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg5c_feature_card: string, modelShapeg5c_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg5c_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeg5c_testimonial: string, modelShapeg5c_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeg5c_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapemm25f_feature_card: string, modelShapemm25f_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapemm25f_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapemm25f_testimonial: string, modelShapemm25f_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapemm25f_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapeglm47_feature_card: string, modelShapeglm47_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeglm47_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapeglm47_testimonial: string, modelShapeglm47_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapeglm47_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapek2_feature_card: string, modelShapek2_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapek2_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapek2_testimonial: string, modelShapek2_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapek2_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapegem_feature_card: string, modelShapegem_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegem_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapegem_testimonial: string, modelShapegem_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegem_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapegm31_feature_card: string, modelShapegm31_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegm31_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapegm31_testimonial: string, modelShapegm31_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegm31_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapegm3p_feature_card: string, modelShapegm3p_feature_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegm3p_feature_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapegm3p_testimonial: string, modelShapegm3p_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapegm3p_testimonial: ModelTypes["ModelNavigationCompiled"], fieldSetShapecontact_info_card: string, modelShapecontact_info_card: ModelTypes["ModelNavigationCompiled"], previewFieldsShapecontact_info_card: ModelTypes["ModelNavigationCompiled"], fieldSetShapepizza_menu_item: string, modelShapepizza_menu_item: ModelTypes["ModelNavigationCompiled"], previewFieldsShapepizza_menu_item: ModelTypes["ModelNavigationCompiled"], fieldSetShapepizza_testimonial: string, modelShapepizza_testimonial: ModelTypes["ModelNavigationCompiled"], previewFieldsShapepizza_testimonial: ModelTypes["ModelNavigationCompiled"], mediaQuery: ModelTypes["MediaConnection"], filesQuery: ModelTypes["FileConnection"] }; ["AdminMutation"]: { upsertModel?: boolean | undefined | null, removeModel?: boolean | undefined | null, upsertView?: boolean | undefined | null, removeView?: boolean | undefined | null, upsertShape?: boolean | undefined | null, removeShape?: boolean | undefined | null, upsertVersion?: boolean | undefined | null, removeVersion?: boolean | undefined | null, upsertInternalLink?: boolean | undefined | null, removeInternalLink?: boolean | undefined | null, upsertParam?: boolean | undefined | null, removeParam?: boolean | undefined | null, uploadFile?: ModelTypes["UploadFileResponseBase"] | undefined | null, uploadImage?: ModelTypes["ImageUploadResponse"] | undefined | null, removeFiles?: boolean | undefined | null, removeAllUnusedFiles?: boolean | undefined | null, restore?: boolean | undefined | null, restoreFromBackupKey?: boolean | undefined | null, generateApiKey?: boolean | undefined | null, revokeApiKey?: boolean | undefined | null, translateDocument?: string | undefined | null, translateView?: string | undefined | null, translateForm?: string | undefined | null, generateTailwindClassList?: ModelTypes["GenerateTailwindClassList"] | undefined | null, removeWhiteBackground: string, parseFile: ModelTypes["ParseFileResponse"], generateContent: string, generateAllContent?: ModelTypes["JSON"] | undefined | null, generateContentFromVideoToContent: string, generateImage: string, generateJsonLD: string, captionImage: string, transcribeAudio?: Array | undefined | null, changeLogo?: boolean | undefined | null, removeLogo?: boolean | undefined | null, changeFavicon?: boolean | undefined | null, removeFavicon?: boolean | undefined | null, duplicateAll?: boolean | undefined | null, dupicateModel?: boolean | undefined | null, duplicateView?: boolean | undefined | null, removeModelWithDocuments?: boolean | undefined | null, removeDocumentsWithParams?: number | undefined | null, setTailwind?: string | undefined | null, social?: ModelTypes["SocialMutation"] | undefined | null, runAgentTool: ModelTypes["AgentToolRunResult"], generateShapePreviewFields?: ModelTypes["BakedIpsumData"] | undefined | null, changePasswordWhenLogged: ModelTypes["ChangePasswordWhenLoggedResponse"], upserttest?: boolean | undefined | null, removetest?: boolean | undefined | null, duplicatetest?: boolean | undefined | null, upsertViewbpk_homepage?: boolean | undefined | null, removeViewbpk_homepage?: boolean | undefined | null, upsertViewcontact_page?: boolean | undefined | null, removeViewcontact_page?: boolean | undefined | null, upsertViewg5_homepage?: boolean | undefined | null, removeViewg5_homepage?: boolean | undefined | null, upsertViewg51c_homepage?: boolean | undefined | null, removeViewg51c_homepage?: boolean | undefined | null, upsertViewg51m_homepage?: boolean | undefined | null, removeViewg51m_homepage?: boolean | undefined | null, upsertViewg52_homepage?: boolean | undefined | null, removeViewg52_homepage?: boolean | undefined | null, upsertViewg52c_homepage?: boolean | undefined | null, removeViewg52c_homepage?: boolean | undefined | null, upsertViewg53_homepage?: boolean | undefined | null, removeViewg53_homepage?: boolean | undefined | null, upsertViewg5c_homepage?: boolean | undefined | null, removeViewg5c_homepage?: boolean | undefined | null, upsertViewg5n_homepage?: boolean | undefined | null, removeViewg5n_homepage?: boolean | undefined | null, upsertViewgem_homepage?: boolean | undefined | null, removeViewgem_homepage?: boolean | undefined | null, upsertViewglm_homepage?: boolean | undefined | null, removeViewglm_homepage?: boolean | undefined | null, upsertViewglm47_homepage?: boolean | undefined | null, removeViewglm47_homepage?: boolean | undefined | null, upsertViewgm31_homepage?: boolean | undefined | null, removeViewgm31_homepage?: boolean | undefined | null, upsertViewgm3p_homepage?: boolean | undefined | null, removeViewgm3p_homepage?: boolean | undefined | null, upsertViewgpt_homepage?: boolean | undefined | null, removeViewgpt_homepage?: boolean | undefined | null, upsertViewhk45_homepage?: boolean | undefined | null, removeViewhk45_homepage?: boolean | undefined | null, upsertViewk2_homepage?: boolean | undefined | null, removeViewk2_homepage?: boolean | undefined | null, upsertViewk2t_homepage?: boolean | undefined | null, removeViewk2t_homepage?: boolean | undefined | null, upsertViewmm25_homepage?: boolean | undefined | null, removeViewmm25_homepage?: boolean | undefined | null, upsertViewmm25f_homepage?: boolean | undefined | null, removeViewmm25f_homepage?: boolean | undefined | null, upsertViewop41_homepage?: boolean | undefined | null, removeViewop41_homepage?: boolean | undefined | null, upsertViewop46_homepage?: boolean | undefined | null, removeViewop46_homepage?: boolean | undefined | null, upsertViewopus_homepage?: boolean | undefined | null, removeViewopus_homepage?: boolean | undefined | null, upsertViewpizzeria_homepage?: boolean | undefined | null, removeViewpizzeria_homepage?: boolean | undefined | null, upsertViewsn4_homepage?: boolean | undefined | null, removeViewsn4_homepage?: boolean | undefined | null, upsertViewsn45_homepage?: boolean | undefined | null, removeViewsn45_homepage?: boolean | undefined | null, upsertViewsonnet_homepage?: boolean | undefined | null, removeViewsonnet_homepage?: boolean | undefined | null }; ["test__Connection"]: { items?: Array | undefined | null, pageInfo: ModelTypes["PageInfo"] }; ["test"]: { _version?: ModelTypes["VersionField"] | undefined | null, lolo?: Array | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewbpk_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewbpk_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewbpk_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewbpk_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewbpk_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewbpk_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewbpk_homepageFooter"]: { footer_inner?: ModelTypes["Viewbpk_homepageFooterFooter_inner"] | undefined | null }; ["Viewbpk_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewbpk_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewbpk_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewbpk_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewbpk_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewcontact_pageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null }; ["Viewcontact_pageContact_sectionInfo_cards"]: { cards?: Array | undefined | null }; ["Viewcontact_pageContact_sectionForm_area"]: { form_title?: string | undefined | null, form_subtitle?: string | undefined | null, name_label?: string | undefined | null, email_label?: string | undefined | null, subject_label?: string | undefined | null, message_label?: string | undefined | null, submit_text?: string | undefined | null }; ["Viewcontact_pageContact_section"]: { info_cards?: ModelTypes["Viewcontact_pageContact_sectionInfo_cards"] | undefined | null, form_area?: ModelTypes["Viewcontact_pageContact_sectionForm_area"] | undefined | null }; ["Viewcontact_pageMap_sectionOffices"]: { office_1_name?: string | undefined | null, office_1_address?: string | undefined | null, office_2_name?: string | undefined | null, office_2_address?: string | undefined | null }; ["Viewcontact_pageMap_section"]: { section_label?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, offices?: ModelTypes["Viewcontact_pageMap_sectionOffices"] | undefined | null }; ["Viewcontact_pageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewcontact_pageFooter"]: { footer_inner?: ModelTypes["Viewcontact_pageFooterFooter_inner"] | undefined | null }; ["Viewcontact_page"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewcontact_pageHero"] | undefined | null, contact_section?: ModelTypes["Viewcontact_pageContact_section"] | undefined | null, map_section?: ModelTypes["Viewcontact_pageMap_section"] | undefined | null, footer?: ModelTypes["Viewcontact_pageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg5_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg5_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg5_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg5_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg5_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg5_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewg5_homepageFooter"]: { footer_inner?: ModelTypes["Viewg5_homepageFooterFooter_inner"] | undefined | null }; ["Viewg5_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg5_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg5_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg5_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg5_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg51c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg51c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg51c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg51c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg51c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg51c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewg51c_homepageFooter"]: { footer_inner?: ModelTypes["Viewg51c_homepageFooterFooter_inner"] | undefined | null }; ["Viewg51c_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg51c_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg51c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg51c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg51c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg51m_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg51m_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg51m_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["Viewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg51m_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg51m_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg51m_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewg51m_homepageFooter"]: { footer_inner?: ModelTypes["Viewg51m_homepageFooterFooter_inner"] | undefined | null }; ["Viewg51m_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg51m_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg51m_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg51m_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg51m_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg52_homepageHeroContainerCta_row"]: { cta_text?: string | undefined | null, cta_link?: string | undefined | null, secondary_note?: string | undefined | null }; ["Viewg52_homepageHeroContainer"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_row?: ModelTypes["Viewg52_homepageHeroContainerCta_row"] | undefined | null }; ["Viewg52_homepageHero"]: { container?: ModelTypes["Viewg52_homepageHeroContainer"] | undefined | null }; ["Viewg52_homepageFeatures_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["Viewg52_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg52_homepageFeatures_section"]: { section_header?: ModelTypes["Viewg52_homepageFeatures_sectionSection_header"] | undefined | null, features_grid?: ModelTypes["Viewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg52_homepageTestimonials_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["Viewg52_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg52_homepageTestimonials_section"]: { section_header?: ModelTypes["Viewg52_homepageTestimonials_sectionSection_header"] | undefined | null, testimonials_grid?: ModelTypes["Viewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg52_homepageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewg52_homepageFooter"]: { footer_inner?: ModelTypes["Viewg52_homepageFooterFooter_inner"] | undefined | null }; ["Viewg52_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg52_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg52_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg52_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg52_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg52c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg52c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg52c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg52c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg52c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg52c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewg52c_homepageFooter"]: { footer_inner?: ModelTypes["Viewg52c_homepageFooterFooter_inner"] | undefined | null }; ["Viewg52c_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg52c_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg52c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg52c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg52c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg53_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg53_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg53_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg53_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg53_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg53_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewg53_homepageFooter"]: { footer_inner?: ModelTypes["Viewg53_homepageFooterFooter_inner"] | undefined | null }; ["Viewg53_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg53_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg53_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg53_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg53_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg5c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewg5c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewg5c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewg5c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewg5c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewg5c_homepageFooterFooter_innerLinks_group"]: { links?: Array | undefined | null }; ["Viewg5c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_group?: ModelTypes["Viewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null }; ["Viewg5c_homepageFooter"]: { footer_inner?: ModelTypes["Viewg5c_homepageFooterFooter_inner"] | undefined | null }; ["Viewg5c_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewg5c_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewg5c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewg5c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewg5c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewg5n_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: string | undefined | null, features_section?: string | undefined | null, testimonials_section?: string | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewgem_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewgem_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewgem_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewgem_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewgem_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewgem_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewgem_homepageFooter"]: { footer_inner?: ModelTypes["Viewgem_homepageFooterFooter_inner"] | undefined | null }; ["Viewgem_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewgem_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewgem_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewgem_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewgem_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewglm_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewglm_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["Viewglm_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["Viewglm_homepageFooter"]: { logo_text?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewglm_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewglm_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewglm_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewglm_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewglm_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewglm47_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewglm47_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewglm47_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewglm47_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewglm47_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewglm47_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewglm47_homepageFooter"]: { footer_inner?: ModelTypes["Viewglm47_homepageFooterFooter_inner"] | undefined | null }; ["Viewglm47_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewglm47_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewglm47_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewglm47_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewglm47_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewgm31_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewgm31_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewgm31_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewgm31_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewgm31_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewgm31_homepageFooterFooter_innerLinks_container"]: { links?: Array | undefined | null }; ["Viewgm31_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_container?: ModelTypes["Viewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null }; ["Viewgm31_homepageFooter"]: { footer_inner?: ModelTypes["Viewgm31_homepageFooterFooter_inner"] | undefined | null }; ["Viewgm31_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewgm31_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewgm31_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewgm31_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewgm31_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewgm3p_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewgm3p_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewgm3p_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewgm3p_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewgm3p_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewgm3p_homepageFooter"]: { footer_inner?: ModelTypes["Viewgm3p_homepageFooterFooter_inner"] | undefined | null }; ["Viewgm3p_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewgm3p_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewgm3p_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewgm3p_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewgm3p_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewgpt_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, support_text?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewgpt_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["Viewgpt_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["Viewgpt_homepageFooter"]: { brand_text?: string | undefined | null, description?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewgpt_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewgpt_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewgpt_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewgpt_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewgpt_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewhk45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewhk45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewhk45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewhk45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewhk45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewhk45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewhk45_homepageFooter"]: { footer_inner?: ModelTypes["Viewhk45_homepageFooterFooter_inner"] | undefined | null }; ["Viewhk45_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewhk45_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewhk45_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewhk45_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewhk45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewk2_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewk2_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewk2_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewk2_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewk2_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewk2_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewk2_homepageFooter"]: { footer_inner?: ModelTypes["Viewk2_homepageFooterFooter_inner"] | undefined | null }; ["Viewk2_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewk2_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewk2_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewk2_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewk2_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewk2t_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewk2t_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewk2t_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewk2t_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewk2t_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewk2t_homepageFooter"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewk2t_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewk2t_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewk2t_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewk2t_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewk2t_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewmm25_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewmm25_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewmm25_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewmm25_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewmm25_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewmm25_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewmm25_homepageFooter"]: { footer_inner?: ModelTypes["Viewmm25_homepageFooterFooter_inner"] | undefined | null }; ["Viewmm25_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewmm25_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewmm25_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewmm25_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewmm25_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewmm25f_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewmm25f_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewmm25f_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewmm25f_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewmm25f_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewmm25f_homepageFooter"]: { footer_inner?: ModelTypes["Viewmm25f_homepageFooterFooter_inner"] | undefined | null }; ["Viewmm25f_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewmm25f_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewmm25f_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewmm25f_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewmm25f_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewop41_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewop41_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewop41_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["Viewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewop41_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewop41_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["Viewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewop41_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewop41_homepageFooter"]: { footer_inner?: ModelTypes["Viewop41_homepageFooterFooter_inner"] | undefined | null }; ["Viewop41_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewop41_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewop41_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewop41_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewop41_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewop46_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewop46_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewop46_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["Viewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewop46_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewop46_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["Viewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewop46_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewop46_homepageFooter"]: { footer_inner?: ModelTypes["Viewop46_homepageFooterFooter_inner"] | undefined | null }; ["Viewop46_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewop46_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewop46_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewop46_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewop46_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewopus_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewopus_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewopus_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewopus_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewopus_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewopus_homepageFooterFooter_content"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewopus_homepageFooter"]: { footer_content?: ModelTypes["Viewopus_homepageFooterFooter_content"] | undefined | null }; ["Viewopus_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewopus_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewopus_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewopus_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewopus_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewpizzeria_homepageHero"]: { bg_image?: string | undefined | null, eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewpizzeria_homepageAbout_sectionStats_row"]: { stat_1_number?: string | undefined | null, stat_1_label?: string | undefined | null, stat_2_number?: string | undefined | null, stat_2_label?: string | undefined | null, stat_3_number?: string | undefined | null, stat_3_label?: string | undefined | null, stat_4_number?: string | undefined | null, stat_4_label?: string | undefined | null }; ["Viewpizzeria_homepageAbout_section"]: { eyebrow?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, stats_row?: ModelTypes["Viewpizzeria_homepageAbout_sectionStats_row"] | undefined | null }; ["Viewpizzeria_homepageMenu_sectionMenu_grid"]: { items?: Array | undefined | null }; ["Viewpizzeria_homepageMenu_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, menu_grid?: ModelTypes["Viewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null }; ["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewpizzeria_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { links?: Array | undefined | null }; ["Viewpizzeria_homepageFooterFooter_inner"]: { brand?: string | undefined | null, address?: string | undefined | null, copyright?: string | undefined | null, links_wrapper?: ModelTypes["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null }; ["Viewpizzeria_homepageFooter"]: { footer_inner?: ModelTypes["Viewpizzeria_homepageFooterFooter_inner"] | undefined | null }; ["Viewpizzeria_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewpizzeria_homepageHero"] | undefined | null, about_section?: ModelTypes["Viewpizzeria_homepageAbout_section"] | undefined | null, menu_section?: ModelTypes["Viewpizzeria_homepageMenu_section"] | undefined | null, testimonials_section?: ModelTypes["Viewpizzeria_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewpizzeria_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewsn4_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewsn4_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewsn4_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewsn4_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewsn4_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewsn4_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewsn4_homepageFooter"]: { footer_inner?: ModelTypes["Viewsn4_homepageFooterFooter_inner"] | undefined | null }; ["Viewsn4_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewsn4_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewsn4_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewsn4_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewsn4_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewsn45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["Viewsn45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewsn45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["Viewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewsn45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewsn45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["Viewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewsn45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["Viewsn45_homepageFooter"]: { footer_inner?: ModelTypes["Viewsn45_homepageFooterFooter_inner"] | undefined | null }; ["Viewsn45_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewsn45_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewsn45_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewsn45_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewsn45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Viewsonnet_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_primary_text?: string | undefined | null, cta_primary_link?: string | undefined | null, cta_secondary_text?: string | undefined | null, cta_secondary_link?: string | undefined | null }; ["Viewsonnet_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["Viewsonnet_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["Viewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["Viewsonnet_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["Viewsonnet_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, tagline?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["Viewsonnet_homepageFooter"]: { footer_inner?: ModelTypes["Viewsonnet_homepageFooterFooter_inner"] | undefined | null }; ["Viewsonnet_homepage"]: { _version?: ModelTypes["VersionField"] | undefined | null, hero?: ModelTypes["Viewsonnet_homepageHero"] | undefined | null, features_section?: ModelTypes["Viewsonnet_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["Viewsonnet_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["Viewsonnet_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["Shapebpk_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapebpk_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapecontact_info_card"]: { icon?: string | undefined | null, title?: string | undefined | null, detail?: string | undefined | null, link?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg51c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg51c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg51m_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg51m_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg52_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg52_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg52c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg52c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg53_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg53_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg5c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeg5c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegem_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegem_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeglm_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeglm_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, avatar?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeglm47_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeglm47_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegm31_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegm31_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegm3p_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegm3p_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegpt_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapegpt_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapehk45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapehk45_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, author_company?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapek2_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapek2_testimonial"]: { name?: string | undefined | null, role?: string | undefined | null, quote?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapek2t_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapek2t_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapemm25_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapemm25_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapemm25f_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapemm25f_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeop41_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeop41_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeop46_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeop46_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeopus_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapeopus_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapepizza_menu_item"]: { image?: string | undefined | null, name?: string | undefined | null, description?: string | undefined | null, price?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapepizza_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_location?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesn4_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesn4_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesn45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesn45_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesonnet_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Shapesonnet_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["Modifytest"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, lolo?: Array | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewbpk_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewbpk_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewbpk_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewbpk_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewbpk_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewbpk_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewbpk_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewbpk_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewbpk_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewbpk_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewbpk_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewcontact_pageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null }; ["ModifyViewcontact_pageContact_sectionInfo_cards"]: { cards?: Array | undefined | null }; ["ModifyViewcontact_pageContact_sectionForm_area"]: { form_title?: string | undefined | null, form_subtitle?: string | undefined | null, name_label?: string | undefined | null, email_label?: string | undefined | null, subject_label?: string | undefined | null, message_label?: string | undefined | null, submit_text?: string | undefined | null }; ["ModifyViewcontact_pageContact_section"]: { info_cards?: ModelTypes["ModifyViewcontact_pageContact_sectionInfo_cards"] | undefined | null, form_area?: ModelTypes["ModifyViewcontact_pageContact_sectionForm_area"] | undefined | null }; ["ModifyViewcontact_pageMap_sectionOffices"]: { office_1_name?: string | undefined | null, office_1_address?: string | undefined | null, office_2_name?: string | undefined | null, office_2_address?: string | undefined | null }; ["ModifyViewcontact_pageMap_section"]: { section_label?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, offices?: ModelTypes["ModifyViewcontact_pageMap_sectionOffices"] | undefined | null }; ["ModifyViewcontact_pageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewcontact_pageFooter"]: { footer_inner?: ModelTypes["ModifyViewcontact_pageFooterFooter_inner"] | undefined | null }; ["ModifyViewcontact_page"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewcontact_pageHero"] | undefined | null, contact_section?: ModelTypes["ModifyViewcontact_pageContact_section"] | undefined | null, map_section?: ModelTypes["ModifyViewcontact_pageMap_section"] | undefined | null, footer?: ModelTypes["ModifyViewcontact_pageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg5_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg5_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg5_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg5_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg5_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg5_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51c_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg51c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51c_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg51c_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg51c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg51c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg51c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51m_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51m_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51m_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51m_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51m_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg51m_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51m_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg51m_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg51m_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg51m_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg51m_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainerCta_row"]: { cta_text?: string | undefined | null, cta_link?: string | undefined | null, secondary_note?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainer"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_row?: ModelTypes["ModifyViewg52_homepageHeroContainerCta_row"] | undefined | null }; ["ModifyViewg52_homepageHero"]: { container?: ModelTypes["ModifyViewg52_homepageHeroContainer"] | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52_homepageFeatures_section"]: { section_header?: ModelTypes["ModifyViewg52_homepageFeatures_sectionSection_header"] | undefined | null, features_grid?: ModelTypes["ModifyViewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52_homepageTestimonials_section"]: { section_header?: ModelTypes["ModifyViewg52_homepageTestimonials_sectionSection_header"] | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52_homepageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewg52_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg52_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg52_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg52_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg52_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg52_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg52c_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg52c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52c_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg52c_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg52c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg52c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg52c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg53_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg53_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg53_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg53_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg53_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg53_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg53_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg53_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg53_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg53_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg53_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]: { links?: Array | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_group?: ModelTypes["ModifyViewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null }; ["ModifyViewg5c_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewg5c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5c_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewg5c_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewg5c_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewg5c_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewg5c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5n_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: string | undefined | null, features_section?: string | undefined | null, testimonials_section?: string | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgem_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgem_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgem_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgem_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgem_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewgem_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgem_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewgem_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewgem_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewgem_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewgem_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewglm_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewglm_homepageFooter"]: { logo_text?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewglm_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewglm_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewglm_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewglm_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewglm_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm47_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewglm47_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewglm47_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewglm47_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewglm47_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewglm47_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewglm47_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewglm47_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewglm47_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewglm47_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewglm47_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm31_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm31_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm31_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]: { links?: Array | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_container?: ModelTypes["ModifyViewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null }; ["ModifyViewgm31_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewgm31_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm31_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewgm31_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewgm31_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewgm31_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewgm31_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm3p_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm3p_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm3p_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgm3p_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewgm3p_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm3p_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewgm3p_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewgm3p_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewgm3p_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewgm3p_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgpt_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, support_text?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgpt_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewgpt_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewgpt_homepageFooter"]: { brand_text?: string | undefined | null, description?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewgpt_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewgpt_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewgpt_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewgpt_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewgpt_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewhk45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewhk45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewhk45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewhk45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewhk45_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewhk45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewhk45_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewhk45_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewhk45_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewhk45_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewhk45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewk2_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewk2_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewk2_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewk2_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewk2_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewk2_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2t_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2t_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2t_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2t_homepageFooter"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2t_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewk2t_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewk2t_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewk2t_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewk2t_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewmm25_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewmm25_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewmm25_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewmm25_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewmm25_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25f_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25f_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25f_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25f_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewmm25f_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25f_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewmm25f_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewmm25f_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewmm25f_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewmm25f_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop41_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop41_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["ModifyViewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop41_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop41_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewop41_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewop41_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop41_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewop41_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewop41_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewop41_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewop41_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop46_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop46_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["ModifyViewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop46_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop46_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewop46_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewop46_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop46_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewop46_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewop46_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewop46_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewop46_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewopus_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewopus_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewopus_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewopus_homepageFooterFooter_content"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewopus_homepageFooter"]: { footer_content?: ModelTypes["ModifyViewopus_homepageFooterFooter_content"] | undefined | null }; ["ModifyViewopus_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewopus_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewopus_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewopus_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewopus_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewpizzeria_homepageHero"]: { bg_image?: string | undefined | null, eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_sectionStats_row"]: { stat_1_number?: string | undefined | null, stat_1_label?: string | undefined | null, stat_2_number?: string | undefined | null, stat_2_label?: string | undefined | null, stat_3_number?: string | undefined | null, stat_3_label?: string | undefined | null, stat_4_number?: string | undefined | null, stat_4_label?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_section"]: { eyebrow?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, stats_row?: ModelTypes["ModifyViewpizzeria_homepageAbout_sectionStats_row"] | undefined | null }; ["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]: { items?: Array | undefined | null }; ["ModifyViewpizzeria_homepageMenu_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, menu_grid?: ModelTypes["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { links?: Array | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_inner"]: { brand?: string | undefined | null, address?: string | undefined | null, copyright?: string | undefined | null, links_wrapper?: ModelTypes["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null }; ["ModifyViewpizzeria_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewpizzeria_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewpizzeria_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewpizzeria_homepageHero"] | undefined | null, about_section?: ModelTypes["ModifyViewpizzeria_homepageAbout_section"] | undefined | null, menu_section?: ModelTypes["ModifyViewpizzeria_homepageMenu_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewpizzeria_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewpizzeria_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn4_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn4_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn4_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn4_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn4_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewsn4_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn4_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewsn4_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewsn4_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewsn4_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewsn4_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: ModelTypes["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn45_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewsn45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn45_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewsn45_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewsn45_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewsn45_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewsn45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsonnet_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_primary_text?: string | undefined | null, cta_primary_link?: string | undefined | null, cta_secondary_text?: string | undefined | null, cta_secondary_link?: string | undefined | null }; ["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsonnet_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: ModelTypes["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: ModelTypes["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsonnet_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, tagline?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewsonnet_homepageFooter"]: { footer_inner?: ModelTypes["ModifyViewsonnet_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsonnet_homepage"]: { _version?: ModelTypes["CreateVersion"] | undefined | null, hero?: ModelTypes["ModifyViewsonnet_homepageHero"] | undefined | null, features_section?: ModelTypes["ModifyViewsonnet_homepageFeatures_section"] | undefined | null, testimonials_section?: ModelTypes["ModifyViewsonnet_homepageTestimonials_section"] | undefined | null, footer?: ModelTypes["ModifyViewsonnet_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyShapebpk_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapebpk_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapecontact_info_card"]: { icon?: string | undefined | null, title?: string | undefined | null, detail?: string | undefined | null, link?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, avatar?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, author_company?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_testimonial"]: { name?: string | undefined | null, role?: string | undefined | null, quote?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_menu_item"]: { image?: string | undefined | null, name?: string | undefined | null, description?: string | undefined | null, price?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_location?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["RootParamsInput"]: { _version?: string | undefined | null, locale?: string | undefined | null, env?: string | undefined | null }; ["RootParamsEnum"]:RootParamsEnum; ["testSortInput"]: { slug?: ModelTypes["Sort"] | undefined | null, createdAt?: ModelTypes["Sort"] | undefined | null, updatedAt?: ModelTypes["Sort"] | undefined | null }; ["testFilterInput"]: { slug?: ModelTypes["FilterInputString"] | undefined | null }; ["Subscription"]: { agentRun: ModelTypes["AgentRunResult"] }; ["schema"]: { query?: ModelTypes["Query"] | undefined | null, mutation?: ModelTypes["Mutation"] | undefined | null, subscription?: ModelTypes["Subscription"] | undefined | null }; ["ID"]:any } export type GraphQLTypes = { ["VersionField"]: { __typename: "VersionField", name: string, from: GraphQLTypes["Timestamp"], to?: GraphQLTypes["Timestamp"] | undefined | null, ['...on VersionField']: Omit }; ["RangeField"]: { __typename: "RangeField", min: number, max: number, ['...on RangeField']: Omit }; ["ImageField"]: { __typename: "ImageField", url?: GraphQLTypes["S3Scalar"] | undefined | null, thumbnail?: GraphQLTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null, ['...on ImageField']: Omit }; ["VideoField"]: { __typename: "VideoField", url?: GraphQLTypes["S3Scalar"] | undefined | null, previewImage?: GraphQLTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null, ['...on VideoField']: Omit }; ["InternalLink"]: { __typename: "InternalLink", _id: GraphQLTypes["ObjectId"], keys: Array, href: string, ['...on InternalLink']: Omit }; ["RootCMSParam"]: { __typename: "RootCMSParam", name: string, options: Array, default?: string | undefined | null, ['...on RootCMSParam']: Omit }; ["ModelNavigation"]: { __typename: "ModelNavigation", name: string, display: string, fields: Array, fieldSet: string, ['...on ModelNavigation']: Omit }; ["CMSField"]: { __typename: "CMSField", name: string, display?: string | undefined | null, type: GraphQLTypes["CMSType"], list?: boolean | undefined | null, searchable?: boolean | undefined | null, sortable?: boolean | undefined | null, filterable?: boolean | undefined | null, rangeValues?: Array | undefined | null, options?: Array | undefined | null, relation?: string | undefined | null, fields?: Array | undefined | null, builtIn?: boolean | undefined | null, visual?: GraphQLTypes["Visual"] | undefined | null, conditions?: GraphQLTypes["Condition"] | undefined | null, nonTranslatable?: boolean | undefined | null, ['...on CMSField']: Omit }; ["Condition"]: { __typename: "Condition", type: GraphQLTypes["ConditionType"], path?: string | undefined | null, operator?: GraphQLTypes["ConditionOperator"] | undefined | null, setOperator?: GraphQLTypes["ConditionSetOperator"] | undefined | null, value?: string | undefined | null, children?: Array | undefined | null, ['...on Condition']: Omit }; ["Action"]: { __typename: "Action", path: string, type: GraphQLTypes["ActionType"], value: string, ['...on Action']: Omit }; ["Rule"]: { __typename: "Rule", conditions: Array, actions: Array, ['...on Rule']: Omit }; ["Visual"]: { __typename: "Visual", className?: string | undefined | null, component?: string | undefined | null, rules?: Array | undefined | null, ['...on Visual']: Omit }; ["FilterInputString"]: { eq?: string | undefined | null, ne?: string | undefined | null, contain?: string | undefined | null }; ["StructureSortInput"]: { key: string, direction?: GraphQLTypes["Sort"] | undefined | null }; ["ModelNavigationConnection"]: { __typename: "ModelNavigationConnection", items: Array, pageInfo?: GraphQLTypes["PageInfo"] | undefined | null, ['...on ModelNavigationConnection']: Omit }; ["ViewConnection"]: { __typename: "ViewConnection", items: Array, pageInfo?: GraphQLTypes["PageInfo"] | undefined | null, ['...on ViewConnection']: Omit }; ["ShapeConnection"]: { __typename: "ShapeConnection", items: Array, pageInfo?: GraphQLTypes["PageInfo"] | undefined | null, ['...on ShapeConnection']: Omit }; ["View"]: { __typename: "View", name: string, fields: Array, slug: string, display: string, ['...on View']: Omit }; ["AiComponent"]: { __typename: "AiComponent", name: string, htmlComponent?: string | undefined | null, className: string, textContent?: string | undefined | null, children?: Array | undefined | null, ['...on AiComponent']: Omit }; ["InputField"]: { __typename: "InputField", label?: string | undefined | null, placeholder?: string | undefined | null, type?: string | undefined | null, defaultValue?: string | undefined | null, ['...on InputField']: Omit }; ["LinkField"]: { __typename: "LinkField", label?: string | undefined | null, href?: string | undefined | null, target?: string | undefined | null, ['...on LinkField']: Omit }; ["ButtonField"]: { __typename: "ButtonField", label?: string | undefined | null, type?: string | undefined | null, loadingLabel?: string | undefined | null, ['...on ButtonField']: Omit }; ["CheckboxField"]: { __typename: "CheckboxField", label?: string | undefined | null, defaultValue?: boolean | undefined | null, ['...on CheckboxField']: Omit }; ["VariableField"]: { __typename: "VariableField", label?: string | undefined | null, defaultValue?: string | undefined | null, shouldRender?: boolean | undefined | null, ['...on VariableField']: Omit }; ["GenerateHusarShapeImplementorInput"]: { prompt: string, existingFileContent?: string | undefined | null, backendGraphQlContent?: string | undefined | null, includeShapes?: Array | undefined | null }; ["ShapeLibrary"]: { __typename: "ShapeLibrary", id: string, name: string, shapes?: Array | undefined | null, description?: string | undefined | null, ['...on ShapeLibrary']: Omit }; ["ObjectId"]: "scalar" & { name: "ObjectId" }; ["S3Scalar"]: "scalar" & { name: "S3Scalar" }; ["Timestamp"]: "scalar" & { name: "Timestamp" }; ["ModelNavigationCompiled"]: "scalar" & { name: "ModelNavigationCompiled" }; ["BakedIpsumData"]: "scalar" & { name: "BakedIpsumData" }; ["ShapeAsScalar"]: "scalar" & { name: "ShapeAsScalar" }; ["ModelAsScalar"]: "scalar" & { name: "ModelAsScalar" }; ["ViewAsScalar"]: "scalar" & { name: "ViewAsScalar" }; ["FormAsScalar"]: "scalar" & { name: "FormAsScalar" }; ["JSON"]: "scalar" & { name: "JSON" }; ["TailwindConfiguration"]: { __typename: "TailwindConfiguration", content: string, contentForClient: string, compiledForIframe: string, libraries?: Array | undefined | null, ['...on TailwindConfiguration']: Omit }; ["Sort"]: Sort; ["ConditionSetOperator"]: ConditionSetOperator; ["ConditionOperator"]: ConditionOperator; ["ConditionType"]: ConditionType; ["ActionType"]: ActionType; ["PageInfo"]: { __typename: "PageInfo", total: number, hasNext?: boolean | undefined | null, ['...on PageInfo']: Omit }; ["PageInput"]: { limit: number, start?: number | undefined | null }; ["RootParamsAdminType"]: "scalar" & { name: "RootParamsAdminType" }; ["Shape"]: { __typename: "Shape", name: string, slug: string, display: string, previewFields?: GraphQLTypes["BakedIpsumData"] | undefined | null, prompt?: string | undefined | null, promptResponse?: GraphQLTypes["AiComponent"] | undefined | null, fields: Array, ['...on Shape']: Omit }; ["TailwindLibrary"]: TailwindLibrary; ["TailwindConfigurationInput"]: { content: string, libraries?: Array | undefined | null }; ["ImageFieldInput"]: { thumbnail?: GraphQLTypes["S3Scalar"] | undefined | null, url?: GraphQLTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["VideoFieldInput"]: { previewImage?: GraphQLTypes["S3Scalar"] | undefined | null, url?: GraphQLTypes["S3Scalar"] | undefined | null, alt?: string | undefined | null }; ["DuplicateDocumentsInput"]: { originalRootParams: GraphQLTypes["RootParamsInput"], newRootParams: GraphQLTypes["RootParamsInput"], inputLanguage?: GraphQLTypes["Languages"] | undefined | null, resultLanguage?: GraphQLTypes["Languages"] | undefined | null, overrideExistingDocuments?: boolean | undefined | null }; ["AnalyticsResponse"]: { __typename: "AnalyticsResponse", date?: string | undefined | null, value?: Array | undefined | null, ['...on AnalyticsResponse']: Omit }; ["AnalyticsModelResponse"]: { __typename: "AnalyticsModelResponse", modelName: string, calls: number, rootParamsKey?: string | undefined | null, tokens?: number | undefined | null, ['...on AnalyticsModelResponse']: Omit }; ["CreateRootCMSParam"]: { name: string, options: Array, default?: string | undefined | null }; ["CreateVersion"]: { name: string, from: GraphQLTypes["Timestamp"], to?: GraphQLTypes["Timestamp"] | undefined | null }; ["CreateInternalLink"]: { keys: Array, href: string }; ["FileResponse"]: { __typename: "FileResponse", key: string, cdnURL: string, modifiedAt?: string | undefined | null, ['...on FileResponse']: Omit }; ["FileConnection"]: { __typename: "FileConnection", items: Array, pageInfo?: GraphQLTypes["PageInfo"] | undefined | null, ['...on FileConnection']: Omit }; ["MediaResponse"]: { __typename: "MediaResponse", key?: string | undefined | null, cdnURL?: string | undefined | null, thumbnailCdnURL?: string | undefined | null, alt?: string | undefined | null, modifiedAt?: string | undefined | null, ['...on MediaResponse']: Omit }; ["MediaConnection"]: { __typename: "MediaConnection", items: Array, pageInfo?: GraphQLTypes["PageInfo"] | undefined | null, ['...on MediaConnection']: Omit }; ["MediaOrderByInput"]: { date?: GraphQLTypes["Sort"] | undefined | null }; ["MediaParamsInput"]: { model?: string | undefined | null, search?: string | undefined | null, allowedExtensions?: Array | undefined | null, page?: GraphQLTypes["PageInput"] | undefined | null, sort?: GraphQLTypes["MediaOrderByInput"] | undefined | null, unusedFilesOnly?: boolean | undefined | null }; ["UploadFileInput"]: { key: string, prefix?: string | undefined | null, alt?: string | undefined | null }; ["UploadFileResponseBase"]: { __typename: "UploadFileResponseBase", key: string, putURL: string, cdnURL: string, alt?: string | undefined | null, ['...on UploadFileResponseBase']: Omit }; ["ImageUploadResponse"]: { __typename: "ImageUploadResponse", file: GraphQLTypes["UploadFileResponseBase"], thumbnail: GraphQLTypes["UploadFileResponseBase"], ['...on ImageUploadResponse']: Omit }; ["ActionInput"]: { path: string, type: GraphQLTypes["ActionType"], value: string }; ["RuleInput"]: { conditions: Array, actions: Array }; ["InputCMSField"]: { name: string, type: GraphQLTypes["CMSType"], list?: boolean | undefined | null, searchable?: boolean | undefined | null, sortable?: boolean | undefined | null, filterable?: boolean | undefined | null, options?: Array | undefined | null, relation?: string | undefined | null, builtIn?: boolean | undefined | null, fields?: Array | undefined | null, visual?: GraphQLTypes["InputVisual"] | undefined | null, nonTranslatable?: boolean | undefined | null, display?: string | undefined | null }; ["InputVisual"]: { className?: string | undefined | null, component?: string | undefined | null, rules?: Array | undefined | null }; ["InputCondition"]: { type: GraphQLTypes["ConditionType"], path?: string | undefined | null, operator?: GraphQLTypes["ConditionOperator"] | undefined | null, setOperator?: GraphQLTypes["ConditionSetOperator"] | undefined | null, value?: string | undefined | null, children?: Array | undefined | null }; ["ApiKey"]: { __typename: "ApiKey", name: string, createdAt: string, _id: GraphQLTypes["ObjectId"], value: string, ['...on ApiKey']: Omit }; ["Languages"]: Languages; ["Formality"]: Formality; ["BackupFile"]: "scalar" & { name: "BackupFile" }; ["GenerateTailwindClassList"]: { __typename: "GenerateTailwindClassList", className: string, ['...on GenerateTailwindClassList']: Omit }; ["GenerateJSONLDInput"]: { data: GraphQLTypes["JSON"] }; ["RemoveWhiteBackgroundInput"]: { url: string }; ["ParseFileOutputType"]: ParseFileOutputType; ["ParseFileInput"]: { key: string, fileURL: string, name: string, type: GraphQLTypes["ParseFileOutputType"] }; ["ParseFileResponse"]: { __typename: "ParseFileResponse", name: string, type: GraphQLTypes["ParseFileOutputType"], status: string, ['...on ParseFileResponse']: Omit }; ["GenerateContentFromVideoToContentInput"]: { existingContent: string }; ["GenerateContentInput"]: { document: string, field: string, description?: string | undefined | null, keywords?: Array | undefined | null, language?: GraphQLTypes["Languages"] | undefined | null }; ["GenerateAllContentInput"]: { fields: string, prompt: string, document?: string | undefined | null, language?: string | undefined | null }; ["CaptionImageInput"]: { imageURL: string }; ["TranscribeAudioInput"]: { audioURL: string, language: GraphQLTypes["Languages"] }; ["GenerateImageModel"]: GenerateImageModel; ["ImagePricingForSize"]: { __typename: "ImagePricingForSize", size: GraphQLTypes["GenerateImageSize"], price: number, ['...on ImagePricingForSize']: Omit }; ["BackgroundType"]: BackgroundType; ["ImageModelSource"]: ImageModelSource; ["AvailableImageModel"]: { __typename: "AvailableImageModel", model: GraphQLTypes["GenerateImageModel"], sizes: Array, styles?: Array | undefined | null, backgrounds?: Array | undefined | null, source?: GraphQLTypes["ImageModelSource"] | undefined | null, disabled?: string | undefined | null, ['...on AvailableImageModel']: Omit }; ["GenerateImageSize"]: GenerateImageSize; ["GenerateImageStyle"]: GenerateImageStyle; ["GenerateImageInput"]: { model: GraphQLTypes["GenerateImageModel"], prompt: string, size: GraphQLTypes["GenerateImageSize"], style?: GraphQLTypes["GenerateImageStyle"] | undefined | null, background?: GraphQLTypes["BackgroundType"] | undefined | null }; ["TranslateDocInput"]: { modelName: string, slug: string, originalRootParams: GraphQLTypes["RootParamsInput"], newRootParams: GraphQLTypes["RootParamsInput"], resultLanguages: Array, formality?: GraphQLTypes["Formality"] | undefined | null, context?: string | undefined | null, inputLanguage?: GraphQLTypes["Languages"] | undefined | null }; ["TranslateViewInput"]: { viewName: string, originalRootParams: GraphQLTypes["RootParamsInput"], newRootParams: GraphQLTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: GraphQLTypes["Languages"] | undefined | null, formality?: GraphQLTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["TranslateFormInput"]: { name: string, originalRootParams: GraphQLTypes["RootParamsInput"], newRootParams: GraphQLTypes["RootParamsInput"], resultLanguages: Array, inputLanguage?: GraphQLTypes["Languages"] | undefined | null, formality?: GraphQLTypes["Formality"] | undefined | null, context?: string | undefined | null }; ["PrefixInput"]: { old: Array, new: Array }; ["TranscribeAudioChunk"]: { __typename: "TranscribeAudioChunk", start: number, end: number, text: string, ['...on TranscribeAudioChunk']: Omit }; ["InputFieldInput"]: { label?: string | undefined | null, placeholder?: string | undefined | null, type?: string | undefined | null, defaultValue?: string | undefined | null }; ["LinkFieldInput"]: { label?: string | undefined | null, href?: string | undefined | null, target?: string | undefined | null }; ["ButtonFieldInput"]: { label?: string | undefined | null, type?: string | undefined | null, loadingLabel?: string | undefined | null }; ["CheckboxFieldInput"]: { label?: string | undefined | null, defaultValue?: boolean | undefined | null }; ["VariableFieldInput"]: { label?: string | undefined | null, defaultValue?: string | undefined | null, shouldRender?: boolean | undefined | null }; ["SocialQuery"]: { __typename: "SocialQuery", reddit?: GraphQLTypes["SocialRedditQuery"] | undefined | null, ['...on SocialQuery']: Omit }; ["SocialMutation"]: { __typename: "SocialMutation", reddit?: GraphQLTypes["SocialRedditMutation"] | undefined | null, ['...on SocialMutation']: Omit }; ["SocialRedditQuery"]: { __typename: "SocialRedditQuery", settings?: GraphQLTypes["SocialRedditSettings"] | undefined | null, history?: Array | undefined | null, getRedditAuthorizeLink: string, isAuthorized?: boolean | undefined | null, ['...on SocialRedditQuery']: Omit }; ["SocialRedditMutation"]: { __typename: "SocialRedditMutation", updateSettings?: boolean | undefined | null, ['...on SocialRedditMutation']: Omit }; ["SocialRedditSettings"]: { __typename: "SocialRedditSettings", on?: boolean | undefined | null, subreddit: string, configurations?: Array | undefined | null, client_id: string, secret: string, app_name: string, username: string, redirect_uri: string, ['...on SocialRedditSettings']: Omit }; ["SocialRedditSettingsInput"]: { subreddit: string, on?: boolean | undefined | null, configurations?: Array | undefined | null, client_id: string, secret: string, app_name: string, username: string, redirect_uri: string }; ["SocialRedditPostConfiguration"]: { __typename: "SocialRedditPostConfiguration", model: string, /** url template for example https://husar.ai/blog/{{slug}} */ urlTemplate: string, /** name of the title field */ titleField: string, rootParams?: GraphQLTypes["RootParamsAdminType"] | undefined | null, ['...on SocialRedditPostConfiguration']: Omit }; ["SocialRedditPostConfigurationInput"]: { model: string, urlTemplate: string, titleField: string, rootParams?: GraphQLTypes["RootParamsInput"] | undefined | null }; ["SocialRedditHistory"]: { __typename: "SocialRedditHistory", model: string, slug: string, createdAt: string, linkPosted: string, rootParams?: GraphQLTypes["RootParamsAdminType"] | undefined | null, ['...on SocialRedditHistory']: Omit }; ["AgentMessageInput"]: { role: string, content: string }; ["AgentRunInput"]: { prompt: string, tools?: Array | undefined | null, dryRun?: boolean | undefined | null, maxSteps?: number | undefined | null, temperature?: number | undefined | null, history?: Array | undefined | null, previousResponseId?: string | undefined | null, model?: string | undefined | null }; ["AgentToolRunInput"]: { name: string, args?: GraphQLTypes["JSON"] | undefined | null, argsArray?: Array | undefined | null, dryRun?: boolean | undefined | null }; ["AgentMessage"]: { __typename: "AgentMessage", role: string, content: string, ['...on AgentMessage']: Omit }; ["AgentToolCall"]: { __typename: "AgentToolCall", name: string, args: string, ok: boolean, error?: string | undefined | null, isMutation?: boolean | undefined | null, ['...on AgentToolCall']: Omit }; ["AgentRunResult"]: { __typename: "AgentRunResult", messages: Array, toolCalls: Array, summary?: string | undefined | null, tokensUsed?: number | undefined | null, success: boolean, responseId?: string | undefined | null, ['...on AgentRunResult']: Omit }; ["AgentToolRunResult"]: { __typename: "AgentToolRunResult", ok: boolean, error?: string | undefined | null, result?: GraphQLTypes["JSON"] | undefined | null, executed: boolean, ['...on AgentToolRunResult']: Omit }; ["PersistedType"]: { __typename: "PersistedType", shapes?: Array | undefined | null, view?: boolean | undefined | null, ['...on PersistedType']: Omit }; ["Mutation"]: { __typename: "Mutation", submitResponseState: GraphQLTypes["JSON"], admin?: GraphQLTypes["AdminMutation"] | undefined | null, superAdmin?: GraphQLTypes["SuperAdminMutation"] | undefined | null, ['...on Mutation']: Omit }; ["AdminQuery"]: { __typename: "AdminQuery", getImageModels?: Array | undefined | null, analytics?: Array | undefined | null, translationAnalytics?: Array | undefined | null, generationAnalytics?: Array | undefined | null, backup?: boolean | undefined | null, backups?: Array | undefined | null, uploadBackupFile?: GraphQLTypes["UploadFileResponseBase"] | undefined | null, apiKeys?: Array | undefined | null, tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null, dynamicTailwind?: string | undefined | null, social?: GraphQLTypes["SocialQuery"] | undefined | null, me?: GraphQLTypes["User"] | undefined | null, ['...on AdminQuery']: Omit }; ["PublicUsersQuery"]: { __typename: "PublicUsersQuery", login: GraphQLTypes["LoginQuery"], ['...on PublicUsersQuery']: Omit }; ["ChangePasswordWhenLoggedError"]: ChangePasswordWhenLoggedError; ["ChangePasswordWhenLoggedResponse"]: { __typename: "ChangePasswordWhenLoggedResponse", result?: boolean | undefined | null, hasError?: GraphQLTypes["ChangePasswordWhenLoggedError"] | undefined | null, ['...on ChangePasswordWhenLoggedResponse']: Omit }; ["LoginInput"]: { username: string, password: string }; ["ChangePasswordWhenLoggedInput"]: { oldPassword: string, newPassword: string }; ["User"]: { __typename: "User", username: string, emailConfirmed: boolean, createdAt?: string | undefined | null, fullName?: string | undefined | null, avatarUrl?: string | undefined | null, /** @deprecated Use permissions system instead */ role?: GraphQLTypes["CMSRole"] | undefined | null, _id: string, ['...on User']: Omit }; ["LoginQuery"]: { __typename: "LoginQuery", password: GraphQLTypes["LoginResponse"], /** endpoint for refreshing accessToken based on refreshToken */ refreshToken: string, ['...on LoginQuery']: Omit }; ["LoginErrors"]: LoginErrors; ["LoginResponse"]: { __typename: "LoginResponse", /** same value as accessToken, for delete in future, improvise, adapt, overcome, frontend! */ login?: string | undefined | null, accessToken?: string | undefined | null, refreshToken?: string | undefined | null, hasError?: GraphQLTypes["LoginErrors"] | undefined | null, ['...on LoginResponse']: Omit }; ["CMSRole"]: CMSRole; ["SuperAdminMutation"]: { __typename: "SuperAdminMutation", addUser?: GraphQLTypes["CreateUserResponse"] | undefined | null, userOps?: GraphQLTypes["UserOps"] | undefined | null, upsertUserPermissions: GraphQLTypes["UserPermissions"], deleteUserPermissions: boolean, ['...on SuperAdminMutation']: Omit }; ["CreateUser"]: { username: string, permissions?: Array | undefined | null, /** Optional password. If not provided, a random password will be generated. */ password?: string | undefined | null, fullName?: string | undefined | null }; ["SuperAdminQuery"]: { __typename: "SuperAdminQuery", users?: Array | undefined | null, userPermissions?: GraphQLTypes["UserPermissions"] | undefined | null, allUserPermissions: Array, permissionPresets: Array, ['...on SuperAdminQuery']: Omit }; ["EditUser"]: { username?: string | undefined | null, permissions?: Array | undefined | null, /** Optional new password */ password?: string | undefined | null, fullName?: string | undefined | null }; ["CreateUserResponse"]: { __typename: "CreateUserResponse", _id: string, /** Only returned if password was auto-generated (not provided in input) */ generatedPassword?: string | undefined | null, ['...on CreateUserResponse']: Omit }; ["UserOps"]: { __typename: "UserOps", remove?: boolean | undefined | null, update?: boolean | undefined | null, ['...on UserOps']: Omit }; /** User permissions document */ ["UserPermissions"]: { __typename: "UserPermissions", _id: string, userId: string, permissions: Array, createdAt: string, updatedAt: string, createdBy?: string | undefined | null, updatedBy?: string | undefined | null, ['...on UserPermissions']: Omit }; ["UpsertUserPermissionsInput"]: { userId: string, permissions: Array }; /** Permission presets for quick setup */ ["PermissionPreset"]: PermissionPreset; ["PermissionPresetInfo"]: { __typename: "PermissionPresetInfo", name: GraphQLTypes["PermissionPreset"], permissions: Array, description?: string | undefined | null, ['...on PermissionPresetInfo']: Omit }; /** This enum is defined externally and injected via federation */ ["CMSType"]: CMSType; ["RootParamsType"]: { __typename: "RootParamsType", _version?: string | undefined | null, locale?: string | undefined | null, env?: string | undefined | null, ['...on RootParamsType']: Omit }; ["Query"]: { __typename: "Query", navigation?: Array | undefined | null, rootParams?: Array | undefined | null, versions?: Array | undefined | null, links?: Array | undefined | null, listViews?: Array | undefined | null, listShapes?: Array | undefined | null, tailwind?: GraphQLTypes["TailwindConfiguration"] | undefined | null, shapeLibraries?: Array | undefined | null, responses?: GraphQLTypes["JSON"] | undefined | null, response?: GraphQLTypes["JSON"] | undefined | null, paginatedNavigation: GraphQLTypes["ModelNavigationConnection"], paginatedListViews: GraphQLTypes["ViewConnection"], paginatedListShapes: GraphQLTypes["ShapeConnection"], admin?: GraphQLTypes["AdminQuery"] | undefined | null, isLoggedIn?: boolean | undefined | null, logoURL?: string | undefined | null, faviconURL?: string | undefined | null, publicUsers?: GraphQLTypes["PublicUsersQuery"] | undefined | null, superAdmin?: GraphQLTypes["SuperAdminQuery"] | undefined | null, listtest?: Array | undefined | null, variantstestBySlug?: Array | undefined | null, fieldSettest: string, modeltest: GraphQLTypes["ModelNavigationCompiled"], previewFieldstest: GraphQLTypes["ModelNavigationCompiled"], variantsViewbpk_homepage?: Array | undefined | null, fieldSetViewbpk_homepage: string, modelViewbpk_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewbpk_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewbpk_homepage?: GraphQLTypes["Viewbpk_homepage"] | undefined | null, oneAsScalarViewbpk_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewcontact_page?: Array | undefined | null, fieldSetViewcontact_page: string, modelViewcontact_page: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewcontact_page: GraphQLTypes["ModelNavigationCompiled"], oneViewcontact_page?: GraphQLTypes["Viewcontact_page"] | undefined | null, oneAsScalarViewcontact_page?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg5_homepage?: Array | undefined | null, fieldSetViewg5_homepage: string, modelViewg5_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg5_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg5_homepage?: GraphQLTypes["Viewg5_homepage"] | undefined | null, oneAsScalarViewg5_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg51c_homepage?: Array | undefined | null, fieldSetViewg51c_homepage: string, modelViewg51c_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg51c_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg51c_homepage?: GraphQLTypes["Viewg51c_homepage"] | undefined | null, oneAsScalarViewg51c_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg51m_homepage?: Array | undefined | null, fieldSetViewg51m_homepage: string, modelViewg51m_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg51m_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg51m_homepage?: GraphQLTypes["Viewg51m_homepage"] | undefined | null, oneAsScalarViewg51m_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg52_homepage?: Array | undefined | null, fieldSetViewg52_homepage: string, modelViewg52_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg52_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg52_homepage?: GraphQLTypes["Viewg52_homepage"] | undefined | null, oneAsScalarViewg52_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg52c_homepage?: Array | undefined | null, fieldSetViewg52c_homepage: string, modelViewg52c_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg52c_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg52c_homepage?: GraphQLTypes["Viewg52c_homepage"] | undefined | null, oneAsScalarViewg52c_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg53_homepage?: Array | undefined | null, fieldSetViewg53_homepage: string, modelViewg53_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg53_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg53_homepage?: GraphQLTypes["Viewg53_homepage"] | undefined | null, oneAsScalarViewg53_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg5c_homepage?: Array | undefined | null, fieldSetViewg5c_homepage: string, modelViewg5c_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg5c_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg5c_homepage?: GraphQLTypes["Viewg5c_homepage"] | undefined | null, oneAsScalarViewg5c_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewg5n_homepage?: Array | undefined | null, fieldSetViewg5n_homepage: string, modelViewg5n_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewg5n_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewg5n_homepage?: GraphQLTypes["Viewg5n_homepage"] | undefined | null, oneAsScalarViewg5n_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewgem_homepage?: Array | undefined | null, fieldSetViewgem_homepage: string, modelViewgem_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewgem_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewgem_homepage?: GraphQLTypes["Viewgem_homepage"] | undefined | null, oneAsScalarViewgem_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewglm_homepage?: Array | undefined | null, fieldSetViewglm_homepage: string, modelViewglm_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewglm_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewglm_homepage?: GraphQLTypes["Viewglm_homepage"] | undefined | null, oneAsScalarViewglm_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewglm47_homepage?: Array | undefined | null, fieldSetViewglm47_homepage: string, modelViewglm47_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewglm47_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewglm47_homepage?: GraphQLTypes["Viewglm47_homepage"] | undefined | null, oneAsScalarViewglm47_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewgm31_homepage?: Array | undefined | null, fieldSetViewgm31_homepage: string, modelViewgm31_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewgm31_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewgm31_homepage?: GraphQLTypes["Viewgm31_homepage"] | undefined | null, oneAsScalarViewgm31_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewgm3p_homepage?: Array | undefined | null, fieldSetViewgm3p_homepage: string, modelViewgm3p_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewgm3p_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewgm3p_homepage?: GraphQLTypes["Viewgm3p_homepage"] | undefined | null, oneAsScalarViewgm3p_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewgpt_homepage?: Array | undefined | null, fieldSetViewgpt_homepage: string, modelViewgpt_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewgpt_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewgpt_homepage?: GraphQLTypes["Viewgpt_homepage"] | undefined | null, oneAsScalarViewgpt_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewhk45_homepage?: Array | undefined | null, fieldSetViewhk45_homepage: string, modelViewhk45_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewhk45_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewhk45_homepage?: GraphQLTypes["Viewhk45_homepage"] | undefined | null, oneAsScalarViewhk45_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewk2_homepage?: Array | undefined | null, fieldSetViewk2_homepage: string, modelViewk2_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewk2_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewk2_homepage?: GraphQLTypes["Viewk2_homepage"] | undefined | null, oneAsScalarViewk2_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewk2t_homepage?: Array | undefined | null, fieldSetViewk2t_homepage: string, modelViewk2t_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewk2t_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewk2t_homepage?: GraphQLTypes["Viewk2t_homepage"] | undefined | null, oneAsScalarViewk2t_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewmm25_homepage?: Array | undefined | null, fieldSetViewmm25_homepage: string, modelViewmm25_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewmm25_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewmm25_homepage?: GraphQLTypes["Viewmm25_homepage"] | undefined | null, oneAsScalarViewmm25_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewmm25f_homepage?: Array | undefined | null, fieldSetViewmm25f_homepage: string, modelViewmm25f_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewmm25f_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewmm25f_homepage?: GraphQLTypes["Viewmm25f_homepage"] | undefined | null, oneAsScalarViewmm25f_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewop41_homepage?: Array | undefined | null, fieldSetViewop41_homepage: string, modelViewop41_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewop41_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewop41_homepage?: GraphQLTypes["Viewop41_homepage"] | undefined | null, oneAsScalarViewop41_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewop46_homepage?: Array | undefined | null, fieldSetViewop46_homepage: string, modelViewop46_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewop46_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewop46_homepage?: GraphQLTypes["Viewop46_homepage"] | undefined | null, oneAsScalarViewop46_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewopus_homepage?: Array | undefined | null, fieldSetViewopus_homepage: string, modelViewopus_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewopus_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewopus_homepage?: GraphQLTypes["Viewopus_homepage"] | undefined | null, oneAsScalarViewopus_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewpizzeria_homepage?: Array | undefined | null, fieldSetViewpizzeria_homepage: string, modelViewpizzeria_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewpizzeria_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewpizzeria_homepage?: GraphQLTypes["Viewpizzeria_homepage"] | undefined | null, oneAsScalarViewpizzeria_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewsn4_homepage?: Array | undefined | null, fieldSetViewsn4_homepage: string, modelViewsn4_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewsn4_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewsn4_homepage?: GraphQLTypes["Viewsn4_homepage"] | undefined | null, oneAsScalarViewsn4_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewsn45_homepage?: Array | undefined | null, fieldSetViewsn45_homepage: string, modelViewsn45_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewsn45_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewsn45_homepage?: GraphQLTypes["Viewsn45_homepage"] | undefined | null, oneAsScalarViewsn45_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, variantsViewsonnet_homepage?: Array | undefined | null, fieldSetViewsonnet_homepage: string, modelViewsonnet_homepage: GraphQLTypes["ModelNavigationCompiled"], previewFieldsViewsonnet_homepage: GraphQLTypes["ModelNavigationCompiled"], oneViewsonnet_homepage?: GraphQLTypes["Viewsonnet_homepage"] | undefined | null, oneAsScalarViewsonnet_homepage?: GraphQLTypes["ViewAsScalar"] | undefined | null, fieldSetShapeglm_feature_card: string, modelShapeglm_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeglm_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeglm_testimonial: string, modelShapeglm_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeglm_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegpt_feature_card: string, modelShapegpt_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegpt_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegpt_testimonial: string, modelShapegpt_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegpt_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeopus_feature_card: string, modelShapeopus_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeopus_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeopus_testimonial: string, modelShapeopus_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeopus_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesonnet_feature_card: string, modelShapesonnet_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesonnet_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesonnet_testimonial: string, modelShapesonnet_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesonnet_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg52c_feature_card: string, modelShapeg52c_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg52c_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg52c_testimonial: string, modelShapeg52c_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg52c_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg53_feature_card: string, modelShapeg53_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg53_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg53_testimonial: string, modelShapeg53_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg53_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeop46_feature_card: string, modelShapeop46_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeop46_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeop46_testimonial: string, modelShapeop46_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeop46_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapebpk_feature_card: string, modelShapebpk_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapebpk_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapebpk_testimonial: string, modelShapebpk_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapebpk_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeop41_feature_card: string, modelShapeop41_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeop41_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeop41_testimonial: string, modelShapeop41_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeop41_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesn45_feature_card: string, modelShapesn45_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesn45_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesn45_testimonial: string, modelShapesn45_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesn45_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapehk45_feature_card: string, modelShapehk45_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapehk45_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapehk45_testimonial: string, modelShapehk45_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapehk45_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg51c_feature_card: string, modelShapeg51c_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg51c_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg51c_testimonial: string, modelShapeg51c_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg51c_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapemm25_feature_card: string, modelShapemm25_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapemm25_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapemm25_testimonial: string, modelShapemm25_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapemm25_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapek2t_feature_card: string, modelShapek2t_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapek2t_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapek2t_testimonial: string, modelShapek2t_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapek2t_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg52_feature_card: string, modelShapeg52_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg52_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg52_testimonial: string, modelShapeg52_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg52_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg51m_feature_card: string, modelShapeg51m_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg51m_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg51m_testimonial: string, modelShapeg51m_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg51m_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesn4_feature_card: string, modelShapesn4_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesn4_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapesn4_testimonial: string, modelShapesn4_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapesn4_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg5c_feature_card: string, modelShapeg5c_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg5c_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeg5c_testimonial: string, modelShapeg5c_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeg5c_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapemm25f_feature_card: string, modelShapemm25f_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapemm25f_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapemm25f_testimonial: string, modelShapemm25f_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapemm25f_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeglm47_feature_card: string, modelShapeglm47_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeglm47_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapeglm47_testimonial: string, modelShapeglm47_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapeglm47_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapek2_feature_card: string, modelShapek2_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapek2_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapek2_testimonial: string, modelShapek2_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapek2_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegem_feature_card: string, modelShapegem_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegem_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegem_testimonial: string, modelShapegem_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegem_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegm31_feature_card: string, modelShapegm31_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegm31_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegm31_testimonial: string, modelShapegm31_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegm31_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegm3p_feature_card: string, modelShapegm3p_feature_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegm3p_feature_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapegm3p_testimonial: string, modelShapegm3p_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapegm3p_testimonial: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapecontact_info_card: string, modelShapecontact_info_card: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapecontact_info_card: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapepizza_menu_item: string, modelShapepizza_menu_item: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapepizza_menu_item: GraphQLTypes["ModelNavigationCompiled"], fieldSetShapepizza_testimonial: string, modelShapepizza_testimonial: GraphQLTypes["ModelNavigationCompiled"], previewFieldsShapepizza_testimonial: GraphQLTypes["ModelNavigationCompiled"], mediaQuery: GraphQLTypes["MediaConnection"], filesQuery: GraphQLTypes["FileConnection"], ['...on Query']: Omit }; ["AdminMutation"]: { __typename: "AdminMutation", upsertModel?: boolean | undefined | null, removeModel?: boolean | undefined | null, upsertView?: boolean | undefined | null, removeView?: boolean | undefined | null, upsertShape?: boolean | undefined | null, removeShape?: boolean | undefined | null, upsertVersion?: boolean | undefined | null, removeVersion?: boolean | undefined | null, upsertInternalLink?: boolean | undefined | null, removeInternalLink?: boolean | undefined | null, upsertParam?: boolean | undefined | null, removeParam?: boolean | undefined | null, uploadFile?: GraphQLTypes["UploadFileResponseBase"] | undefined | null, uploadImage?: GraphQLTypes["ImageUploadResponse"] | undefined | null, removeFiles?: boolean | undefined | null, removeAllUnusedFiles?: boolean | undefined | null, restore?: boolean | undefined | null, restoreFromBackupKey?: boolean | undefined | null, generateApiKey?: boolean | undefined | null, revokeApiKey?: boolean | undefined | null, translateDocument?: string | undefined | null, translateView?: string | undefined | null, translateForm?: string | undefined | null, generateTailwindClassList?: GraphQLTypes["GenerateTailwindClassList"] | undefined | null, removeWhiteBackground: string, parseFile: GraphQLTypes["ParseFileResponse"], generateContent: string, generateAllContent?: GraphQLTypes["JSON"] | undefined | null, generateContentFromVideoToContent: string, generateImage: string, generateJsonLD: string, captionImage: string, transcribeAudio?: Array | undefined | null, changeLogo?: boolean | undefined | null, removeLogo?: boolean | undefined | null, changeFavicon?: boolean | undefined | null, removeFavicon?: boolean | undefined | null, duplicateAll?: boolean | undefined | null, dupicateModel?: boolean | undefined | null, duplicateView?: boolean | undefined | null, removeModelWithDocuments?: boolean | undefined | null, removeDocumentsWithParams?: number | undefined | null, setTailwind?: string | undefined | null, social?: GraphQLTypes["SocialMutation"] | undefined | null, runAgentTool: GraphQLTypes["AgentToolRunResult"], generateShapePreviewFields?: GraphQLTypes["BakedIpsumData"] | undefined | null, changePasswordWhenLogged: GraphQLTypes["ChangePasswordWhenLoggedResponse"], upserttest?: boolean | undefined | null, removetest?: boolean | undefined | null, duplicatetest?: boolean | undefined | null, upsertViewbpk_homepage?: boolean | undefined | null, removeViewbpk_homepage?: boolean | undefined | null, upsertViewcontact_page?: boolean | undefined | null, removeViewcontact_page?: boolean | undefined | null, upsertViewg5_homepage?: boolean | undefined | null, removeViewg5_homepage?: boolean | undefined | null, upsertViewg51c_homepage?: boolean | undefined | null, removeViewg51c_homepage?: boolean | undefined | null, upsertViewg51m_homepage?: boolean | undefined | null, removeViewg51m_homepage?: boolean | undefined | null, upsertViewg52_homepage?: boolean | undefined | null, removeViewg52_homepage?: boolean | undefined | null, upsertViewg52c_homepage?: boolean | undefined | null, removeViewg52c_homepage?: boolean | undefined | null, upsertViewg53_homepage?: boolean | undefined | null, removeViewg53_homepage?: boolean | undefined | null, upsertViewg5c_homepage?: boolean | undefined | null, removeViewg5c_homepage?: boolean | undefined | null, upsertViewg5n_homepage?: boolean | undefined | null, removeViewg5n_homepage?: boolean | undefined | null, upsertViewgem_homepage?: boolean | undefined | null, removeViewgem_homepage?: boolean | undefined | null, upsertViewglm_homepage?: boolean | undefined | null, removeViewglm_homepage?: boolean | undefined | null, upsertViewglm47_homepage?: boolean | undefined | null, removeViewglm47_homepage?: boolean | undefined | null, upsertViewgm31_homepage?: boolean | undefined | null, removeViewgm31_homepage?: boolean | undefined | null, upsertViewgm3p_homepage?: boolean | undefined | null, removeViewgm3p_homepage?: boolean | undefined | null, upsertViewgpt_homepage?: boolean | undefined | null, removeViewgpt_homepage?: boolean | undefined | null, upsertViewhk45_homepage?: boolean | undefined | null, removeViewhk45_homepage?: boolean | undefined | null, upsertViewk2_homepage?: boolean | undefined | null, removeViewk2_homepage?: boolean | undefined | null, upsertViewk2t_homepage?: boolean | undefined | null, removeViewk2t_homepage?: boolean | undefined | null, upsertViewmm25_homepage?: boolean | undefined | null, removeViewmm25_homepage?: boolean | undefined | null, upsertViewmm25f_homepage?: boolean | undefined | null, removeViewmm25f_homepage?: boolean | undefined | null, upsertViewop41_homepage?: boolean | undefined | null, removeViewop41_homepage?: boolean | undefined | null, upsertViewop46_homepage?: boolean | undefined | null, removeViewop46_homepage?: boolean | undefined | null, upsertViewopus_homepage?: boolean | undefined | null, removeViewopus_homepage?: boolean | undefined | null, upsertViewpizzeria_homepage?: boolean | undefined | null, removeViewpizzeria_homepage?: boolean | undefined | null, upsertViewsn4_homepage?: boolean | undefined | null, removeViewsn4_homepage?: boolean | undefined | null, upsertViewsn45_homepage?: boolean | undefined | null, removeViewsn45_homepage?: boolean | undefined | null, upsertViewsonnet_homepage?: boolean | undefined | null, removeViewsonnet_homepage?: boolean | undefined | null, ['...on AdminMutation']: Omit }; ["test__Connection"]: { __typename: "test__Connection", items?: Array | undefined | null, pageInfo: GraphQLTypes["PageInfo"], ['...on test__Connection']: Omit }; ["test"]: { __typename: "test", _version?: GraphQLTypes["VersionField"] | undefined | null, lolo?: Array | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on test']: Omit }; ["Viewbpk_homepageHero"]: { __typename: "Viewbpk_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewbpk_homepageHero']: Omit }; ["Viewbpk_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewbpk_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewbpk_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewbpk_homepageFeatures_section"]: { __typename: "Viewbpk_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewbpk_homepageFeatures_section']: Omit }; ["Viewbpk_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewbpk_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewbpk_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewbpk_homepageTestimonials_section"]: { __typename: "Viewbpk_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewbpk_homepageTestimonials_section']: Omit }; ["Viewbpk_homepageFooterFooter_inner"]: { __typename: "Viewbpk_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewbpk_homepageFooterFooter_inner']: Omit }; ["Viewbpk_homepageFooter"]: { __typename: "Viewbpk_homepageFooter", footer_inner?: GraphQLTypes["Viewbpk_homepageFooterFooter_inner"] | undefined | null, ['...on Viewbpk_homepageFooter']: Omit }; ["Viewbpk_homepage"]: { __typename: "Viewbpk_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewbpk_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewbpk_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewbpk_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewbpk_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewbpk_homepage']: Omit }; ["Viewcontact_pageHero"]: { __typename: "Viewcontact_pageHero", eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, ['...on Viewcontact_pageHero']: Omit }; ["Viewcontact_pageContact_sectionInfo_cards"]: { __typename: "Viewcontact_pageContact_sectionInfo_cards", cards?: Array | undefined | null, ['...on Viewcontact_pageContact_sectionInfo_cards']: Omit }; ["Viewcontact_pageContact_sectionForm_area"]: { __typename: "Viewcontact_pageContact_sectionForm_area", form_title?: string | undefined | null, form_subtitle?: string | undefined | null, name_label?: string | undefined | null, email_label?: string | undefined | null, subject_label?: string | undefined | null, message_label?: string | undefined | null, submit_text?: string | undefined | null, ['...on Viewcontact_pageContact_sectionForm_area']: Omit }; ["Viewcontact_pageContact_section"]: { __typename: "Viewcontact_pageContact_section", info_cards?: GraphQLTypes["Viewcontact_pageContact_sectionInfo_cards"] | undefined | null, form_area?: GraphQLTypes["Viewcontact_pageContact_sectionForm_area"] | undefined | null, ['...on Viewcontact_pageContact_section']: Omit }; ["Viewcontact_pageMap_sectionOffices"]: { __typename: "Viewcontact_pageMap_sectionOffices", office_1_name?: string | undefined | null, office_1_address?: string | undefined | null, office_2_name?: string | undefined | null, office_2_address?: string | undefined | null, ['...on Viewcontact_pageMap_sectionOffices']: Omit }; ["Viewcontact_pageMap_section"]: { __typename: "Viewcontact_pageMap_section", section_label?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, offices?: GraphQLTypes["Viewcontact_pageMap_sectionOffices"] | undefined | null, ['...on Viewcontact_pageMap_section']: Omit }; ["Viewcontact_pageFooterFooter_inner"]: { __typename: "Viewcontact_pageFooterFooter_inner", brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewcontact_pageFooterFooter_inner']: Omit }; ["Viewcontact_pageFooter"]: { __typename: "Viewcontact_pageFooter", footer_inner?: GraphQLTypes["Viewcontact_pageFooterFooter_inner"] | undefined | null, ['...on Viewcontact_pageFooter']: Omit }; ["Viewcontact_page"]: { __typename: "Viewcontact_page", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewcontact_pageHero"] | undefined | null, contact_section?: GraphQLTypes["Viewcontact_pageContact_section"] | undefined | null, map_section?: GraphQLTypes["Viewcontact_pageMap_section"] | undefined | null, footer?: GraphQLTypes["Viewcontact_pageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewcontact_page']: Omit }; ["Viewg5_homepageHero"]: { __typename: "Viewg5_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg5_homepageHero']: Omit }; ["Viewg5_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg5_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg5_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg5_homepageFeatures_section"]: { __typename: "Viewg5_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg5_homepageFeatures_section']: Omit }; ["Viewg5_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg5_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg5_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg5_homepageTestimonials_section"]: { __typename: "Viewg5_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg5_homepageTestimonials_section']: Omit }; ["Viewg5_homepageFooterFooter_inner"]: { __typename: "Viewg5_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewg5_homepageFooterFooter_inner']: Omit }; ["Viewg5_homepageFooter"]: { __typename: "Viewg5_homepageFooter", footer_inner?: GraphQLTypes["Viewg5_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg5_homepageFooter']: Omit }; ["Viewg5_homepage"]: { __typename: "Viewg5_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg5_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg5_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg5_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg5_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg5_homepage']: Omit }; ["Viewg51c_homepageHero"]: { __typename: "Viewg51c_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg51c_homepageHero']: Omit }; ["Viewg51c_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg51c_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg51c_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg51c_homepageFeatures_section"]: { __typename: "Viewg51c_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg51c_homepageFeatures_section']: Omit }; ["Viewg51c_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg51c_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg51c_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg51c_homepageTestimonials_section"]: { __typename: "Viewg51c_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg51c_homepageTestimonials_section']: Omit }; ["Viewg51c_homepageFooterFooter_inner"]: { __typename: "Viewg51c_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewg51c_homepageFooterFooter_inner']: Omit }; ["Viewg51c_homepageFooter"]: { __typename: "Viewg51c_homepageFooter", footer_inner?: GraphQLTypes["Viewg51c_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg51c_homepageFooter']: Omit }; ["Viewg51c_homepage"]: { __typename: "Viewg51c_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg51c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg51c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg51c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg51c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg51c_homepage']: Omit }; ["Viewg51m_homepageHero"]: { __typename: "Viewg51m_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg51m_homepageHero']: Omit }; ["Viewg51m_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg51m_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg51m_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg51m_homepageFeatures_section"]: { __typename: "Viewg51m_homepageFeatures_section", section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["Viewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg51m_homepageFeatures_section']: Omit }; ["Viewg51m_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg51m_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg51m_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg51m_homepageTestimonials_section"]: { __typename: "Viewg51m_homepageTestimonials_section", section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg51m_homepageTestimonials_section']: Omit }; ["Viewg51m_homepageFooterFooter_inner"]: { __typename: "Viewg51m_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewg51m_homepageFooterFooter_inner']: Omit }; ["Viewg51m_homepageFooter"]: { __typename: "Viewg51m_homepageFooter", footer_inner?: GraphQLTypes["Viewg51m_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg51m_homepageFooter']: Omit }; ["Viewg51m_homepage"]: { __typename: "Viewg51m_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg51m_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg51m_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg51m_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg51m_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg51m_homepage']: Omit }; ["Viewg52_homepageHeroContainerCta_row"]: { __typename: "Viewg52_homepageHeroContainerCta_row", cta_text?: string | undefined | null, cta_link?: string | undefined | null, secondary_note?: string | undefined | null, ['...on Viewg52_homepageHeroContainerCta_row']: Omit }; ["Viewg52_homepageHeroContainer"]: { __typename: "Viewg52_homepageHeroContainer", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_row?: GraphQLTypes["Viewg52_homepageHeroContainerCta_row"] | undefined | null, ['...on Viewg52_homepageHeroContainer']: Omit }; ["Viewg52_homepageHero"]: { __typename: "Viewg52_homepageHero", container?: GraphQLTypes["Viewg52_homepageHeroContainer"] | undefined | null, ['...on Viewg52_homepageHero']: Omit }; ["Viewg52_homepageFeatures_sectionSection_header"]: { __typename: "Viewg52_homepageFeatures_sectionSection_header", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, ['...on Viewg52_homepageFeatures_sectionSection_header']: Omit }; ["Viewg52_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg52_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg52_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg52_homepageFeatures_section"]: { __typename: "Viewg52_homepageFeatures_section", section_header?: GraphQLTypes["Viewg52_homepageFeatures_sectionSection_header"] | undefined | null, features_grid?: GraphQLTypes["Viewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg52_homepageFeatures_section']: Omit }; ["Viewg52_homepageTestimonials_sectionSection_header"]: { __typename: "Viewg52_homepageTestimonials_sectionSection_header", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, ['...on Viewg52_homepageTestimonials_sectionSection_header']: Omit }; ["Viewg52_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg52_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg52_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg52_homepageTestimonials_section"]: { __typename: "Viewg52_homepageTestimonials_section", section_header?: GraphQLTypes["Viewg52_homepageTestimonials_sectionSection_header"] | undefined | null, testimonials_grid?: GraphQLTypes["Viewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg52_homepageTestimonials_section']: Omit }; ["Viewg52_homepageFooterFooter_inner"]: { __typename: "Viewg52_homepageFooterFooter_inner", brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewg52_homepageFooterFooter_inner']: Omit }; ["Viewg52_homepageFooter"]: { __typename: "Viewg52_homepageFooter", footer_inner?: GraphQLTypes["Viewg52_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg52_homepageFooter']: Omit }; ["Viewg52_homepage"]: { __typename: "Viewg52_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg52_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg52_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg52_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg52_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg52_homepage']: Omit }; ["Viewg52c_homepageHero"]: { __typename: "Viewg52c_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg52c_homepageHero']: Omit }; ["Viewg52c_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg52c_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg52c_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg52c_homepageFeatures_section"]: { __typename: "Viewg52c_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg52c_homepageFeatures_section']: Omit }; ["Viewg52c_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg52c_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg52c_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg52c_homepageTestimonials_section"]: { __typename: "Viewg52c_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg52c_homepageTestimonials_section']: Omit }; ["Viewg52c_homepageFooterFooter_inner"]: { __typename: "Viewg52c_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewg52c_homepageFooterFooter_inner']: Omit }; ["Viewg52c_homepageFooter"]: { __typename: "Viewg52c_homepageFooter", footer_inner?: GraphQLTypes["Viewg52c_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg52c_homepageFooter']: Omit }; ["Viewg52c_homepage"]: { __typename: "Viewg52c_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg52c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg52c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg52c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg52c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg52c_homepage']: Omit }; ["Viewg53_homepageHero"]: { __typename: "Viewg53_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg53_homepageHero']: Omit }; ["Viewg53_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg53_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg53_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg53_homepageFeatures_section"]: { __typename: "Viewg53_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg53_homepageFeatures_section']: Omit }; ["Viewg53_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg53_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg53_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg53_homepageTestimonials_section"]: { __typename: "Viewg53_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg53_homepageTestimonials_section']: Omit }; ["Viewg53_homepageFooterFooter_inner"]: { __typename: "Viewg53_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewg53_homepageFooterFooter_inner']: Omit }; ["Viewg53_homepageFooter"]: { __typename: "Viewg53_homepageFooter", footer_inner?: GraphQLTypes["Viewg53_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg53_homepageFooter']: Omit }; ["Viewg53_homepage"]: { __typename: "Viewg53_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg53_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg53_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg53_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg53_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg53_homepage']: Omit }; ["Viewg5c_homepageHero"]: { __typename: "Viewg5c_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewg5c_homepageHero']: Omit }; ["Viewg5c_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewg5c_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewg5c_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewg5c_homepageFeatures_section"]: { __typename: "Viewg5c_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewg5c_homepageFeatures_section']: Omit }; ["Viewg5c_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewg5c_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewg5c_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewg5c_homepageTestimonials_section"]: { __typename: "Viewg5c_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewg5c_homepageTestimonials_section']: Omit }; ["Viewg5c_homepageFooterFooter_innerLinks_group"]: { __typename: "Viewg5c_homepageFooterFooter_innerLinks_group", links?: Array | undefined | null, ['...on Viewg5c_homepageFooterFooter_innerLinks_group']: Omit }; ["Viewg5c_homepageFooterFooter_inner"]: { __typename: "Viewg5c_homepageFooterFooter_inner", copyright?: string | undefined | null, links_group?: GraphQLTypes["Viewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null, ['...on Viewg5c_homepageFooterFooter_inner']: Omit }; ["Viewg5c_homepageFooter"]: { __typename: "Viewg5c_homepageFooter", footer_inner?: GraphQLTypes["Viewg5c_homepageFooterFooter_inner"] | undefined | null, ['...on Viewg5c_homepageFooter']: Omit }; ["Viewg5c_homepage"]: { __typename: "Viewg5c_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewg5c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewg5c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewg5c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewg5c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg5c_homepage']: Omit }; ["Viewg5n_homepage"]: { __typename: "Viewg5n_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: string | undefined | null, features_section?: string | undefined | null, testimonials_section?: string | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewg5n_homepage']: Omit }; ["Viewgem_homepageHero"]: { __typename: "Viewgem_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewgem_homepageHero']: Omit }; ["Viewgem_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewgem_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewgem_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewgem_homepageFeatures_section"]: { __typename: "Viewgem_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewgem_homepageFeatures_section']: Omit }; ["Viewgem_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewgem_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewgem_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewgem_homepageTestimonials_section"]: { __typename: "Viewgem_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewgem_homepageTestimonials_section']: Omit }; ["Viewgem_homepageFooterFooter_inner"]: { __typename: "Viewgem_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewgem_homepageFooterFooter_inner']: Omit }; ["Viewgem_homepageFooter"]: { __typename: "Viewgem_homepageFooter", footer_inner?: GraphQLTypes["Viewgem_homepageFooterFooter_inner"] | undefined | null, ['...on Viewgem_homepageFooter']: Omit }; ["Viewgem_homepage"]: { __typename: "Viewgem_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewgem_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewgem_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewgem_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewgem_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewgem_homepage']: Omit }; ["Viewglm_homepageHero"]: { __typename: "Viewglm_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewglm_homepageHero']: Omit }; ["Viewglm_homepageFeatures_section"]: { __typename: "Viewglm_homepageFeatures_section", section_title?: string | undefined | null, features?: Array | undefined | null, ['...on Viewglm_homepageFeatures_section']: Omit }; ["Viewglm_homepageTestimonials_section"]: { __typename: "Viewglm_homepageTestimonials_section", section_title?: string | undefined | null, testimonials?: Array | undefined | null, ['...on Viewglm_homepageTestimonials_section']: Omit }; ["Viewglm_homepageFooter"]: { __typename: "Viewglm_homepageFooter", logo_text?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewglm_homepageFooter']: Omit }; ["Viewglm_homepage"]: { __typename: "Viewglm_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewglm_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewglm_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewglm_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewglm_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewglm_homepage']: Omit }; ["Viewglm47_homepageHero"]: { __typename: "Viewglm47_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewglm47_homepageHero']: Omit }; ["Viewglm47_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewglm47_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewglm47_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewglm47_homepageFeatures_section"]: { __typename: "Viewglm47_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewglm47_homepageFeatures_section']: Omit }; ["Viewglm47_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewglm47_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewglm47_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewglm47_homepageTestimonials_section"]: { __typename: "Viewglm47_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewglm47_homepageTestimonials_section']: Omit }; ["Viewglm47_homepageFooterFooter_inner"]: { __typename: "Viewglm47_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewglm47_homepageFooterFooter_inner']: Omit }; ["Viewglm47_homepageFooter"]: { __typename: "Viewglm47_homepageFooter", footer_inner?: GraphQLTypes["Viewglm47_homepageFooterFooter_inner"] | undefined | null, ['...on Viewglm47_homepageFooter']: Omit }; ["Viewglm47_homepage"]: { __typename: "Viewglm47_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewglm47_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewglm47_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewglm47_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewglm47_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewglm47_homepage']: Omit }; ["Viewgm31_homepageHero"]: { __typename: "Viewgm31_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewgm31_homepageHero']: Omit }; ["Viewgm31_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewgm31_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewgm31_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewgm31_homepageFeatures_section"]: { __typename: "Viewgm31_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewgm31_homepageFeatures_section']: Omit }; ["Viewgm31_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewgm31_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewgm31_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewgm31_homepageTestimonials_section"]: { __typename: "Viewgm31_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewgm31_homepageTestimonials_section']: Omit }; ["Viewgm31_homepageFooterFooter_innerLinks_container"]: { __typename: "Viewgm31_homepageFooterFooter_innerLinks_container", links?: Array | undefined | null, ['...on Viewgm31_homepageFooterFooter_innerLinks_container']: Omit }; ["Viewgm31_homepageFooterFooter_inner"]: { __typename: "Viewgm31_homepageFooterFooter_inner", copyright?: string | undefined | null, links_container?: GraphQLTypes["Viewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null, ['...on Viewgm31_homepageFooterFooter_inner']: Omit }; ["Viewgm31_homepageFooter"]: { __typename: "Viewgm31_homepageFooter", footer_inner?: GraphQLTypes["Viewgm31_homepageFooterFooter_inner"] | undefined | null, ['...on Viewgm31_homepageFooter']: Omit }; ["Viewgm31_homepage"]: { __typename: "Viewgm31_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewgm31_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewgm31_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewgm31_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewgm31_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewgm31_homepage']: Omit }; ["Viewgm3p_homepageHero"]: { __typename: "Viewgm3p_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewgm3p_homepageHero']: Omit }; ["Viewgm3p_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewgm3p_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewgm3p_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewgm3p_homepageFeatures_section"]: { __typename: "Viewgm3p_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewgm3p_homepageFeatures_section']: Omit }; ["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewgm3p_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewgm3p_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewgm3p_homepageTestimonials_section"]: { __typename: "Viewgm3p_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewgm3p_homepageTestimonials_section']: Omit }; ["Viewgm3p_homepageFooterFooter_inner"]: { __typename: "Viewgm3p_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewgm3p_homepageFooterFooter_inner']: Omit }; ["Viewgm3p_homepageFooter"]: { __typename: "Viewgm3p_homepageFooter", footer_inner?: GraphQLTypes["Viewgm3p_homepageFooterFooter_inner"] | undefined | null, ['...on Viewgm3p_homepageFooter']: Omit }; ["Viewgm3p_homepage"]: { __typename: "Viewgm3p_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewgm3p_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewgm3p_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewgm3p_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewgm3p_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewgm3p_homepage']: Omit }; ["Viewgpt_homepageHero"]: { __typename: "Viewgpt_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, support_text?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewgpt_homepageHero']: Omit }; ["Viewgpt_homepageFeatures_section"]: { __typename: "Viewgpt_homepageFeatures_section", section_title?: string | undefined | null, features?: Array | undefined | null, ['...on Viewgpt_homepageFeatures_section']: Omit }; ["Viewgpt_homepageTestimonials_section"]: { __typename: "Viewgpt_homepageTestimonials_section", section_title?: string | undefined | null, testimonials?: Array | undefined | null, ['...on Viewgpt_homepageTestimonials_section']: Omit }; ["Viewgpt_homepageFooter"]: { __typename: "Viewgpt_homepageFooter", brand_text?: string | undefined | null, description?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewgpt_homepageFooter']: Omit }; ["Viewgpt_homepage"]: { __typename: "Viewgpt_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewgpt_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewgpt_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewgpt_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewgpt_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewgpt_homepage']: Omit }; ["Viewhk45_homepageHero"]: { __typename: "Viewhk45_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewhk45_homepageHero']: Omit }; ["Viewhk45_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewhk45_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewhk45_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewhk45_homepageFeatures_section"]: { __typename: "Viewhk45_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewhk45_homepageFeatures_section']: Omit }; ["Viewhk45_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewhk45_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewhk45_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewhk45_homepageTestimonials_section"]: { __typename: "Viewhk45_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewhk45_homepageTestimonials_section']: Omit }; ["Viewhk45_homepageFooterFooter_inner"]: { __typename: "Viewhk45_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewhk45_homepageFooterFooter_inner']: Omit }; ["Viewhk45_homepageFooter"]: { __typename: "Viewhk45_homepageFooter", footer_inner?: GraphQLTypes["Viewhk45_homepageFooterFooter_inner"] | undefined | null, ['...on Viewhk45_homepageFooter']: Omit }; ["Viewhk45_homepage"]: { __typename: "Viewhk45_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewhk45_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewhk45_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewhk45_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewhk45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewhk45_homepage']: Omit }; ["Viewk2_homepageHero"]: { __typename: "Viewk2_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewk2_homepageHero']: Omit }; ["Viewk2_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewk2_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewk2_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewk2_homepageFeatures_section"]: { __typename: "Viewk2_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewk2_homepageFeatures_section']: Omit }; ["Viewk2_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewk2_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewk2_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewk2_homepageTestimonials_section"]: { __typename: "Viewk2_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewk2_homepageTestimonials_section']: Omit }; ["Viewk2_homepageFooterFooter_inner"]: { __typename: "Viewk2_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewk2_homepageFooterFooter_inner']: Omit }; ["Viewk2_homepageFooter"]: { __typename: "Viewk2_homepageFooter", footer_inner?: GraphQLTypes["Viewk2_homepageFooterFooter_inner"] | undefined | null, ['...on Viewk2_homepageFooter']: Omit }; ["Viewk2_homepage"]: { __typename: "Viewk2_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewk2_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewk2_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewk2_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewk2_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewk2_homepage']: Omit }; ["Viewk2t_homepageHero"]: { __typename: "Viewk2t_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewk2t_homepageHero']: Omit }; ["Viewk2t_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewk2t_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewk2t_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewk2t_homepageFeatures_section"]: { __typename: "Viewk2t_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewk2t_homepageFeatures_section']: Omit }; ["Viewk2t_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewk2t_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewk2t_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewk2t_homepageTestimonials_section"]: { __typename: "Viewk2t_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewk2t_homepageTestimonials_section']: Omit }; ["Viewk2t_homepageFooter"]: { __typename: "Viewk2t_homepageFooter", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewk2t_homepageFooter']: Omit }; ["Viewk2t_homepage"]: { __typename: "Viewk2t_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewk2t_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewk2t_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewk2t_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewk2t_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewk2t_homepage']: Omit }; ["Viewmm25_homepageHero"]: { __typename: "Viewmm25_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewmm25_homepageHero']: Omit }; ["Viewmm25_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewmm25_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewmm25_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewmm25_homepageFeatures_section"]: { __typename: "Viewmm25_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewmm25_homepageFeatures_section']: Omit }; ["Viewmm25_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewmm25_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewmm25_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewmm25_homepageTestimonials_section"]: { __typename: "Viewmm25_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewmm25_homepageTestimonials_section']: Omit }; ["Viewmm25_homepageFooterFooter_inner"]: { __typename: "Viewmm25_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewmm25_homepageFooterFooter_inner']: Omit }; ["Viewmm25_homepageFooter"]: { __typename: "Viewmm25_homepageFooter", footer_inner?: GraphQLTypes["Viewmm25_homepageFooterFooter_inner"] | undefined | null, ['...on Viewmm25_homepageFooter']: Omit }; ["Viewmm25_homepage"]: { __typename: "Viewmm25_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewmm25_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewmm25_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewmm25_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewmm25_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewmm25_homepage']: Omit }; ["Viewmm25f_homepageHero"]: { __typename: "Viewmm25f_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewmm25f_homepageHero']: Omit }; ["Viewmm25f_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewmm25f_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewmm25f_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewmm25f_homepageFeatures_section"]: { __typename: "Viewmm25f_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewmm25f_homepageFeatures_section']: Omit }; ["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewmm25f_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewmm25f_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewmm25f_homepageTestimonials_section"]: { __typename: "Viewmm25f_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewmm25f_homepageTestimonials_section']: Omit }; ["Viewmm25f_homepageFooterFooter_inner"]: { __typename: "Viewmm25f_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewmm25f_homepageFooterFooter_inner']: Omit }; ["Viewmm25f_homepageFooter"]: { __typename: "Viewmm25f_homepageFooter", footer_inner?: GraphQLTypes["Viewmm25f_homepageFooterFooter_inner"] | undefined | null, ['...on Viewmm25f_homepageFooter']: Omit }; ["Viewmm25f_homepage"]: { __typename: "Viewmm25f_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewmm25f_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewmm25f_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewmm25f_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewmm25f_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewmm25f_homepage']: Omit }; ["Viewop41_homepageHero"]: { __typename: "Viewop41_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewop41_homepageHero']: Omit }; ["Viewop41_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewop41_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewop41_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewop41_homepageFeatures_section"]: { __typename: "Viewop41_homepageFeatures_section", section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["Viewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewop41_homepageFeatures_section']: Omit }; ["Viewop41_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewop41_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewop41_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewop41_homepageTestimonials_section"]: { __typename: "Viewop41_homepageTestimonials_section", section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewop41_homepageTestimonials_section']: Omit }; ["Viewop41_homepageFooterFooter_inner"]: { __typename: "Viewop41_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewop41_homepageFooterFooter_inner']: Omit }; ["Viewop41_homepageFooter"]: { __typename: "Viewop41_homepageFooter", footer_inner?: GraphQLTypes["Viewop41_homepageFooterFooter_inner"] | undefined | null, ['...on Viewop41_homepageFooter']: Omit }; ["Viewop41_homepage"]: { __typename: "Viewop41_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewop41_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewop41_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewop41_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewop41_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewop41_homepage']: Omit }; ["Viewop46_homepageHero"]: { __typename: "Viewop46_homepageHero", eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewop46_homepageHero']: Omit }; ["Viewop46_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewop46_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewop46_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewop46_homepageFeatures_section"]: { __typename: "Viewop46_homepageFeatures_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["Viewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewop46_homepageFeatures_section']: Omit }; ["Viewop46_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewop46_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewop46_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewop46_homepageTestimonials_section"]: { __typename: "Viewop46_homepageTestimonials_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewop46_homepageTestimonials_section']: Omit }; ["Viewop46_homepageFooterFooter_inner"]: { __typename: "Viewop46_homepageFooterFooter_inner", brand_name?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewop46_homepageFooterFooter_inner']: Omit }; ["Viewop46_homepageFooter"]: { __typename: "Viewop46_homepageFooter", footer_inner?: GraphQLTypes["Viewop46_homepageFooterFooter_inner"] | undefined | null, ['...on Viewop46_homepageFooter']: Omit }; ["Viewop46_homepage"]: { __typename: "Viewop46_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewop46_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewop46_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewop46_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewop46_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewop46_homepage']: Omit }; ["Viewopus_homepageHero"]: { __typename: "Viewopus_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewopus_homepageHero']: Omit }; ["Viewopus_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewopus_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewopus_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewopus_homepageFeatures_section"]: { __typename: "Viewopus_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewopus_homepageFeatures_section']: Omit }; ["Viewopus_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewopus_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewopus_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewopus_homepageTestimonials_section"]: { __typename: "Viewopus_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewopus_homepageTestimonials_section']: Omit }; ["Viewopus_homepageFooterFooter_content"]: { __typename: "Viewopus_homepageFooterFooter_content", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewopus_homepageFooterFooter_content']: Omit }; ["Viewopus_homepageFooter"]: { __typename: "Viewopus_homepageFooter", footer_content?: GraphQLTypes["Viewopus_homepageFooterFooter_content"] | undefined | null, ['...on Viewopus_homepageFooter']: Omit }; ["Viewopus_homepage"]: { __typename: "Viewopus_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewopus_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewopus_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewopus_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewopus_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewopus_homepage']: Omit }; ["Viewpizzeria_homepageHero"]: { __typename: "Viewpizzeria_homepageHero", bg_image?: string | undefined | null, eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewpizzeria_homepageHero']: Omit }; ["Viewpizzeria_homepageAbout_sectionStats_row"]: { __typename: "Viewpizzeria_homepageAbout_sectionStats_row", stat_1_number?: string | undefined | null, stat_1_label?: string | undefined | null, stat_2_number?: string | undefined | null, stat_2_label?: string | undefined | null, stat_3_number?: string | undefined | null, stat_3_label?: string | undefined | null, stat_4_number?: string | undefined | null, stat_4_label?: string | undefined | null, ['...on Viewpizzeria_homepageAbout_sectionStats_row']: Omit }; ["Viewpizzeria_homepageAbout_section"]: { __typename: "Viewpizzeria_homepageAbout_section", eyebrow?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, stats_row?: GraphQLTypes["Viewpizzeria_homepageAbout_sectionStats_row"] | undefined | null, ['...on Viewpizzeria_homepageAbout_section']: Omit }; ["Viewpizzeria_homepageMenu_sectionMenu_grid"]: { __typename: "Viewpizzeria_homepageMenu_sectionMenu_grid", items?: Array | undefined | null, ['...on Viewpizzeria_homepageMenu_sectionMenu_grid']: Omit }; ["Viewpizzeria_homepageMenu_section"]: { __typename: "Viewpizzeria_homepageMenu_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, menu_grid?: GraphQLTypes["Viewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null, ['...on Viewpizzeria_homepageMenu_section']: Omit }; ["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewpizzeria_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewpizzeria_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewpizzeria_homepageTestimonials_section"]: { __typename: "Viewpizzeria_homepageTestimonials_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewpizzeria_homepageTestimonials_section']: Omit }; ["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { __typename: "Viewpizzeria_homepageFooterFooter_innerLinks_wrapper", links?: Array | undefined | null, ['...on Viewpizzeria_homepageFooterFooter_innerLinks_wrapper']: Omit }; ["Viewpizzeria_homepageFooterFooter_inner"]: { __typename: "Viewpizzeria_homepageFooterFooter_inner", brand?: string | undefined | null, address?: string | undefined | null, copyright?: string | undefined | null, links_wrapper?: GraphQLTypes["Viewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null, ['...on Viewpizzeria_homepageFooterFooter_inner']: Omit }; ["Viewpizzeria_homepageFooter"]: { __typename: "Viewpizzeria_homepageFooter", footer_inner?: GraphQLTypes["Viewpizzeria_homepageFooterFooter_inner"] | undefined | null, ['...on Viewpizzeria_homepageFooter']: Omit }; ["Viewpizzeria_homepage"]: { __typename: "Viewpizzeria_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewpizzeria_homepageHero"] | undefined | null, about_section?: GraphQLTypes["Viewpizzeria_homepageAbout_section"] | undefined | null, menu_section?: GraphQLTypes["Viewpizzeria_homepageMenu_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewpizzeria_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewpizzeria_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewpizzeria_homepage']: Omit }; ["Viewsn4_homepageHero"]: { __typename: "Viewsn4_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewsn4_homepageHero']: Omit }; ["Viewsn4_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewsn4_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewsn4_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewsn4_homepageFeatures_section"]: { __typename: "Viewsn4_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewsn4_homepageFeatures_section']: Omit }; ["Viewsn4_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewsn4_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewsn4_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewsn4_homepageTestimonials_section"]: { __typename: "Viewsn4_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewsn4_homepageTestimonials_section']: Omit }; ["Viewsn4_homepageFooterFooter_inner"]: { __typename: "Viewsn4_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewsn4_homepageFooterFooter_inner']: Omit }; ["Viewsn4_homepageFooter"]: { __typename: "Viewsn4_homepageFooter", footer_inner?: GraphQLTypes["Viewsn4_homepageFooterFooter_inner"] | undefined | null, ['...on Viewsn4_homepageFooter']: Omit }; ["Viewsn4_homepage"]: { __typename: "Viewsn4_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewsn4_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewsn4_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewsn4_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewsn4_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewsn4_homepage']: Omit }; ["Viewsn45_homepageHero"]: { __typename: "Viewsn45_homepageHero", headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null, ['...on Viewsn45_homepageHero']: Omit }; ["Viewsn45_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewsn45_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewsn45_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewsn45_homepageFeatures_section"]: { __typename: "Viewsn45_homepageFeatures_section", section_title?: string | undefined | null, features_grid?: GraphQLTypes["Viewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewsn45_homepageFeatures_section']: Omit }; ["Viewsn45_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewsn45_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewsn45_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewsn45_homepageTestimonials_section"]: { __typename: "Viewsn45_homepageTestimonials_section", section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewsn45_homepageTestimonials_section']: Omit }; ["Viewsn45_homepageFooterFooter_inner"]: { __typename: "Viewsn45_homepageFooterFooter_inner", copyright?: string | undefined | null, links?: Array | undefined | null, ['...on Viewsn45_homepageFooterFooter_inner']: Omit }; ["Viewsn45_homepageFooter"]: { __typename: "Viewsn45_homepageFooter", footer_inner?: GraphQLTypes["Viewsn45_homepageFooterFooter_inner"] | undefined | null, ['...on Viewsn45_homepageFooter']: Omit }; ["Viewsn45_homepage"]: { __typename: "Viewsn45_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewsn45_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewsn45_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewsn45_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewsn45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewsn45_homepage']: Omit }; ["Viewsonnet_homepageHero"]: { __typename: "Viewsonnet_homepageHero", eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_primary_text?: string | undefined | null, cta_primary_link?: string | undefined | null, cta_secondary_text?: string | undefined | null, cta_secondary_link?: string | undefined | null, ['...on Viewsonnet_homepageHero']: Omit }; ["Viewsonnet_homepageFeatures_sectionFeatures_grid"]: { __typename: "Viewsonnet_homepageFeatures_sectionFeatures_grid", features?: Array | undefined | null, ['...on Viewsonnet_homepageFeatures_sectionFeatures_grid']: Omit }; ["Viewsonnet_homepageFeatures_section"]: { __typename: "Viewsonnet_homepageFeatures_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["Viewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null, ['...on Viewsonnet_homepageFeatures_section']: Omit }; ["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { __typename: "Viewsonnet_homepageTestimonials_sectionTestimonials_grid", testimonials?: Array | undefined | null, ['...on Viewsonnet_homepageTestimonials_sectionTestimonials_grid']: Omit }; ["Viewsonnet_homepageTestimonials_section"]: { __typename: "Viewsonnet_homepageTestimonials_section", eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["Viewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null, ['...on Viewsonnet_homepageTestimonials_section']: Omit }; ["Viewsonnet_homepageFooterFooter_inner"]: { __typename: "Viewsonnet_homepageFooterFooter_inner", brand_name?: string | undefined | null, tagline?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null, ['...on Viewsonnet_homepageFooterFooter_inner']: Omit }; ["Viewsonnet_homepageFooter"]: { __typename: "Viewsonnet_homepageFooter", footer_inner?: GraphQLTypes["Viewsonnet_homepageFooterFooter_inner"] | undefined | null, ['...on Viewsonnet_homepageFooter']: Omit }; ["Viewsonnet_homepage"]: { __typename: "Viewsonnet_homepage", _version?: GraphQLTypes["VersionField"] | undefined | null, hero?: GraphQLTypes["Viewsonnet_homepageHero"] | undefined | null, features_section?: GraphQLTypes["Viewsonnet_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["Viewsonnet_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["Viewsonnet_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null, ['...on Viewsonnet_homepage']: Omit }; ["Shapebpk_feature_card"]: { __typename: "Shapebpk_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapebpk_feature_card']: Omit }; ["Shapebpk_testimonial"]: { __typename: "Shapebpk_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapebpk_testimonial']: Omit }; ["Shapecontact_info_card"]: { __typename: "Shapecontact_info_card", icon?: string | undefined | null, title?: string | undefined | null, detail?: string | undefined | null, link?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapecontact_info_card']: Omit }; ["Shapeg51c_feature_card"]: { __typename: "Shapeg51c_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg51c_feature_card']: Omit }; ["Shapeg51c_testimonial"]: { __typename: "Shapeg51c_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg51c_testimonial']: Omit }; ["Shapeg51m_feature_card"]: { __typename: "Shapeg51m_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg51m_feature_card']: Omit }; ["Shapeg51m_testimonial"]: { __typename: "Shapeg51m_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg51m_testimonial']: Omit }; ["Shapeg52_feature_card"]: { __typename: "Shapeg52_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg52_feature_card']: Omit }; ["Shapeg52_testimonial"]: { __typename: "Shapeg52_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg52_testimonial']: Omit }; ["Shapeg52c_feature_card"]: { __typename: "Shapeg52c_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg52c_feature_card']: Omit }; ["Shapeg52c_testimonial"]: { __typename: "Shapeg52c_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg52c_testimonial']: Omit }; ["Shapeg53_feature_card"]: { __typename: "Shapeg53_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg53_feature_card']: Omit }; ["Shapeg53_testimonial"]: { __typename: "Shapeg53_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg53_testimonial']: Omit }; ["Shapeg5c_feature_card"]: { __typename: "Shapeg5c_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg5c_feature_card']: Omit }; ["Shapeg5c_testimonial"]: { __typename: "Shapeg5c_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeg5c_testimonial']: Omit }; ["Shapegem_feature_card"]: { __typename: "Shapegem_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegem_feature_card']: Omit }; ["Shapegem_testimonial"]: { __typename: "Shapegem_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegem_testimonial']: Omit }; ["Shapeglm_feature_card"]: { __typename: "Shapeglm_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeglm_feature_card']: Omit }; ["Shapeglm_testimonial"]: { __typename: "Shapeglm_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, avatar?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeglm_testimonial']: Omit }; ["Shapeglm47_feature_card"]: { __typename: "Shapeglm47_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeglm47_feature_card']: Omit }; ["Shapeglm47_testimonial"]: { __typename: "Shapeglm47_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeglm47_testimonial']: Omit }; ["Shapegm31_feature_card"]: { __typename: "Shapegm31_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegm31_feature_card']: Omit }; ["Shapegm31_testimonial"]: { __typename: "Shapegm31_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegm31_testimonial']: Omit }; ["Shapegm3p_feature_card"]: { __typename: "Shapegm3p_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegm3p_feature_card']: Omit }; ["Shapegm3p_testimonial"]: { __typename: "Shapegm3p_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegm3p_testimonial']: Omit }; ["Shapegpt_feature_card"]: { __typename: "Shapegpt_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegpt_feature_card']: Omit }; ["Shapegpt_testimonial"]: { __typename: "Shapegpt_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapegpt_testimonial']: Omit }; ["Shapehk45_feature_card"]: { __typename: "Shapehk45_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapehk45_feature_card']: Omit }; ["Shapehk45_testimonial"]: { __typename: "Shapehk45_testimonial", quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, author_company?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapehk45_testimonial']: Omit }; ["Shapek2_feature_card"]: { __typename: "Shapek2_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapek2_feature_card']: Omit }; ["Shapek2_testimonial"]: { __typename: "Shapek2_testimonial", name?: string | undefined | null, role?: string | undefined | null, quote?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapek2_testimonial']: Omit }; ["Shapek2t_feature_card"]: { __typename: "Shapek2t_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapek2t_feature_card']: Omit }; ["Shapek2t_testimonial"]: { __typename: "Shapek2t_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapek2t_testimonial']: Omit }; ["Shapemm25_feature_card"]: { __typename: "Shapemm25_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapemm25_feature_card']: Omit }; ["Shapemm25_testimonial"]: { __typename: "Shapemm25_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapemm25_testimonial']: Omit }; ["Shapemm25f_feature_card"]: { __typename: "Shapemm25f_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapemm25f_feature_card']: Omit }; ["Shapemm25f_testimonial"]: { __typename: "Shapemm25f_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapemm25f_testimonial']: Omit }; ["Shapeop41_feature_card"]: { __typename: "Shapeop41_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeop41_feature_card']: Omit }; ["Shapeop41_testimonial"]: { __typename: "Shapeop41_testimonial", quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeop41_testimonial']: Omit }; ["Shapeop46_feature_card"]: { __typename: "Shapeop46_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeop46_feature_card']: Omit }; ["Shapeop46_testimonial"]: { __typename: "Shapeop46_testimonial", quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeop46_testimonial']: Omit }; ["Shapeopus_feature_card"]: { __typename: "Shapeopus_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeopus_feature_card']: Omit }; ["Shapeopus_testimonial"]: { __typename: "Shapeopus_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapeopus_testimonial']: Omit }; ["Shapepizza_menu_item"]: { __typename: "Shapepizza_menu_item", image?: string | undefined | null, name?: string | undefined | null, description?: string | undefined | null, price?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapepizza_menu_item']: Omit }; ["Shapepizza_testimonial"]: { __typename: "Shapepizza_testimonial", quote?: string | undefined | null, author_name?: string | undefined | null, author_location?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapepizza_testimonial']: Omit }; ["Shapesn4_feature_card"]: { __typename: "Shapesn4_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesn4_feature_card']: Omit }; ["Shapesn4_testimonial"]: { __typename: "Shapesn4_testimonial", quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesn4_testimonial']: Omit }; ["Shapesn45_feature_card"]: { __typename: "Shapesn45_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesn45_feature_card']: Omit }; ["Shapesn45_testimonial"]: { __typename: "Shapesn45_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesn45_testimonial']: Omit }; ["Shapesonnet_feature_card"]: { __typename: "Shapesonnet_feature_card", icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesonnet_feature_card']: Omit }; ["Shapesonnet_testimonial"]: { __typename: "Shapesonnet_testimonial", avatar?: string | undefined | null, quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, _id: string, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, ['...on Shapesonnet_testimonial']: Omit }; ["Modifytest"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, lolo?: Array | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewbpk_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewbpk_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewbpk_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewbpk_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewbpk_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewbpk_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewbpk_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewbpk_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewbpk_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewbpk_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewbpk_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewcontact_pageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null }; ["ModifyViewcontact_pageContact_sectionInfo_cards"]: { cards?: Array | undefined | null }; ["ModifyViewcontact_pageContact_sectionForm_area"]: { form_title?: string | undefined | null, form_subtitle?: string | undefined | null, name_label?: string | undefined | null, email_label?: string | undefined | null, subject_label?: string | undefined | null, message_label?: string | undefined | null, submit_text?: string | undefined | null }; ["ModifyViewcontact_pageContact_section"]: { info_cards?: GraphQLTypes["ModifyViewcontact_pageContact_sectionInfo_cards"] | undefined | null, form_area?: GraphQLTypes["ModifyViewcontact_pageContact_sectionForm_area"] | undefined | null }; ["ModifyViewcontact_pageMap_sectionOffices"]: { office_1_name?: string | undefined | null, office_1_address?: string | undefined | null, office_2_name?: string | undefined | null, office_2_address?: string | undefined | null }; ["ModifyViewcontact_pageMap_section"]: { section_label?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, offices?: GraphQLTypes["ModifyViewcontact_pageMap_sectionOffices"] | undefined | null }; ["ModifyViewcontact_pageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewcontact_pageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewcontact_pageFooterFooter_inner"] | undefined | null }; ["ModifyViewcontact_page"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewcontact_pageHero"] | undefined | null, contact_section?: GraphQLTypes["ModifyViewcontact_pageContact_section"] | undefined | null, map_section?: GraphQLTypes["ModifyViewcontact_pageMap_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewcontact_pageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg5_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg5_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg5_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg5_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg5_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg5_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg5_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51c_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg51c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51c_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg51c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg51c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg51c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg51c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg51m_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg51m_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg51m_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg51m_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg51m_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg51m_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg51m_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg51m_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg51m_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg51m_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg51m_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainerCta_row"]: { cta_text?: string | undefined | null, cta_link?: string | undefined | null, secondary_note?: string | undefined | null }; ["ModifyViewg52_homepageHeroContainer"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_row?: GraphQLTypes["ModifyViewg52_homepageHeroContainerCta_row"] | undefined | null }; ["ModifyViewg52_homepageHero"]: { container?: GraphQLTypes["ModifyViewg52_homepageHeroContainer"] | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52_homepageFeatures_section"]: { section_header?: GraphQLTypes["ModifyViewg52_homepageFeatures_sectionSection_header"] | undefined | null, features_grid?: GraphQLTypes["ModifyViewg52_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionSection_header"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null }; ["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52_homepageTestimonials_section"]: { section_header?: GraphQLTypes["ModifyViewg52_homepageTestimonials_sectionSection_header"] | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52_homepageFooterFooter_inner"]: { brand?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewg52_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg52_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg52_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg52_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg52_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg52_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg52c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg52c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg52c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg52c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg52c_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg52c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg52c_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg52c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg52c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg52c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg52c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg53_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg53_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg53_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg53_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg53_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewg53_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg53_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg53_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg53_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg53_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg53_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg53_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5c_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewg5c_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewg5c_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]: { links?: Array | undefined | null }; ["ModifyViewg5c_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_group?: GraphQLTypes["ModifyViewg5c_homepageFooterFooter_innerLinks_group"] | undefined | null }; ["ModifyViewg5c_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewg5c_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewg5c_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewg5c_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewg5c_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewg5c_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewg5c_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewg5n_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: string | undefined | null, features_section?: string | undefined | null, testimonials_section?: string | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgem_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgem_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewgem_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgem_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgem_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgem_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewgem_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgem_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewgem_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewgem_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewgem_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewgem_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewglm_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewglm_homepageFooter"]: { logo_text?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewglm_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewglm_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewglm_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewglm_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewglm_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewglm47_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewglm47_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewglm47_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewglm47_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewglm47_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewglm47_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewglm47_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewglm47_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewglm47_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewglm47_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewglm47_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm31_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm31_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm31_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]: { links?: Array | undefined | null }; ["ModifyViewgm31_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links_container?: GraphQLTypes["ModifyViewgm31_homepageFooterFooter_innerLinks_container"] | undefined | null }; ["ModifyViewgm31_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewgm31_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm31_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewgm31_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewgm31_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewgm31_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewgm31_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgm3p_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewgm3p_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewgm3p_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewgm3p_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewgm3p_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewgm3p_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewgm3p_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewgm3p_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewgm3p_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewgm3p_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewgm3p_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewgpt_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, support_text?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewgpt_homepageFeatures_section"]: { section_title?: string | undefined | null, features?: Array | undefined | null }; ["ModifyViewgpt_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials?: Array | undefined | null }; ["ModifyViewgpt_homepageFooter"]: { brand_text?: string | undefined | null, description?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewgpt_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewgpt_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewgpt_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewgpt_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewgpt_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewhk45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewhk45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewhk45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewhk45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewhk45_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewhk45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewhk45_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewhk45_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewhk45_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewhk45_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewhk45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewk2_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewk2_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewk2_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewk2_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewk2_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewk2_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewk2_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewk2t_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewk2t_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewk2t_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewk2t_homepageFooter"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewk2t_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewk2t_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewk2t_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewk2t_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewk2t_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewmm25_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewmm25_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewmm25_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewmm25_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewmm25_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewmm25f_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewmm25f_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewmm25f_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewmm25f_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewmm25f_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewmm25f_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewmm25f_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewmm25f_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewmm25f_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewmm25f_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewmm25f_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop41_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop41_homepageFeatures_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewop41_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop41_homepageTestimonials_section"]: { section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop41_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewop41_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewop41_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop41_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewop41_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewop41_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewop41_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewop41_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewop46_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewop46_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewop46_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewop46_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewop46_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewop46_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewop46_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewop46_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewop46_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewop46_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewop46_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewop46_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewopus_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewopus_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewopus_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewopus_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewopus_homepageFooterFooter_content"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewopus_homepageFooter"]: { footer_content?: GraphQLTypes["ModifyViewopus_homepageFooterFooter_content"] | undefined | null }; ["ModifyViewopus_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewopus_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewopus_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewopus_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewopus_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewpizzeria_homepageHero"]: { bg_image?: string | undefined | null, eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_sectionStats_row"]: { stat_1_number?: string | undefined | null, stat_1_label?: string | undefined | null, stat_2_number?: string | undefined | null, stat_2_label?: string | undefined | null, stat_3_number?: string | undefined | null, stat_3_label?: string | undefined | null, stat_4_number?: string | undefined | null, stat_4_label?: string | undefined | null }; ["ModifyViewpizzeria_homepageAbout_section"]: { eyebrow?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, stats_row?: GraphQLTypes["ModifyViewpizzeria_homepageAbout_sectionStats_row"] | undefined | null }; ["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]: { items?: Array | undefined | null }; ["ModifyViewpizzeria_homepageMenu_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, menu_grid?: GraphQLTypes["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewpizzeria_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: { links?: Array | undefined | null }; ["ModifyViewpizzeria_homepageFooterFooter_inner"]: { brand?: string | undefined | null, address?: string | undefined | null, copyright?: string | undefined | null, links_wrapper?: GraphQLTypes["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"] | undefined | null }; ["ModifyViewpizzeria_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewpizzeria_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewpizzeria_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewpizzeria_homepageHero"] | undefined | null, about_section?: GraphQLTypes["ModifyViewpizzeria_homepageAbout_section"] | undefined | null, menu_section?: GraphQLTypes["ModifyViewpizzeria_homepageMenu_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewpizzeria_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewpizzeria_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn4_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn4_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn4_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn4_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn4_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewsn4_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn4_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewsn4_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewsn4_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewsn4_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewsn4_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsn45_homepageHero"]: { headline?: string | undefined | null, subtitle?: string | undefined | null, cta_text?: string | undefined | null, cta_link?: string | undefined | null }; ["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsn45_homepageFeatures_section"]: { section_title?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsn45_homepageTestimonials_section"]: { section_title?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsn45_homepageFooterFooter_inner"]: { copyright?: string | undefined | null, links?: Array | undefined | null }; ["ModifyViewsn45_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewsn45_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsn45_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewsn45_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewsn45_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewsn45_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewsn45_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyViewsonnet_homepageHero"]: { eyebrow?: string | undefined | null, headline?: string | undefined | null, subtitle?: string | undefined | null, cta_primary_text?: string | undefined | null, cta_primary_link?: string | undefined | null, cta_secondary_text?: string | undefined | null, cta_secondary_link?: string | undefined | null }; ["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]: { features?: Array | undefined | null }; ["ModifyViewsonnet_homepageFeatures_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, features_grid?: GraphQLTypes["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"] | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]: { testimonials?: Array | undefined | null }; ["ModifyViewsonnet_homepageTestimonials_section"]: { eyebrow?: string | undefined | null, section_title?: string | undefined | null, section_subtitle?: string | undefined | null, testimonials_grid?: GraphQLTypes["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"] | undefined | null }; ["ModifyViewsonnet_homepageFooterFooter_inner"]: { brand_name?: string | undefined | null, tagline?: string | undefined | null, links?: Array | undefined | null, copyright?: string | undefined | null }; ["ModifyViewsonnet_homepageFooter"]: { footer_inner?: GraphQLTypes["ModifyViewsonnet_homepageFooterFooter_inner"] | undefined | null }; ["ModifyViewsonnet_homepage"]: { _version?: GraphQLTypes["CreateVersion"] | undefined | null, hero?: GraphQLTypes["ModifyViewsonnet_homepageHero"] | undefined | null, features_section?: GraphQLTypes["ModifyViewsonnet_homepageFeatures_section"] | undefined | null, testimonials_section?: GraphQLTypes["ModifyViewsonnet_homepageTestimonials_section"] | undefined | null, footer?: GraphQLTypes["ModifyViewsonnet_homepageFooter"] | undefined | null, env?: string | undefined | null, locale?: string | undefined | null, slug?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null, draft_version?: boolean | undefined | null, json_ld?: string | undefined | null }; ["ModifyShapebpk_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapebpk_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapecontact_info_card"]: { icon?: string | undefined | null, title?: string | undefined | null, detail?: string | undefined | null, link?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg51m_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg52c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg53_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeg5c_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegem_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, avatar?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeglm47_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm31_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegm3p_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapegpt_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapehk45_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, author_company?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2_testimonial"]: { name?: string | undefined | null, role?: string | undefined | null, quote?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapek2t_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapemm25f_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop41_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeop46_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapeopus_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_menu_item"]: { image?: string | undefined | null, name?: string | undefined | null, description?: string | undefined | null, price?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapepizza_testimonial"]: { quote?: string | undefined | null, author_name?: string | undefined | null, author_location?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn4_testimonial"]: { quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesn45_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, name?: string | undefined | null, role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_feature_card"]: { icon?: string | undefined | null, title?: string | undefined | null, description?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["ModifyShapesonnet_testimonial"]: { avatar?: string | undefined | null, quote?: string | undefined | null, author_name?: string | undefined | null, author_role?: string | undefined | null, createdAt?: number | undefined | null, updatedAt?: number | undefined | null }; ["RootParamsInput"]: { _version?: string | undefined | null, locale?: string | undefined | null, env?: string | undefined | null }; ["RootParamsEnum"]: RootParamsEnum; ["testSortInput"]: { slug?: GraphQLTypes["Sort"] | undefined | null, createdAt?: GraphQLTypes["Sort"] | undefined | null, updatedAt?: GraphQLTypes["Sort"] | undefined | null }; ["testFilterInput"]: { slug?: GraphQLTypes["FilterInputString"] | undefined | null }; ["Subscription"]: { __typename: "Subscription", agentRun: GraphQLTypes["AgentRunResult"], ['...on Subscription']: Omit }; ["ID"]: "scalar" & { name: "ID" } } export enum Sort { asc = "asc", desc = "desc" } export enum ConditionSetOperator { AND = "AND", OR = "OR" } export enum ConditionOperator { EQUAL = "EQUAL", NOT_EQUAL = "NOT_EQUAL", GREATER = "GREATER", GREATER_EQUAL = "GREATER_EQUAL", LESS = "LESS", LESS_EQUAL = "LESS_EQUAL", EXISTS = "EXISTS", NOT_EXISTS = "NOT_EXISTS", REGEX = "REGEX", NOT_REGEX = "NOT_REGEX" } export enum ConditionType { SET = "SET", PATH = "PATH" } export enum ActionType { SET_VALUE = "SET_VALUE", DISPLAY_VALUE = "DISPLAY_VALUE", SET_DISABLED = "SET_DISABLED" } export enum TailwindLibrary { DAISY = "DAISY" } export enum Languages { ENUS = "ENUS", ENGB = "ENGB", CS = "CS", RU = "RU", ET = "ET", ES = "ES", ZH = "ZH", SK = "SK", SL = "SL", IT = "IT", JA = "JA", ID = "ID", SV = "SV", KO = "KO", TR = "TR", PTBR = "PTBR", PTPT = "PTPT", EL = "EL", DA = "DA", FR = "FR", BG = "BG", LT = "LT", DE = "DE", LV = "LV", NB = "NB", NL = "NL", PL = "PL", FI = "FI", UK = "UK", RO = "RO", HU = "HU" } export enum Formality { less = "less", more = "more", default = "default", prefer_less = "prefer_less", prefer_more = "prefer_more" } export enum ParseFileOutputType { MODEL = "MODEL", SHAPE = "SHAPE" } export enum GenerateImageModel { dalle3_standard = "dalle3_standard", dalle3_hd = "dalle3_hd", dalle2 = "dalle2", gptimage1_low = "gptimage1_low", gptimage1_medium = "gptimage1_medium", gptimage1_high = "gptimage1_high", ideogramv3turbo = "ideogramv3turbo", seedream3 = "seedream3", fluxschnell = "fluxschnell", recraftv3 = "recraftv3", nanobananapro = "nanobananapro" } export enum BackgroundType { auto = "auto", transparent = "transparent", opaque = "opaque" } export enum ImageModelSource { openai = "openai", replicate = "replicate" } export enum GenerateImageSize { _256x256 = "_256x256", _512x512 = "_512x512", _1024x1024 = "_1024x1024", _1536x1024 = "_1536x1024", _1792x1024 = "_1792x1024", _1024x1536 = "_1024x1536", _1024x1792 = "_1024x1792" } export enum GenerateImageStyle { vivid = "vivid", natural = "natural" } export enum ChangePasswordWhenLoggedError { CANNOT_CHANGE_PASSWORD_FOR_USER_REGISTERED_VIA_SOCIAL = "CANNOT_CHANGE_PASSWORD_FOR_USER_REGISTERED_VIA_SOCIAL", OLD_PASSWORD_IS_INVALID = "OLD_PASSWORD_IS_INVALID", PASSWORD_WEAK = "PASSWORD_WEAK" } export enum LoginErrors { CONFIRM_EMAIL_BEFOR_LOGIN = "CONFIRM_EMAIL_BEFOR_LOGIN", INVALID_LOGIN_OR_PASSWORD = "INVALID_LOGIN_OR_PASSWORD", CANNOT_FIND_CONNECTED_USER = "CANNOT_FIND_CONNECTED_USER", YOU_PROVIDED_OTHER_METHOD_OF_LOGIN_ON_THIS_EMAIL = "YOU_PROVIDED_OTHER_METHOD_OF_LOGIN_ON_THIS_EMAIL", UNEXPECTED_ERROR = "UNEXPECTED_ERROR" } export enum CMSRole { ADMIN = "ADMIN", DEVELOPER = "DEVELOPER", CONTENT = "CONTENT" } /** Permission presets for quick setup */ export enum PermissionPreset { VIEWER = "VIEWER", CONTENT = "CONTENT", CONTENT_PUBLISHER = "CONTENT_PUBLISHER", DEVELOPER = "DEVELOPER", ADMIN = "ADMIN", USER_MANAGER = "USER_MANAGER" } /** This enum is defined externally and injected via federation */ export enum CMSType { STRING = "STRING", TITLE = "TITLE", NUMBER = "NUMBER", BOOLEAN = "BOOLEAN", DATE = "DATE", IMAGE = "IMAGE", VIDEO = "VIDEO", CONTENT = "CONTENT", ERROR = "ERROR", IMAGE_URL = "IMAGE_URL", FILE = "FILE", RELATION = "RELATION", SHAPE = "SHAPE", SELECT = "SELECT", OBJECT = "OBJECT", OBJECT_TABS = "OBJECT_TABS", INPUT = "INPUT", BUTTON = "BUTTON", CHECKBOX = "CHECKBOX", VARIABLE = "VARIABLE", LINK = "LINK", SCRIPT = "SCRIPT" } export enum RootParamsEnum { _version = "_version", locale = "locale", env = "env" } type ZEUS_VARIABLES = { ["FilterInputString"]: ValueTypes["FilterInputString"]; ["StructureSortInput"]: ValueTypes["StructureSortInput"]; ["GenerateHusarShapeImplementorInput"]: ValueTypes["GenerateHusarShapeImplementorInput"]; ["ObjectId"]: ValueTypes["ObjectId"]; ["S3Scalar"]: ValueTypes["S3Scalar"]; ["Timestamp"]: ValueTypes["Timestamp"]; ["ModelNavigationCompiled"]: ValueTypes["ModelNavigationCompiled"]; ["BakedIpsumData"]: ValueTypes["BakedIpsumData"]; ["ShapeAsScalar"]: ValueTypes["ShapeAsScalar"]; ["ModelAsScalar"]: ValueTypes["ModelAsScalar"]; ["ViewAsScalar"]: ValueTypes["ViewAsScalar"]; ["FormAsScalar"]: ValueTypes["FormAsScalar"]; ["JSON"]: ValueTypes["JSON"]; ["Sort"]: ValueTypes["Sort"]; ["ConditionSetOperator"]: ValueTypes["ConditionSetOperator"]; ["ConditionOperator"]: ValueTypes["ConditionOperator"]; ["ConditionType"]: ValueTypes["ConditionType"]; ["ActionType"]: ValueTypes["ActionType"]; ["PageInput"]: ValueTypes["PageInput"]; ["RootParamsAdminType"]: ValueTypes["RootParamsAdminType"]; ["TailwindLibrary"]: ValueTypes["TailwindLibrary"]; ["TailwindConfigurationInput"]: ValueTypes["TailwindConfigurationInput"]; ["ImageFieldInput"]: ValueTypes["ImageFieldInput"]; ["VideoFieldInput"]: ValueTypes["VideoFieldInput"]; ["DuplicateDocumentsInput"]: ValueTypes["DuplicateDocumentsInput"]; ["CreateRootCMSParam"]: ValueTypes["CreateRootCMSParam"]; ["CreateVersion"]: ValueTypes["CreateVersion"]; ["CreateInternalLink"]: ValueTypes["CreateInternalLink"]; ["MediaOrderByInput"]: ValueTypes["MediaOrderByInput"]; ["MediaParamsInput"]: ValueTypes["MediaParamsInput"]; ["UploadFileInput"]: ValueTypes["UploadFileInput"]; ["ActionInput"]: ValueTypes["ActionInput"]; ["RuleInput"]: ValueTypes["RuleInput"]; ["InputCMSField"]: ValueTypes["InputCMSField"]; ["InputVisual"]: ValueTypes["InputVisual"]; ["InputCondition"]: ValueTypes["InputCondition"]; ["Languages"]: ValueTypes["Languages"]; ["Formality"]: ValueTypes["Formality"]; ["BackupFile"]: ValueTypes["BackupFile"]; ["GenerateJSONLDInput"]: ValueTypes["GenerateJSONLDInput"]; ["RemoveWhiteBackgroundInput"]: ValueTypes["RemoveWhiteBackgroundInput"]; ["ParseFileOutputType"]: ValueTypes["ParseFileOutputType"]; ["ParseFileInput"]: ValueTypes["ParseFileInput"]; ["GenerateContentFromVideoToContentInput"]: ValueTypes["GenerateContentFromVideoToContentInput"]; ["GenerateContentInput"]: ValueTypes["GenerateContentInput"]; ["GenerateAllContentInput"]: ValueTypes["GenerateAllContentInput"]; ["CaptionImageInput"]: ValueTypes["CaptionImageInput"]; ["TranscribeAudioInput"]: ValueTypes["TranscribeAudioInput"]; ["GenerateImageModel"]: ValueTypes["GenerateImageModel"]; ["BackgroundType"]: ValueTypes["BackgroundType"]; ["ImageModelSource"]: ValueTypes["ImageModelSource"]; ["GenerateImageSize"]: ValueTypes["GenerateImageSize"]; ["GenerateImageStyle"]: ValueTypes["GenerateImageStyle"]; ["GenerateImageInput"]: ValueTypes["GenerateImageInput"]; ["TranslateDocInput"]: ValueTypes["TranslateDocInput"]; ["TranslateViewInput"]: ValueTypes["TranslateViewInput"]; ["TranslateFormInput"]: ValueTypes["TranslateFormInput"]; ["PrefixInput"]: ValueTypes["PrefixInput"]; ["InputFieldInput"]: ValueTypes["InputFieldInput"]; ["LinkFieldInput"]: ValueTypes["LinkFieldInput"]; ["ButtonFieldInput"]: ValueTypes["ButtonFieldInput"]; ["CheckboxFieldInput"]: ValueTypes["CheckboxFieldInput"]; ["VariableFieldInput"]: ValueTypes["VariableFieldInput"]; ["SocialRedditSettingsInput"]: ValueTypes["SocialRedditSettingsInput"]; ["SocialRedditPostConfigurationInput"]: ValueTypes["SocialRedditPostConfigurationInput"]; ["AgentMessageInput"]: ValueTypes["AgentMessageInput"]; ["AgentRunInput"]: ValueTypes["AgentRunInput"]; ["AgentToolRunInput"]: ValueTypes["AgentToolRunInput"]; ["ChangePasswordWhenLoggedError"]: ValueTypes["ChangePasswordWhenLoggedError"]; ["LoginInput"]: ValueTypes["LoginInput"]; ["ChangePasswordWhenLoggedInput"]: ValueTypes["ChangePasswordWhenLoggedInput"]; ["LoginErrors"]: ValueTypes["LoginErrors"]; ["CMSRole"]: ValueTypes["CMSRole"]; ["CreateUser"]: ValueTypes["CreateUser"]; ["EditUser"]: ValueTypes["EditUser"]; ["UpsertUserPermissionsInput"]: ValueTypes["UpsertUserPermissionsInput"]; ["PermissionPreset"]: ValueTypes["PermissionPreset"]; ["CMSType"]: ValueTypes["CMSType"]; ["Modifytest"]: ValueTypes["Modifytest"]; ["ModifyViewbpk_homepageHero"]: ValueTypes["ModifyViewbpk_homepageHero"]; ["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewbpk_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewbpk_homepageFeatures_section"]: ValueTypes["ModifyViewbpk_homepageFeatures_section"]; ["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewbpk_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewbpk_homepageTestimonials_section"]: ValueTypes["ModifyViewbpk_homepageTestimonials_section"]; ["ModifyViewbpk_homepageFooterFooter_inner"]: ValueTypes["ModifyViewbpk_homepageFooterFooter_inner"]; ["ModifyViewbpk_homepageFooter"]: ValueTypes["ModifyViewbpk_homepageFooter"]; ["ModifyViewbpk_homepage"]: ValueTypes["ModifyViewbpk_homepage"]; ["ModifyViewcontact_pageHero"]: ValueTypes["ModifyViewcontact_pageHero"]; ["ModifyViewcontact_pageContact_sectionInfo_cards"]: ValueTypes["ModifyViewcontact_pageContact_sectionInfo_cards"]; ["ModifyViewcontact_pageContact_sectionForm_area"]: ValueTypes["ModifyViewcontact_pageContact_sectionForm_area"]; ["ModifyViewcontact_pageContact_section"]: ValueTypes["ModifyViewcontact_pageContact_section"]; ["ModifyViewcontact_pageMap_sectionOffices"]: ValueTypes["ModifyViewcontact_pageMap_sectionOffices"]; ["ModifyViewcontact_pageMap_section"]: ValueTypes["ModifyViewcontact_pageMap_section"]; ["ModifyViewcontact_pageFooterFooter_inner"]: ValueTypes["ModifyViewcontact_pageFooterFooter_inner"]; ["ModifyViewcontact_pageFooter"]: ValueTypes["ModifyViewcontact_pageFooter"]; ["ModifyViewcontact_page"]: ValueTypes["ModifyViewcontact_page"]; ["ModifyViewg5_homepageHero"]: ValueTypes["ModifyViewg5_homepageHero"]; ["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg5_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg5_homepageFeatures_section"]: ValueTypes["ModifyViewg5_homepageFeatures_section"]; ["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg5_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg5_homepageTestimonials_section"]: ValueTypes["ModifyViewg5_homepageTestimonials_section"]; ["ModifyViewg5_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg5_homepageFooterFooter_inner"]; ["ModifyViewg5_homepageFooter"]: ValueTypes["ModifyViewg5_homepageFooter"]; ["ModifyViewg5_homepage"]: ValueTypes["ModifyViewg5_homepage"]; ["ModifyViewg51c_homepageHero"]: ValueTypes["ModifyViewg51c_homepageHero"]; ["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg51c_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg51c_homepageFeatures_section"]: ValueTypes["ModifyViewg51c_homepageFeatures_section"]; ["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg51c_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg51c_homepageTestimonials_section"]: ValueTypes["ModifyViewg51c_homepageTestimonials_section"]; ["ModifyViewg51c_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg51c_homepageFooterFooter_inner"]; ["ModifyViewg51c_homepageFooter"]: ValueTypes["ModifyViewg51c_homepageFooter"]; ["ModifyViewg51c_homepage"]: ValueTypes["ModifyViewg51c_homepage"]; ["ModifyViewg51m_homepageHero"]: ValueTypes["ModifyViewg51m_homepageHero"]; ["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg51m_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg51m_homepageFeatures_section"]: ValueTypes["ModifyViewg51m_homepageFeatures_section"]; ["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg51m_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg51m_homepageTestimonials_section"]: ValueTypes["ModifyViewg51m_homepageTestimonials_section"]; ["ModifyViewg51m_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg51m_homepageFooterFooter_inner"]; ["ModifyViewg51m_homepageFooter"]: ValueTypes["ModifyViewg51m_homepageFooter"]; ["ModifyViewg51m_homepage"]: ValueTypes["ModifyViewg51m_homepage"]; ["ModifyViewg52_homepageHeroContainerCta_row"]: ValueTypes["ModifyViewg52_homepageHeroContainerCta_row"]; ["ModifyViewg52_homepageHeroContainer"]: ValueTypes["ModifyViewg52_homepageHeroContainer"]; ["ModifyViewg52_homepageHero"]: ValueTypes["ModifyViewg52_homepageHero"]; ["ModifyViewg52_homepageFeatures_sectionSection_header"]: ValueTypes["ModifyViewg52_homepageFeatures_sectionSection_header"]; ["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg52_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg52_homepageFeatures_section"]: ValueTypes["ModifyViewg52_homepageFeatures_section"]; ["ModifyViewg52_homepageTestimonials_sectionSection_header"]: ValueTypes["ModifyViewg52_homepageTestimonials_sectionSection_header"]; ["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg52_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg52_homepageTestimonials_section"]: ValueTypes["ModifyViewg52_homepageTestimonials_section"]; ["ModifyViewg52_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg52_homepageFooterFooter_inner"]; ["ModifyViewg52_homepageFooter"]: ValueTypes["ModifyViewg52_homepageFooter"]; ["ModifyViewg52_homepage"]: ValueTypes["ModifyViewg52_homepage"]; ["ModifyViewg52c_homepageHero"]: ValueTypes["ModifyViewg52c_homepageHero"]; ["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg52c_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg52c_homepageFeatures_section"]: ValueTypes["ModifyViewg52c_homepageFeatures_section"]; ["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg52c_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg52c_homepageTestimonials_section"]: ValueTypes["ModifyViewg52c_homepageTestimonials_section"]; ["ModifyViewg52c_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg52c_homepageFooterFooter_inner"]; ["ModifyViewg52c_homepageFooter"]: ValueTypes["ModifyViewg52c_homepageFooter"]; ["ModifyViewg52c_homepage"]: ValueTypes["ModifyViewg52c_homepage"]; ["ModifyViewg53_homepageHero"]: ValueTypes["ModifyViewg53_homepageHero"]; ["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg53_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg53_homepageFeatures_section"]: ValueTypes["ModifyViewg53_homepageFeatures_section"]; ["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg53_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg53_homepageTestimonials_section"]: ValueTypes["ModifyViewg53_homepageTestimonials_section"]; ["ModifyViewg53_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg53_homepageFooterFooter_inner"]; ["ModifyViewg53_homepageFooter"]: ValueTypes["ModifyViewg53_homepageFooter"]; ["ModifyViewg53_homepage"]: ValueTypes["ModifyViewg53_homepage"]; ["ModifyViewg5c_homepageHero"]: ValueTypes["ModifyViewg5c_homepageHero"]; ["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewg5c_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewg5c_homepageFeatures_section"]: ValueTypes["ModifyViewg5c_homepageFeatures_section"]; ["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewg5c_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewg5c_homepageTestimonials_section"]: ValueTypes["ModifyViewg5c_homepageTestimonials_section"]; ["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]: ValueTypes["ModifyViewg5c_homepageFooterFooter_innerLinks_group"]; ["ModifyViewg5c_homepageFooterFooter_inner"]: ValueTypes["ModifyViewg5c_homepageFooterFooter_inner"]; ["ModifyViewg5c_homepageFooter"]: ValueTypes["ModifyViewg5c_homepageFooter"]; ["ModifyViewg5c_homepage"]: ValueTypes["ModifyViewg5c_homepage"]; ["ModifyViewg5n_homepage"]: ValueTypes["ModifyViewg5n_homepage"]; ["ModifyViewgem_homepageHero"]: ValueTypes["ModifyViewgem_homepageHero"]; ["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewgem_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewgem_homepageFeatures_section"]: ValueTypes["ModifyViewgem_homepageFeatures_section"]; ["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewgem_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewgem_homepageTestimonials_section"]: ValueTypes["ModifyViewgem_homepageTestimonials_section"]; ["ModifyViewgem_homepageFooterFooter_inner"]: ValueTypes["ModifyViewgem_homepageFooterFooter_inner"]; ["ModifyViewgem_homepageFooter"]: ValueTypes["ModifyViewgem_homepageFooter"]; ["ModifyViewgem_homepage"]: ValueTypes["ModifyViewgem_homepage"]; ["ModifyViewglm_homepageHero"]: ValueTypes["ModifyViewglm_homepageHero"]; ["ModifyViewglm_homepageFeatures_section"]: ValueTypes["ModifyViewglm_homepageFeatures_section"]; ["ModifyViewglm_homepageTestimonials_section"]: ValueTypes["ModifyViewglm_homepageTestimonials_section"]; ["ModifyViewglm_homepageFooter"]: ValueTypes["ModifyViewglm_homepageFooter"]; ["ModifyViewglm_homepage"]: ValueTypes["ModifyViewglm_homepage"]; ["ModifyViewglm47_homepageHero"]: ValueTypes["ModifyViewglm47_homepageHero"]; ["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewglm47_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewglm47_homepageFeatures_section"]: ValueTypes["ModifyViewglm47_homepageFeatures_section"]; ["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewglm47_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewglm47_homepageTestimonials_section"]: ValueTypes["ModifyViewglm47_homepageTestimonials_section"]; ["ModifyViewglm47_homepageFooterFooter_inner"]: ValueTypes["ModifyViewglm47_homepageFooterFooter_inner"]; ["ModifyViewglm47_homepageFooter"]: ValueTypes["ModifyViewglm47_homepageFooter"]; ["ModifyViewglm47_homepage"]: ValueTypes["ModifyViewglm47_homepage"]; ["ModifyViewgm31_homepageHero"]: ValueTypes["ModifyViewgm31_homepageHero"]; ["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewgm31_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewgm31_homepageFeatures_section"]: ValueTypes["ModifyViewgm31_homepageFeatures_section"]; ["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewgm31_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewgm31_homepageTestimonials_section"]: ValueTypes["ModifyViewgm31_homepageTestimonials_section"]; ["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]: ValueTypes["ModifyViewgm31_homepageFooterFooter_innerLinks_container"]; ["ModifyViewgm31_homepageFooterFooter_inner"]: ValueTypes["ModifyViewgm31_homepageFooterFooter_inner"]; ["ModifyViewgm31_homepageFooter"]: ValueTypes["ModifyViewgm31_homepageFooter"]; ["ModifyViewgm31_homepage"]: ValueTypes["ModifyViewgm31_homepage"]; ["ModifyViewgm3p_homepageHero"]: ValueTypes["ModifyViewgm3p_homepageHero"]; ["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewgm3p_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewgm3p_homepageFeatures_section"]: ValueTypes["ModifyViewgm3p_homepageFeatures_section"]; ["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewgm3p_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewgm3p_homepageTestimonials_section"]: ValueTypes["ModifyViewgm3p_homepageTestimonials_section"]; ["ModifyViewgm3p_homepageFooterFooter_inner"]: ValueTypes["ModifyViewgm3p_homepageFooterFooter_inner"]; ["ModifyViewgm3p_homepageFooter"]: ValueTypes["ModifyViewgm3p_homepageFooter"]; ["ModifyViewgm3p_homepage"]: ValueTypes["ModifyViewgm3p_homepage"]; ["ModifyViewgpt_homepageHero"]: ValueTypes["ModifyViewgpt_homepageHero"]; ["ModifyViewgpt_homepageFeatures_section"]: ValueTypes["ModifyViewgpt_homepageFeatures_section"]; ["ModifyViewgpt_homepageTestimonials_section"]: ValueTypes["ModifyViewgpt_homepageTestimonials_section"]; ["ModifyViewgpt_homepageFooter"]: ValueTypes["ModifyViewgpt_homepageFooter"]; ["ModifyViewgpt_homepage"]: ValueTypes["ModifyViewgpt_homepage"]; ["ModifyViewhk45_homepageHero"]: ValueTypes["ModifyViewhk45_homepageHero"]; ["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewhk45_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewhk45_homepageFeatures_section"]: ValueTypes["ModifyViewhk45_homepageFeatures_section"]; ["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewhk45_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewhk45_homepageTestimonials_section"]: ValueTypes["ModifyViewhk45_homepageTestimonials_section"]; ["ModifyViewhk45_homepageFooterFooter_inner"]: ValueTypes["ModifyViewhk45_homepageFooterFooter_inner"]; ["ModifyViewhk45_homepageFooter"]: ValueTypes["ModifyViewhk45_homepageFooter"]; ["ModifyViewhk45_homepage"]: ValueTypes["ModifyViewhk45_homepage"]; ["ModifyViewk2_homepageHero"]: ValueTypes["ModifyViewk2_homepageHero"]; ["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewk2_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewk2_homepageFeatures_section"]: ValueTypes["ModifyViewk2_homepageFeatures_section"]; ["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewk2_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewk2_homepageTestimonials_section"]: ValueTypes["ModifyViewk2_homepageTestimonials_section"]; ["ModifyViewk2_homepageFooterFooter_inner"]: ValueTypes["ModifyViewk2_homepageFooterFooter_inner"]; ["ModifyViewk2_homepageFooter"]: ValueTypes["ModifyViewk2_homepageFooter"]; ["ModifyViewk2_homepage"]: ValueTypes["ModifyViewk2_homepage"]; ["ModifyViewk2t_homepageHero"]: ValueTypes["ModifyViewk2t_homepageHero"]; ["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewk2t_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewk2t_homepageFeatures_section"]: ValueTypes["ModifyViewk2t_homepageFeatures_section"]; ["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewk2t_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewk2t_homepageTestimonials_section"]: ValueTypes["ModifyViewk2t_homepageTestimonials_section"]; ["ModifyViewk2t_homepageFooter"]: ValueTypes["ModifyViewk2t_homepageFooter"]; ["ModifyViewk2t_homepage"]: ValueTypes["ModifyViewk2t_homepage"]; ["ModifyViewmm25_homepageHero"]: ValueTypes["ModifyViewmm25_homepageHero"]; ["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewmm25_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewmm25_homepageFeatures_section"]: ValueTypes["ModifyViewmm25_homepageFeatures_section"]; ["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewmm25_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewmm25_homepageTestimonials_section"]: ValueTypes["ModifyViewmm25_homepageTestimonials_section"]; ["ModifyViewmm25_homepageFooterFooter_inner"]: ValueTypes["ModifyViewmm25_homepageFooterFooter_inner"]; ["ModifyViewmm25_homepageFooter"]: ValueTypes["ModifyViewmm25_homepageFooter"]; ["ModifyViewmm25_homepage"]: ValueTypes["ModifyViewmm25_homepage"]; ["ModifyViewmm25f_homepageHero"]: ValueTypes["ModifyViewmm25f_homepageHero"]; ["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewmm25f_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewmm25f_homepageFeatures_section"]: ValueTypes["ModifyViewmm25f_homepageFeatures_section"]; ["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewmm25f_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewmm25f_homepageTestimonials_section"]: ValueTypes["ModifyViewmm25f_homepageTestimonials_section"]; ["ModifyViewmm25f_homepageFooterFooter_inner"]: ValueTypes["ModifyViewmm25f_homepageFooterFooter_inner"]; ["ModifyViewmm25f_homepageFooter"]: ValueTypes["ModifyViewmm25f_homepageFooter"]; ["ModifyViewmm25f_homepage"]: ValueTypes["ModifyViewmm25f_homepage"]; ["ModifyViewop41_homepageHero"]: ValueTypes["ModifyViewop41_homepageHero"]; ["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewop41_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewop41_homepageFeatures_section"]: ValueTypes["ModifyViewop41_homepageFeatures_section"]; ["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewop41_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewop41_homepageTestimonials_section"]: ValueTypes["ModifyViewop41_homepageTestimonials_section"]; ["ModifyViewop41_homepageFooterFooter_inner"]: ValueTypes["ModifyViewop41_homepageFooterFooter_inner"]; ["ModifyViewop41_homepageFooter"]: ValueTypes["ModifyViewop41_homepageFooter"]; ["ModifyViewop41_homepage"]: ValueTypes["ModifyViewop41_homepage"]; ["ModifyViewop46_homepageHero"]: ValueTypes["ModifyViewop46_homepageHero"]; ["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewop46_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewop46_homepageFeatures_section"]: ValueTypes["ModifyViewop46_homepageFeatures_section"]; ["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewop46_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewop46_homepageTestimonials_section"]: ValueTypes["ModifyViewop46_homepageTestimonials_section"]; ["ModifyViewop46_homepageFooterFooter_inner"]: ValueTypes["ModifyViewop46_homepageFooterFooter_inner"]; ["ModifyViewop46_homepageFooter"]: ValueTypes["ModifyViewop46_homepageFooter"]; ["ModifyViewop46_homepage"]: ValueTypes["ModifyViewop46_homepage"]; ["ModifyViewopus_homepageHero"]: ValueTypes["ModifyViewopus_homepageHero"]; ["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewopus_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewopus_homepageFeatures_section"]: ValueTypes["ModifyViewopus_homepageFeatures_section"]; ["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewopus_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewopus_homepageTestimonials_section"]: ValueTypes["ModifyViewopus_homepageTestimonials_section"]; ["ModifyViewopus_homepageFooterFooter_content"]: ValueTypes["ModifyViewopus_homepageFooterFooter_content"]; ["ModifyViewopus_homepageFooter"]: ValueTypes["ModifyViewopus_homepageFooter"]; ["ModifyViewopus_homepage"]: ValueTypes["ModifyViewopus_homepage"]; ["ModifyViewpizzeria_homepageHero"]: ValueTypes["ModifyViewpizzeria_homepageHero"]; ["ModifyViewpizzeria_homepageAbout_sectionStats_row"]: ValueTypes["ModifyViewpizzeria_homepageAbout_sectionStats_row"]; ["ModifyViewpizzeria_homepageAbout_section"]: ValueTypes["ModifyViewpizzeria_homepageAbout_section"]; ["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]: ValueTypes["ModifyViewpizzeria_homepageMenu_sectionMenu_grid"]; ["ModifyViewpizzeria_homepageMenu_section"]: ValueTypes["ModifyViewpizzeria_homepageMenu_section"]; ["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewpizzeria_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewpizzeria_homepageTestimonials_section"]: ValueTypes["ModifyViewpizzeria_homepageTestimonials_section"]; ["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]: ValueTypes["ModifyViewpizzeria_homepageFooterFooter_innerLinks_wrapper"]; ["ModifyViewpizzeria_homepageFooterFooter_inner"]: ValueTypes["ModifyViewpizzeria_homepageFooterFooter_inner"]; ["ModifyViewpizzeria_homepageFooter"]: ValueTypes["ModifyViewpizzeria_homepageFooter"]; ["ModifyViewpizzeria_homepage"]: ValueTypes["ModifyViewpizzeria_homepage"]; ["ModifyViewsn4_homepageHero"]: ValueTypes["ModifyViewsn4_homepageHero"]; ["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewsn4_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewsn4_homepageFeatures_section"]: ValueTypes["ModifyViewsn4_homepageFeatures_section"]; ["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewsn4_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewsn4_homepageTestimonials_section"]: ValueTypes["ModifyViewsn4_homepageTestimonials_section"]; ["ModifyViewsn4_homepageFooterFooter_inner"]: ValueTypes["ModifyViewsn4_homepageFooterFooter_inner"]; ["ModifyViewsn4_homepageFooter"]: ValueTypes["ModifyViewsn4_homepageFooter"]; ["ModifyViewsn4_homepage"]: ValueTypes["ModifyViewsn4_homepage"]; ["ModifyViewsn45_homepageHero"]: ValueTypes["ModifyViewsn45_homepageHero"]; ["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewsn45_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewsn45_homepageFeatures_section"]: ValueTypes["ModifyViewsn45_homepageFeatures_section"]; ["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewsn45_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewsn45_homepageTestimonials_section"]: ValueTypes["ModifyViewsn45_homepageTestimonials_section"]; ["ModifyViewsn45_homepageFooterFooter_inner"]: ValueTypes["ModifyViewsn45_homepageFooterFooter_inner"]; ["ModifyViewsn45_homepageFooter"]: ValueTypes["ModifyViewsn45_homepageFooter"]; ["ModifyViewsn45_homepage"]: ValueTypes["ModifyViewsn45_homepage"]; ["ModifyViewsonnet_homepageHero"]: ValueTypes["ModifyViewsonnet_homepageHero"]; ["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]: ValueTypes["ModifyViewsonnet_homepageFeatures_sectionFeatures_grid"]; ["ModifyViewsonnet_homepageFeatures_section"]: ValueTypes["ModifyViewsonnet_homepageFeatures_section"]; ["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]: ValueTypes["ModifyViewsonnet_homepageTestimonials_sectionTestimonials_grid"]; ["ModifyViewsonnet_homepageTestimonials_section"]: ValueTypes["ModifyViewsonnet_homepageTestimonials_section"]; ["ModifyViewsonnet_homepageFooterFooter_inner"]: ValueTypes["ModifyViewsonnet_homepageFooterFooter_inner"]; ["ModifyViewsonnet_homepageFooter"]: ValueTypes["ModifyViewsonnet_homepageFooter"]; ["ModifyViewsonnet_homepage"]: ValueTypes["ModifyViewsonnet_homepage"]; ["ModifyShapebpk_feature_card"]: ValueTypes["ModifyShapebpk_feature_card"]; ["ModifyShapebpk_testimonial"]: ValueTypes["ModifyShapebpk_testimonial"]; ["ModifyShapecontact_info_card"]: ValueTypes["ModifyShapecontact_info_card"]; ["ModifyShapeg51c_feature_card"]: ValueTypes["ModifyShapeg51c_feature_card"]; ["ModifyShapeg51c_testimonial"]: ValueTypes["ModifyShapeg51c_testimonial"]; ["ModifyShapeg51m_feature_card"]: ValueTypes["ModifyShapeg51m_feature_card"]; ["ModifyShapeg51m_testimonial"]: ValueTypes["ModifyShapeg51m_testimonial"]; ["ModifyShapeg52_feature_card"]: ValueTypes["ModifyShapeg52_feature_card"]; ["ModifyShapeg52_testimonial"]: ValueTypes["ModifyShapeg52_testimonial"]; ["ModifyShapeg52c_feature_card"]: ValueTypes["ModifyShapeg52c_feature_card"]; ["ModifyShapeg52c_testimonial"]: ValueTypes["ModifyShapeg52c_testimonial"]; ["ModifyShapeg53_feature_card"]: ValueTypes["ModifyShapeg53_feature_card"]; ["ModifyShapeg53_testimonial"]: ValueTypes["ModifyShapeg53_testimonial"]; ["ModifyShapeg5c_feature_card"]: ValueTypes["ModifyShapeg5c_feature_card"]; ["ModifyShapeg5c_testimonial"]: ValueTypes["ModifyShapeg5c_testimonial"]; ["ModifyShapegem_feature_card"]: ValueTypes["ModifyShapegem_feature_card"]; ["ModifyShapegem_testimonial"]: ValueTypes["ModifyShapegem_testimonial"]; ["ModifyShapeglm_feature_card"]: ValueTypes["ModifyShapeglm_feature_card"]; ["ModifyShapeglm_testimonial"]: ValueTypes["ModifyShapeglm_testimonial"]; ["ModifyShapeglm47_feature_card"]: ValueTypes["ModifyShapeglm47_feature_card"]; ["ModifyShapeglm47_testimonial"]: ValueTypes["ModifyShapeglm47_testimonial"]; ["ModifyShapegm31_feature_card"]: ValueTypes["ModifyShapegm31_feature_card"]; ["ModifyShapegm31_testimonial"]: ValueTypes["ModifyShapegm31_testimonial"]; ["ModifyShapegm3p_feature_card"]: ValueTypes["ModifyShapegm3p_feature_card"]; ["ModifyShapegm3p_testimonial"]: ValueTypes["ModifyShapegm3p_testimonial"]; ["ModifyShapegpt_feature_card"]: ValueTypes["ModifyShapegpt_feature_card"]; ["ModifyShapegpt_testimonial"]: ValueTypes["ModifyShapegpt_testimonial"]; ["ModifyShapehk45_feature_card"]: ValueTypes["ModifyShapehk45_feature_card"]; ["ModifyShapehk45_testimonial"]: ValueTypes["ModifyShapehk45_testimonial"]; ["ModifyShapek2_feature_card"]: ValueTypes["ModifyShapek2_feature_card"]; ["ModifyShapek2_testimonial"]: ValueTypes["ModifyShapek2_testimonial"]; ["ModifyShapek2t_feature_card"]: ValueTypes["ModifyShapek2t_feature_card"]; ["ModifyShapek2t_testimonial"]: ValueTypes["ModifyShapek2t_testimonial"]; ["ModifyShapemm25_feature_card"]: ValueTypes["ModifyShapemm25_feature_card"]; ["ModifyShapemm25_testimonial"]: ValueTypes["ModifyShapemm25_testimonial"]; ["ModifyShapemm25f_feature_card"]: ValueTypes["ModifyShapemm25f_feature_card"]; ["ModifyShapemm25f_testimonial"]: ValueTypes["ModifyShapemm25f_testimonial"]; ["ModifyShapeop41_feature_card"]: ValueTypes["ModifyShapeop41_feature_card"]; ["ModifyShapeop41_testimonial"]: ValueTypes["ModifyShapeop41_testimonial"]; ["ModifyShapeop46_feature_card"]: ValueTypes["ModifyShapeop46_feature_card"]; ["ModifyShapeop46_testimonial"]: ValueTypes["ModifyShapeop46_testimonial"]; ["ModifyShapeopus_feature_card"]: ValueTypes["ModifyShapeopus_feature_card"]; ["ModifyShapeopus_testimonial"]: ValueTypes["ModifyShapeopus_testimonial"]; ["ModifyShapepizza_menu_item"]: ValueTypes["ModifyShapepizza_menu_item"]; ["ModifyShapepizza_testimonial"]: ValueTypes["ModifyShapepizza_testimonial"]; ["ModifyShapesn4_feature_card"]: ValueTypes["ModifyShapesn4_feature_card"]; ["ModifyShapesn4_testimonial"]: ValueTypes["ModifyShapesn4_testimonial"]; ["ModifyShapesn45_feature_card"]: ValueTypes["ModifyShapesn45_feature_card"]; ["ModifyShapesn45_testimonial"]: ValueTypes["ModifyShapesn45_testimonial"]; ["ModifyShapesonnet_feature_card"]: ValueTypes["ModifyShapesonnet_feature_card"]; ["ModifyShapesonnet_testimonial"]: ValueTypes["ModifyShapesonnet_testimonial"]; ["RootParamsInput"]: ValueTypes["RootParamsInput"]; ["RootParamsEnum"]: ValueTypes["RootParamsEnum"]; ["testSortInput"]: ValueTypes["testSortInput"]; ["testFilterInput"]: ValueTypes["testFilterInput"]; ["ID"]: ValueTypes["ID"]; }