Rocky_Mountain_Vending/.pnpm-store/v10/files/7f/deb69c364a44a2b22504df73cd5a5dbc7395def14c406757d733d2c9cfece808fb41d734c59fb14d7927273d0c6743c7608c93c383391dc4ea95a636376847
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

67 lines
1.6 KiB
Text

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`typanionResolver > should return a single error from typanionResolver when validation fails 1`] = `
{
"errors": {
"accessToken": {
"message": "Expected a string (got undefined)",
"ref": undefined,
},
"birthYear": {
"message": "Expected a number (got "birthYear")",
"ref": undefined,
},
"email": {
"message": "Expected to match the pattern /^\\S+@\\S+$/ (got an empty string)",
"ref": {
"name": "email",
},
},
"enabled": {
"message": "Expected a boolean (got undefined)",
"ref": undefined,
},
"like": {
"id": {
"message": "Expected a number (got "z")",
"ref": undefined,
},
"name": {
"message": "Expected a string (got undefined)",
"ref": undefined,
},
},
"password": {
"message": "Expected to match the pattern /.*[A-Z].*/ (got "___")",
"ref": {
"name": "password",
},
},
"repeatPassword": {
"message": "Expected a string (got undefined)",
"ref": undefined,
},
"tags": [
{
"message": "Expected a string (got 1)",
"ref": undefined,
},
{
"message": "Expected a string (got 2)",
"ref": undefined,
},
{
"message": "Expected a string (got 3)",
"ref": undefined,
},
],
"username": {
"message": "Expected a string (got undefined)",
"ref": {
"name": "username",
},
},
},
"values": {},
}
`;