Rocky_Mountain_Vending/.pnpm-store/v10/files/eb/588842cf4bdc63cde4e3fa0496bf0703b99844fbf5b6c19d0938b3add5ef564d2ceb2f401e2a63b710d07f65b5506168976a7da4c0b5d95a6e22875ef5e130
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

53 lines
No EOL
1.9 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "flightRouterStateSchema", {
enumerable: true,
get: function() {
return flightRouterStateSchema;
}
});
const _superstruct = /*#__PURE__*/ _interop_require_default(require("next/dist/compiled/superstruct"));
function _interop_require_default(obj) {
return obj && obj.__esModule ? obj : {
default: obj
};
}
const dynamicParamTypesSchema = _superstruct.default.enums([
'c',
'ci',
'oc',
'd',
'di'
]);
const segmentSchema = _superstruct.default.union([
_superstruct.default.string(),
_superstruct.default.tuple([
// Param name
_superstruct.default.string(),
// Param cache key (almost the same as the value, but arrays are
// concatenated into strings)
// TODO: We should change this to just be the value. Currently we convert
// it back to a value when passing to useParams. It only needs to be
// a string when converted to a a cache key, but that doesn't mean we
// need to store it as that representation.
_superstruct.default.string(),
// Dynamic param type
dynamicParamTypesSchema
])
]);
const flightRouterStateSchema = _superstruct.default.tuple([
segmentSchema,
_superstruct.default.record(_superstruct.default.string(), _superstruct.default.lazy(()=>flightRouterStateSchema)),
_superstruct.default.optional(_superstruct.default.nullable(_superstruct.default.string())),
_superstruct.default.optional(_superstruct.default.nullable(_superstruct.default.union([
_superstruct.default.literal('refetch'),
_superstruct.default.literal('refresh'),
_superstruct.default.literal('inside-shared-layout'),
_superstruct.default.literal('metadata-only')
]))),
_superstruct.default.optional(_superstruct.default.boolean())
]);
//# sourceMappingURL=types.js.map