Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/09daf01e93297e03b7372ada4e633dda74f6daeb8601f20dbddc4bf73c7f1dd9f3ef8d396a3c656ccdcbb95e9d4a5036bc726347410a254ef0791531256fb2
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

41 lines
1.3 KiB
Text

# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Contributing to Chrome DevTools Protocol: https://goo.gle/devtools-contribution-guide-cdp
experimental domain FileSystem
depends on Network
depends on Storage
type File extends object
properties
string name
# Timestamp
Network.TimeSinceEpoch lastModified
# Size in bytes
number size
string type
type Directory extends object
properties
string name
array of string nestedDirectories
# Files that are directly nested under this directory.
array of File nestedFiles
type BucketFileSystemLocator extends object
properties
# Storage key
Storage.SerializedStorageKey storageKey
# Bucket name. Not passing a `bucketName` will retrieve the default Bucket. (https://developer.mozilla.org/en-US/docs/Web/API/Storage_API#storage_buckets)
optional string bucketName
# Path to the directory using each path component as an array item.
array of string pathComponents
command getDirectory
parameters
BucketFileSystemLocator bucketFileSystemLocator
returns
# Returns the directory object at the path.
Directory directory