Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/9d5fb1c696d2a85701cd1c3d718805ab13034e0423df21de379c92984d9041897de063e1d847ed059370a1ebaffa139821e190ff5a58a015390958ba222033
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

64 lines
1.7 KiB
Text

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`superstructResolver > should return a single error from superstructResolver when validation fails 1`] = `
{
"errors": {
"birthYear": {
"message": "Expected a number, but received: "birthYear"",
"ref": undefined,
"type": "number",
},
"email": {
"message": "Expected a string matching \`/^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$/\` but received """,
"ref": {
"name": "email",
},
"type": "string",
},
"enabled": {
"message": "Expected a value of type \`boolean\`, but received: \`undefined\`",
"ref": undefined,
"type": "boolean",
},
"like": [
{
"id": {
"message": "Expected a number, but received: "z"",
"ref": undefined,
"type": "number",
},
"name": {
"message": "Expected a string, but received: undefined",
"ref": undefined,
"type": "string",
},
},
],
"password": {
"message": "Expected a string matching \`/^[a-zA-Z0-9]{3,30}/\` but received "___"",
"ref": {
"name": "password",
},
"type": "string",
},
"repeatPassword": {
"message": "Expected a value of type \`Password\`, but received: \`undefined\`",
"ref": undefined,
"type": "Password",
},
"tags": {
"message": "Expected an array value, but received: undefined",
"ref": undefined,
"type": "array",
},
"username": {
"message": "Expected a string, but received: undefined",
"ref": {
"name": "username",
},
"type": "string",
},
},
"values": {},
}
`;