Rocky_Mountain_Vending/.pnpm-store/v10/files/21/db5b31502ecf76f46acf9218c9bebcc8c82843ff5ed0a99179d19d523cce322c6ee19f2ff36ce5ded314dcea6aacd2bad3e32039f9b2df0521a0dfebdafad8
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

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
];