Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
97 lines
1.8 KiB
Text
97 lines
1.8 KiB
Text
import type { $SchemaRef, SchemaTraits } from "../schema/schema";
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdSimple = 0;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdList = 1;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdMap = 2;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdStruct = 3;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdUnion = 4;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdError = -3;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchemaIdOperation = 9;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSchema = StaticSimpleSchema | StaticListSchema | StaticMapSchema | StaticStructureSchema | StaticUnionSchema | StaticErrorSchema | StaticOperationSchema;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type ShapeName = string;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type ShapeNamespace = string;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticSimpleSchema = [StaticSchemaIdSimple, ShapeNamespace, ShapeName, SchemaTraits, $SchemaRef];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticListSchema = [StaticSchemaIdList, ShapeNamespace, ShapeName, SchemaTraits, $SchemaRef];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticMapSchema = [StaticSchemaIdMap, ShapeNamespace, ShapeName, SchemaTraits, $SchemaRef, $SchemaRef];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticStructureSchema = [
|
|
StaticSchemaIdStruct,
|
|
ShapeNamespace,
|
|
ShapeName,
|
|
SchemaTraits,
|
|
string[],
|
|
$SchemaRef[]
|
|
];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticUnionSchema = [
|
|
StaticSchemaIdUnion,
|
|
ShapeNamespace,
|
|
ShapeName,
|
|
SchemaTraits,
|
|
string[],
|
|
$SchemaRef[]
|
|
];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticErrorSchema = [
|
|
StaticSchemaIdError,
|
|
ShapeNamespace,
|
|
ShapeName,
|
|
SchemaTraits,
|
|
string[],
|
|
$SchemaRef[]
|
|
];
|
|
/**
|
|
* @public
|
|
*/
|
|
export type StaticOperationSchema = [
|
|
StaticSchemaIdOperation,
|
|
ShapeNamespace,
|
|
ShapeName,
|
|
SchemaTraits,
|
|
$SchemaRef,
|
|
$SchemaRef
|
|
];
|