Rocky_Mountain_Vending/.pnpm-store/v10/files/14/8f547189e980707ecf86f9662c1dec44a266da9ce29058909b5dc75a7d2da0fe47bdbf92e4aa9ae95d9e588018bb798d0dc9b8e0e73a93fb84a5e8916c3fa1
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

20 lines
375 B
Text

export const codes = {
"0": "Z_OK",
"1": "Z_STREAM_END",
"2": "Z_NEED_DICT",
Z_OK: 0,
Z_STREAM_END: 1,
Z_NEED_DICT: 2,
Z_ERRNO: -1,
Z_STREAM_ERROR: -2,
Z_DATA_ERROR: -3,
Z_MEM_ERROR: -4,
Z_BUF_ERROR: -5,
Z_VERSION_ERROR: -6,
"-1": "Z_ERRNO",
"-2": "Z_STREAM_ERROR",
"-3": "Z_DATA_ERROR",
"-4": "Z_MEM_ERROR",
"-5": "Z_BUF_ERROR",
"-6": "Z_VERSION_ERROR"
};