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>
25 lines
871 B
Text
25 lines
871 B
Text
import type { EndpointARN, EndpointPartition, Logger } from "@smithy/types";
|
|
export type ReferenceObject = {
|
|
ref: string;
|
|
};
|
|
export type FunctionObject = {
|
|
fn: string;
|
|
argv: FunctionArgv;
|
|
};
|
|
export type FunctionArgv = Array<Expression | boolean | number>;
|
|
export type FunctionReturn = string | boolean | number | EndpointARN | EndpointPartition | {
|
|
[key: string]: FunctionReturn;
|
|
} | null;
|
|
export type ConditionObject = FunctionObject & {
|
|
assign?: string;
|
|
};
|
|
export type Expression = string | ReferenceObject | FunctionObject;
|
|
export type EndpointParams = Record<string, string | boolean>;
|
|
export type EndpointResolverOptions = {
|
|
endpointParams: EndpointParams;
|
|
logger?: Logger;
|
|
};
|
|
export type ReferenceRecord = Record<string, FunctionReturn>;
|
|
export type EvaluateOptions = EndpointResolverOptions & {
|
|
referenceRecord: ReferenceRecord;
|
|
};
|