Rocky_Mountain_Vending/.pnpm-store/v10/files/4b/eb92b4862c708875d0c272e1c91f02fb23370455781f1f2d55487eb5a0dae724fb64d8990dd3b0adc35c7632d0d65d974b3cb9483d00c00c0902a97231cb0e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

116 lines
2 KiB
Text

import { $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
];