Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/742936c1d4fd99be158555be486a30f99db9c38bcca76d34f0db805f52ef8b214cb02db46aa34f93d50fd8526b1d481882658778d7c640717dbf358d5e5dc0
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

4 lines
287 B
Text

import { createPaginator } from "@smithy/core";
import { ListPartsCommand } from "../commands/ListPartsCommand";
import { S3Client } from "../S3Client";
export const paginateListParts = createPaginator(S3Client, ListPartsCommand, "PartNumberMarker", "NextPartNumberMarker", "MaxParts");