├── .editorconfig
├── .gitattributes
├── .github
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── EXPLANATIONS.md
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── bug_report.yml
│ ├── config.yml
│ └── feature_request.yml
├── SECURITY.md
├── homebrew
│ ├── README.homebrew.md
│ ├── README.md
│ └── stacks.rb
├── labeler.yml
├── renovate.json
├── scripts
│ ├── create-github-app.sh
│ ├── install.sh
│ └── update-homebrew-formula.sh
├── stale.yml
├── tea.yml
└── workflows
│ ├── README.md
│ ├── ci.yml
│ ├── export-size.yml
│ ├── labeler.yml
│ └── release.yml
├── .gitignore
├── CHANGELOG.md
├── LICENSE.md
├── README.md
├── app
├── Actions
│ ├── Auth
│ │ ├── AuthUserAction.ts
│ │ ├── LoginAction.ts
│ │ ├── LogoutAction.ts
│ │ └── RegisterAction.ts
│ ├── Cms
│ │ ├── CategorizableDestroyAction.ts
│ │ ├── CategorizableIndexAction.ts
│ │ ├── CategorizableShowAction.ts
│ │ ├── CategorizableStoreAction.ts
│ │ ├── CategorizableUpdateAction.ts
│ │ ├── CommentDestroyAction.ts
│ │ ├── CommentIndexAction.ts
│ │ ├── CommentShowAction.ts
│ │ ├── CommentStoreAction.ts
│ │ ├── CommentUpdateAction.ts
│ │ ├── PageDestroyAction.ts
│ │ ├── PageIndexAction.ts
│ │ ├── PageStoreAction.ts
│ │ ├── PageUpdateAction.ts
│ │ ├── PostDestroyAction.ts
│ │ ├── PostIndexAction.ts
│ │ ├── PostShowAction.ts
│ │ ├── PostStoreAction.ts
│ │ ├── PostUpdateAction.ts
│ │ ├── PostViewsUpdateAction.ts
│ │ ├── TaggableDestroyAction.ts
│ │ ├── TaggableIndexAction.ts
│ │ ├── TaggableShowAction.ts
│ │ ├── TaggableStoreAction.ts
│ │ └── TaggableUpdateAction.ts
│ ├── Commerce
│ │ ├── CouponDestroyAction.ts
│ │ ├── CouponIndexAction.ts
│ │ ├── CouponShowAction.ts
│ │ ├── CouponStoreAction.ts
│ │ ├── CouponUpdateAction.ts
│ │ ├── CustomerDestroyAction.ts
│ │ ├── CustomerIndexAction.ts
│ │ ├── CustomerShowAction.ts
│ │ ├── CustomerStoreAction.ts
│ │ ├── CustomerUpdateAction.ts
│ │ ├── DriverDestroyAction.ts
│ │ ├── GiftCardDestroyAction.ts
│ │ ├── GiftCardIndexAction.ts
│ │ ├── GiftCardShowAction.ts
│ │ ├── GiftCardStatsAction.ts
│ │ ├── GiftCardStoreAction.ts
│ │ ├── GiftCardUpdateAction.ts
│ │ ├── GiftCardUpdateBalanceAction.ts
│ │ ├── OrderDestroyAction.ts
│ │ ├── OrderExportAction.ts
│ │ ├── OrderIndexAction.ts
│ │ ├── OrderShowAction.ts
│ │ ├── OrderStoreAction.ts
│ │ ├── OrderUpdateAction.ts
│ │ ├── PaymentFetchStatsAction.ts
│ │ ├── PaymentIndexAction.ts
│ │ ├── PaymentMonthlyTrendsAction.ts
│ │ ├── PaymentShowAction.ts
│ │ ├── PaymentStoreAction.ts
│ │ ├── PrintDeviceDestroyAction.ts
│ │ ├── PrintDeviceIndexAction.ts
│ │ ├── PrintDeviceShowAction.ts
│ │ ├── PrintDeviceStoreAction.ts
│ │ ├── PrintDeviceUpdateAction.ts
│ │ ├── Product
│ │ │ ├── ManufacturerDestroyAction.ts
│ │ │ ├── ManufacturerIndexAction.ts
│ │ │ ├── ManufacturerShowAction.ts
│ │ │ ├── ManufacturerStoreAction.ts
│ │ │ ├── ProductItemIndexAction.ts
│ │ │ ├── ProductItemShowAction.ts
│ │ │ ├── ProductItemStoreAction.ts
│ │ │ ├── ProductManufacturerDestroyAction.ts
│ │ │ ├── ProductManufacturerIndexAction.ts
│ │ │ ├── ProductManufacturerShowAction.ts
│ │ │ ├── ProductManufacturerStoreAction.ts
│ │ │ ├── ProductManufacturerUpdateAction.ts
│ │ │ ├── ProductUnitDestroyAction.ts
│ │ │ ├── ProductUnitIndexAction.ts
│ │ │ ├── ProductUnitShowAction.ts
│ │ │ ├── ProductUnitStoreAction.ts
│ │ │ ├── ProductVariantDestroyAction.ts
│ │ │ ├── ProductVariantIndexAction.ts
│ │ │ ├── ProductVariantShowAction.ts
│ │ │ ├── ProductVariantStoreAction.ts
│ │ │ └── ProductVariantUpdateAction.ts
│ │ ├── ReceiptDestroyAction.ts
│ │ ├── ReceiptIndexAction.ts
│ │ ├── ReceiptShowAction.ts
│ │ ├── ReceiptStoreAction.ts
│ │ ├── ReceiptUpdateAction.ts
│ │ ├── ReviewIndexAction.ts
│ │ ├── ReviewShowAction.ts
│ │ ├── ReviewStoreAction.ts
│ │ ├── ReviewUpdateAction.ts
│ │ ├── Shipping
│ │ │ ├── DeliveryRouteDestroyAction.ts
│ │ │ ├── DeliveryRouteIndexAction.ts
│ │ │ ├── DeliveryRouteShowAction.ts
│ │ │ ├── DeliveryRouteStoreAction.ts
│ │ │ ├── DeliveryRouteUpdateAction.ts
│ │ │ ├── DigitalDeliveryDestroyAction.ts
│ │ │ ├── DigitalDeliveryIndexAction.ts
│ │ │ ├── DigitalDeliveryShowAction.ts
│ │ │ ├── DigitalDeliveryStoreAction.ts
│ │ │ ├── DigitalDeliveryUpdateAction.ts
│ │ │ ├── DriverIndexAction.ts
│ │ │ ├── DriverShowAction.ts
│ │ │ ├── DriverStoreAction.ts
│ │ │ ├── DriverUpdateAction.ts
│ │ │ ├── LicenseKeyDestroyAction.ts
│ │ │ ├── LicenseKeyIndexAction.ts
│ │ │ ├── LicenseKeyShowAction.ts
│ │ │ ├── LicenseKeyStoreAction.ts
│ │ │ ├── LicenseKeyUpdateAction.ts
│ │ │ ├── ShippingMethodDestroyAction.ts
│ │ │ ├── ShippingMethodIndexAction.ts
│ │ │ ├── ShippingMethodShowAction.ts
│ │ │ ├── ShippingMethodStoreAction.ts
│ │ │ ├── ShippingMethodUpdateAction.ts
│ │ │ ├── ShippingRateDestroyAction.ts
│ │ │ ├── ShippingRateIndexAction.ts
│ │ │ ├── ShippingRateShowAction.ts
│ │ │ ├── ShippingRateStoreAction.ts
│ │ │ ├── ShippingRateUpdateAction.ts
│ │ │ ├── ShippingZoneDestroyAction.ts
│ │ │ ├── ShippingZoneIndexAction.ts
│ │ │ ├── ShippingZoneShowAction.ts
│ │ │ ├── ShippingZoneStoreAction.ts
│ │ │ └── ShippingZoneUpdateAction.ts
│ │ ├── TaxRateDestroyAction.ts
│ │ ├── TaxRateIndexAction.ts
│ │ ├── TaxRateShowAction.ts
│ │ ├── TaxRateStoreAction.ts
│ │ ├── TaxRateUpdateAction.ts
│ │ ├── WaitlistProductAnalyticsAction.ts
│ │ ├── WaitlistProductDestroyAction.ts
│ │ ├── WaitlistProductIndexAction.ts
│ │ ├── WaitlistProductQuantityDistributionAction.ts
│ │ ├── WaitlistProductShowAction.ts
│ │ ├── WaitlistProductStatusAction.ts
│ │ ├── WaitlistProductStoreAction.ts
│ │ ├── WaitlistProductTimeSeriesAction.ts
│ │ ├── WaitlistProductUpdateAction.ts
│ │ ├── WaitlistRestaurantDashboardAction.ts
│ │ ├── WaitlistRestaurantDestroyAction.ts
│ │ ├── WaitlistRestaurantIndexAction.ts
│ │ ├── WaitlistRestaurantShowAction.ts
│ │ ├── WaitlistRestaurantStoreAction.ts
│ │ └── WaitlistRestaurantUpdateAction.ts
│ ├── LogAction.ts
│ ├── Logs
│ │ ├── LogFetchStatsAction.ts
│ │ ├── LogIndexOrmAction.ts
│ │ ├── LogShowOrmAction.ts
│ │ ├── LogStoreOrmAction.ts
│ │ └── LogUpdateOrmAction.ts
│ ├── NotifyUser.ts
│ ├── Password
│ │ ├── PasswordResetAction.ts
│ │ └── SendPasswordResetEmailAction.ts
│ ├── README.md
│ ├── Realtime
│ │ └── FetchWebsocketsAction.ts
│ └── SendWelcomeEmail.ts
├── Broadcasts
│ └── OrderShipped.ts
├── Commands
│ ├── Inspire.ts
│ └── README.md
├── Controllers
│ ├── ComingSoonController.ts
│ └── QueryController.ts
├── Events.ts
├── Jobs
│ ├── ExampleJob.ts
│ ├── ExampleTwoJob.ts
│ ├── PruneQueryLogsJob.ts
│ └── README.md
├── Listener.ts
├── Listeners
│ ├── Console.ts
│ └── README.md
├── Middleware.ts
├── Middleware
│ ├── Auth.ts
│ ├── Logger.ts
│ └── README.md
├── Models
│ ├── Deployment.ts
│ ├── OAuthAccessToken.ts
│ ├── OAuthClient.ts
│ ├── PersonalAccessToken.ts
│ ├── Project.ts
│ ├── README.md
│ ├── Release.ts
│ ├── Subscriber.ts
│ ├── SubscriberEmail.ts
│ ├── Team.ts
│ └── User.ts
├── Notifications
│ ├── README.md
│ └── Welcome.ts
├── README.md
└── Scheduler.ts
├── bootstrap
├── buddy
├── bun.lock
├── bunfig.toml
├── cloud
├── Dockerfile
├── deploy-script.ts
├── recipes
│ └── .gitkeep
├── serverless.ts
└── servers.ts
├── config
├── README.md
├── ai.ts
├── analytics.ts
├── app.ts
├── auth.ts
├── cache.ts
├── cli.ts
├── cloud.ts
├── commit.ts
├── database.ts
├── dns.ts
├── email.ts
├── env.ts
├── errors.ts
├── file-systems.ts
├── git.ts
├── hashing.ts
├── library.ts
├── lint.ts
├── logging.ts
├── notification.ts
├── payment.ts
├── ports.ts
├── queue.ts
├── realtime.ts
├── saas.ts
├── search-engine.ts
├── security.ts
├── services.ts
├── stacks.ts
├── storage.ts
├── team.ts
└── ui.ts
├── database
├── README.md
└── migrations
│ ├── .gitkeep
│ ├── 1748952101532-create-categorizables-table.ts
│ ├── 1748952101533-create-categorizable-models-table.ts
│ ├── 1748952101533-create-commentables-table.ts
│ ├── 1748952101534-create-password-resets-table.ts
│ ├── 1748952101534-create-taggable-models-table.ts
│ ├── 1748952101534-create-taggable-table.ts
│ ├── 1748952101535-create-commenteable_upvotes-table.ts
│ ├── 1748952101535-create-passkeys-table.ts
│ ├── 1748952101535-create-query-logs-table.ts
│ ├── 1748952101580-create-projects-table.ts
│ ├── 1748952101612-create-subscriber_emails-table.ts
│ ├── 1748952101641-create-oauth_access_tokens-table.ts
│ ├── 1748952101671-create-oauth_clients-table.ts
│ ├── 1748952101678-create-teams_users-table.ts
│ ├── 1748952101703-create-teams-table.ts
│ ├── 1748952101735-create-subscribers-table.ts
│ ├── 1748952101767-create-deployments-table.ts
│ ├── 1748952101798-create-releases-table.ts
│ ├── 1748952101825-create-users-table.ts
│ ├── 1748952101853-create-personal_access_tokens-table.ts
│ ├── 1748952101882-create-print_devices-table.ts
│ ├── 1748952101911-create-categories-table.ts
│ ├── 1748952101942-create-payments-table.ts
│ ├── 1748952101970-create-drivers-table.ts
│ ├── 1748952102000-create-waitlist_products-table.ts
│ ├── 1748952102032-create-digital_deliveries-table.ts
│ ├── 1748952102062-create-manufacturers-table.ts
│ ├── 1748952102092-create-order_items-table.ts
│ ├── 1748952102125-create-shipping_zones-table.ts
│ ├── 1748952102157-create-customers-table.ts
│ ├── 1748952102196-create-products-table.ts
│ ├── 1748952102229-create-receipts-table.ts
│ ├── 1748952102262-create-product_variants-table.ts
│ ├── 1748952102298-create-license_keys-table.ts
│ ├── 1748952102327-create-waitlist_restaurants-table.ts
│ ├── 1748952102358-create-reviews-table.ts
│ ├── 1748952102401-create-product_units-table.ts
│ ├── 1748952102433-create-gift_cards-table.ts
│ ├── 1748952102463-create-orders-table.ts
│ ├── 1748952102494-create-coupons-table.ts
│ ├── 1748952102524-create-tax_rates-table.ts
│ ├── 1748952102556-create-transactions-table.ts
│ ├── 1748952102588-create-loyalty_points-table.ts
│ ├── 1748952102630-create-product_items-table.ts
│ ├── 1748952102671-create-loyalty_rewards-table.ts
│ ├── 1748952102701-create-shipping_methods-table.ts
│ ├── 1748952102732-create-shipping_rates-table.ts
│ ├── 1748952102763-create-carts-table.ts
│ ├── 1748952102793-create-delivery_routes-table.ts
│ ├── 1748952102822-create-cart_items-table.ts
│ ├── 1748952102851-create-payment_products-table.ts
│ ├── 1748952102882-create-failed_jobs-table.ts
│ ├── 1748952102913-create-payment_methods-table.ts
│ ├── 1748952102942-create-pages-table.ts
│ ├── 1748952102972-create-authors-table.ts
│ ├── 1748952103000-create-posts-table.ts
│ ├── 1748952103029-create-payment_transactions-table.ts
│ ├── 1748952103063-create-websockets-table.ts
│ ├── 1748952103094-create-requests-table.ts
│ ├── 1748952103130-create-jobs-table.ts
│ ├── 1748952103162-create-logs-table.ts
│ ├── 1748952103191-create-subscriptions-table.ts
│ └── 1748952103219-create-errors-table.ts
├── docs
├── _data
│ └── team.js
├── bootcamp
│ ├── api.md
│ ├── cli.md
│ ├── cloud.md
│ ├── dashboard.md
│ ├── deploy.md
│ ├── desktop.md
│ ├── docs.md
│ ├── frontend.md
│ ├── ide.md
│ ├── intro.md
│ ├── library
│ │ ├── components.md
│ │ └── functions.md
│ ├── linting.md
│ ├── local-setup.md
│ ├── publish.md
│ ├── semantic-commits.md
│ ├── testing.md
│ ├── tips
│ │ ├── cost-optimization.md
│ │ ├── jump-box.md
│ │ ├── limitations.md
│ │ ├── mailbox.md
│ │ └── teams.md
│ └── uninstall.md
├── config.ts
├── contribution-guide.md
├── guide
│ ├── apis.md
│ ├── apps.md
│ ├── buddy.md
│ ├── ci.md
│ ├── cloud.md
│ ├── cms
│ │ ├── api-endpoints.md
│ │ ├── authors.md
│ │ ├── categories.md
│ │ ├── comments.md
│ │ ├── pages.md
│ │ ├── posts.md
│ │ └── tags.md
│ ├── commerce
│ │ ├── coupons.md
│ │ ├── customers.md
│ │ ├── deliveries
│ │ │ ├── delivery-routes.md
│ │ │ ├── digital-deliveries.md
│ │ │ ├── drivers.md
│ │ │ ├── license-keys.md
│ │ │ ├── shipping-methods.md
│ │ │ ├── shipping-rates.md
│ │ │ └── shipping-zones.md
│ │ ├── gift-cards.md
│ │ ├── orders.md
│ │ ├── payments.md
│ │ ├── printers
│ │ │ ├── devices.md
│ │ │ └── receipts.md
│ │ ├── products
│ │ │ ├── categories.md
│ │ │ ├── items.md
│ │ │ ├── manufacturers.md
│ │ │ ├── reviews.md
│ │ │ ├── units.md
│ │ │ └── variants.md
│ │ ├── tax-rates.md
│ │ └── waitlists
│ │ │ ├── products.md
│ │ │ └── restaurants.md
│ ├── components
│ │ ├── alert.md
│ │ ├── audio.md
│ │ ├── button.md
│ │ ├── calendar.md
│ │ ├── combobox.md
│ │ ├── command-palette.md
│ │ ├── date-picker.md
│ │ ├── dialog.md
│ │ ├── dropdown.md
│ │ ├── image.md
│ │ ├── inline-nav.md
│ │ ├── input.md
│ │ ├── keep-alive.md
│ │ ├── listbox.md
│ │ ├── notification.md
│ │ ├── popover.md
│ │ ├── radio-group.md
│ │ ├── select.md
│ │ ├── stack.md
│ │ ├── stepper.md
│ │ ├── suspense.md
│ │ ├── switch.md
│ │ ├── table.md
│ │ ├── teleport.md
│ │ ├── transition-group.md
│ │ ├── transition.md
│ │ └── video.md
│ ├── composability.md
│ ├── config.md
│ ├── get-started.md
│ ├── intro.md
│ ├── launch-post.md
│ ├── libraries.md
│ ├── libraries
│ │ ├── components.md
│ │ ├── composability.md
│ │ ├── functions.md
│ │ └── get-started.md
│ ├── linting.md
│ ├── model-view-action.md
│ ├── query-monitoring.md
│ ├── stacks.md
│ ├── testing.md
│ └── what-is-stacks.md
├── index.md
├── packages
│ ├── realtime.md
│ └── validation.md
├── project
│ ├── contributing.md
│ ├── license.md
│ ├── roadmap.md
│ └── terminology.md
├── release-notes.md
├── team.md
├── testing
│ ├── browser-tests.md
│ ├── console-tests.md
│ ├── database.md
│ ├── feature-tests.md
│ ├── getting-started.md
│ ├── http-tests.md
│ ├── mocking.md
│ └── unit-tests.md
└── upgrade-guide.md
├── package.json
├── pkgx.yaml
├── public
├── README.md
├── audio
│ ├── .gitkeep
│ └── README.md
├── images
│ ├── README.md
│ ├── atomic-fx-diagram.png
│ ├── atomic-ui-diagram.png
│ ├── avatars
│ │ ├── avatar-1.png
│ │ ├── avatar-2.png
│ │ ├── avatar-3.png
│ │ ├── avatar-4.png
│ │ └── avatar-5.png
│ ├── background-auth.jpg
│ ├── background-call-to-action.jpg
│ ├── background-faqs.jpg
│ ├── background-features.jpg
│ ├── diagram.png
│ ├── logos
│ │ ├── amex.jpg
│ │ ├── favicon-dark.svg
│ │ ├── favicon.svg
│ │ ├── jcb.svg
│ │ ├── laravel.svg
│ │ ├── logo-dark.svg
│ │ ├── logo-mini.svg
│ │ ├── logo-transparent.svg
│ │ ├── logo-white.png
│ │ ├── logo.png
│ │ ├── logo.svg
│ │ ├── mastercard.svg
│ │ ├── meilisearch.svg
│ │ ├── mirage.svg
│ │ ├── statamic.svg
│ │ ├── statickit.svg
│ │ ├── transistor.svg
│ │ ├── tuple.svg
│ │ ├── visa.png
│ │ └── visa.svgz
│ ├── og-image.png
│ ├── screenshots
│ │ ├── background-features.jpg
│ │ ├── contacts.png
│ │ ├── dashboard.png
│ │ ├── expenses.png
│ │ ├── expenses.webp
│ │ ├── inventory.png
│ │ ├── payroll.png
│ │ ├── payroll.webp
│ │ ├── profit-loss.png
│ │ ├── reporting.png
│ │ ├── reporting.webp
│ │ ├── vat-returns.png
│ │ └── vat-returns.webp
│ └── social.png
├── svgs
│ ├── 403.svg
│ ├── 404.svg
│ ├── 500.svg
│ └── 503.svg
└── videos
│ ├── .gitkeep
│ └── README.md
├── resources
├── assets
│ ├── README.md
│ ├── fonts
│ │ └── Monaco.ttf
│ └── styles
│ │ ├── README.md
│ │ ├── docs
│ │ ├── main.css
│ │ ├── overrides.css
│ │ └── vars.css
│ │ ├── main.css
│ │ └── markdown.css
├── components
│ ├── Button.vue
│ ├── Container.vue
│ ├── Dashboard
│ │ └── .gitkeep
│ ├── Docs
│ │ └── .gitkeep
│ ├── HelloWorld.vue
│ ├── Logo.vue
│ └── README.md
├── emails
│ ├── Welcome.vue
│ └── WelcomeTest.vue
├── functions
│ ├── README.md
│ ├── counter.ts
│ └── dark.ts
├── lang
│ ├── README.md
│ ├── de.yml
│ └── en.yml
├── layouts
│ ├── 403.vue
│ ├── 404.vue
│ ├── README.md
│ ├── dashboard
│ │ └── default.vue
│ ├── default.vue
│ ├── emails
│ │ └── main.html
│ ├── maintenance.vue
│ └── system-tray
│ │ └── default.vue
├── modules
│ └── .gitkeep
├── plugins
│ ├── .gitkeep
│ └── preloader.ts
├── stores
│ └── README.md
├── types
│ └── README.md
└── views
│ ├── [...all].vue
│ ├── about.md
│ ├── auth
│ ├── login.vue
│ └── signup.vue
│ ├── dashboard
│ └── .gitkeep
│ ├── errors
│ └── .gitkeep
│ ├── hello-world
│ └── [name].vue
│ └── index.vue
├── routes
├── README.md
├── api.ts
├── buddy.ts
└── users.ts
├── storage
├── README.md
├── framework
│ ├── actions
│ │ ├── package.json
│ │ └── src
│ │ │ ├── AuthorIndexOrmAction.ts
│ │ │ ├── AuthorShowOrmAction.ts
│ │ │ ├── AuthorStoreOrmAction.ts
│ │ │ ├── LogDestroyOrmAction.ts
│ │ │ ├── PageDestroyOrmAction.ts
│ │ │ ├── PostDestroyOrmAction.ts
│ │ │ ├── PostIndexOrmAction.ts
│ │ │ ├── PostShowOrmAction.ts
│ │ │ ├── PostStoreOrmAction.ts
│ │ │ ├── PostUpdateOrmAction.ts
│ │ │ ├── RequestDestroyOrmAction.ts
│ │ │ ├── RequestIndexOrmAction.ts
│ │ │ ├── RequestShowOrmAction.ts
│ │ │ ├── RequestStoreOrmAction.ts
│ │ │ ├── RequestUpdateOrmAction.ts
│ │ │ ├── UserIndexOrmAction.ts
│ │ │ ├── UserShowOrmAction.ts
│ │ │ ├── UserStoreOrmAction.ts
│ │ │ ├── WebsocketIndexOrmAction.ts
│ │ │ ├── WebsocketShowOrmAction.ts
│ │ │ └── WebsocketStoreOrmAction.ts
│ ├── api
│ │ ├── .gitkeep
│ │ ├── README.md
│ │ ├── api-types.ts
│ │ ├── build.ts
│ │ ├── dev.ts
│ │ ├── openapi.json
│ │ ├── package.json
│ │ └── tsconfig.json
│ ├── browser-auto-imports.json
│ ├── cache
│ │ ├── .gitignore
│ │ └── .gitkeep
│ ├── cloud
│ │ ├── .gitignore
│ │ ├── bunfig.toml
│ │ ├── cdk.json
│ │ ├── deploy.ts
│ │ └── package.json
│ ├── config
│ │ └── ace-config.ts
│ ├── core
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── actions
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── action.ts
│ │ │ │ ├── actions.ts
│ │ │ │ ├── add.ts
│ │ │ │ ├── ai
│ │ │ │ │ └── request-model-access.ts
│ │ │ │ ├── auth
│ │ │ │ │ └── token.ts
│ │ │ │ ├── build.ts
│ │ │ │ ├── build
│ │ │ │ │ ├── cli.ts
│ │ │ │ │ ├── component-libs.ts
│ │ │ │ │ ├── core.ts
│ │ │ │ │ ├── desktop.ts
│ │ │ │ │ ├── docs.ts
│ │ │ │ │ ├── server.ts
│ │ │ │ │ ├── stacks.ts
│ │ │ │ │ └── views.ts
│ │ │ │ ├── bump.ts
│ │ │ │ ├── cdn
│ │ │ │ │ └── invalidate-cache.ts
│ │ │ │ ├── changelog.ts
│ │ │ │ ├── check
│ │ │ │ │ └── ports.ts
│ │ │ │ ├── clean.ts
│ │ │ │ ├── commit.ts
│ │ │ │ ├── copy-types.ts
│ │ │ │ ├── database
│ │ │ │ │ └── seed.ts
│ │ │ │ ├── deploy
│ │ │ │ │ ├── create-receipt-rule.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── dev
│ │ │ │ │ ├── api.ts
│ │ │ │ │ ├── components.ts
│ │ │ │ │ ├── dashboard.ts
│ │ │ │ │ ├── desktop.ts
│ │ │ │ │ ├── docs.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── system-tray.ts
│ │ │ │ │ └── views.ts
│ │ │ │ ├── domains
│ │ │ │ │ ├── add.ts
│ │ │ │ │ ├── purchase.ts
│ │ │ │ │ └── remove.ts
│ │ │ │ ├── examples.ts
│ │ │ │ ├── files
│ │ │ │ │ └── watch.ts
│ │ │ │ ├── find-projects.ts
│ │ │ │ ├── fresh.ts
│ │ │ │ ├── generate
│ │ │ │ │ ├── action-types.ts
│ │ │ │ │ ├── component-meta.ts
│ │ │ │ │ ├── custom-cli-file.ts
│ │ │ │ │ ├── env-files.ts
│ │ │ │ │ ├── ide-helpers.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── lib-entries.ts
│ │ │ │ │ ├── model-files.ts
│ │ │ │ │ ├── pkgx-file.ts
│ │ │ │ │ ├── symlink-core.ts
│ │ │ │ │ ├── types.ts
│ │ │ │ │ ├── vscode-custom-data.ts
│ │ │ │ │ └── web-types.ts
│ │ │ │ ├── helpers
│ │ │ │ │ ├── component-meta.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── lib-entries.ts
│ │ │ │ │ ├── package-json.ts
│ │ │ │ │ ├── utils.ts
│ │ │ │ │ └── vscode-custom-data.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── key-generate.ts
│ │ │ │ ├── lint
│ │ │ │ │ ├── fix.ts
│ │ │ │ │ └── index.ts
│ │ │ │ ├── make.ts
│ │ │ │ ├── migrate
│ │ │ │ │ ├── database.ts
│ │ │ │ │ └── fresh.ts
│ │ │ │ ├── orm
│ │ │ │ │ ├── base.ts
│ │ │ │ │ └── test.ts
│ │ │ │ ├── prepublish.ts
│ │ │ │ ├── queue
│ │ │ │ │ ├── table.ts
│ │ │ │ │ └── work.ts
│ │ │ │ ├── release.ts
│ │ │ │ ├── route
│ │ │ │ │ └── list.ts
│ │ │ │ ├── saas
│ │ │ │ │ └── setup.ts
│ │ │ │ ├── schedule
│ │ │ │ │ └── run.ts
│ │ │ │ ├── search
│ │ │ │ │ ├── flush.ts
│ │ │ │ │ ├── import.ts
│ │ │ │ │ ├── settings-list.ts
│ │ │ │ │ └── settings.ts
│ │ │ │ ├── test
│ │ │ │ │ ├── feature.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── ui.ts
│ │ │ │ │ └── unit.ts
│ │ │ │ ├── typecheck.ts
│ │ │ │ ├── types.ts
│ │ │ │ ├── upgrade.ts
│ │ │ │ └── upgrade
│ │ │ │ │ ├── binary.ts
│ │ │ │ │ ├── bun.ts
│ │ │ │ │ ├── dependencies.ts
│ │ │ │ │ ├── framework.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── shell.ts
│ │ │ ├── tests
│ │ │ │ └── ai.test.ts
│ │ │ └── tsconfig.json
│ │ ├── ai
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── image.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── mcp.ts
│ │ │ │ ├── personalization.ts
│ │ │ │ ├── search.ts
│ │ │ │ ├── text.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── client-bedrock-runtime.ts
│ │ │ │ │ ├── client-bedrock.ts
│ │ │ │ │ └── model-access.ts
│ │ │ ├── tea.yaml
│ │ │ ├── tests
│ │ │ │ └── ai.test.ts
│ │ │ └── tsconfig.json
│ │ ├── alias
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── alias.test.ts
│ │ │ └── tsconfig.json
│ │ ├── analytics
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── fathom.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── api
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── fetcher.ts
│ │ │ │ ├── generate-openapi.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ └── tsconfig.json
│ │ ├── arrays
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── arr.ts
│ │ │ │ ├── contains.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── macro.ts
│ │ │ │ └── math.ts
│ │ │ ├── tests
│ │ │ │ └── arrays.test.ts
│ │ │ └── tsconfig.json
│ │ ├── auth
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── authentication.ts
│ │ │ │ ├── authenticator.ts
│ │ │ │ ├── client.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── passkey.ts
│ │ │ │ ├── password
│ │ │ │ │ └── reset.ts
│ │ │ │ ├── rate-limiter.ts
│ │ │ │ ├── register.ts
│ │ │ │ ├── token.ts
│ │ │ │ └── user.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── browser
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── composables
│ │ │ │ │ ├── auth
│ │ │ │ │ │ └── useGithub.ts
│ │ │ │ │ └── useFetch.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── base.ts
│ │ │ │ │ ├── billable.ts
│ │ │ │ │ ├── date.ts
│ │ │ │ │ ├── debounce.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── function.ts
│ │ │ │ │ ├── guards.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── lazy.ts
│ │ │ │ │ ├── math.ts
│ │ │ │ │ ├── plans.ts
│ │ │ │ │ ├── promise.ts
│ │ │ │ │ ├── random.ts
│ │ │ │ │ ├── regex.ts
│ │ │ │ │ ├── retry.ts
│ │ │ │ │ ├── sleep.ts
│ │ │ │ │ ├── throttle.ts
│ │ │ │ │ └── vendors.ts
│ │ │ ├── tests
│ │ │ │ └── browser.test.ts
│ │ │ └── tsconfig.json
│ │ ├── buddy
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── art
│ │ │ │ └── social.jpg
│ │ │ ├── bin
│ │ │ │ └── cli.ts
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── cli.ts
│ │ │ │ ├── commands
│ │ │ │ │ ├── add.ts
│ │ │ │ │ ├── auth.ts
│ │ │ │ │ ├── build.ts
│ │ │ │ │ ├── changelog.ts
│ │ │ │ │ ├── clean.ts
│ │ │ │ │ ├── cloud.ts
│ │ │ │ │ ├── commit.ts
│ │ │ │ │ ├── configure.ts
│ │ │ │ │ ├── create.ts
│ │ │ │ │ ├── deploy.ts
│ │ │ │ │ ├── dev.ts
│ │ │ │ │ ├── dns.ts
│ │ │ │ │ ├── domains.ts
│ │ │ │ │ ├── env.ts
│ │ │ │ │ ├── fresh.ts
│ │ │ │ │ ├── generate.ts
│ │ │ │ │ ├── http.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── install.ts
│ │ │ │ │ ├── key.ts
│ │ │ │ │ ├── lint.ts
│ │ │ │ │ ├── list.ts
│ │ │ │ │ ├── make.ts
│ │ │ │ │ ├── migrate.ts
│ │ │ │ │ ├── outdated.ts
│ │ │ │ │ ├── ports.ts
│ │ │ │ │ ├── prepublish.ts
│ │ │ │ │ ├── projects.ts
│ │ │ │ │ ├── queue.ts
│ │ │ │ │ ├── release.ts
│ │ │ │ │ ├── route.ts
│ │ │ │ │ ├── saas.ts
│ │ │ │ │ ├── schedule.ts
│ │ │ │ │ ├── search.ts
│ │ │ │ │ ├── seed.ts
│ │ │ │ │ ├── setup.ts
│ │ │ │ │ ├── test.ts
│ │ │ │ │ ├── tinker.ts
│ │ │ │ │ ├── types.ts
│ │ │ │ │ ├── upgrade.ts
│ │ │ │ │ └── version.ts
│ │ │ │ ├── custom-cli.ts
│ │ │ │ └── index.ts
│ │ │ └── tsconfig.json
│ │ ├── build.ts
│ │ ├── build
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ ├── tsconfig.json
│ │ │ ├── web-types.config.cjs
│ │ │ └── web-types.ts
│ │ ├── bun-create
│ │ │ ├── bud
│ │ │ │ ├── README.md
│ │ │ │ └── package.json
│ │ │ ├── buddy
│ │ │ │ ├── README.md
│ │ │ │ └── package.json
│ │ │ ├── stack
│ │ │ │ ├── README.md
│ │ │ │ └── package.json
│ │ │ ├── stacks
│ │ │ │ ├── README.md
│ │ │ │ └── package.json
│ │ │ └── stx
│ │ │ │ ├── README.md
│ │ │ │ └── package.json
│ │ ├── cache
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── base.ts
│ │ │ │ │ ├── dynamodb.ts
│ │ │ │ │ ├── filesystem.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── memory.ts
│ │ │ │ │ └── redis.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ ├── DynamoDB.test.ts
│ │ │ │ ├── Filesystem.test.ts
│ │ │ │ ├── Memory.test.ts
│ │ │ │ ├── Redis.test.ts
│ │ │ │ └── scripts
│ │ │ │ │ └── redis-server.ts
│ │ │ └── tsconfig.json
│ │ ├── calendar
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── generators
│ │ │ │ │ ├── google.ts
│ │ │ │ │ ├── ics.ts
│ │ │ │ │ ├── weboutlook.ts
│ │ │ │ │ └── yahoo.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ └── tsconfig.json
│ │ ├── chat
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── base.ts
│ │ │ │ │ ├── discord.ts
│ │ │ │ │ ├── slack.ts
│ │ │ │ │ └── teams.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── chat.test.ts
│ │ │ └── tsconfig.json
│ │ ├── cli
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── actions
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── install.ts
│ │ │ │ ├── app.ts
│ │ │ │ ├── cli.ts
│ │ │ │ ├── command.ts
│ │ │ │ ├── console.ts
│ │ │ │ ├── exec.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── parse.ts
│ │ │ │ ├── run.ts
│ │ │ │ ├── spinner.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── cli.test.ts
│ │ │ └── tsconfig.json
│ │ ├── cloud
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── cloud
│ │ │ │ │ ├── ai.ts
│ │ │ │ │ ├── cache.ts
│ │ │ │ │ ├── cdn.ts
│ │ │ │ │ ├── cli.ts
│ │ │ │ │ ├── compute.ts
│ │ │ │ │ ├── dashboard.ts
│ │ │ │ │ ├── database.ts
│ │ │ │ │ ├── deployment.ts
│ │ │ │ │ ├── dns.ts
│ │ │ │ │ ├── docs.ts
│ │ │ │ │ ├── email.ts
│ │ │ │ │ ├── file-system.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── jump-box.ts
│ │ │ │ │ ├── network.ts
│ │ │ │ │ ├── permissions.ts
│ │ │ │ │ ├── queue.ts
│ │ │ │ │ ├── redirects.ts
│ │ │ │ │ ├── router-layer
│ │ │ │ │ │ └── nodejs
│ │ │ │ │ │ │ └── package.json
│ │ │ │ │ ├── search-engine.ts
│ │ │ │ │ ├── security.ts
│ │ │ │ │ └── storage.ts
│ │ │ │ ├── edge
│ │ │ │ │ └── origin-request.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ ├── tsconfig.json
│ │ │ └── zip.ts
│ │ ├── cms
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── authors
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── categorizables
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── commentables
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── pages
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── posts
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── taggables
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ └── tests
│ │ │ │ │ ├── authors.test.ts
│ │ │ │ │ ├── categorizables.test.ts
│ │ │ │ │ ├── commentables.test.ts
│ │ │ │ │ ├── pages.test.ts
│ │ │ │ │ ├── posts.test.ts
│ │ │ │ │ └── taggables.test.ts
│ │ │ └── tsconfig.json
│ │ ├── collections
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── collections.test.ts
│ │ │ └── tsconfig.json
│ │ ├── commerce
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── carts
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── coupons
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── customers
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── devices
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── gift-cards
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── orders
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── payments
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── store.ts
│ │ │ │ ├── product.ts
│ │ │ │ ├── products
│ │ │ │ │ ├── categories
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── items
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── manufacturers
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── reviews
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── units
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ └── variants
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ ├── receipts
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── printer.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── shippings
│ │ │ │ │ ├── delivery-routes
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── digital-deliveries
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── drivers
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── license-keys
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── shipping-methods
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── shipping-rates
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ └── shipping-zones
│ │ │ │ │ │ ├── destroy.ts
│ │ │ │ │ │ ├── fetch.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── store.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ ├── tax
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ ├── tests
│ │ │ │ │ ├── coupons.test.ts
│ │ │ │ │ ├── customers.test.ts
│ │ │ │ │ ├── device.test.ts
│ │ │ │ │ ├── digitals.test.ts
│ │ │ │ │ ├── drivers.test.ts
│ │ │ │ │ ├── gift-cards.test.ts
│ │ │ │ │ ├── license.test.ts
│ │ │ │ │ ├── manufacturers.test.ts
│ │ │ │ │ ├── orders.test.ts
│ │ │ │ │ ├── payments.test.ts
│ │ │ │ │ ├── rates.test.ts
│ │ │ │ │ ├── receipts.test.ts
│ │ │ │ │ ├── restaurant.test.ts
│ │ │ │ │ ├── reviews.test.ts
│ │ │ │ │ ├── routes.test.ts
│ │ │ │ │ ├── shipping.test.ts
│ │ │ │ │ ├── tax.test.ts
│ │ │ │ │ ├── units.test.ts
│ │ │ │ │ ├── variants.test.ts
│ │ │ │ │ ├── waitlist.test.ts
│ │ │ │ │ └── zones.test.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── waitlists
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── products
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ │ │ └── restaurant
│ │ │ │ │ ├── destroy.ts
│ │ │ │ │ ├── export.ts
│ │ │ │ │ ├── fetch.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── store.ts
│ │ │ │ │ └── update.ts
│ │ │ └── tsconfig.json
│ │ ├── components
│ │ │ ├── audio
│ │ │ │ └── package.json
│ │ │ ├── auth
│ │ │ │ ├── README.md
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Login.vue
│ │ │ │ │ │ ├── Signup.vue
│ │ │ │ │ │ └── TwoFactorChallenge.vue
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── state.ts
│ │ │ │ │ ├── styles
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── build.ts
│ │ │ ├── button
│ │ │ │ └── package.json
│ │ │ ├── calendar
│ │ │ │ ├── README.md
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Expand.vue
│ │ │ │ │ │ ├── Footer.vue
│ │ │ │ │ │ ├── HeadlessToast.vue
│ │ │ │ │ │ ├── HeadlessToastWithProps.vue
│ │ │ │ │ │ ├── Hero.vue
│ │ │ │ │ │ ├── Installation.vue
│ │ │ │ │ │ ├── Others.vue
│ │ │ │ │ │ ├── Position.vue
│ │ │ │ │ │ ├── Styling.vue
│ │ │ │ │ │ ├── Theming.vue
│ │ │ │ │ │ ├── Toast.vue
│ │ │ │ │ │ ├── Toaster.vue
│ │ │ │ │ │ ├── Types.vue
│ │ │ │ │ │ ├── Usage.vue
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── CheckIcon.vue
│ │ │ │ │ │ │ ├── CloseIcon.vue
│ │ │ │ │ │ │ ├── CopyIcon.vue
│ │ │ │ │ │ │ ├── ErrorIcon.vue
│ │ │ │ │ │ │ ├── InfoIcon.vue
│ │ │ │ │ │ │ ├── Loader.vue
│ │ │ │ │ │ │ ├── SuccessIcon.vue
│ │ │ │ │ │ │ └── WarningIcon.vue
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── state.ts
│ │ │ │ │ ├── styles
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── combobox
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Combobox.ts
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── command-palette
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── packages
│ │ │ │ │ ├── CommandDialog.vue
│ │ │ │ │ ├── CommandGroup.vue
│ │ │ │ │ ├── CommandInput.vue
│ │ │ │ │ ├── CommandItem.vue
│ │ │ │ │ ├── CommandList.vue
│ │ │ │ │ ├── CommandProvider.vue
│ │ │ │ │ ├── CommandRoot.vue
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.ts
│ │ │ │ │ ├── useCommandEvent.ts
│ │ │ │ │ ├── useCommandState.ts
│ │ │ │ │ └── utils.ts
│ │ │ │ ├── public
│ │ │ │ │ └── logo.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── css
│ │ │ │ │ │ │ ├── framer.css
│ │ │ │ │ │ │ ├── global.css
│ │ │ │ │ │ │ ├── linear.css
│ │ │ │ │ │ │ ├── raycast.css
│ │ │ │ │ │ │ └── vercel.css
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Footer.vue
│ │ │ │ │ │ ├── Hero.vue
│ │ │ │ │ │ ├── Installation.vue
│ │ │ │ │ │ ├── Usage.vue
│ │ │ │ │ │ ├── command
│ │ │ │ │ │ │ ├── Linear.vue
│ │ │ │ │ │ │ ├── Self.vue
│ │ │ │ │ │ │ ├── raycast
│ │ │ │ │ │ │ │ ├── Raycast.vue
│ │ │ │ │ │ │ │ ├── RaycastHome.vue
│ │ │ │ │ │ │ │ └── RaycastItem.vue
│ │ │ │ │ │ │ └── vercel
│ │ │ │ │ │ │ │ ├── Home.vue
│ │ │ │ │ │ │ │ ├── Item.vue
│ │ │ │ │ │ │ │ ├── Projects.vue
│ │ │ │ │ │ │ │ └── Vercel.vue
│ │ │ │ │ │ ├── common
│ │ │ │ │ │ │ └── CmdkPlaceholder.vue
│ │ │ │ │ │ └── icons
│ │ │ │ │ │ │ ├── FigmaIcon.vue
│ │ │ │ │ │ │ ├── LinearAssignToIcon.vue
│ │ │ │ │ │ │ ├── LinearAssignToMeIcon.vue
│ │ │ │ │ │ │ ├── LinearChangeLabelsIcon.vue
│ │ │ │ │ │ │ ├── LinearChangePriorityIcon.vue
│ │ │ │ │ │ │ ├── LinearChangeStatusIcon.vue
│ │ │ │ │ │ │ ├── LinearIcon.vue
│ │ │ │ │ │ │ ├── LinearRemoveLabelIcon.vue
│ │ │ │ │ │ │ ├── LinearSetDueDateIcon.vue
│ │ │ │ │ │ │ ├── Logo.vue
│ │ │ │ │ │ │ ├── MoonIcon.vue
│ │ │ │ │ │ │ ├── RaycasTerminalIcon.vue
│ │ │ │ │ │ │ ├── RaycastClipboardIcon.vue
│ │ │ │ │ │ │ ├── RaycastDarkIcon.vue
│ │ │ │ │ │ │ ├── RaycastFinderIcon.vue
│ │ │ │ │ │ │ ├── RaycastHammerIcon.vue
│ │ │ │ │ │ │ ├── RaycastIcon.vue
│ │ │ │ │ │ │ ├── RaycastLightIcon.vue
│ │ │ │ │ │ │ ├── RaycastStarIcon.vue
│ │ │ │ │ │ │ ├── RaycastWindowIcon.vue
│ │ │ │ │ │ │ ├── SlackIcon.vue
│ │ │ │ │ │ │ ├── SunIcon.vue
│ │ │ │ │ │ │ ├── VercelContactIcon.vue
│ │ │ │ │ │ │ ├── VercelCopyIcon.vue
│ │ │ │ │ │ │ ├── VercelDocsIcon.vue
│ │ │ │ │ │ │ ├── VercelFeedbackIcon.vue
│ │ │ │ │ │ │ ├── VercelIcon.vue
│ │ │ │ │ │ │ ├── VercelPlusIcon.vue
│ │ │ │ │ │ │ ├── VercelProjectsIcon.vue
│ │ │ │ │ │ │ ├── VercelTeamsIcon.vue
│ │ │ │ │ │ │ └── YouTubeIcon.vue
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ └── vite-env.d.ts
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── dialog
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Options.vue
│ │ │ │ │ ├── Transitions.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Dialog.vue
│ │ │ │ │ │ └── DialogPanel.vue
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── drawer
│ │ │ │ └── package.json
│ │ │ ├── dropdown
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── image
│ │ │ │ └── package.json
│ │ │ ├── index.ts
│ │ │ ├── listbox
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── navigator
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Demo
│ │ │ │ │ │ │ ├── Expand.vue
│ │ │ │ │ │ │ ├── Footer.vue
│ │ │ │ │ │ │ ├── Hero.vue
│ │ │ │ │ │ │ ├── Installation.vue
│ │ │ │ │ │ │ ├── Others.vue
│ │ │ │ │ │ │ ├── Position.vue
│ │ │ │ │ │ │ ├── Styling.vue
│ │ │ │ │ │ │ ├── Theming.vue
│ │ │ │ │ │ │ ├── Types.vue
│ │ │ │ │ │ │ └── Usage.vue
│ │ │ │ │ │ ├── HeadlessToast.vue
│ │ │ │ │ │ ├── HeadlessToastWithProps.vue
│ │ │ │ │ │ ├── Toast.vue
│ │ │ │ │ │ ├── Toaster.vue
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ └── Loader.vue
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── Demo
│ │ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ │ └── useNotification.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── state.ts
│ │ │ │ │ ├── styles
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── notification
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Expand.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── HeadlessToast.vue
│ │ │ │ │ ├── HeadlessToastWithProps.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Others.vue
│ │ │ │ │ ├── Position.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Theming.vue
│ │ │ │ │ ├── Types.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Toast.vue
│ │ │ │ │ │ ├── Toaster.vue
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ └── Loader.vue
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ ├── useNotification.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── state.ts
│ │ │ │ │ ├── styles
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── package.json
│ │ │ ├── payment
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Checkout.vue
│ │ │ │ │ │ ├── CheckoutUsage.vue
│ │ │ │ │ │ ├── DefaultPaymentMethod.vue
│ │ │ │ │ │ ├── Environment.vue
│ │ │ │ │ │ ├── Footer.vue
│ │ │ │ │ │ ├── Hero.vue
│ │ │ │ │ │ ├── Installation.vue
│ │ │ │ │ │ ├── PaymentMethods.vue
│ │ │ │ │ │ ├── Subscription.vue
│ │ │ │ │ │ ├── SubscriptionUsage.vue
│ │ │ │ │ │ └── Usage.vue
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── styles
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── popover
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── radio-group
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── select
│ │ │ │ └── package.json
│ │ │ ├── stepper
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ └── Stepper.vue
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkmode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ ├── model.ts
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ │ ├── stepper.d.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ ├── vite.config.ts
│ │ │ │ └── vite.config.ts.timestamp-1741695773320-7fe521380e2e78.mjs
│ │ │ ├── switch
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Styling.vue
│ │ │ │ │ ├── SwitchDemo.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ ├── table
│ │ │ │ ├── README.md
│ │ │ │ ├── examples
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── favicon.png
│ │ │ │ │ └── index.html
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── Demo.vue
│ │ │ │ │ │ ├── MainTable.vue
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── TableBody.vue
│ │ │ │ │ │ ├── TableCellActionItems.vue
│ │ │ │ │ │ ├── TableFilters.vue
│ │ │ │ │ │ ├── TableHead.vue
│ │ │ │ │ │ ├── TablePagination.vue
│ │ │ │ │ │ ├── TableRow.vue
│ │ │ │ │ │ ├── TableSearch.vue
│ │ │ │ │ │ └── Tooltip.vue
│ │ │ │ │ ├── functions
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── dark.ts
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── table.ts
│ │ │ │ │ └── main.ts
│ │ │ │ ├── tests
│ │ │ │ │ └── example.test.ts
│ │ │ │ └── tsconfig.json
│ │ │ ├── transition
│ │ │ │ ├── README.md
│ │ │ │ ├── api-extractor.json
│ │ │ │ ├── components.d.ts
│ │ │ │ ├── index.html
│ │ │ │ ├── package.json
│ │ │ │ ├── public
│ │ │ │ │ └── stacks.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.vue
│ │ │ │ │ ├── Example.vue
│ │ │ │ │ ├── Footer.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── Installation.vue
│ │ │ │ │ ├── Usage.vue
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── stacks.svg
│ │ │ │ │ ├── composables
│ │ │ │ │ │ ├── useCopyCode.ts
│ │ │ │ │ │ ├── useDarkMode.ts
│ │ │ │ │ │ ├── useIsDocumentHidden.ts
│ │ │ │ │ │ └── useSEOHeader.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── highlight.ts
│ │ │ │ ├── tsconfig.build.json
│ │ │ │ ├── tsconfig.json
│ │ │ │ ├── unocss.config.ts
│ │ │ │ └── vite.config.ts
│ │ │ └── video
│ │ │ │ └── package.json
│ │ ├── config
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── config.ts
│ │ │ │ ├── defaults.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── overrides.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── cron
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── cron.test.ts
│ │ │ └── tsconfig.json
│ │ ├── custom-elements.json
│ │ ├── database
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── column.ts
│ │ │ │ ├── custom
│ │ │ │ │ ├── errors.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── jobs.ts
│ │ │ │ ├── drivers
│ │ │ │ │ ├── defaults
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── passwords.ts
│ │ │ │ │ │ └── traits.ts
│ │ │ │ │ ├── dynamodb.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── mysql.ts
│ │ │ │ │ ├── postgres.ts
│ │ │ │ │ └── sqlite.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── migrations.ts
│ │ │ │ ├── query-logger.ts
│ │ │ │ ├── query-parser.ts
│ │ │ │ ├── schema.ts
│ │ │ │ ├── seeder.ts
│ │ │ │ ├── table.ts
│ │ │ │ ├── tools
│ │ │ │ │ └── setup.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── datetime
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── desktop
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── development
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── dns
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ └── aws.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── docs
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── meta.ts
│ │ │ │ ├── plugins.ts
│ │ │ │ └── scripts
│ │ │ │ │ └── pwa.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── email
│ │ │ ├── README.md
│ │ │ ├── build-inbound.ts
│ │ │ ├── build.ts
│ │ │ ├── email-forwarder.cjs
│ │ │ ├── email-forwarder.zip
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── base.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── mailgun.ts
│ │ │ │ │ ├── mailtrap.ts
│ │ │ │ │ ├── nodemailer.ts
│ │ │ │ │ ├── sendgrid.ts
│ │ │ │ │ └── ses.ts
│ │ │ │ ├── email.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── send.ts
│ │ │ │ ├── server
│ │ │ │ │ ├── converter.ts
│ │ │ │ │ ├── inbound.ts
│ │ │ │ │ └── outbound.ts
│ │ │ │ ├── template.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils
│ │ │ │ │ └── config.ts
│ │ │ ├── tests
│ │ │ │ └── email.test.ts
│ │ │ └── tsconfig.json
│ │ ├── enums
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── env
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── error-handling
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── handler.ts
│ │ │ │ ├── http.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── model.ts
│ │ │ │ ├── utils.ts
│ │ │ │ └── views
│ │ │ │ │ └── 500.html
│ │ │ ├── tests
│ │ │ │ └── error-handling.test.ts
│ │ │ └── tsconfig.json
│ │ ├── events
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── events.test.ts
│ │ │ └── tsconfig.json
│ │ ├── faker
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── faker.test.ts
│ │ │ └── tsconfig.json
│ │ ├── git-hooks.config.ts
│ │ ├── git
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── git.test.ts
│ │ │ └── tsconfig.json
│ │ ├── health
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── ohdear.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── notifications
│ │ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── http
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ └── tsconfig.json
│ │ ├── index.ts
│ │ ├── lint
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── tests
│ │ │ │ └── lint.test.ts
│ │ │ └── tsconfig.json
│ │ ├── logging
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── clarity.config.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── notifications
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── chat.ts
│ │ │ │ │ ├── email.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── push.ts
│ │ │ │ │ └── sms.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── tailwind.config.ts
│ │ │ │ └── utils
│ │ │ │ │ ├── config.ts
│ │ │ │ │ └── template.html
│ │ │ ├── tests
│ │ │ │ ├── chat
│ │ │ │ │ └── Slack.test.ts
│ │ │ │ ├── email
│ │ │ │ │ ├── Mailgun.test.ts
│ │ │ │ │ └── Sendgrid.test.ts
│ │ │ │ └── sms
│ │ │ │ │ └── Twilio.test.ts
│ │ │ └── tsconfig.json
│ │ ├── objects
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── orm
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── builder.ts
│ │ │ │ ├── db.ts
│ │ │ │ ├── generate.ts
│ │ │ │ ├── generated
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── table-traits.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── requests.ts
│ │ │ │ ├── subquery.ts
│ │ │ │ ├── transaction.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils.ts
│ │ │ └── tsconfig.json
│ │ ├── package.json
│ │ ├── path
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── payments
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── billable
│ │ │ │ │ ├── charge.ts
│ │ │ │ │ ├── checkout.ts
│ │ │ │ │ ├── customer.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── intent.ts
│ │ │ │ │ ├── invoice.ts
│ │ │ │ │ ├── payment-method.ts
│ │ │ │ │ ├── price.ts
│ │ │ │ │ ├── setup-products.ts
│ │ │ │ │ ├── subscription.ts
│ │ │ │ │ └── transaction.ts
│ │ │ │ ├── drivers
│ │ │ │ │ └── stripe.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── pkgx.yaml
│ │ ├── playwright.config.ts
│ │ ├── plugins
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── plugins.test.ts
│ │ │ └── tsconfig.json
│ │ ├── push
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── expo.ts
│ │ │ │ │ ├── fcm.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── query-builder
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── kysely.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── queue
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── action.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── job.ts
│ │ │ │ ├── process.ts
│ │ │ │ ├── sample.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── realtime
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── broadcast.ts
│ │ │ │ ├── channel.ts
│ │ │ │ ├── drivers
│ │ │ │ │ ├── bun.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── pusher.ts
│ │ │ │ │ └── socket.ts
│ │ │ │ ├── factory.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── ws.ts
│ │ │ ├── tests
│ │ │ │ ├── drivers.test.ts
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── registry
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── registry.test.ts
│ │ │ └── tsconfig.json
│ │ ├── repl
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── router
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── build2.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── middleware.ts
│ │ │ │ ├── request.ts
│ │ │ │ ├── response.ts
│ │ │ │ ├── router.ts
│ │ │ │ ├── server.ts
│ │ │ │ ├── static.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── scheduler
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── run.ts
│ │ │ │ ├── schedule.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── scheduler.test.ts
│ │ │ └── tsconfig.json
│ │ ├── search-engine
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── documents
│ │ │ │ │ ├── add.ts
│ │ │ │ │ ├── flush.ts
│ │ │ │ │ ├── index-list.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── settings.ts
│ │ │ │ ├── drivers
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── meilisearch.ts
│ │ │ │ │ └── opensearch.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── security
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── crypt.ts
│ │ │ │ ├── hash.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── key.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── server
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── config.ts
│ │ │ │ ├── controllers
│ │ │ │ │ └── base.ts
│ │ │ │ ├── imports.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── shell
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── buddy.plugin.zsh
│ │ │ │ └── index.ts
│ │ │ └── tsconfig.json
│ │ ├── slug
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ └── unique.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── sms
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── drivers
│ │ │ │ │ ├── gupshup.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── nexmo.ts
│ │ │ │ │ ├── plivo.ts
│ │ │ │ │ ├── sms77.ts
│ │ │ │ │ ├── sns.ts
│ │ │ │ │ ├── telnyx.ts
│ │ │ │ │ ├── termii.ts
│ │ │ │ │ └── twilio.ts
│ │ │ │ └── index.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── socials
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── abstract.ts
│ │ │ │ ├── drivers
│ │ │ │ │ ├── facebook.ts
│ │ │ │ │ ├── github.ts
│ │ │ │ │ ├── google.ts
│ │ │ │ │ └── twitter.ts
│ │ │ │ ├── exceptions.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── token.ts
│ │ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── storage
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── logs
│ │ │ │ └── stacks.log
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── copy.ts
│ │ │ │ ├── delete.ts
│ │ │ │ ├── drivers
│ │ │ │ │ ├── aws.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── local.ts
│ │ │ │ │ └── memory.ts
│ │ │ │ ├── files.ts
│ │ │ │ ├── flystorage.ts
│ │ │ │ ├── folders.ts
│ │ │ │ ├── fs.ts
│ │ │ │ ├── glob.ts
│ │ │ │ ├── hash.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── move.ts
│ │ │ │ ├── storage.ts
│ │ │ │ ├── visibility.ts
│ │ │ │ └── zip.ts
│ │ │ ├── tests
│ │ │ │ ├── dirs
│ │ │ │ │ ├── copy.txt
│ │ │ │ │ ├── delete.txt
│ │ │ │ │ ├── move.txt
│ │ │ │ │ └── sample.txt
│ │ │ │ ├── example.test.ts
│ │ │ │ └── localStorage.test.ts
│ │ │ └── tsconfig.json
│ │ ├── strings
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── case.ts
│ │ │ │ ├── detect-indent.ts
│ │ │ │ ├── detect-newline.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── is.ts
│ │ │ │ ├── macro.ts
│ │ │ │ ├── pluralize.ts
│ │ │ │ ├── slug.ts
│ │ │ │ ├── sponge-case.ts
│ │ │ │ ├── string.ts
│ │ │ │ ├── swap-case.ts
│ │ │ │ ├── title-case.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── strings.test.ts
│ │ │ └── tsconfig.json
│ │ ├── testing
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── database.ts
│ │ │ │ ├── dynamodb.ts
│ │ │ │ ├── feature.ts
│ │ │ │ └── index.ts
│ │ │ └── tsconfig.json
│ │ ├── tinker
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ └── index.ts
│ │ │ └── tsconfig.json
│ │ ├── tsconfig.build.json
│ │ ├── tsconfig.json
│ │ ├── tunnel
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ └── tunnel.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── types
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── ai.ts
│ │ │ │ ├── analytics.ts
│ │ │ │ ├── api.ts
│ │ │ │ ├── app.ts
│ │ │ │ ├── attributes.ts
│ │ │ │ ├── auth.ts
│ │ │ │ ├── auto-imports.ts
│ │ │ │ ├── binary.ts
│ │ │ │ ├── build.ts
│ │ │ │ ├── cache.ts
│ │ │ │ ├── cdn.ts
│ │ │ │ ├── chat.ts
│ │ │ │ ├── cli.ts
│ │ │ │ ├── cloud.ts
│ │ │ │ ├── components.ts
│ │ │ │ ├── configure.ts
│ │ │ │ ├── cron-jobs.ts
│ │ │ │ ├── database.ts
│ │ │ │ ├── dependencies.ts
│ │ │ │ ├── deploy.ts
│ │ │ │ ├── dns.ts
│ │ │ │ ├── docs.ts
│ │ │ │ ├── email.ts
│ │ │ │ ├── env.ts
│ │ │ │ ├── errors.ts
│ │ │ │ ├── events.ts
│ │ │ │ ├── exit-code.ts
│ │ │ │ ├── file-systems.ts
│ │ │ │ ├── git.ts
│ │ │ │ ├── hashing.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── i18n.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── inspect.ts
│ │ │ │ ├── layout.ts
│ │ │ │ ├── library.ts
│ │ │ │ ├── logging.ts
│ │ │ │ ├── manifest.ts
│ │ │ │ ├── model-names.ts
│ │ │ │ ├── model.ts
│ │ │ │ ├── native.ts
│ │ │ │ ├── notifications.ts
│ │ │ │ ├── pages.ts
│ │ │ │ ├── payments.ts
│ │ │ │ ├── ports.ts
│ │ │ │ ├── promise.ts
│ │ │ │ ├── push.ts
│ │ │ │ ├── pwa.ts
│ │ │ │ ├── queue.ts
│ │ │ │ ├── reactivity.ts
│ │ │ │ ├── realtime.ts
│ │ │ │ ├── request.ts
│ │ │ │ ├── response.ts
│ │ │ │ ├── router.ts
│ │ │ │ ├── saas.ts
│ │ │ │ ├── scheduler.ts
│ │ │ │ ├── search-engine.ts
│ │ │ │ ├── security.ts
│ │ │ │ ├── server.ts
│ │ │ │ ├── services.ts
│ │ │ │ ├── settings-config.ts
│ │ │ │ ├── sms.ts
│ │ │ │ ├── ssg.ts
│ │ │ │ ├── stacks.ts
│ │ │ │ ├── storage.ts
│ │ │ │ ├── table-names.ts
│ │ │ │ ├── tables.ts
│ │ │ │ ├── team.ts
│ │ │ │ ├── ui.ts
│ │ │ │ └── utils.ts
│ │ │ └── tsconfig.json
│ │ ├── ui
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── components.ts
│ │ │ │ ├── components
│ │ │ │ │ ├── autocomplete.ts
│ │ │ │ │ ├── disclosure.ts
│ │ │ │ │ ├── menu.ts
│ │ │ │ │ ├── modal.ts
│ │ │ │ │ ├── popover.ts
│ │ │ │ │ ├── radio-group.ts
│ │ │ │ │ ├── select.ts
│ │ │ │ │ ├── tabs.ts
│ │ │ │ │ ├── toggle.ts
│ │ │ │ │ └── transition.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── uno.config.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── utils
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── scripts
│ │ │ │ └── export-size.ts
│ │ │ ├── src
│ │ │ │ ├── clean.ts
│ │ │ │ ├── config.ts
│ │ │ │ ├── equal.ts
│ │ │ │ ├── export-size.ts
│ │ │ │ ├── find.ts
│ │ │ │ ├── git.ts
│ │ │ │ ├── glob.ts
│ │ │ │ ├── hash.ts
│ │ │ │ ├── helpers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── macroable.ts
│ │ │ │ ├── utils.ts
│ │ │ │ └── versions.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── validation
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── is.ts
│ │ │ │ ├── reporter.ts
│ │ │ │ ├── rules.ts
│ │ │ │ ├── schema.ts
│ │ │ │ ├── types
│ │ │ │ │ └── index.ts
│ │ │ │ └── validator.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── vite-config
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── api.ts
│ │ │ │ ├── components.ts
│ │ │ │ ├── dashboard.ts
│ │ │ │ ├── desktop.ts
│ │ │ │ ├── example-vue.ts
│ │ │ │ ├── example-wc.ts
│ │ │ │ ├── functions.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── system-tray.ts
│ │ │ │ ├── views.ts
│ │ │ │ └── web-components.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── vite-plugin
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── auto-imports.ts
│ │ │ │ ├── components.ts
│ │ │ │ ├── css-engine.ts
│ │ │ │ ├── devtools.ts
│ │ │ │ ├── docs.ts
│ │ │ │ ├── i18n.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── inspect.ts
│ │ │ │ ├── layouts.ts
│ │ │ │ ├── markdown.ts
│ │ │ │ ├── pages.ts
│ │ │ │ ├── pwa.ts
│ │ │ │ ├── router.ts
│ │ │ │ ├── stacks.ts
│ │ │ │ └── ui-engine.ts
│ │ │ ├── tests
│ │ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ │ ├── web-types.json
│ │ ├── whois
│ │ │ ├── README.md
│ │ │ ├── build.ts
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── constants.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils.ts
│ │ │ ├── tests
│ │ │ │ └── whois.test.ts
│ │ │ └── tsconfig.json
│ │ └── x-ray
│ │ │ ├── README.md
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── routes
│ │ │ └── index.ts
│ │ │ ├── src
│ │ │ ├── client.ts
│ │ │ ├── desktop
│ │ │ │ ├── App.vue
│ │ │ │ ├── api
│ │ │ │ │ ├── routes
│ │ │ │ │ │ └── api
│ │ │ │ │ │ │ ├── logs.ts
│ │ │ │ │ │ │ └── store-logs.ts
│ │ │ │ │ ├── src
│ │ │ │ │ │ └── types.ts
│ │ │ │ │ └── storage
│ │ │ │ │ │ └── index.ts
│ │ │ │ ├── functions
│ │ │ │ │ ├── http.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── main.ts
│ │ │ │ ├── modules
│ │ │ │ │ ├── counter
│ │ │ │ │ │ └── mod.vue
│ │ │ │ │ └── fetcher
│ │ │ │ │ │ └── mod.vue
│ │ │ │ ├── plugins
│ │ │ │ │ └── unified
│ │ │ │ │ │ ├── unified-app.ts
│ │ │ │ │ │ └── unified-styles.scss
│ │ │ │ ├── services
│ │ │ │ │ └── http.ts
│ │ │ │ └── styles
│ │ │ │ │ └── app.scss
│ │ │ ├── http.ts
│ │ │ ├── index.ts
│ │ │ ├── ray.config.ts
│ │ │ └── types.ts
│ │ │ ├── tests
│ │ │ └── example.test.ts
│ │ │ └── tsconfig.json
│ ├── defaults
│ │ ├── .gitkeep
│ │ ├── TODO.md
│ │ ├── actions
│ │ │ ├── AI
│ │ │ │ ├── AskAction.ts
│ │ │ │ └── SummaryAction.ts
│ │ │ ├── Auth
│ │ │ │ ├── GenerateAuthenticationAction.ts
│ │ │ │ ├── GenerateRegistrationAction.ts
│ │ │ │ ├── VerifyAuthenticationAction.ts
│ │ │ │ └── VerifyRegistrationAction.ts
│ │ │ ├── Buddy
│ │ │ │ ├── CommandsAction.ts
│ │ │ │ └── VersionsAction.ts
│ │ │ ├── Dashboard
│ │ │ │ ├── Actions
│ │ │ │ │ ├── CreateAction.ts
│ │ │ │ │ ├── GetActionCount.ts
│ │ │ │ │ └── GetActions.ts
│ │ │ │ ├── Commands
│ │ │ │ │ ├── CreateCommand.ts
│ │ │ │ │ ├── GetAverageCommandTime.ts
│ │ │ │ │ ├── GetCommandCount.ts
│ │ │ │ │ ├── GetCommandSuccessRate.ts
│ │ │ │ │ └── GetCommands.ts
│ │ │ │ ├── CreateDnsRecords.ts
│ │ │ │ ├── CreateMailbox.ts
│ │ │ │ ├── Deployments
│ │ │ │ │ ├── CreateDeployment.ts
│ │ │ │ │ ├── GetAverageDeploymentTime.ts
│ │ │ │ │ ├── GetDeployScript.ts
│ │ │ │ │ ├── GetDeploymentCount.ts
│ │ │ │ │ ├── GetDeploymentLiveTerminalOutput.ts
│ │ │ │ │ ├── GetDeployments.ts
│ │ │ │ │ ├── GetRecentDeployments.ts
│ │ │ │ │ └── UpdateDeployScript.ts
│ │ │ │ ├── GetDnsRecords.ts
│ │ │ │ ├── GetEmailInboxes.ts
│ │ │ │ ├── GetProjects.ts
│ │ │ │ ├── GetRecentCommits.ts
│ │ │ │ ├── Jobs
│ │ │ │ │ ├── CreateJob.ts
│ │ │ │ │ ├── GetAverageJobTime.ts
│ │ │ │ │ ├── GetJobHistory.ts
│ │ │ │ │ ├── GetJobs.ts
│ │ │ │ │ └── GetJobsPerMinute.ts
│ │ │ │ ├── Library
│ │ │ │ │ ├── CreateComponent.ts
│ │ │ │ │ ├── CreateFunction.ts
│ │ │ │ │ ├── GetAverageReleaseTime.ts
│ │ │ │ │ ├── GetComponents.ts
│ │ │ │ │ ├── GetComponentsDownloadCount.ts
│ │ │ │ │ ├── GetDownloadCount.ts
│ │ │ │ │ ├── GetFunctions.ts
│ │ │ │ │ ├── GetFunctionsDownloadCount.ts
│ │ │ │ │ ├── GetReleaseCount.ts
│ │ │ │ │ └── GetReleases.ts
│ │ │ │ ├── Models
│ │ │ │ │ ├── GetModels.ts
│ │ │ │ │ ├── GetSubscriberCount.ts
│ │ │ │ │ └── GetUserCount.ts
│ │ │ │ ├── Notifications
│ │ │ │ │ ├── CreateNotification.ts
│ │ │ │ │ ├── GetAverageNotificationTime.ts
│ │ │ │ │ ├── GetNotificationCount.ts
│ │ │ │ │ ├── GetNotificationDeliveryRate.ts
│ │ │ │ │ ├── GetNotificationHistory.ts
│ │ │ │ │ └── GetNotifications.ts
│ │ │ │ ├── Requests
│ │ │ │ │ ├── GetAverageRequestTime.ts
│ │ │ │ │ ├── GetRequestCount.ts
│ │ │ │ │ ├── GetRequestSuccessRate.ts
│ │ │ │ │ └── GetRequests.ts
│ │ │ │ └── Settings
│ │ │ │ │ ├── UpdateAiConfig.ts
│ │ │ │ │ ├── UpdateAnalyticsConfig.ts
│ │ │ │ │ ├── UpdateAppConfig.ts
│ │ │ │ │ ├── UpdateCacheConfig.ts
│ │ │ │ │ ├── UpdateCliConfig.ts
│ │ │ │ │ ├── UpdateCloudConfig.ts
│ │ │ │ │ ├── UpdateDatabaseConfig.ts
│ │ │ │ │ ├── UpdateDnsConfig.ts
│ │ │ │ │ ├── UpdateDocsConfig.ts
│ │ │ │ │ ├── UpdateEmailConfig.ts
│ │ │ │ │ ├── UpdateEnvConfig.ts
│ │ │ │ │ ├── UpdateErrorsConfig.ts
│ │ │ │ │ ├── UpdateFileSystemsConfig.ts
│ │ │ │ │ ├── UpdateGitConfig.ts
│ │ │ │ │ ├── UpdateHashingConfig.ts
│ │ │ │ │ ├── UpdateLibraryConfig.ts
│ │ │ │ │ ├── UpdateLoggerConfig.ts
│ │ │ │ │ ├── UpdateNotificationConfig.ts
│ │ │ │ │ ├── UpdatePaymentConfig.ts
│ │ │ │ │ ├── UpdatePortsConfig.ts
│ │ │ │ │ ├── UpdateQueueConfig.ts
│ │ │ │ │ ├── UpdateSearchEngineConfig.ts
│ │ │ │ │ ├── UpdateSecurityConfig.ts
│ │ │ │ │ ├── UpdateServicesConfig.ts
│ │ │ │ │ ├── UpdateStorageConfig.ts
│ │ │ │ │ ├── UpdateTeamConfig.ts
│ │ │ │ │ └── UpdateUiConfig.ts
│ │ │ ├── HealthAction.ts
│ │ │ ├── InstallAction.ts
│ │ │ ├── LoginAction.ts
│ │ │ ├── Payment
│ │ │ │ ├── CancelSubscriptionAction.ts
│ │ │ │ ├── CreateCheckoutAction.ts
│ │ │ │ ├── CreateInvoiceSubscription.ts
│ │ │ │ ├── CreatePaymentIntentAction.ts
│ │ │ │ ├── CreateSetupIntentAction.ts
│ │ │ │ ├── CreateSubscriptionAction.ts
│ │ │ │ ├── DeleteDefaultPaymentAction.ts
│ │ │ │ ├── FetchActiveSubscriptionAction.ts
│ │ │ │ ├── FetchDefaultPaymentMethodAction.ts
│ │ │ │ ├── FetchPaymentCustomerAction.ts
│ │ │ │ ├── FetchPaymentMethodsAction.ts
│ │ │ │ ├── FetchProductAction.ts
│ │ │ │ ├── FetchTransactionHistoryAction.ts
│ │ │ │ ├── FetchUserSubscriptionsAction.ts
│ │ │ │ ├── SetDefaultPaymentAction.ts
│ │ │ │ ├── SetUserDefaultPaymentAction.ts
│ │ │ │ ├── StorePaymentMethodAction.ts
│ │ │ │ ├── StoreTransactionAction.ts
│ │ │ │ ├── UpdateCustomerAction.ts
│ │ │ │ ├── UpdateDefaultPaymentMethodAction.ts
│ │ │ │ └── UpdateSubscriptionAction.ts
│ │ │ ├── Queue
│ │ │ │ └── FetchQueuesAction.ts
│ │ │ ├── SubscriberEmailAction.ts
│ │ │ └── UserStoreAction.ts
│ │ ├── assets
│ │ │ └── world-map-data.ts
│ │ ├── components
│ │ │ ├── Buttons
│ │ │ │ ├── BaseButton.vue
│ │ │ │ ├── Counter.vue
│ │ │ │ └── ToggleDark.vue
│ │ │ ├── Dashboard
│ │ │ │ ├── Billing
│ │ │ │ │ ├── ActivePlan.vue
│ │ │ │ │ ├── CardBrands.vue
│ │ │ │ │ ├── CardForm.vue
│ │ │ │ │ ├── OneTimePayment.vue
│ │ │ │ │ ├── PaymentForm.vue
│ │ │ │ │ ├── PaymentMethod.vue
│ │ │ │ │ ├── PaymentMethodList.vue
│ │ │ │ │ └── Plans.vue
│ │ │ │ ├── Buttons
│ │ │ │ │ ├── AppButton.vue
│ │ │ │ │ └── IconButton.vue
│ │ │ │ ├── CodeEditor.vue
│ │ │ │ ├── Commerce
│ │ │ │ │ └── Delivery
│ │ │ │ │ │ ├── DeliveryRoutesTable.vue
│ │ │ │ │ │ ├── DigitalDeliveryTable.vue
│ │ │ │ │ │ ├── DriversTable.vue
│ │ │ │ │ │ ├── LicenseKeysTable.vue
│ │ │ │ │ │ ├── LicenseTemplatesTable.vue
│ │ │ │ │ │ ├── Pagination.vue
│ │ │ │ │ │ ├── SearchFilter.vue
│ │ │ │ │ │ ├── ShippingMethodsTable.vue
│ │ │ │ │ │ ├── ShippingRatesTable.vue
│ │ │ │ │ │ ├── ShippingZonesTable.vue
│ │ │ │ │ │ └── TabNavigation.vue
│ │ │ │ ├── Deployments
│ │ │ │ │ ├── ActivityFeed.vue
│ │ │ │ │ ├── DeployScript.vue
│ │ │ │ │ ├── DeploymentHistory.vue
│ │ │ │ │ ├── DeploymentList.vue
│ │ │ │ │ └── LiveTerminalOutput.vue
│ │ │ │ ├── Elements
│ │ │ │ │ └── Dropdown.vue
│ │ │ │ ├── Email
│ │ │ │ │ ├── EmailActivityChart.vue
│ │ │ │ │ ├── EmailCompose.vue
│ │ │ │ │ ├── EmailDetail.vue
│ │ │ │ │ ├── EmailList.vue
│ │ │ │ │ ├── EmailSearch.vue
│ │ │ │ │ └── EmailSidebar.vue
│ │ │ │ ├── MobileSidebar.vue
│ │ │ │ ├── Modals
│ │ │ │ │ ├── BaseModal.vue
│ │ │ │ │ ├── Popups
│ │ │ │ │ │ ├── Alert.vue
│ │ │ │ │ │ └── Toast.vue
│ │ │ │ │ └── ToastWrapper.vue
│ │ │ │ ├── Navbar.vue
│ │ │ │ ├── NotificationErrorModal.vue
│ │ │ │ ├── NotificationStatusBadge.vue
│ │ │ │ ├── Pagination.vue
│ │ │ │ ├── Queue
│ │ │ │ │ └── QueueTable.vue
│ │ │ │ ├── Settings
│ │ │ │ │ ├── Forms
│ │ │ │ │ │ ├── AIForm.vue
│ │ │ │ │ │ ├── AnalyticsForm.vue
│ │ │ │ │ │ ├── AppForm.vue
│ │ │ │ │ │ ├── CLIForm.vue
│ │ │ │ │ │ ├── CacheForm.vue
│ │ │ │ │ │ ├── CloudForm.vue
│ │ │ │ │ │ ├── DNSForm.vue
│ │ │ │ │ │ ├── DatabaseForm.vue
│ │ │ │ │ │ ├── EmailForm.vue
│ │ │ │ │ │ ├── FileSystemForm.vue
│ │ │ │ │ │ ├── HashingForm.vue
│ │ │ │ │ │ ├── LibraryForm.vue
│ │ │ │ │ │ ├── QueueForm.vue
│ │ │ │ │ │ ├── SearchEngineForm.vue
│ │ │ │ │ │ ├── SecurityForm.vue
│ │ │ │ │ │ ├── ServicesForm.vue
│ │ │ │ │ │ ├── StorageForm.vue
│ │ │ │ │ │ └── TeamsForm.vue
│ │ │ │ │ └── SettingsFormManager.vue
│ │ │ │ ├── SettingsHeader.vue
│ │ │ │ ├── SettingsSidebar.vue
│ │ │ │ ├── Sidebar.vue
│ │ │ │ ├── Skeleton
│ │ │ │ │ ├── LoadingCard.vue
│ │ │ │ │ └── LoadingDetails.vue
│ │ │ │ ├── TerminalContainer.vue
│ │ │ │ ├── Tooltip.vue
│ │ │ │ └── Transaction
│ │ │ │ │ └── index.vue
│ │ │ ├── Docs
│ │ │ │ ├── Demo
│ │ │ │ │ ├── ComboboxCode.md
│ │ │ │ │ ├── ComboboxDemo.vue
│ │ │ │ │ ├── DialogCode.md
│ │ │ │ │ ├── DialogDemo.vue
│ │ │ │ │ ├── DocsPlayground.vue
│ │ │ │ │ ├── DropdownCode.md
│ │ │ │ │ ├── DropdownDemo.vue
│ │ │ │ │ ├── Hero.vue
│ │ │ │ │ ├── ListboxCode.md
│ │ │ │ │ ├── ListboxDemo.vue
│ │ │ │ │ ├── NotificationCode.md
│ │ │ │ │ ├── NotificationDemo.vue
│ │ │ │ │ ├── PopoverCode.md
│ │ │ │ │ ├── PopoverDemo.vue
│ │ │ │ │ ├── RadioGroupCode.md
│ │ │ │ │ ├── RadioGroupDemo.vue
│ │ │ │ │ ├── StepperCode.md
│ │ │ │ │ ├── StepperDemo.vue
│ │ │ │ │ ├── SwitchCode.md
│ │ │ │ │ └── SwitchDemo.vue
│ │ │ │ ├── Home.vue
│ │ │ │ ├── HomeContributors.vue
│ │ │ │ ├── HomeSponsors.vue
│ │ │ │ ├── HomeTeam.vue
│ │ │ │ └── TeamMember.vue
│ │ │ ├── Forum
│ │ │ │ ├── ForumBreadcrumb.vue
│ │ │ │ ├── ForumCategory.vue
│ │ │ │ ├── ForumCategoryItem.vue
│ │ │ │ ├── ForumLayout.vue
│ │ │ │ ├── ForumPagination.vue
│ │ │ │ ├── ForumPost.vue
│ │ │ │ ├── ForumReplyForm.vue
│ │ │ │ ├── ForumSidebar.vue
│ │ │ │ ├── ForumTopicItem.vue
│ │ │ │ └── ForumTopicList.vue
│ │ │ ├── Marketing
│ │ │ │ ├── CallToAction.vue
│ │ │ │ ├── ComingSoon.vue
│ │ │ │ ├── Faqs.vue
│ │ │ │ ├── Feature.vue
│ │ │ │ ├── Fields.vue
│ │ │ │ ├── Footer.vue
│ │ │ │ ├── Header.vue
│ │ │ │ ├── Hero.vue
│ │ │ │ ├── Layout.vue
│ │ │ │ ├── NavLink.vue
│ │ │ │ ├── Plan.vue
│ │ │ │ ├── Pricing.vue
│ │ │ │ ├── PrimaryFeatures.vue
│ │ │ │ ├── PrimaryFeatures2.vue
│ │ │ │ ├── SecondaryFeatures.vue
│ │ │ │ └── Testimonials.vue
│ │ │ └── Playground.vue
│ │ ├── docs
│ │ │ ├── api-examples.md
│ │ │ ├── index.md
│ │ │ └── markdown-examples.md
│ │ ├── functions
│ │ │ ├── billing
│ │ │ │ └── payments.ts
│ │ │ ├── cms
│ │ │ │ ├── categorizables.ts
│ │ │ │ ├── pages.ts
│ │ │ │ ├── posts.ts
│ │ │ │ └── taggables.ts
│ │ │ ├── commerce
│ │ │ │ ├── coupons.ts
│ │ │ │ ├── customers.ts
│ │ │ │ ├── gift-cards.ts
│ │ │ │ ├── orders.ts
│ │ │ │ ├── payments.ts
│ │ │ │ ├── products
│ │ │ │ │ ├── categories.ts
│ │ │ │ │ ├── items.ts
│ │ │ │ │ ├── reviews.ts
│ │ │ │ │ ├── units.ts
│ │ │ │ │ └── variants.ts
│ │ │ │ ├── shippings
│ │ │ │ │ ├── delivery-routes.ts
│ │ │ │ │ ├── digital-deliveries.ts
│ │ │ │ │ ├── drivers.ts
│ │ │ │ │ ├── shipping-methods.ts
│ │ │ │ │ ├── shipping-rates.ts
│ │ │ │ │ └── shipping-zones.ts
│ │ │ │ ├── taxes.ts
│ │ │ │ └── waitlist
│ │ │ │ │ ├── products.ts
│ │ │ │ │ └── restaurants.ts
│ │ │ ├── realtime
│ │ │ │ └── websockets.ts
│ │ │ └── types.ts
│ │ ├── ide
│ │ │ ├── .gitignore
│ │ │ ├── cursor
│ │ │ │ └── rules
│ │ │ │ │ ├── auto-imports.mdc
│ │ │ │ │ ├── code-style.mdc
│ │ │ │ │ ├── documentation.mdc
│ │ │ │ │ ├── error-handling-validation.mdc
│ │ │ │ │ ├── key-conventions.mdc
│ │ │ │ │ ├── project-structure.mdc
│ │ │ │ │ ├── readme.mdc
│ │ │ │ │ ├── syntax-formatting.mdc
│ │ │ │ │ ├── testing.mdc
│ │ │ │ │ ├── typescript.mdc
│ │ │ │ │ └── ui-styling.mdc
│ │ │ ├── dictionary.txt
│ │ │ ├── jetbrains
│ │ │ │ ├── .fleet
│ │ │ │ │ └── settings.json
│ │ │ │ ├── .idea
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── .name
│ │ │ │ │ ├── inspectionProfiles
│ │ │ │ │ │ └── Project_Default.xml
│ │ │ │ │ ├── jsLinters
│ │ │ │ │ │ └── eslint.xml
│ │ │ │ │ ├── modules.xml
│ │ │ │ │ ├── stacks.iml
│ │ │ │ │ ├── vcs.xml
│ │ │ │ │ └── webResources.xml
│ │ │ │ ├── IntelliJ IDEA Global Settings
│ │ │ │ ├── installed.txt
│ │ │ │ ├── options
│ │ │ │ │ ├── github-copilot.xml
│ │ │ │ │ ├── nodejs.xml
│ │ │ │ │ └── templates.xml
│ │ │ │ └── templates
│ │ │ │ │ ├── JavaScript.xml
│ │ │ │ │ └── Stacks.xml
│ │ │ ├── vscode
│ │ │ │ ├── .vscode
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── extensions.json
│ │ │ │ │ ├── settings.json
│ │ │ │ │ └── stacks.code-snippets
│ │ │ │ ├── LICENSE.md
│ │ │ │ ├── README.md
│ │ │ │ ├── logo.png
│ │ │ │ └── package.json
│ │ │ └── zed
│ │ │ │ └── .zed
│ │ │ │ └── settings.json
│ │ ├── lang
│ │ │ ├── README.md
│ │ │ ├── de.yml
│ │ │ └── en.yml
│ │ ├── layouts
│ │ │ ├── 403.vue
│ │ │ ├── 404.vue
│ │ │ ├── README.md
│ │ │ ├── dashboard
│ │ │ │ └── default.vue
│ │ │ ├── default.vue
│ │ │ ├── emails
│ │ │ │ └── main.html
│ │ │ ├── maintenance.vue
│ │ │ └── system-tray
│ │ │ │ └── default.vue
│ │ ├── middleware
│ │ │ ├── Api.ts
│ │ │ ├── BearerToken.ts
│ │ │ └── Team.ts
│ │ ├── models
│ │ │ ├── Content
│ │ │ │ ├── Author.ts
│ │ │ │ ├── Page.ts
│ │ │ │ └── Post.ts
│ │ │ ├── Error.ts
│ │ │ ├── FailedJob.ts
│ │ │ ├── Job.ts
│ │ │ ├── Log.ts
│ │ │ ├── PaymentMethod.ts
│ │ │ ├── PaymentProduct.ts
│ │ │ ├── PaymentTransaction.ts
│ │ │ ├── Request.ts
│ │ │ ├── Subscription.ts
│ │ │ ├── commerce
│ │ │ │ ├── Cart.ts
│ │ │ │ ├── CartItem.ts
│ │ │ │ ├── Category.ts
│ │ │ │ ├── Coupon.ts
│ │ │ │ ├── Customer.ts
│ │ │ │ ├── DeliveryRoute.ts
│ │ │ │ ├── DigitalDelivery.ts
│ │ │ │ ├── Driver.ts
│ │ │ │ ├── GiftCard.ts
│ │ │ │ ├── LicenseKey.ts
│ │ │ │ ├── LoyaltyPoint.ts
│ │ │ │ ├── LoyaltyReward.ts
│ │ │ │ ├── Manufacturer.ts
│ │ │ │ ├── Order.ts
│ │ │ │ ├── OrderItem.ts
│ │ │ │ ├── Payment.ts
│ │ │ │ ├── PrintDevice.ts
│ │ │ │ ├── Product.ts
│ │ │ │ ├── ProductItem.ts
│ │ │ │ ├── ProductUnit.ts
│ │ │ │ ├── ProductVariant.ts
│ │ │ │ ├── Receipt.ts
│ │ │ │ ├── Review.ts
│ │ │ │ ├── ShippingMethod.ts
│ │ │ │ ├── ShippingRate.ts
│ │ │ │ ├── ShippingZone.ts
│ │ │ │ ├── TaxRate.ts
│ │ │ │ ├── Transaction.ts
│ │ │ │ ├── WaitlistProduct.ts
│ │ │ │ └── WaitlistRestaurant.ts
│ │ │ └── realtime
│ │ │ │ └── Websocket.ts
│ │ ├── modules
│ │ │ ├── i18n.ts
│ │ │ ├── progress.ts
│ │ │ ├── pwa.ts
│ │ │ └── store.ts
│ │ ├── stores
│ │ │ ├── [name].vue
│ │ │ ├── git.ts
│ │ │ ├── payment.ts
│ │ │ ├── queue.ts
│ │ │ └── user.ts
│ │ ├── vcs
│ │ │ └── github
│ │ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ │ ├── CONTRIBUTING.md
│ │ │ │ ├── EXPLANATIONS.md
│ │ │ │ ├── FUNDING.yml
│ │ │ │ ├── ISSUE_TEMPLATE
│ │ │ │ ├── bug_report.yml
│ │ │ │ ├── config.yml
│ │ │ │ └── feature_request.yml
│ │ │ │ ├── SECURITY.md
│ │ │ │ ├── renovate.json
│ │ │ │ ├── stale.yml
│ │ │ │ └── workflows
│ │ │ │ ├── README.md
│ │ │ │ ├── ci.yml
│ │ │ │ ├── export-size.yml
│ │ │ │ ├── labeler.yml
│ │ │ │ └── release.yml
│ │ └── views
│ │ │ ├── [...all].vue
│ │ │ ├── about.md
│ │ │ ├── auth
│ │ │ ├── login.vue
│ │ │ └── signup.vue
│ │ │ ├── dashboard
│ │ │ ├── [...all].vue
│ │ │ ├── access-tokens
│ │ │ │ └── index.vue
│ │ │ ├── actions
│ │ │ │ └── index.vue
│ │ │ ├── analytics
│ │ │ │ ├── blog
│ │ │ │ │ └── index.vue
│ │ │ │ ├── browsers
│ │ │ │ │ └── index.vue
│ │ │ │ ├── commerce
│ │ │ │ │ ├── sales
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ └── web
│ │ │ │ │ │ └── index.vue
│ │ │ │ ├── countries
│ │ │ │ │ └── index.vue
│ │ │ │ ├── devices
│ │ │ │ │ └── index.vue
│ │ │ │ ├── events
│ │ │ │ │ └── index.vue
│ │ │ │ ├── index.vue
│ │ │ │ ├── marketing
│ │ │ │ │ └── index.vue
│ │ │ │ ├── pages
│ │ │ │ │ └── index.vue
│ │ │ │ ├── referrers
│ │ │ │ │ └── index.vue
│ │ │ │ └── web
│ │ │ │ │ └── index.vue
│ │ │ ├── buddy
│ │ │ │ └── index.vue
│ │ │ ├── cloud
│ │ │ │ └── index.vue
│ │ │ ├── commands
│ │ │ │ └── index.vue
│ │ │ ├── commerce
│ │ │ │ ├── categories
│ │ │ │ │ └── index.vue
│ │ │ │ ├── coupons
│ │ │ │ │ └── index.vue
│ │ │ │ ├── customers
│ │ │ │ │ └── index.vue
│ │ │ │ ├── dashboard
│ │ │ │ │ └── index.vue
│ │ │ │ ├── delivery
│ │ │ │ │ ├── delivery-routes.vue
│ │ │ │ │ ├── digital-delivery.vue
│ │ │ │ │ ├── drivers.vue
│ │ │ │ │ ├── index.vue
│ │ │ │ │ ├── license-keys.vue
│ │ │ │ │ ├── shipping-methods.vue
│ │ │ │ │ ├── shipping-rates.vue
│ │ │ │ │ └── shipping-zones.vue
│ │ │ │ ├── gift-cards
│ │ │ │ │ └── index.vue
│ │ │ │ ├── manufacturers
│ │ │ │ │ └── index.vue
│ │ │ │ ├── orders
│ │ │ │ │ └── index.vue
│ │ │ │ ├── payments
│ │ │ │ │ └── index.vue
│ │ │ │ ├── pos
│ │ │ │ │ └── index.vue
│ │ │ │ ├── printers
│ │ │ │ │ ├── devices
│ │ │ │ │ │ └── index.vue
│ │ │ │ │ └── receipts
│ │ │ │ │ │ └── index.vue
│ │ │ │ ├── products
│ │ │ │ │ ├── detail.vue
│ │ │ │ │ └── index.vue
│ │ │ │ ├── reviews
│ │ │ │ │ ├── index.ts
│ │ │ │ │ └── index.vue
│ │ │ │ ├── taxes
│ │ │ │ │ └── index.vue
│ │ │ │ ├── units
│ │ │ │ │ └── index.vue
│ │ │ │ ├── variants
│ │ │ │ │ └── index.vue
│ │ │ │ └── waitlist
│ │ │ │ │ ├── products.vue
│ │ │ │ │ └── restaurant.vue
│ │ │ ├── components
│ │ │ │ └── index.vue
│ │ │ ├── content
│ │ │ │ ├── authors
│ │ │ │ │ └── index.vue
│ │ │ │ ├── categories
│ │ │ │ │ └── index.vue
│ │ │ │ ├── comments
│ │ │ │ │ └── index.vue
│ │ │ │ ├── dashboard.vue
│ │ │ │ ├── files
│ │ │ │ │ └── index.vue
│ │ │ │ ├── pages
│ │ │ │ │ └── index.vue
│ │ │ │ ├── posts
│ │ │ │ │ └── index.vue
│ │ │ │ ├── seo
│ │ │ │ │ └── index.vue
│ │ │ │ └── tags
│ │ │ │ │ └── index.vue
│ │ │ ├── data
│ │ │ │ ├── activity
│ │ │ │ │ └── index.vue
│ │ │ │ ├── dashboard
│ │ │ │ │ └── index.vue
│ │ │ │ ├── subscribers.vue
│ │ │ │ ├── teams.vue
│ │ │ │ └── users.vue
│ │ │ ├── dependencies
│ │ │ │ └── index.vue
│ │ │ ├── deployments
│ │ │ │ ├── [id].vue
│ │ │ │ └── index.vue
│ │ │ ├── dns
│ │ │ │ └── index.vue
│ │ │ ├── environment
│ │ │ │ └── index.vue
│ │ │ ├── errors
│ │ │ │ └── index.vue
│ │ │ ├── functions
│ │ │ │ └── index.vue
│ │ │ ├── health
│ │ │ │ └── index.vue
│ │ │ ├── inbox
│ │ │ │ ├── activity.vue
│ │ │ │ ├── index.vue
│ │ │ │ └── settings.vue
│ │ │ ├── index.vue
│ │ │ ├── insights
│ │ │ │ └── index.vue
│ │ │ ├── jobs
│ │ │ │ ├── [id].vue
│ │ │ │ ├── history.vue
│ │ │ │ └── index.vue
│ │ │ ├── logs
│ │ │ │ └── index.vue
│ │ │ ├── mailboxes
│ │ │ │ └── index.vue
│ │ │ ├── management
│ │ │ │ └── permissions
│ │ │ │ │ └── index.vue
│ │ │ ├── marketing
│ │ │ │ ├── campaigns
│ │ │ │ │ └── index.vue
│ │ │ │ ├── lists
│ │ │ │ │ └── index.vue
│ │ │ │ ├── reviews
│ │ │ │ │ └── index.vue
│ │ │ │ └── social-posts
│ │ │ │ │ └── index.vue
│ │ │ ├── notifications
│ │ │ │ ├── dashboard.vue
│ │ │ │ ├── email.vue
│ │ │ │ ├── history.vue
│ │ │ │ └── sms.vue
│ │ │ ├── packages
│ │ │ │ └── index.vue
│ │ │ ├── queries
│ │ │ │ ├── [id].vue
│ │ │ │ ├── history.vue
│ │ │ │ ├── index.vue
│ │ │ │ └── slow.vue
│ │ │ ├── queue
│ │ │ │ └── index.vue
│ │ │ ├── realtime
│ │ │ │ └── index.vue
│ │ │ ├── releases
│ │ │ │ └── index.vue
│ │ │ ├── requests
│ │ │ │ └── index.vue
│ │ │ ├── serverless
│ │ │ │ └── index.vue
│ │ │ ├── servers
│ │ │ │ ├── [id].vue
│ │ │ │ └── index.vue
│ │ │ ├── settings
│ │ │ │ ├── billing.vue
│ │ │ │ └── mail.vue
│ │ │ └── teams
│ │ │ │ └── [id].vue
│ │ │ ├── forum
│ │ │ ├── category.vue
│ │ │ ├── index.vue
│ │ │ ├── new-topic.vue
│ │ │ ├── profile.vue
│ │ │ └── topic.vue
│ │ │ ├── hello-world
│ │ │ └── [name].vue
│ │ │ ├── index.vue
│ │ │ ├── system-tray
│ │ │ └── index.vue
│ │ │ └── table
│ │ │ └── index.vue
│ ├── docs
│ │ ├── .gitignore
│ │ ├── .vitepress
│ │ │ ├── components.d.ts
│ │ │ ├── config.ts
│ │ │ ├── sw.ts
│ │ │ ├── theme
│ │ │ │ └── index.ts
│ │ │ ├── unocss.config.ts
│ │ │ └── vite.config.ts
│ │ ├── contributors.json
│ │ ├── contributors.ts
│ │ └── package.json
│ ├── email
│ │ ├── .gitignore
│ │ ├── .npmrc
│ │ ├── package.json
│ │ └── src
│ │ │ └── index.ts
│ ├── env.d.ts
│ ├── env.ts
│ ├── libs
│ │ ├── components
│ │ │ ├── vue
│ │ │ │ ├── index.html
│ │ │ │ ├── main.ts
│ │ │ │ └── package.json
│ │ │ └── web
│ │ │ │ └── package.json
│ │ ├── entries
│ │ │ ├── .gitignore
│ │ │ └── README.md
│ │ ├── examples
│ │ │ ├── vue
│ │ │ │ ├── App.vue
│ │ │ │ ├── favicon.png
│ │ │ │ └── index.html
│ │ │ └── web
│ │ │ │ ├── favicon.png
│ │ │ │ └── index.html
│ │ └── functions
│ │ │ └── package.json
│ ├── models
│ │ ├── Author.ts
│ │ ├── Cart.ts
│ │ ├── CartItem.ts
│ │ ├── Category.ts
│ │ ├── Coupon.ts
│ │ ├── Customer.ts
│ │ ├── DeliveryRoute.ts
│ │ ├── Deployment.ts
│ │ ├── DigitalDelivery.ts
│ │ ├── Driver.ts
│ │ ├── Error.ts
│ │ ├── FailedJob.ts
│ │ ├── GiftCard.ts
│ │ ├── Job.ts
│ │ ├── LicenseKey.ts
│ │ ├── Log.ts
│ │ ├── LoyaltyPoint.ts
│ │ ├── LoyaltyReward.ts
│ │ ├── Manufacturer.ts
│ │ ├── OAuthAccessToken.ts
│ │ ├── OAuthClient.ts
│ │ ├── Order.ts
│ │ ├── OrderItem.ts
│ │ ├── Page.ts
│ │ ├── Payment.ts
│ │ ├── PaymentMethod.ts
│ │ ├── PaymentProduct.ts
│ │ ├── PaymentTransaction.ts
│ │ ├── PersonalAccessToken.ts
│ │ ├── Post.ts
│ │ ├── PrintDevice.ts
│ │ ├── Product.ts
│ │ ├── ProductItem.ts
│ │ ├── ProductUnit.ts
│ │ ├── ProductVariant.ts
│ │ ├── Project.ts
│ │ ├── Receipt.ts
│ │ ├── Release.ts
│ │ ├── Request.ts
│ │ ├── Review.ts
│ │ ├── ShippingMethod.ts
│ │ ├── ShippingRate.ts
│ │ ├── ShippingZone.ts
│ │ ├── Subscriber.ts
│ │ ├── SubscriberEmail.ts
│ │ ├── Subscription.ts
│ │ ├── TaxRate.ts
│ │ ├── Team.ts
│ │ ├── Transaction.ts
│ │ ├── User.ts
│ │ ├── WaitlistProduct.ts
│ │ ├── WaitlistRestaurant.ts
│ │ └── Websocket.ts
│ ├── orm
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── routes.ts
│ │ └── src
│ │ │ ├── index.ts
│ │ │ ├── models
│ │ │ ├── Author.ts
│ │ │ ├── Cart.ts
│ │ │ ├── CartItem.ts
│ │ │ ├── Category.ts
│ │ │ ├── Coupon.ts
│ │ │ ├── Customer.ts
│ │ │ ├── DeliveryRoute.ts
│ │ │ ├── Deployment.ts
│ │ │ ├── DigitalDelivery.ts
│ │ │ ├── Driver.ts
│ │ │ ├── Error.ts
│ │ │ ├── FailedJob.ts
│ │ │ ├── GiftCard.ts
│ │ │ ├── Job.ts
│ │ │ ├── LicenseKey.ts
│ │ │ ├── Log.ts
│ │ │ ├── LoyaltyPoint.ts
│ │ │ ├── LoyaltyReward.ts
│ │ │ ├── Manufacturer.ts
│ │ │ ├── OAuthAccessToken.ts
│ │ │ ├── OAuthClient.ts
│ │ │ ├── Order.ts
│ │ │ ├── OrderItem.ts
│ │ │ ├── Page.ts
│ │ │ ├── Payment.ts
│ │ │ ├── PaymentMethod.ts
│ │ │ ├── PaymentProduct.ts
│ │ │ ├── PaymentTransaction.ts
│ │ │ ├── PersonalAccessToken.ts
│ │ │ ├── Post.ts
│ │ │ ├── PrintDevice.ts
│ │ │ ├── Product.ts
│ │ │ ├── ProductItem.ts
│ │ │ ├── ProductUnit.ts
│ │ │ ├── ProductVariant.ts
│ │ │ ├── Project.ts
│ │ │ ├── Receipt.ts
│ │ │ ├── Release.ts
│ │ │ ├── Request.ts
│ │ │ ├── Review.ts
│ │ │ ├── ShippingMethod.ts
│ │ │ ├── ShippingRate.ts
│ │ │ ├── ShippingZone.ts
│ │ │ ├── Subscriber.ts
│ │ │ ├── SubscriberEmail.ts
│ │ │ ├── Subscription.ts
│ │ │ ├── TaxRate.ts
│ │ │ ├── Team.ts
│ │ │ ├── Transaction.ts
│ │ │ ├── User.ts
│ │ │ ├── WaitlistProduct.ts
│ │ │ ├── WaitlistRestaurant.ts
│ │ │ └── Websocket.ts
│ │ │ ├── tests
│ │ │ └── Models.test.ts
│ │ │ ├── types.ts
│ │ │ └── utils
│ │ │ └── base.ts
│ ├── package.json
│ ├── pkgx.yaml
│ ├── requests
│ │ ├── AuthorRequest.ts
│ │ ├── CartItemRequest.ts
│ │ ├── CartRequest.ts
│ │ ├── CategorizableModelsRequest.ts
│ │ ├── CategorizableRequest.ts
│ │ ├── CategoryRequest.ts
│ │ ├── CommentableUpvotesRequest.ts
│ │ ├── CommentablesRequest.ts
│ │ ├── CouponRequest.ts
│ │ ├── CustomerRequest.ts
│ │ ├── DeliveryRouteRequest.ts
│ │ ├── DeploymentRequest.ts
│ │ ├── DigitalDeliveryRequest.ts
│ │ ├── DriverRequest.ts
│ │ ├── ErrorRequest.ts
│ │ ├── FailedJobRequest.ts
│ │ ├── GiftCardRequest.ts
│ │ ├── JobRequest.ts
│ │ ├── LicenseKeyRequest.ts
│ │ ├── LogRequest.ts
│ │ ├── LoyaltyPointRequest.ts
│ │ ├── LoyaltyRewardRequest.ts
│ │ ├── ManufacturerRequest.ts
│ │ ├── MigrationsRequest.ts
│ │ ├── OAuthAccessTokenRequest.ts
│ │ ├── OAuthClientRequest.ts
│ │ ├── OrderItemRequest.ts
│ │ ├── OrderRequest.ts
│ │ ├── PageRequest.ts
│ │ ├── PasskeysRequest.ts
│ │ ├── PasswordResetsRequest.ts
│ │ ├── PaymentMethodRequest.ts
│ │ ├── PaymentProductRequest.ts
│ │ ├── PaymentRequest.ts
│ │ ├── PaymentTransactionRequest.ts
│ │ ├── PersonalAccessTokenRequest.ts
│ │ ├── PostRequest.ts
│ │ ├── PrintDeviceRequest.ts
│ │ ├── ProductItemRequest.ts
│ │ ├── ProductRequest.ts
│ │ ├── ProductUnitRequest.ts
│ │ ├── ProductVariantRequest.ts
│ │ ├── ProjectRequest.ts
│ │ ├── ReceiptRequest.ts
│ │ ├── ReleaseRequest.ts
│ │ ├── RequestRequest.ts
│ │ ├── ReviewRequest.ts
│ │ ├── ShippingMethodRequest.ts
│ │ ├── ShippingRateRequest.ts
│ │ ├── ShippingZoneRequest.ts
│ │ ├── SubscriberEmailRequest.ts
│ │ ├── SubscriberRequest.ts
│ │ ├── SubscriptionRequest.ts
│ │ ├── TaggableModelsRequest.ts
│ │ ├── TaggableRequest.ts
│ │ ├── TaxRateRequest.ts
│ │ ├── TeamRequest.ts
│ │ ├── TransactionRequest.ts
│ │ ├── UserRequest.ts
│ │ ├── WaitlistProductRequest.ts
│ │ ├── WaitlistRestaurantRequest.ts
│ │ └── WebsocketRequest.ts
│ ├── scripts
│ │ ├── fresh
│ │ ├── generate-changelog
│ │ ├── install
│ │ ├── link
│ │ ├── lint
│ │ ├── move-built-src-files.ts
│ │ ├── move-dts-files.ts
│ │ ├── pkgx-install
│ │ ├── pkgx-uninstall
│ │ ├── pkgx-update
│ │ ├── publish
│ │ └── publish-dummy-libs
│ ├── server-auto-imports.json
│ ├── server
│ │ ├── .dockerignore
│ │ ├── .gitignore
│ │ ├── Dockerfile
│ │ ├── build.ts
│ │ ├── dev
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── index.ts
│ │ │ └── utils.ts
│ │ ├── tsconfig.docker.json
│ │ └── tsconfig.json
│ ├── types
│ │ ├── actions.d.ts
│ │ ├── attributes.ts
│ │ ├── billing.ts
│ │ ├── browser-auto-imports.d.ts
│ │ ├── components.d.ts
│ │ ├── dashboard-router.d.ts
│ │ ├── env.d.ts
│ │ ├── events.ts
│ │ ├── git.ts
│ │ ├── requests.d.ts
│ │ ├── reset.d.ts
│ │ ├── router.d.ts
│ │ ├── server-auto-imports.d.ts
│ │ ├── shims.d.ts
│ │ ├── src
│ │ │ └── auth.ts
│ │ ├── stacks.d.ts
│ │ ├── system-tray-router.d.ts
│ │ └── traits.d.ts
│ └── views
│ │ ├── dashboard
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── src-tauri
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── build.rs
│ │ │ ├── icons
│ │ │ │ ├── 128x128.png
│ │ │ │ ├── 128x128@2x.png
│ │ │ │ ├── 32x32.png
│ │ │ │ ├── Square107x107Logo.png
│ │ │ │ ├── Square142x142Logo.png
│ │ │ │ ├── Square150x150Logo.png
│ │ │ │ ├── Square284x284Logo.png
│ │ │ │ ├── Square30x30Logo.png
│ │ │ │ ├── Square310x310Logo.png
│ │ │ │ ├── Square44x44Logo.png
│ │ │ │ ├── Square71x71Logo.png
│ │ │ │ ├── Square89x89Logo.png
│ │ │ │ ├── StoreLogo.png
│ │ │ │ ├── icon.icns
│ │ │ │ ├── icon.ico
│ │ │ │ └── icon.png
│ │ │ ├── src
│ │ │ │ └── main.rs
│ │ │ └── tauri.conf.json
│ │ ├── src
│ │ │ ├── App.vue
│ │ │ ├── globals.css
│ │ │ ├── main.ts
│ │ │ └── types.ts
│ │ └── tests
│ │ │ └── example.test.ts
│ │ ├── desktop
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── src-tauri
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── build.rs
│ │ │ ├── icons
│ │ │ │ ├── 128x128.png
│ │ │ │ ├── 128x128@2x.png
│ │ │ │ ├── 32x32.png
│ │ │ │ ├── Square107x107Logo.png
│ │ │ │ ├── Square142x142Logo.png
│ │ │ │ ├── Square150x150Logo.png
│ │ │ │ ├── Square284x284Logo.png
│ │ │ │ ├── Square30x30Logo.png
│ │ │ │ ├── Square310x310Logo.png
│ │ │ │ ├── Square44x44Logo.png
│ │ │ │ ├── Square71x71Logo.png
│ │ │ │ ├── Square89x89Logo.png
│ │ │ │ ├── StoreLogo.png
│ │ │ │ ├── icon.icns
│ │ │ │ ├── icon.ico
│ │ │ │ └── icon.png
│ │ │ ├── src
│ │ │ │ └── main.rs
│ │ │ └── tauri.conf.json
│ │ ├── src
│ │ │ ├── App.vue
│ │ │ └── main.ts
│ │ └── tests
│ │ │ └── example.test.ts
│ │ ├── system-tray
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package.json
│ │ └── src
│ │ │ ├── App.vue
│ │ │ ├── index.ts
│ │ │ ├── main.ts
│ │ │ └── styles
│ │ │ └── main.css
│ │ └── web
│ │ ├── .gitignore
│ │ ├── index.html
│ │ ├── package.json
│ │ └── src
│ │ ├── App.vue
│ │ ├── main.ts
│ │ └── types.ts
├── keys
│ └── .gitignore
├── logs
│ └── .gitignore
├── private
│ ├── .gitkeep
│ └── logo.png
└── public
├── tests
├── feature
│ └── ui.test.ts
├── setup.ts
└── unit
│ └── app.test.ts
└── tsconfig.json
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [stacksjs, chrisbbreuer]
2 | open_collective: stacksjs
3 |
--------------------------------------------------------------------------------
/.github/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": [
3 | "github>ow3org/renovate-config"
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/.github/tea.yml:
--------------------------------------------------------------------------------
1 | # https://tea.xyz/what-is-this-file
2 | ---
3 | version: 1.0.0
4 | codeOwners:
5 | - '0x08616437BAdf159aecbD224109a6C1aAF04DadE2'
6 | quorum: 1
7 |
--------------------------------------------------------------------------------
/.github/workflows/labeler.yml:
--------------------------------------------------------------------------------
1 | name: Pull Request Labeler
2 |
3 | on:
4 | - pull_request_target
5 |
6 | jobs:
7 | triage:
8 | permissions:
9 | contents: read
10 | pull-requests: write
11 | runs-on: ubuntu-latest
12 | steps:
13 | - uses: actions/labeler@v5
14 |
--------------------------------------------------------------------------------
/app/Actions/Logs/LogIndexOrmAction.ts:
--------------------------------------------------------------------------------
1 | import { Action } from '@stacksjs/actions'
2 | import { response } from '@stacksjs/router'
3 |
4 | export default new Action({
5 | name: 'Log Index',
6 | description: 'Log Index ORM Action',
7 | method: 'GET',
8 | async handle() {
9 | const results = await Log.all()
10 |
11 | return response.json(results)
12 | },
13 | })
14 |
--------------------------------------------------------------------------------
/app/Actions/NotifyUser.ts:
--------------------------------------------------------------------------------
1 | import { Action } from '@stacksjs/actions'
2 |
3 | export default new Action({
4 | name: 'NotifyUser',
5 | description: 'Notify User After Creation',
6 | method: 'GET',
7 | async handle() {
8 | // console.log('test')
9 | },
10 | })
11 |
--------------------------------------------------------------------------------
/app/Controllers/ComingSoonController.ts:
--------------------------------------------------------------------------------
1 | import { Controller } from '@stacksjs/server'
2 | /**
3 | * Base Controller class providing Laravel-like functionality
4 | */
5 | export default class ComingSoonController extends Controller {
6 | protected index() {
7 | return this.success('Coming Soon v2')
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/app/Middleware/Logger.ts:
--------------------------------------------------------------------------------
1 | import { log } from '@stacksjs/cli'
2 | import { Middleware } from '@stacksjs/router'
3 |
4 | export default new Middleware({
5 | name: 'Logger',
6 | priority: 2,
7 | handle() {
8 | log.info('Logger middleware')
9 | },
10 | })
11 |
--------------------------------------------------------------------------------
/buddy:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bun
2 | // TODO: should be a symlink to the prod-compiled `buddy` binary
3 | import('./storage/framework/core/buddy/src/cli')
4 |
--------------------------------------------------------------------------------
/cloud/deploy-script.ts:
--------------------------------------------------------------------------------
1 | import { log } from '@stacksjs/logging'
2 |
3 | log.info('Triggering custom Deploy Script...')
4 |
5 | log.success('Deployed!')
6 |
--------------------------------------------------------------------------------
/cloud/recipes/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/cloud/recipes/.gitkeep
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/database/migrations/.gitkeep
--------------------------------------------------------------------------------
/docs/bootcamp/api.md:
--------------------------------------------------------------------------------
1 | # How to build an API?
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/cli.md:
--------------------------------------------------------------------------------
1 | # How to build an CLI?
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/cloud.md:
--------------------------------------------------------------------------------
1 | # Extending the Cloud
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/dashboard.md:
--------------------------------------------------------------------------------
1 | # Extending the Dashboard
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/deploy.md:
--------------------------------------------------------------------------------
1 | # How to deploy?
2 |
3 | Usually when a deployment is happening and it requires a CDN update _(or creation)_,
4 |
5 | wip
6 |
7 | ## Get Started
8 |
9 | wip
10 |
--------------------------------------------------------------------------------
/docs/bootcamp/desktop.md:
--------------------------------------------------------------------------------
1 | # How to build a Desktop app?
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/ide.md:
--------------------------------------------------------------------------------
1 | # How to setup your IDE
2 |
3 | wip
4 |
5 | ## Linting & Formatting
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/library/components.md:
--------------------------------------------------------------------------------
1 | # How to build a component library?
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/library/functions.md:
--------------------------------------------------------------------------------
1 | # How to build a function library?
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/bootcamp/linting.md:
--------------------------------------------------------------------------------
1 | # Linting
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/local-setup.md:
--------------------------------------------------------------------------------
1 | # Local Setup
2 |
3 | This section is meant to be short and sweet. After all, it is Stacks responsibility to ensure your local environment is setup properly.
4 |
5 | ## Get Started
6 |
7 | wip
8 |
9 | ## IDE Setup
10 |
11 | wip
12 |
--------------------------------------------------------------------------------
/docs/bootcamp/publish.md:
--------------------------------------------------------------------------------
1 | # How to publish?
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/semantic-commits.md:
--------------------------------------------------------------------------------
1 | # Semantic Commits
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/testing.md:
--------------------------------------------------------------------------------
1 | # Testing
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/tips/cost-optimization.md:
--------------------------------------------------------------------------------
1 | # Cost Optimization
2 |
3 | buddy cloud:optimize-cost
4 |
5 | wip
6 |
--------------------------------------------------------------------------------
/docs/bootcamp/tips/jump-box.md:
--------------------------------------------------------------------------------
1 | # Jump Box
2 |
3 | What is a jump box?
4 |
5 | wip
6 |
--------------------------------------------------------------------------------
/docs/bootcamp/tips/teams.md:
--------------------------------------------------------------------------------
1 | # How to manage teams?
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/bootcamp/uninstall.md:
--------------------------------------------------------------------------------
1 | # How to uninstall?
2 |
3 | wip
4 |
5 | ## Get Started
6 |
7 | wip
8 |
--------------------------------------------------------------------------------
/docs/contribution-guide.md:
--------------------------------------------------------------------------------
1 | # Terminology
2 |
3 | This part of the documentation defines the terminology used throughout the Stacks domain. wip.
4 |
5 | - Atomic Design
6 | - Cloud
7 | - Components
8 | - Desktop Engine
9 | - Functions
10 | - Stacks
11 | - UI Engine
12 |
--------------------------------------------------------------------------------
/docs/guide/apis.md:
--------------------------------------------------------------------------------
1 | # APIs
2 |
--------------------------------------------------------------------------------
/docs/guide/apps.md:
--------------------------------------------------------------------------------
1 | # Apps
2 |
--------------------------------------------------------------------------------
/docs/guide/ci.md:
--------------------------------------------------------------------------------
1 | # CI
2 |
--------------------------------------------------------------------------------
/docs/guide/cloud.md:
--------------------------------------------------------------------------------
1 | # Cloud
2 |
--------------------------------------------------------------------------------
/docs/guide/components/alert.md:
--------------------------------------------------------------------------------
1 | # Alert
2 |
--------------------------------------------------------------------------------
/docs/guide/components/audio.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/audio.md
--------------------------------------------------------------------------------
/docs/guide/components/button.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/button.md
--------------------------------------------------------------------------------
/docs/guide/components/calendar.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/calendar.md
--------------------------------------------------------------------------------
/docs/guide/components/command-palette.md:
--------------------------------------------------------------------------------
1 | # Command Pallete
2 |
--------------------------------------------------------------------------------
/docs/guide/components/date-picker.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/date-picker.md
--------------------------------------------------------------------------------
/docs/guide/components/image.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/image.md
--------------------------------------------------------------------------------
/docs/guide/components/inline-nav.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/inline-nav.md
--------------------------------------------------------------------------------
/docs/guide/components/input.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/input.md
--------------------------------------------------------------------------------
/docs/guide/components/keep-alive.md:
--------------------------------------------------------------------------------
1 | # KeepAlive
2 |
--------------------------------------------------------------------------------
/docs/guide/components/select.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/select.md
--------------------------------------------------------------------------------
/docs/guide/components/stack.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/stack.md
--------------------------------------------------------------------------------
/docs/guide/components/suspense.md:
--------------------------------------------------------------------------------
1 | # Suspense
2 |
--------------------------------------------------------------------------------
/docs/guide/components/table.md:
--------------------------------------------------------------------------------
1 | # Table
2 |
--------------------------------------------------------------------------------
/docs/guide/components/teleport.md:
--------------------------------------------------------------------------------
1 | # Teleport
2 |
--------------------------------------------------------------------------------
/docs/guide/components/transition-group.md:
--------------------------------------------------------------------------------
1 | # Transition Group
2 |
--------------------------------------------------------------------------------
/docs/guide/components/transition.md:
--------------------------------------------------------------------------------
1 | # Transition
2 |
--------------------------------------------------------------------------------
/docs/guide/components/video.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/components/video.md
--------------------------------------------------------------------------------
/docs/guide/config.md:
--------------------------------------------------------------------------------
1 | # Configuration
2 |
--------------------------------------------------------------------------------
/docs/guide/intro.md:
--------------------------------------------------------------------------------
1 | # Intro
2 |
3 | wip
4 |
5 | But in the meantime, think of Stacks as the Laravel of TypeScript, plus more. It's a batteries-included framework for building TypeScript applications _(web, desktop, CLI)_, libraries, and clouds.
6 |
--------------------------------------------------------------------------------
/docs/guide/launch-post.md:
--------------------------------------------------------------------------------
1 | # The History of Stacks
2 |
3 | What started out as a framework for writing component & function libraries, has evolved into a full fledged framework for building web applications. Stacks is a framework that is built on top of [Bun](https://bun.org/) and [Redux](https://redux.js.org/). It is designed to be a simple, yet powerful framework for building web applications.
4 |
--------------------------------------------------------------------------------
/docs/guide/libraries.md:
--------------------------------------------------------------------------------
1 | # Libraries
2 |
--------------------------------------------------------------------------------
/docs/guide/libraries/components.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/libraries/components.md
--------------------------------------------------------------------------------
/docs/guide/libraries/composability.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/libraries/composability.md
--------------------------------------------------------------------------------
/docs/guide/libraries/functions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/libraries/functions.md
--------------------------------------------------------------------------------
/docs/guide/libraries/get-started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/guide/libraries/get-started.md
--------------------------------------------------------------------------------
/docs/guide/linting.md:
--------------------------------------------------------------------------------
1 | # Linting & Formatting
2 |
3 | wip
4 |
--------------------------------------------------------------------------------
/docs/guide/model-view-action.md:
--------------------------------------------------------------------------------
1 | # Model-View-Action
2 |
--------------------------------------------------------------------------------
/docs/guide/stacks.md:
--------------------------------------------------------------------------------
1 | # Stacks
2 |
--------------------------------------------------------------------------------
/docs/guide/testing.md:
--------------------------------------------------------------------------------
1 | # Testing
2 |
--------------------------------------------------------------------------------
/docs/project/contributing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/project/contributing.md
--------------------------------------------------------------------------------
/docs/project/license.md:
--------------------------------------------------------------------------------
1 | # Terminology
2 |
3 | This part of the documentation defines the terminology used throughout the Stacks domain. wip.
4 |
5 | - Atomic Design
6 | - Cloud
7 | - Components
8 | - Desktop Engine
9 | - Functions
10 | - Stacks
11 | - UI Engine
12 |
--------------------------------------------------------------------------------
/docs/project/roadmap.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/project/roadmap.md
--------------------------------------------------------------------------------
/docs/project/terminology.md:
--------------------------------------------------------------------------------
1 | # Terminology
2 |
3 | This part of the documentation defines the terminology used throughout the Stacks domain. wip.
4 |
5 | - Atomic Design
6 | - Cloud
7 | - Components
8 | - Desktop Engine
9 | - Functions
10 | - Stacks
11 | - UI Engine
12 |
--------------------------------------------------------------------------------
/docs/release-notes.md:
--------------------------------------------------------------------------------
1 | # Terminology
2 |
3 | This part of the documentation defines the terminology used throughout the Stacks domain. wip.
4 |
5 | - Atomic Design
6 | - Cloud
7 | - Components
8 | - Desktop Engine
9 | - Functions
10 | - Stacks
11 | - UI Engine
12 |
--------------------------------------------------------------------------------
/docs/testing/browser-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/browser-tests.md
--------------------------------------------------------------------------------
/docs/testing/console-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/console-tests.md
--------------------------------------------------------------------------------
/docs/testing/database.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/database.md
--------------------------------------------------------------------------------
/docs/testing/feature-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/feature-tests.md
--------------------------------------------------------------------------------
/docs/testing/getting-started.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/getting-started.md
--------------------------------------------------------------------------------
/docs/testing/http-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/http-tests.md
--------------------------------------------------------------------------------
/docs/testing/mocking.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/mocking.md
--------------------------------------------------------------------------------
/docs/testing/unit-tests.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/docs/testing/unit-tests.md
--------------------------------------------------------------------------------
/docs/upgrade-guide.md:
--------------------------------------------------------------------------------
1 | # Terminology
2 |
3 | This part of the documentation defines the terminology used throughout the Stacks domain. wip.
4 |
5 | - Atomic Design
6 | - Cloud
7 | - Components
8 | - Desktop Engine
9 | - Functions
10 | - Stacks
11 | - UI Engine
12 |
--------------------------------------------------------------------------------
/public/audio/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/audio/.gitkeep
--------------------------------------------------------------------------------
/public/images/atomic-fx-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/atomic-fx-diagram.png
--------------------------------------------------------------------------------
/public/images/atomic-ui-diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/atomic-ui-diagram.png
--------------------------------------------------------------------------------
/public/images/avatars/avatar-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/avatars/avatar-1.png
--------------------------------------------------------------------------------
/public/images/avatars/avatar-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/avatars/avatar-2.png
--------------------------------------------------------------------------------
/public/images/avatars/avatar-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/avatars/avatar-3.png
--------------------------------------------------------------------------------
/public/images/avatars/avatar-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/avatars/avatar-4.png
--------------------------------------------------------------------------------
/public/images/avatars/avatar-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/avatars/avatar-5.png
--------------------------------------------------------------------------------
/public/images/background-auth.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/background-auth.jpg
--------------------------------------------------------------------------------
/public/images/background-call-to-action.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/background-call-to-action.jpg
--------------------------------------------------------------------------------
/public/images/background-faqs.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/background-faqs.jpg
--------------------------------------------------------------------------------
/public/images/background-features.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/background-features.jpg
--------------------------------------------------------------------------------
/public/images/diagram.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/diagram.png
--------------------------------------------------------------------------------
/public/images/logos/amex.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/logos/amex.jpg
--------------------------------------------------------------------------------
/public/images/logos/logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/logos/logo-white.png
--------------------------------------------------------------------------------
/public/images/logos/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/logos/logo.png
--------------------------------------------------------------------------------
/public/images/logos/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/logos/visa.png
--------------------------------------------------------------------------------
/public/images/logos/visa.svgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/logos/visa.svgz
--------------------------------------------------------------------------------
/public/images/og-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/og-image.png
--------------------------------------------------------------------------------
/public/images/screenshots/background-features.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/background-features.jpg
--------------------------------------------------------------------------------
/public/images/screenshots/contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/contacts.png
--------------------------------------------------------------------------------
/public/images/screenshots/dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/dashboard.png
--------------------------------------------------------------------------------
/public/images/screenshots/expenses.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/expenses.png
--------------------------------------------------------------------------------
/public/images/screenshots/expenses.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/expenses.webp
--------------------------------------------------------------------------------
/public/images/screenshots/inventory.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/inventory.png
--------------------------------------------------------------------------------
/public/images/screenshots/payroll.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/payroll.png
--------------------------------------------------------------------------------
/public/images/screenshots/payroll.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/payroll.webp
--------------------------------------------------------------------------------
/public/images/screenshots/profit-loss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/profit-loss.png
--------------------------------------------------------------------------------
/public/images/screenshots/reporting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/reporting.png
--------------------------------------------------------------------------------
/public/images/screenshots/reporting.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/reporting.webp
--------------------------------------------------------------------------------
/public/images/screenshots/vat-returns.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/vat-returns.png
--------------------------------------------------------------------------------
/public/images/screenshots/vat-returns.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/screenshots/vat-returns.webp
--------------------------------------------------------------------------------
/public/images/social.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/images/social.png
--------------------------------------------------------------------------------
/public/videos/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/public/videos/.gitkeep
--------------------------------------------------------------------------------
/resources/assets/fonts/Monaco.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/stacksjs/stacks/96a77c608f755e0b592d512b353a6f9e6ef32add/resources/assets/fonts/Monaco.ttf
--------------------------------------------------------------------------------
/resources/assets/styles/docs/overrides.css:
--------------------------------------------------------------------------------
1 | .custom-block-title {
2 | opacity: 0.5;
3 | font-size: 12px;
4 | margin-top: -5px !important;
5 | margin-bottom: -10px !important;
6 | filter: saturate(0.6);
7 | letter-spacing: 0.5px;
8 | }
9 |
--------------------------------------------------------------------------------
/resources/components/Container.vue:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |