@stacksjs/defaults 0.70.57 → 0.70.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/Actions/AI/AskAction.ts +40 -0
- package/app/Actions/AI/SummaryAction.ts +40 -0
- package/app/Actions/Auth/AuthUserAction.ts +13 -0
- package/app/Actions/Auth/CreateTokenAction.ts +64 -0
- package/app/Actions/Auth/DisableTwoFactorAction.ts +37 -0
- package/app/Actions/Auth/EnableTwoFactorAction.ts +37 -0
- package/app/Actions/Auth/GenerateAuthenticationAction.ts +51 -0
- package/app/Actions/Auth/GenerateRegistrationAction.ts +53 -0
- package/app/Actions/Auth/GenerateTwoFactorSecretAction.ts +26 -0
- package/app/Actions/Auth/ListTokensAction.ts +30 -0
- package/app/Actions/Auth/LoginAction.ts +73 -0
- package/app/Actions/Auth/LogoutAction.ts +16 -0
- package/app/Actions/Auth/LogoutAllAction.ts +28 -0
- package/app/Actions/Auth/RefreshTokenAction.ts +39 -0
- package/app/Actions/Auth/RegisterAction.ts +57 -0
- package/app/Actions/Auth/ResendVerificationAction.ts +24 -0
- package/app/Actions/Auth/RevokeTokenAction.ts +43 -0
- package/app/Actions/Auth/TestAbilitiesAction.ts +61 -0
- package/app/Actions/Auth/VerifyAuthenticationAction.ts +94 -0
- package/app/Actions/Auth/VerifyEmailAction.ts +25 -0
- package/app/Actions/Auth/VerifyRegistrationAction.ts +59 -0
- package/app/Actions/Auth/VerifyTwoFactorLoginAction.ts +57 -0
- package/app/Actions/Billable/CheckoutAction.ts +25 -0
- package/app/Actions/Buddy/BuddyBrowseAction.ts +34 -0
- package/app/Actions/Buddy/BuddyCancelAction.ts +32 -0
- package/app/Actions/Buddy/BuddyCommitAction.ts +25 -0
- package/app/Actions/Buddy/BuddyGitHubConnectAction.ts +40 -0
- package/app/Actions/Buddy/BuddyGitHubDisconnectAction.ts +19 -0
- package/app/Actions/Buddy/BuddyProcessAction.ts +65 -0
- package/app/Actions/Buddy/BuddyProcessStreamAction.ts +128 -0
- package/app/Actions/Buddy/BuddyPushAction.ts +21 -0
- package/app/Actions/Buddy/BuddyRepoOpenAction.ts +44 -0
- package/app/Actions/Buddy/BuddyRepoValidateAction.ts +35 -0
- package/app/Actions/Buddy/BuddySettingsAction.ts +21 -0
- package/app/Actions/Buddy/BuddySettingsUpdateAction.ts +46 -0
- package/app/Actions/Buddy/BuddyStateAction.ts +28 -0
- package/app/Actions/Buddy/BuddyTitleAction.ts +49 -0
- package/app/Actions/Buddy/CommandsAction.ts +802 -0
- package/app/Actions/Buddy/JobCancelAction.ts +32 -0
- package/app/Actions/Buddy/JobRetryAction.ts +49 -0
- package/app/Actions/Buddy/JobsListAction.ts +141 -0
- package/app/Actions/Buddy/ScheduleListAction.ts +52 -0
- package/app/Actions/Buddy/VersionsAction.ts +12 -0
- package/app/Actions/Cms/AuthorDestroyAction.ts +21 -0
- package/app/Actions/Cms/AuthorIndexAction.ts +14 -0
- package/app/Actions/Cms/AuthorShowAction.ts +19 -0
- package/app/Actions/Cms/AuthorStoreAction.ts +20 -0
- package/app/Actions/Cms/AuthorUpdateAction.ts +24 -0
- package/app/Actions/Cms/CategorizableDestroyAction.ts +16 -0
- package/app/Actions/Cms/CategorizableIndexAction.ts +14 -0
- package/app/Actions/Cms/CategorizableShowAction.ts +16 -0
- package/app/Actions/Cms/CategorizableStoreAction.ts +42 -0
- package/app/Actions/Cms/CategorizableUpdateAction.ts +38 -0
- package/app/Actions/Cms/CommentDestroyAction.ts +16 -0
- package/app/Actions/Cms/CommentIndexAction.ts +17 -0
- package/app/Actions/Cms/CommentShowAction.ts +16 -0
- package/app/Actions/Cms/CommentStoreAction.ts +39 -0
- package/app/Actions/Cms/CommentUpdateAction.ts +37 -0
- package/app/Actions/Cms/PageDestroyAction.ts +16 -0
- package/app/Actions/Cms/PageIndexAction.ts +14 -0
- package/app/Actions/Cms/PageStoreAction.ts +31 -0
- package/app/Actions/Cms/PageUpdateAction.ts +27 -0
- package/app/Actions/Cms/PostDestroyAction.ts +17 -0
- package/app/Actions/Cms/PostIndexAction.ts +14 -0
- package/app/Actions/Cms/PostShowAction.ts +16 -0
- package/app/Actions/Cms/PostStoreAction.ts +37 -0
- package/app/Actions/Cms/PostUpdateAction.ts +32 -0
- package/app/Actions/Cms/PostViewsUpdateAction.ts +34 -0
- package/app/Actions/Cms/RssFeedAction.ts +59 -0
- package/app/Actions/Cms/SitemapAction.ts +60 -0
- package/app/Actions/Cms/TaggableDestroyAction.ts +16 -0
- package/app/Actions/Cms/TaggableIndexAction.ts +14 -0
- package/app/Actions/Cms/TaggableShowAction.ts +16 -0
- package/app/Actions/Cms/TaggableStoreAction.ts +36 -0
- package/app/Actions/Cms/TaggableUpdateAction.ts +37 -0
- package/app/Actions/Commerce/CouponDestroyAction.ts +18 -0
- package/app/Actions/Commerce/CouponIndexAction.ts +16 -0
- package/app/Actions/Commerce/CouponShowAction.ts +18 -0
- package/app/Actions/Commerce/CouponStoreAction.ts +21 -0
- package/app/Actions/Commerce/CouponUpdateAction.ts +31 -0
- package/app/Actions/Commerce/CustomerDestroyAction.ts +16 -0
- package/app/Actions/Commerce/CustomerIndexAction.ts +15 -0
- package/app/Actions/Commerce/CustomerShowAction.ts +18 -0
- package/app/Actions/Commerce/CustomerStoreAction.ts +29 -0
- package/app/Actions/Commerce/CustomerUpdateAction.ts +27 -0
- package/app/Actions/Commerce/DriverDestroyAction.ts +18 -0
- package/app/Actions/Commerce/GiftCardDestroyAction.ts +18 -0
- package/app/Actions/Commerce/GiftCardIndexAction.ts +16 -0
- package/app/Actions/Commerce/GiftCardShowAction.ts +18 -0
- package/app/Actions/Commerce/GiftCardStatsAction.ts +30 -0
- package/app/Actions/Commerce/GiftCardStoreAction.ts +35 -0
- package/app/Actions/Commerce/GiftCardUpdateAction.ts +26 -0
- package/app/Actions/Commerce/GiftCardUpdateBalanceAction.ts +36 -0
- package/app/Actions/Commerce/OrderDestroyAction.ts +18 -0
- package/app/Actions/Commerce/OrderExportAction.ts +15 -0
- package/app/Actions/Commerce/OrderIndexAction.ts +15 -0
- package/app/Actions/Commerce/OrderShowAction.ts +18 -0
- package/app/Actions/Commerce/OrderStoreAction.ts +32 -0
- package/app/Actions/Commerce/OrderUpdateAction.ts +34 -0
- package/app/Actions/Commerce/PaymentDestroyAction.ts +16 -0
- package/app/Actions/Commerce/PaymentFetchStatsAction.ts +31 -0
- package/app/Actions/Commerce/PaymentIndexAction.ts +15 -0
- package/app/Actions/Commerce/PaymentMonthlyTrendsAction.ts +21 -0
- package/app/Actions/Commerce/PaymentShowAction.ts +17 -0
- package/app/Actions/Commerce/PaymentStoreAction.ts +24 -0
- package/app/Actions/Commerce/PaymentUpdateAction.ts +35 -0
- package/app/Actions/Commerce/PrintDeviceDestroyAction.ts +18 -0
- package/app/Actions/Commerce/PrintDeviceIndexAction.ts +14 -0
- package/app/Actions/Commerce/PrintDeviceShowAction.ts +17 -0
- package/app/Actions/Commerce/PrintDeviceStoreAction.ts +27 -0
- package/app/Actions/Commerce/PrintDeviceUpdateAction.ts +27 -0
- package/app/Actions/Commerce/Product/ManufacturerDestroyAction.ts +20 -0
- package/app/Actions/Commerce/Product/ManufacturerIndexAction.ts +16 -0
- package/app/Actions/Commerce/Product/ManufacturerShowAction.ts +18 -0
- package/app/Actions/Commerce/Product/ManufacturerStoreAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductCategoryIndexAction.ts +16 -0
- package/app/Actions/Commerce/Product/ProductCategoryStoreAction.ts +16 -0
- package/app/Actions/Commerce/Product/ProductDestroyAction.ts +16 -0
- package/app/Actions/Commerce/Product/ProductIndexAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductManufacturerDestroyAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductManufacturerIndexAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductManufacturerShowAction.ts +16 -0
- package/app/Actions/Commerce/Product/ProductManufacturerStoreAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductManufacturerUpdateAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductShowAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductStoreAction.ts +17 -0
- package/app/Actions/Commerce/Product/ProductUnitDestroyAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductUnitIndexAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductUnitShowAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductUnitStoreAction.ts +15 -0
- package/app/Actions/Commerce/Product/ProductUpdateAction.ts +17 -0
- package/app/Actions/Commerce/Product/ProductVariantDestroyAction.ts +18 -0
- package/app/Actions/Commerce/Product/ProductVariantIndexAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductVariantShowAction.ts +17 -0
- package/app/Actions/Commerce/Product/ProductVariantStoreAction.ts +14 -0
- package/app/Actions/Commerce/Product/ProductVariantUpdateAction.ts +16 -0
- package/app/Actions/Commerce/ReceiptDestroyAction.ts +18 -0
- package/app/Actions/Commerce/ReceiptIndexAction.ts +14 -0
- package/app/Actions/Commerce/ReceiptShowAction.ts +18 -0
- package/app/Actions/Commerce/ReceiptStoreAction.ts +28 -0
- package/app/Actions/Commerce/ReceiptUpdateAction.ts +30 -0
- package/app/Actions/Commerce/ReviewIndexAction.ts +14 -0
- package/app/Actions/Commerce/ReviewShowAction.ts +16 -0
- package/app/Actions/Commerce/ReviewStoreAction.ts +26 -0
- package/app/Actions/Commerce/ReviewUpdateAction.ts +28 -0
- package/app/Actions/Commerce/Shipping/DeliveryRouteDestroyAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DeliveryRouteIndexAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/DeliveryRouteShowAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DeliveryRouteStoreAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/DeliveryRouteUpdateAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DigitalDeliveryDestroyAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DigitalDeliveryIndexAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/DigitalDeliveryShowAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DigitalDeliveryStoreAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DigitalDeliveryUpdateAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DriverIndexAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/DriverShowAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/DriverStoreAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/DriverUpdateAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/LicenseKeyDestroyAction.ts +20 -0
- package/app/Actions/Commerce/Shipping/LicenseKeyIndexAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/LicenseKeyShowAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/LicenseKeyStoreAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/LicenseKeyUpdateAction.ts +18 -0
- package/app/Actions/Commerce/Shipping/ShippingMethodDestroyAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingMethodIndexAction.ts +14 -0
- package/app/Actions/Commerce/Shipping/ShippingMethodShowAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingMethodStoreAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingMethodUpdateAction.ts +15 -0
- package/app/Actions/Commerce/Shipping/ShippingRateDestroyAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingRateIndexAction.ts +14 -0
- package/app/Actions/Commerce/Shipping/ShippingRateShowAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingRateStoreAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingRateUpdateAction.ts +17 -0
- package/app/Actions/Commerce/Shipping/ShippingZoneDestroyAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingZoneIndexAction.ts +14 -0
- package/app/Actions/Commerce/Shipping/ShippingZoneShowAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingZoneStoreAction.ts +16 -0
- package/app/Actions/Commerce/Shipping/ShippingZoneUpdateAction.ts +15 -0
- package/app/Actions/Commerce/TaxRateDestroyAction.ts +16 -0
- package/app/Actions/Commerce/TaxRateIndexAction.ts +14 -0
- package/app/Actions/Commerce/TaxRateShowAction.ts +17 -0
- package/app/Actions/Commerce/TaxRateStoreAction.ts +24 -0
- package/app/Actions/Commerce/TaxRateUpdateAction.ts +24 -0
- package/app/Actions/Commerce/WaitlistProductAnalyticsAction.ts +29 -0
- package/app/Actions/Commerce/WaitlistProductDestroyAction.ts +16 -0
- package/app/Actions/Commerce/WaitlistProductIndexAction.ts +14 -0
- package/app/Actions/Commerce/WaitlistProductQuantityDistributionAction.ts +32 -0
- package/app/Actions/Commerce/WaitlistProductShowAction.ts +16 -0
- package/app/Actions/Commerce/WaitlistProductStatusAction.ts +37 -0
- package/app/Actions/Commerce/WaitlistProductStoreAction.ts +27 -0
- package/app/Actions/Commerce/WaitlistProductTimeSeriesAction.ts +25 -0
- package/app/Actions/Commerce/WaitlistProductUpdateAction.ts +29 -0
- package/app/Actions/Commerce/WaitlistRestaurantDashboardAction.ts +29 -0
- package/app/Actions/Commerce/WaitlistRestaurantDestroyAction.ts +16 -0
- package/app/Actions/Commerce/WaitlistRestaurantIndexAction.ts +14 -0
- package/app/Actions/Commerce/WaitlistRestaurantShowAction.ts +16 -0
- package/app/Actions/Commerce/WaitlistRestaurantStoreAction.ts +31 -0
- package/app/Actions/Commerce/WaitlistRestaurantUpdateAction.ts +33 -0
- package/app/Actions/ContactAction.ts +72 -0
- package/app/Actions/Dashboard/Actions/CreateAction.ts +11 -0
- package/app/Actions/Dashboard/Actions/GetActionCount.ts +12 -0
- package/app/Actions/Dashboard/Actions/GetActions.ts +19 -0
- package/app/Actions/Dashboard/Analytics/BlogAnalyticsAction.ts +58 -0
- package/app/Actions/Dashboard/Analytics/BrowserAnalyticsAction.ts +42 -0
- package/app/Actions/Dashboard/Analytics/CommerceAnalyticsAction.ts +64 -0
- package/app/Actions/Dashboard/Analytics/CountryAnalyticsAction.ts +41 -0
- package/app/Actions/Dashboard/Analytics/DeviceAnalyticsAction.ts +58 -0
- package/app/Actions/Dashboard/Analytics/EventAnalyticsAction.ts +90 -0
- package/app/Actions/Dashboard/Analytics/MarketingAnalyticsAction.ts +76 -0
- package/app/Actions/Dashboard/Analytics/PageAnalyticsAction.ts +45 -0
- package/app/Actions/Dashboard/Analytics/ReferrerAnalyticsAction.ts +72 -0
- package/app/Actions/Dashboard/Analytics/SalesAnalyticsAction.ts +73 -0
- package/app/Actions/Dashboard/Analytics/WebAnalyticsAction.ts +114 -0
- package/app/Actions/Dashboard/Auth/MeAction.ts +84 -0
- package/app/Actions/Dashboard/BuddyDashboardAction.ts +34 -0
- package/app/Actions/Dashboard/Ci/RepoRunJobsAction.ts +60 -0
- package/app/Actions/Dashboard/Ci/RepoRunsAction.ts +67 -0
- package/app/Actions/Dashboard/Ci/RunnerHistoryAction.ts +58 -0
- package/app/Actions/Dashboard/Ci/StatusAction.ts +73 -0
- package/app/Actions/Dashboard/Ci/failure-notifier.ts +214 -0
- package/app/Actions/Dashboard/Ci/runner-pressure-monitor.ts +259 -0
- package/app/Actions/Dashboard/Cloud/CloudIndexAction.ts +61 -0
- package/app/Actions/Dashboard/Commands/CreateCommand.ts +11 -0
- package/app/Actions/Dashboard/Commands/GetAverageCommandTime.ts +12 -0
- package/app/Actions/Dashboard/Commands/GetCommandCount.ts +12 -0
- package/app/Actions/Dashboard/Commands/GetCommandSuccessRate.ts +12 -0
- package/app/Actions/Dashboard/Commands/GetCommands.ts +12 -0
- package/app/Actions/Dashboard/Commerce/CommerceCouponsAction.ts +48 -0
- package/app/Actions/Dashboard/Commerce/CommerceCustomersAction.ts +48 -0
- package/app/Actions/Dashboard/Commerce/CommerceDashboardAction.ts +98 -0
- package/app/Actions/Dashboard/Commerce/CommerceDeliveryAction.ts +65 -0
- package/app/Actions/Dashboard/Commerce/CommerceGiftCardsAction.ts +48 -0
- package/app/Actions/Dashboard/Commerce/CommerceOrdersAction.ts +51 -0
- package/app/Actions/Dashboard/Commerce/CommercePaymentsAction.ts +59 -0
- package/app/Actions/Dashboard/Commerce/CommerceProductsAction.ts +50 -0
- package/app/Actions/Dashboard/Commerce/CommerceTaxesAction.ts +46 -0
- package/app/Actions/Dashboard/Commerce/PosIndexAction.ts +57 -0
- package/app/Actions/Dashboard/Commerce/ReviewIndexAction.ts +51 -0
- package/app/Actions/Dashboard/Content/AuthorIndexAction.ts +51 -0
- package/app/Actions/Dashboard/Content/CategoryIndexAction.ts +27 -0
- package/app/Actions/Dashboard/Content/CommentIndexAction.ts +41 -0
- package/app/Actions/Dashboard/Content/ContentDashboardAction.ts +54 -0
- package/app/Actions/Dashboard/Content/FileIndexAction.ts +24 -0
- package/app/Actions/Dashboard/Content/PageIndexAction.ts +25 -0
- package/app/Actions/Dashboard/Content/PostIndexAction.ts +102 -0
- package/app/Actions/Dashboard/Content/SeoIndexAction.ts +17 -0
- package/app/Actions/Dashboard/Content/TagIndexAction.ts +23 -0
- package/app/Actions/Dashboard/CreateDnsRecords.ts +11 -0
- package/app/Actions/Dashboard/CreateMailbox.ts +11 -0
- package/app/Actions/Dashboard/DashboardActivityAction.ts +58 -0
- package/app/Actions/Dashboard/DashboardHealthAction.ts +52 -0
- package/app/Actions/Dashboard/DashboardHomeAction.ts +83 -0
- package/app/Actions/Dashboard/DashboardStatsAction.ts +48 -0
- package/app/Actions/Dashboard/Data/AccessTokenIndexAction.ts +65 -0
- package/app/Actions/Dashboard/Data/ActivityIndexAction.ts +28 -0
- package/app/Actions/Dashboard/Data/DataDashboardAction.ts +67 -0
- package/app/Actions/Dashboard/Data/SubscriberIndexAction.ts +48 -0
- package/app/Actions/Dashboard/Data/TeamIndexAction.ts +43 -0
- package/app/Actions/Dashboard/Data/UserIndexAction.ts +48 -0
- package/app/Actions/Dashboard/Deployments/CreateDeployment.ts +11 -0
- package/app/Actions/Dashboard/Deployments/GetAverageDeploymentTime.ts +15 -0
- package/app/Actions/Dashboard/Deployments/GetDeployScript.ts +12 -0
- package/app/Actions/Dashboard/Deployments/GetDeploymentCount.ts +12 -0
- package/app/Actions/Dashboard/Deployments/GetDeploymentLiveTerminalOutput.ts +12 -0
- package/app/Actions/Dashboard/Deployments/GetDeployments.ts +20 -0
- package/app/Actions/Dashboard/Deployments/GetRecentDeployments.ts +12 -0
- package/app/Actions/Dashboard/Deployments/UpdateDeployScript.ts +11 -0
- package/app/Actions/Dashboard/GetDnsRecords.ts +12 -0
- package/app/Actions/Dashboard/GetEmailInboxes.ts +12 -0
- package/app/Actions/Dashboard/GetProjects.ts +13 -0
- package/app/Actions/Dashboard/GetRecentCommits.ts +13 -0
- package/app/Actions/Dashboard/Inbox/InboxIndexAction.ts +144 -0
- package/app/Actions/Dashboard/Inbox/InboxShowAction.ts +89 -0
- package/app/Actions/Dashboard/Infrastructure/CommandIndexAction.ts +18 -0
- package/app/Actions/Dashboard/Infrastructure/DnsIndexAction.ts +101 -0
- package/app/Actions/Dashboard/Infrastructure/EnvironmentIndexAction.ts +67 -0
- package/app/Actions/Dashboard/Infrastructure/InsightsAction.ts +29 -0
- package/app/Actions/Dashboard/Infrastructure/LogIndexAction.ts +50 -0
- package/app/Actions/Dashboard/Infrastructure/MailboxIndexAction.ts +85 -0
- package/app/Actions/Dashboard/Infrastructure/PermissionIndexAction.ts +54 -0
- package/app/Actions/Dashboard/Infrastructure/RequestIndexAction.ts +44 -0
- package/app/Actions/Dashboard/Infrastructure/ServerIndexAction.ts +101 -0
- package/app/Actions/Dashboard/Jobs/CreateJob.ts +11 -0
- package/app/Actions/Dashboard/Jobs/GetAverageJobTime.ts +12 -0
- package/app/Actions/Dashboard/Jobs/GetJobHistory.ts +12 -0
- package/app/Actions/Dashboard/Jobs/GetJobs.ts +11 -0
- package/app/Actions/Dashboard/Jobs/GetJobsPerMinute.ts +12 -0
- package/app/Actions/Dashboard/Jobs/JobIndexAction.ts +136 -0
- package/app/Actions/Dashboard/Jobs/JobRetryAction.ts +23 -0
- package/app/Actions/Dashboard/Jobs/JobStatsAction.ts +49 -0
- package/app/Actions/Dashboard/Kanban/BoardDestroyAction.ts +84 -0
- package/app/Actions/Dashboard/Kanban/BoardShowAction.ts +215 -0
- package/app/Actions/Dashboard/Kanban/BoardStoreAction.ts +98 -0
- package/app/Actions/Dashboard/Kanban/BoardUpdateAction.ts +96 -0
- package/app/Actions/Dashboard/Kanban/BoardsIndexAction.ts +81 -0
- package/app/Actions/Dashboard/Kanban/BoardsReorderAction.ts +80 -0
- package/app/Actions/Dashboard/Kanban/CardAssigneesSyncAction.ts +103 -0
- package/app/Actions/Dashboard/Kanban/CardCommentDestroyAction.ts +33 -0
- package/app/Actions/Dashboard/Kanban/CardCommentStoreAction.ts +82 -0
- package/app/Actions/Dashboard/Kanban/CardDestroyAction.ts +48 -0
- package/app/Actions/Dashboard/Kanban/CardLabelsSyncAction.ts +103 -0
- package/app/Actions/Dashboard/Kanban/CardShowAction.ts +122 -0
- package/app/Actions/Dashboard/Kanban/CardStoreAction.ts +112 -0
- package/app/Actions/Dashboard/Kanban/CardUpdateAction.ts +91 -0
- package/app/Actions/Dashboard/Kanban/CardsReorderAction.ts +148 -0
- package/app/Actions/Dashboard/Kanban/ColumnDestroyAction.ts +59 -0
- package/app/Actions/Dashboard/Kanban/ColumnStoreAction.ts +94 -0
- package/app/Actions/Dashboard/Kanban/ColumnUpdateAction.ts +89 -0
- package/app/Actions/Dashboard/Kanban/ColumnsReorderAction.ts +85 -0
- package/app/Actions/Dashboard/Kanban/LabelDestroyAction.ts +41 -0
- package/app/Actions/Dashboard/Kanban/LabelStoreAction.ts +70 -0
- package/app/Actions/Dashboard/Kanban/LabelUpdateAction.ts +83 -0
- package/app/Actions/Dashboard/Kanban/UsersListAction.ts +36 -0
- package/app/Actions/Dashboard/Library/CreateComponent.ts +11 -0
- package/app/Actions/Dashboard/Library/CreateFunction.ts +11 -0
- package/app/Actions/Dashboard/Library/DependencyIndexAction.ts +92 -0
- package/app/Actions/Dashboard/Library/GetAverageReleaseTime.ts +12 -0
- package/app/Actions/Dashboard/Library/GetComponents.ts +24 -0
- package/app/Actions/Dashboard/Library/GetComponentsDownloadCount.ts +12 -0
- package/app/Actions/Dashboard/Library/GetDownloadCount.ts +12 -0
- package/app/Actions/Dashboard/Library/GetFunctions.ts +22 -0
- package/app/Actions/Dashboard/Library/GetFunctionsDownloadCount.ts +12 -0
- package/app/Actions/Dashboard/Library/GetReleaseCount.ts +12 -0
- package/app/Actions/Dashboard/Library/GetReleases.ts +28 -0
- package/app/Actions/Dashboard/Library/PackageIndexAction.ts +26 -0
- package/app/Actions/Dashboard/Marketing/CampaignIndexAction.ts +45 -0
- package/app/Actions/Dashboard/Marketing/ListIndexAction.ts +43 -0
- package/app/Actions/Dashboard/Marketing/SocialPostIndexAction.ts +47 -0
- package/app/Actions/Dashboard/Models/GetModels.ts +39 -0
- package/app/Actions/Dashboard/Models/GetSubscriberCount.ts +12 -0
- package/app/Actions/Dashboard/Models/GetUserCount.ts +12 -0
- package/app/Actions/Dashboard/Models/ModelShowAction.ts +131 -0
- package/app/Actions/Dashboard/Models/ModelsIndexAction.ts +169 -0
- package/app/Actions/Dashboard/Notifications/CreateNotification.ts +11 -0
- package/app/Actions/Dashboard/Notifications/GetAverageNotificationTime.ts +12 -0
- package/app/Actions/Dashboard/Notifications/GetNotificationCount.ts +12 -0
- package/app/Actions/Dashboard/Notifications/GetNotificationDeliveryRate.ts +12 -0
- package/app/Actions/Dashboard/Notifications/GetNotificationHistory.ts +12 -0
- package/app/Actions/Dashboard/Notifications/GetNotifications.ts +12 -0
- package/app/Actions/Dashboard/Notifications/NotificationDashboardAction.ts +43 -0
- package/app/Actions/Dashboard/Queries/QueryIndexAction.ts +22 -0
- package/app/Actions/Dashboard/Queue/QueueRetryFailedAction.ts +22 -0
- package/app/Actions/Dashboard/Queue/QueueStatsAction.ts +98 -0
- package/app/Actions/Dashboard/Queue/QueueWorkersAction.ts +46 -0
- package/app/Actions/Dashboard/Rbac/PermissionDestroyAction.ts +33 -0
- package/app/Actions/Dashboard/Rbac/PermissionStoreAction.ts +53 -0
- package/app/Actions/Dashboard/Rbac/PermissionsIndexAction.ts +34 -0
- package/app/Actions/Dashboard/Rbac/RoleDestroyAction.ts +35 -0
- package/app/Actions/Dashboard/Rbac/RolePermissionsShowAction.ts +45 -0
- package/app/Actions/Dashboard/Rbac/RolePermissionsSyncAction.ts +63 -0
- package/app/Actions/Dashboard/Rbac/RoleStoreAction.ts +58 -0
- package/app/Actions/Dashboard/Rbac/RolesIndexAction.ts +36 -0
- package/app/Actions/Dashboard/Rbac/UserRolesShowAction.ts +40 -0
- package/app/Actions/Dashboard/Rbac/UserRolesSyncAction.ts +65 -0
- package/app/Actions/Dashboard/Rbac/UsersListAction.ts +39 -0
- package/app/Actions/Dashboard/Realtime/RealtimeStatsAction.ts +50 -0
- package/app/Actions/Dashboard/Releases/ReleaseIndexAction.ts +21 -0
- package/app/Actions/Dashboard/Requests/GetAverageRequestTime.ts +12 -0
- package/app/Actions/Dashboard/Requests/GetRequestCount.ts +12 -0
- package/app/Actions/Dashboard/Requests/GetRequestSuccessRate.ts +12 -0
- package/app/Actions/Dashboard/Requests/GetRequests.ts +12 -0
- package/app/Actions/Dashboard/Search/GlobalSearchAction.ts +26 -0
- package/app/Actions/Dashboard/ServiceHealthAction.ts +243 -0
- package/app/Actions/Dashboard/Settings/MailSettingsGetAction.ts +20 -0
- package/app/Actions/Dashboard/Settings/MailSettingsUpdateAction.ts +10 -0
- package/app/Actions/Dashboard/Settings/SettingsIndexAction.ts +40 -0
- package/app/Actions/Dashboard/Settings/UpdateAiConfig.ts +27 -0
- package/app/Actions/Dashboard/Settings/UpdateAnalyticsConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateAppConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateCacheConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateCliConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateCloudConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateDatabaseConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateDnsConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateDocsConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateEmailConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateEnvConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateErrorsConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateFileSystemsConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateGitConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateHashingConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateLibraryConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateLoggerConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateNotificationConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdatePaymentConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdatePortsConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateQueueConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateSearchEngineConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateSecurityConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateServicesConfig.ts +38 -0
- package/app/Actions/Dashboard/Settings/UpdateStorageConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateTeamConfig.ts +11 -0
- package/app/Actions/Dashboard/Settings/UpdateUiConfig.ts +11 -0
- package/app/Actions/HealthAction.ts +112 -0
- package/app/Actions/InstallAction.ts +83 -0
- package/app/Actions/Locale/SetLocaleAction.ts +51 -0
- package/app/Actions/LogAction.ts +42 -0
- package/app/Actions/Logs/LogFetchStatsAction.ts +50 -0
- package/app/Actions/Logs/LogIndexOrmAction.ts +13 -0
- package/app/Actions/Logs/LogShowOrmAction.ts +17 -0
- package/app/Actions/Logs/LogStoreOrmAction.ts +16 -0
- package/app/Actions/Logs/LogUpdateOrmAction.ts +20 -0
- package/app/Actions/Monitoring/ErrorDestroyAction.ts +25 -0
- package/app/Actions/Monitoring/ErrorGroupAction.ts +21 -0
- package/app/Actions/Monitoring/ErrorIgnoreAction.ts +25 -0
- package/app/Actions/Monitoring/ErrorIndexAction.ts +14 -0
- package/app/Actions/Monitoring/ErrorResolveAction.ts +25 -0
- package/app/Actions/Monitoring/ErrorShowAction.ts +19 -0
- package/app/Actions/Monitoring/ErrorStatsAction.ts +14 -0
- package/app/Actions/Monitoring/ErrorTimelineAction.ts +14 -0
- package/app/Actions/Monitoring/ErrorUnresolveAction.ts +25 -0
- package/app/Actions/NotifyUser.ts +10 -0
- package/app/Actions/Password/PasswordResetAction.ts +54 -0
- package/app/Actions/Password/SendPasswordResetEmailAction.ts +66 -0
- package/app/Actions/Password/VerifyResetTokenAction.ts +27 -0
- package/app/Actions/Payment/CancelSubscriptionAction.ts +20 -0
- package/app/Actions/Payment/CreateCheckoutAction.ts +28 -0
- package/app/Actions/Payment/CreateInvoiceSubscription.ts +18 -0
- package/app/Actions/Payment/CreatePaymentIntentAction.ts +31 -0
- package/app/Actions/Payment/CreateSetupIntentAction.ts +20 -0
- package/app/Actions/Payment/CreateSubscriptionAction.ts +23 -0
- package/app/Actions/Payment/DeleteDefaultPaymentAction.ts +18 -0
- package/app/Actions/Payment/FetchActiveSubscriptionAction.ts +18 -0
- package/app/Actions/Payment/FetchDefaultPaymentMethodAction.ts +18 -0
- package/app/Actions/Payment/FetchPaymentCustomerAction.ts +18 -0
- package/app/Actions/Payment/FetchPaymentMethodsAction.ts +18 -0
- package/app/Actions/Payment/FetchProductAction.ts +15 -0
- package/app/Actions/Payment/FetchTransactionHistoryAction.ts +18 -0
- package/app/Actions/Payment/FetchUserSubscriptionsAction.ts +18 -0
- package/app/Actions/Payment/SetDefaultPaymentAction.ts +20 -0
- package/app/Actions/Payment/SetUserDefaultPaymentAction.ts +20 -0
- package/app/Actions/Payment/StorePaymentMethodAction.ts +20 -0
- package/app/Actions/Payment/StoreTransactionAction.ts +20 -0
- package/app/Actions/Payment/UpdateCustomerAction.ts +24 -0
- package/app/Actions/Payment/UpdateDefaultPaymentMethodAction.ts +18 -0
- package/app/Actions/Payment/UpdateSubscriptionAction.ts +22 -0
- package/app/Actions/Queue/FetchQueuesAction.ts +14 -0
- package/app/Actions/README.md +61 -0
- package/app/Actions/Realtime/FetchWebsocketsAction.ts +14 -0
- package/app/Actions/RobotsAction.ts +61 -0
- package/app/Actions/SendWelcomeEmail.ts +40 -0
- package/app/Actions/SitemapAction.ts +234 -0
- package/app/Actions/Storefront/AddToCartAction.ts +153 -0
- package/app/Actions/Storefront/CheckoutContactAction.ts +50 -0
- package/app/Actions/Storefront/CheckoutShippingAction.ts +61 -0
- package/app/Actions/Storefront/GetCartAction.ts +58 -0
- package/app/Actions/Storefront/PlaceOrderAction.ts +195 -0
- package/app/Actions/Storefront/SubmitReviewAction.ts +140 -0
- package/app/Actions/Storefront/UpdateCartItemAction.ts +83 -0
- package/app/Actions/Storefront/_shipping.ts +64 -0
- package/app/Actions/SubscriberEmailAction.ts +60 -0
- package/app/Actions/TestErrorAction.ts +163 -0
- package/app/Actions/UnsubscribeAction.ts +107 -0
- package/app/Actions/UploadTestAction.ts +57 -0
- package/app/Broadcasts/OrderShipped.ts +57 -0
- package/app/Commands/Inspire.ts +57 -0
- package/app/Commands/README.md +84 -0
- package/app/Commands.ts +38 -0
- package/app/Controllers/ComingSoonController.ts +9 -0
- package/app/Controllers/QueryController.ts +373 -0
- package/app/Events.ts +14 -0
- package/app/Gates.ts +107 -0
- package/app/Jobs/ExampleJob.ts +20 -0
- package/app/Jobs/ExampleTwoJob.ts +12 -0
- package/app/Jobs/PruneModelsJob.ts +61 -0
- package/app/Jobs/PruneQueryLogsJob.ts +51 -0
- package/app/Jobs/README.md +79 -0
- package/app/Jobs/SendCampaignJob.ts +201 -0
- package/app/Jobs/SendEmailJob.ts +52 -0
- package/app/Jobs/SendPasswordResetEmailJob.ts +44 -0
- package/app/Jobs/SyncSearchIndexJob.ts +64 -0
- package/app/Listener.ts +84 -0
- package/app/Listeners/Console.ts +22 -0
- package/app/Listeners/README.md +47 -0
- package/app/Mail/OrderConfirmation.ts +60 -0
- package/app/Mail/SubscriptionConfirmation.ts +41 -0
- package/app/Middleware/Abilities.ts +53 -0
- package/app/Middleware/Api.ts +26 -0
- package/app/Middleware/Auth.ts +59 -0
- package/app/Middleware/Can.ts +68 -0
- package/app/Middleware/Compress.ts +213 -0
- package/app/Middleware/Cors.ts +320 -0
- package/app/Middleware/Csrf.ts +224 -0
- package/app/Middleware/EnsureEmailIsVerified.ts +28 -0
- package/app/Middleware/Env.ts +24 -0
- package/app/Middleware/EnvDevelopment.ts +19 -0
- package/app/Middleware/EnvLocal.ts +19 -0
- package/app/Middleware/EnvNotDevelopment.ts +19 -0
- package/app/Middleware/EnvNotLocal.ts +19 -0
- package/app/Middleware/EnvNotProduction.ts +19 -0
- package/app/Middleware/EnvNotStaging.ts +19 -0
- package/app/Middleware/EnvProduction.ts +19 -0
- package/app/Middleware/EnvStaging.ts +19 -0
- package/app/Middleware/Guest.ts +25 -0
- package/app/Middleware/Logger.ts +20 -0
- package/app/Middleware/Maintenance.ts +36 -0
- package/app/Middleware/Permission.ts +42 -0
- package/app/Middleware/README.md +48 -0
- package/app/Middleware/Role.ts +42 -0
- package/app/Middleware/Signed.ts +31 -0
- package/app/Middleware/Team.ts +36 -0
- package/app/Middleware/Throttle.ts +96 -0
- package/app/Middleware.ts +35 -0
- package/app/Models/Activity.ts +94 -0
- package/app/Models/Board.ts +103 -0
- package/app/Models/BoardColumn.ts +87 -0
- package/app/Models/Campaign.ts +239 -0
- package/app/Models/CampaignSend.ts +107 -0
- package/app/Models/Card.ts +117 -0
- package/app/Models/CardComment.ts +68 -0
- package/app/Models/Comment.ts +108 -0
- package/app/Models/Content/Author.ts +104 -0
- package/app/Models/Content/Page.ts +99 -0
- package/app/Models/Content/Post.ts +144 -0
- package/app/Models/Deployment.ts +116 -0
- package/app/Models/EmailList.ts +126 -0
- package/app/Models/EmailListSubscriber.ts +91 -0
- package/app/Models/Error.ts +70 -0
- package/app/Models/FailedJob.ts +62 -0
- package/app/Models/Job.ts +63 -0
- package/app/Models/Label.ts +66 -0
- package/app/Models/Log.ts +110 -0
- package/app/Models/Notification.ts +118 -0
- package/app/Models/PaymentMethod.ts +98 -0
- package/app/Models/PaymentProduct.ts +91 -0
- package/app/Models/PaymentTransaction.ts +78 -0
- package/app/Models/README.md +31 -0
- package/app/Models/Release.ts +89 -0
- package/app/Models/Request.ts +114 -0
- package/app/Models/SocialPost.ts +136 -0
- package/app/Models/Subscriber.ts +89 -0
- package/app/Models/SubscriberEmail.ts +55 -0
- package/app/Models/Subscription.ts +153 -0
- package/app/Models/Tag.ts +82 -0
- package/app/Models/Team.ts +72 -0
- package/app/Models/User.ts +134 -0
- package/app/Models/commerce/Cart.ts +139 -0
- package/app/Models/commerce/CartItem.ts +137 -0
- package/app/Models/commerce/Category.ts +105 -0
- package/app/Models/commerce/Coupon.ts +181 -0
- package/app/Models/commerce/Customer.ts +132 -0
- package/app/Models/commerce/DeliveryRoute.ts +93 -0
- package/app/Models/commerce/DigitalDelivery.ts +105 -0
- package/app/Models/commerce/Driver.ts +97 -0
- package/app/Models/commerce/GiftCard.ts +191 -0
- package/app/Models/commerce/LicenseKey.ts +87 -0
- package/app/Models/commerce/LoyaltyPoint.ts +107 -0
- package/app/Models/commerce/LoyaltyReward.ts +124 -0
- package/app/Models/commerce/Manufacturer.ts +84 -0
- package/app/Models/commerce/Order.ts +142 -0
- package/app/Models/commerce/OrderItem.ts +51 -0
- package/app/Models/commerce/Payment.ts +163 -0
- package/app/Models/commerce/PrintDevice.ts +117 -0
- package/app/Models/commerce/Product.ts +148 -0
- package/app/Models/commerce/ProductUnit.ts +107 -0
- package/app/Models/commerce/ProductVariant.ts +106 -0
- package/app/Models/commerce/Receipt.ts +128 -0
- package/app/Models/commerce/Review.ts +140 -0
- package/app/Models/commerce/ShippingMethod.ts +97 -0
- package/app/Models/commerce/ShippingRate.ts +74 -0
- package/app/Models/commerce/ShippingZone.ts +111 -0
- package/app/Models/commerce/TaxRate.ts +114 -0
- package/app/Models/commerce/Transaction.ts +126 -0
- package/app/Models/commerce/WaitlistProduct.ts +149 -0
- package/app/Models/commerce/WaitlistRestaurant.ts +187 -0
- package/app/Models/realtime/Websocket.ts +77 -0
- package/app/Notifications/README.md +31 -0
- package/app/Notifications/Welcome.ts +32 -0
- package/app/Policies/PostPolicy.ts +131 -0
- package/app/README.md +23 -0
- package/app/Routes.ts +47 -0
- package/app/Scheduler.ts +28 -0
- package/app/Storefront/CartCookie.ts +109 -0
- package/package.json +3 -2
|
@@ -0,0 +1,802 @@
|
|
|
1
|
+
import { Action } from '@stacksjs/actions'
|
|
2
|
+
|
|
3
|
+
export default new Action({
|
|
4
|
+
name: 'Buddy Command Info',
|
|
5
|
+
description: 'This command displays the available buddy command information.',
|
|
6
|
+
|
|
7
|
+
handle() {
|
|
8
|
+
return {
|
|
9
|
+
commands: [
|
|
10
|
+
{
|
|
11
|
+
signature: 'buddy --version',
|
|
12
|
+
description: 'Get the Stacks version',
|
|
13
|
+
notes: null,
|
|
14
|
+
synopsis: 'buddy --version',
|
|
15
|
+
aliases: [],
|
|
16
|
+
arguments: [],
|
|
17
|
+
options: [],
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
signature: 'buddy --help',
|
|
21
|
+
description: 'View help menu',
|
|
22
|
+
notes: 'Please note: you may suffix any command with the e.g `command --help` flag to review the help menu',
|
|
23
|
+
synopsis: 'buddy --help',
|
|
24
|
+
aliases: [],
|
|
25
|
+
arguments: [],
|
|
26
|
+
options: [],
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
signature: 'buddy install',
|
|
30
|
+
description: 'Installs dependencies',
|
|
31
|
+
notes: '',
|
|
32
|
+
synopsis: 'buddy install',
|
|
33
|
+
aliases: [],
|
|
34
|
+
arguments: [],
|
|
35
|
+
options: [],
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
signature: 'buddy add',
|
|
39
|
+
description: 'Adds a stack or dependency',
|
|
40
|
+
notes: '',
|
|
41
|
+
synopsis: 'buddy add',
|
|
42
|
+
aliases: [],
|
|
43
|
+
arguments: [],
|
|
44
|
+
options: [],
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
signature: 'buddy fresh',
|
|
48
|
+
description: 'Fresh reinstall of all dependencies',
|
|
49
|
+
notes: '',
|
|
50
|
+
synopsis: 'buddy fresh',
|
|
51
|
+
aliases: [],
|
|
52
|
+
arguments: [],
|
|
53
|
+
options: [],
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
signature: 'buddy clean',
|
|
57
|
+
description: 'Removes all dependencies',
|
|
58
|
+
notes: '',
|
|
59
|
+
synopsis: 'buddy clean',
|
|
60
|
+
aliases: [],
|
|
61
|
+
arguments: [],
|
|
62
|
+
options: [],
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
signature: 'buddy upgrade',
|
|
66
|
+
description: 'Upgrades all dependencies',
|
|
67
|
+
notes: '',
|
|
68
|
+
synopsis: 'buddy upgrade',
|
|
69
|
+
aliases: [],
|
|
70
|
+
arguments: [],
|
|
71
|
+
options: [],
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
signature: 'buddy upgrade -i',
|
|
75
|
+
description: 'Prompts you to select which updates to apply (wip)',
|
|
76
|
+
notes: '',
|
|
77
|
+
synopsis: 'buddy upgrade -i',
|
|
78
|
+
aliases: [],
|
|
79
|
+
arguments: [],
|
|
80
|
+
options: [],
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
signature: 'buddy upgrade:dependencies',
|
|
84
|
+
description: 'Auto-upgrades dependencies & the Stacks framework',
|
|
85
|
+
notes: '',
|
|
86
|
+
synopsis: 'buddy upgrade:dependencies',
|
|
87
|
+
aliases: [],
|
|
88
|
+
arguments: [],
|
|
89
|
+
options: [],
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
signature: 'buddy upgrade:framework',
|
|
93
|
+
description: 'Auto-upgrades dependencies & the Stacks framework',
|
|
94
|
+
notes: '',
|
|
95
|
+
synopsis: 'buddy upgrade:framework',
|
|
96
|
+
aliases: [],
|
|
97
|
+
arguments: [],
|
|
98
|
+
options: [],
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
signature: 'buddy upgrade:search-engine',
|
|
102
|
+
description: 'Auto-upgrades configured search engine',
|
|
103
|
+
notes: '',
|
|
104
|
+
synopsis: 'buddy upgrade:search-engine',
|
|
105
|
+
aliases: [],
|
|
106
|
+
arguments: [],
|
|
107
|
+
options: [],
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
signature: 'buddy upgrade:bun',
|
|
111
|
+
description: 'Upgrades to latest project-defined Bun version',
|
|
112
|
+
notes: '',
|
|
113
|
+
synopsis: 'buddy upgrade:bun',
|
|
114
|
+
aliases: [],
|
|
115
|
+
arguments: [],
|
|
116
|
+
options: [],
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
signature: 'buddy upgrade:all',
|
|
120
|
+
description: 'Auto-upgrades all of the above',
|
|
121
|
+
notes: '',
|
|
122
|
+
synopsis: 'buddy upgrade:all',
|
|
123
|
+
aliases: [],
|
|
124
|
+
arguments: [],
|
|
125
|
+
options: [],
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
signature: 'buddy dev',
|
|
129
|
+
description: 'Starts the frontend dev server',
|
|
130
|
+
notes: '',
|
|
131
|
+
synopsis: 'buddy dev',
|
|
132
|
+
aliases: [],
|
|
133
|
+
arguments: [],
|
|
134
|
+
options: [],
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
signature: 'buddy dev -i',
|
|
138
|
+
description: 'Prompts any of the dev servers (components, functions, views, or docs)',
|
|
139
|
+
notes: '',
|
|
140
|
+
synopsis: 'buddy dev -i',
|
|
141
|
+
aliases: [],
|
|
142
|
+
arguments: [],
|
|
143
|
+
options: [],
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
signature: 'buddy dev:api',
|
|
147
|
+
description: 'Starts the API dev server',
|
|
148
|
+
notes: '',
|
|
149
|
+
synopsis: 'buddy dev:api',
|
|
150
|
+
aliases: [],
|
|
151
|
+
arguments: [],
|
|
152
|
+
options: [],
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
signature: 'buddy dev:dashboard',
|
|
156
|
+
description: 'Starts the Admin/Dashboard dev server',
|
|
157
|
+
notes: '',
|
|
158
|
+
synopsis: 'buddy dev:dashboard',
|
|
159
|
+
aliases: [],
|
|
160
|
+
arguments: [],
|
|
161
|
+
options: [],
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
signature: 'buddy dev:desktop',
|
|
165
|
+
description: 'Starts the Desktop dev server',
|
|
166
|
+
notes: '',
|
|
167
|
+
synopsis: 'buddy dev:desktop',
|
|
168
|
+
aliases: [],
|
|
169
|
+
arguments: [],
|
|
170
|
+
options: [],
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
signature: 'buddy dev:views',
|
|
174
|
+
description: 'Starts frontend dev server',
|
|
175
|
+
notes: '',
|
|
176
|
+
synopsis: 'buddy dev:views',
|
|
177
|
+
aliases: [],
|
|
178
|
+
arguments: [],
|
|
179
|
+
options: [],
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
signature: 'buddy dev:components',
|
|
183
|
+
description: 'Starts component dev server',
|
|
184
|
+
notes: '',
|
|
185
|
+
synopsis: 'buddy dev:components',
|
|
186
|
+
aliases: [],
|
|
187
|
+
arguments: [],
|
|
188
|
+
options: [],
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
signature: 'buddy dev:functions',
|
|
192
|
+
description: 'Stubs functions',
|
|
193
|
+
notes: '',
|
|
194
|
+
synopsis: 'buddy dev:functions',
|
|
195
|
+
aliases: [],
|
|
196
|
+
arguments: [],
|
|
197
|
+
options: [],
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
signature: 'buddy dev:docs',
|
|
201
|
+
description: 'Starts local docs dev server',
|
|
202
|
+
notes: '',
|
|
203
|
+
synopsis: 'buddy dev:docs',
|
|
204
|
+
aliases: [],
|
|
205
|
+
arguments: [],
|
|
206
|
+
options: [],
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
signature: 'buddy dev docs',
|
|
210
|
+
description: 'Also starts the local docs dev server (colon is optional)',
|
|
211
|
+
notes: '',
|
|
212
|
+
synopsis: 'buddy dev docs',
|
|
213
|
+
aliases: [],
|
|
214
|
+
arguments: [],
|
|
215
|
+
options: [],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
signature: 'buddy development',
|
|
219
|
+
description: '`buddy dev` alias',
|
|
220
|
+
notes: '',
|
|
221
|
+
synopsis: 'buddy development',
|
|
222
|
+
aliases: [],
|
|
223
|
+
arguments: [],
|
|
224
|
+
options: [],
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
signature: 'buddy build',
|
|
228
|
+
description: 'Select a specific build (follow CLI prompts)',
|
|
229
|
+
notes: '',
|
|
230
|
+
synopsis: 'buddy build',
|
|
231
|
+
aliases: [],
|
|
232
|
+
arguments: [],
|
|
233
|
+
options: [],
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
signature: 'buddy build:views',
|
|
237
|
+
description: 'Builds SSG views',
|
|
238
|
+
notes: '',
|
|
239
|
+
synopsis: 'buddy build:views',
|
|
240
|
+
aliases: [],
|
|
241
|
+
arguments: [],
|
|
242
|
+
options: [],
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
signature: 'buddy build:desktop',
|
|
246
|
+
description: 'Builds the Desktop application',
|
|
247
|
+
notes: '',
|
|
248
|
+
synopsis: 'buddy build:desktop',
|
|
249
|
+
aliases: [],
|
|
250
|
+
arguments: [],
|
|
251
|
+
options: [],
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
signature: 'buddy build:library',
|
|
255
|
+
description: 'Builds any or all libraries',
|
|
256
|
+
notes: '',
|
|
257
|
+
synopsis: 'buddy build:library',
|
|
258
|
+
aliases: [],
|
|
259
|
+
arguments: [],
|
|
260
|
+
options: [],
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
signature: 'buddy build:functions',
|
|
264
|
+
description: 'Builds the function library',
|
|
265
|
+
notes: '',
|
|
266
|
+
synopsis: 'buddy build:functions',
|
|
267
|
+
aliases: [],
|
|
268
|
+
arguments: [],
|
|
269
|
+
options: [],
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
signature: 'buddy build:components',
|
|
273
|
+
description: 'Builds Vue component library & Web Component library',
|
|
274
|
+
notes: '',
|
|
275
|
+
synopsis: 'buddy build:components',
|
|
276
|
+
aliases: [],
|
|
277
|
+
arguments: [],
|
|
278
|
+
options: [],
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
signature: 'buddy build:web-components',
|
|
282
|
+
description: 'Builds framework-agnostic Web Component library (i.e. Custom Elements)',
|
|
283
|
+
notes: '',
|
|
284
|
+
synopsis: 'buddy build:web-components',
|
|
285
|
+
aliases: [],
|
|
286
|
+
arguments: [],
|
|
287
|
+
options: [],
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
signature: 'buddy build:all',
|
|
291
|
+
description: 'Builds all your code',
|
|
292
|
+
notes: '',
|
|
293
|
+
synopsis: 'buddy build:all',
|
|
294
|
+
aliases: [],
|
|
295
|
+
arguments: [],
|
|
296
|
+
options: [],
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
signature: 'buddy key:generate',
|
|
300
|
+
description: 'Generates your application key',
|
|
301
|
+
notes: '',
|
|
302
|
+
synopsis: 'buddy key:generate',
|
|
303
|
+
aliases: [],
|
|
304
|
+
arguments: [],
|
|
305
|
+
options: [],
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
signature: 'buddy make:component',
|
|
309
|
+
description: 'Bootstraps a <name> component',
|
|
310
|
+
notes: '',
|
|
311
|
+
synopsis: 'buddy make:component <name>',
|
|
312
|
+
aliases: [],
|
|
313
|
+
arguments: [
|
|
314
|
+
{
|
|
315
|
+
name: 'name',
|
|
316
|
+
description: 'The component to be created',
|
|
317
|
+
value_required: true,
|
|
318
|
+
},
|
|
319
|
+
],
|
|
320
|
+
options: [],
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
signature: 'buddy make:function',
|
|
324
|
+
description: 'Bootstraps a <name> function',
|
|
325
|
+
notes: '',
|
|
326
|
+
synopsis: 'buddy make:function <name>',
|
|
327
|
+
aliases: [],
|
|
328
|
+
arguments: [
|
|
329
|
+
{
|
|
330
|
+
name: 'name',
|
|
331
|
+
description: 'The function name to be created. Must be in <snake-case>',
|
|
332
|
+
value_required: true,
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
options: [],
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
signature: 'buddy make:view',
|
|
339
|
+
description: 'Bootstraps a <name> page',
|
|
340
|
+
notes: '',
|
|
341
|
+
synopsis: 'buddy make:view <name>',
|
|
342
|
+
aliases: [],
|
|
343
|
+
arguments: [
|
|
344
|
+
{
|
|
345
|
+
name: 'name',
|
|
346
|
+
description: 'The component to be created. Must be in <snake-case>',
|
|
347
|
+
value_required: true,
|
|
348
|
+
},
|
|
349
|
+
],
|
|
350
|
+
options: [],
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
signature: 'buddy make:model',
|
|
354
|
+
description: 'Bootstraps a <name> model',
|
|
355
|
+
notes: '',
|
|
356
|
+
synopsis: 'buddy make:model <name>',
|
|
357
|
+
aliases: [],
|
|
358
|
+
arguments: [
|
|
359
|
+
{
|
|
360
|
+
name: 'name',
|
|
361
|
+
description: 'The model to be created.',
|
|
362
|
+
value_required: true,
|
|
363
|
+
},
|
|
364
|
+
],
|
|
365
|
+
options: [],
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
signature: 'buddy make:database',
|
|
369
|
+
description: 'Creates a new database.',
|
|
370
|
+
notes: '',
|
|
371
|
+
synopsis: 'buddy make:database <name>',
|
|
372
|
+
aliases: [],
|
|
373
|
+
arguments: [
|
|
374
|
+
{
|
|
375
|
+
name: 'name',
|
|
376
|
+
description: 'The database to be created',
|
|
377
|
+
value_required: true,
|
|
378
|
+
},
|
|
379
|
+
],
|
|
380
|
+
options: [],
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
signature: 'buddy make:migration',
|
|
384
|
+
description: 'Creates a new migration file.',
|
|
385
|
+
notes: '',
|
|
386
|
+
synopsis: 'buddy make:migration <name>',
|
|
387
|
+
aliases: [],
|
|
388
|
+
arguments: [
|
|
389
|
+
{
|
|
390
|
+
name: 'name',
|
|
391
|
+
description: 'The migration to be created.',
|
|
392
|
+
value_required: true,
|
|
393
|
+
},
|
|
394
|
+
],
|
|
395
|
+
options: [],
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
signature: 'buddy make:factory',
|
|
399
|
+
description: 'Creates a new factory file',
|
|
400
|
+
notes: '',
|
|
401
|
+
synopsis: 'buddy make:factory <name>',
|
|
402
|
+
aliases: [],
|
|
403
|
+
arguments: [
|
|
404
|
+
{
|
|
405
|
+
name: 'name',
|
|
406
|
+
description: 'The factory to be created.',
|
|
407
|
+
value_required: true,
|
|
408
|
+
},
|
|
409
|
+
],
|
|
410
|
+
options: [],
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
signature: 'buddy make:table',
|
|
414
|
+
description: 'Bootstraps a new data table',
|
|
415
|
+
notes: '',
|
|
416
|
+
synopsis: 'buddy make:table <name>',
|
|
417
|
+
aliases: [],
|
|
418
|
+
arguments: [
|
|
419
|
+
{
|
|
420
|
+
name: 'name',
|
|
421
|
+
description: 'The table to be created.',
|
|
422
|
+
value_required: true,
|
|
423
|
+
},
|
|
424
|
+
],
|
|
425
|
+
options: [],
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
signature: 'buddy make:notification',
|
|
429
|
+
description: 'Bootstraps a new notification email',
|
|
430
|
+
notes: '',
|
|
431
|
+
synopsis: 'buddy make:notification <name>',
|
|
432
|
+
aliases: [],
|
|
433
|
+
arguments: [
|
|
434
|
+
{
|
|
435
|
+
name: 'name',
|
|
436
|
+
description: 'The notification email to be created.',
|
|
437
|
+
value_required: true,
|
|
438
|
+
},
|
|
439
|
+
],
|
|
440
|
+
options: [],
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
signature: 'buddy make:lang',
|
|
444
|
+
description: 'Bootstraps a new yml language file under `lang/<name>.yml`',
|
|
445
|
+
notes: '',
|
|
446
|
+
synopsis: 'buddy make:lang <name>',
|
|
447
|
+
aliases: [],
|
|
448
|
+
arguments: [
|
|
449
|
+
{
|
|
450
|
+
name: 'name',
|
|
451
|
+
description: 'The yml language file to be created.',
|
|
452
|
+
value_required: true,
|
|
453
|
+
},
|
|
454
|
+
],
|
|
455
|
+
options: [],
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
signature: 'buddy make:stack',
|
|
459
|
+
description: 'Shares logic with `bunx stacks new <project-name>`',
|
|
460
|
+
notes: '',
|
|
461
|
+
synopsis: 'buddy make:stack <project-name>',
|
|
462
|
+
aliases: [],
|
|
463
|
+
arguments: [
|
|
464
|
+
{
|
|
465
|
+
name: 'project-name',
|
|
466
|
+
description: 'The name of the project to be created.',
|
|
467
|
+
value_required: true,
|
|
468
|
+
},
|
|
469
|
+
],
|
|
470
|
+
options: [],
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
signature: 'buddy migrate',
|
|
474
|
+
description: 'Runs database migrations',
|
|
475
|
+
notes: '',
|
|
476
|
+
synopsis: 'buddy migrate',
|
|
477
|
+
aliases: [],
|
|
478
|
+
arguments: [],
|
|
479
|
+
options: [],
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
signature: 'buddy migrate:dns',
|
|
483
|
+
description: 'Sets the ./config/dns.ts file',
|
|
484
|
+
notes: '',
|
|
485
|
+
synopsis: 'buddy migrate:dns',
|
|
486
|
+
aliases: [],
|
|
487
|
+
arguments: [],
|
|
488
|
+
options: [],
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
signature: 'buddy dns',
|
|
492
|
+
description: 'List all DNS records for <example.com>',
|
|
493
|
+
notes: '',
|
|
494
|
+
synopsis: 'buddy dns <site> [--type <type>]',
|
|
495
|
+
aliases: [],
|
|
496
|
+
arguments: [
|
|
497
|
+
{
|
|
498
|
+
name: 'site',
|
|
499
|
+
description: 'The name of the site to list all of its DNS records',
|
|
500
|
+
value_required: true,
|
|
501
|
+
},
|
|
502
|
+
],
|
|
503
|
+
options: [
|
|
504
|
+
{
|
|
505
|
+
name: 'type',
|
|
506
|
+
description: 'Filter by DNS record type (A, MX, NS, etc.)',
|
|
507
|
+
value_required: false,
|
|
508
|
+
},
|
|
509
|
+
],
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
signature: 'buddy lint',
|
|
513
|
+
description: 'Runs linter',
|
|
514
|
+
notes: '',
|
|
515
|
+
synopsis: 'buddy lint',
|
|
516
|
+
aliases: [],
|
|
517
|
+
arguments: [],
|
|
518
|
+
options: [],
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
signature: 'buddy lint:fix',
|
|
522
|
+
description: 'Runs linter and fixes issues',
|
|
523
|
+
notes: '',
|
|
524
|
+
synopsis: 'buddy lint:fix',
|
|
525
|
+
aliases: [],
|
|
526
|
+
arguments: [],
|
|
527
|
+
options: [],
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
signature: 'buddy commit',
|
|
531
|
+
description: 'Follow CLI prompts for committing staged changes',
|
|
532
|
+
notes: '',
|
|
533
|
+
synopsis: 'buddy commit',
|
|
534
|
+
aliases: [],
|
|
535
|
+
arguments: [],
|
|
536
|
+
options: [],
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
signature: 'buddy release',
|
|
540
|
+
description: 'Creates the releases for the stack & triggers the Release Action (workflow)',
|
|
541
|
+
notes: '',
|
|
542
|
+
synopsis: 'buddy release',
|
|
543
|
+
aliases: [],
|
|
544
|
+
arguments: [],
|
|
545
|
+
options: [],
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
signature: 'buddy changelog',
|
|
549
|
+
description: 'Generates CHANGELOG.md',
|
|
550
|
+
notes: '',
|
|
551
|
+
synopsis: 'buddy changelog',
|
|
552
|
+
aliases: [],
|
|
553
|
+
arguments: [],
|
|
554
|
+
options: [],
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
signature: 'buddy deploy',
|
|
558
|
+
description: 'Select a specific deployment (follow CLI prompts)',
|
|
559
|
+
notes: '',
|
|
560
|
+
synopsis: 'buddy deploy',
|
|
561
|
+
aliases: [],
|
|
562
|
+
arguments: [],
|
|
563
|
+
options: [],
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
signature: 'buddy undeploy',
|
|
567
|
+
description: 'Be careful: "undeploys" removes/deletes your deployed resources',
|
|
568
|
+
notes: '',
|
|
569
|
+
synopsis: 'buddy undeploy',
|
|
570
|
+
aliases: [],
|
|
571
|
+
arguments: [],
|
|
572
|
+
options: [],
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
signature: 'buddy cloud:remove',
|
|
576
|
+
description: 'Removes cloud setup',
|
|
577
|
+
notes: '',
|
|
578
|
+
synopsis: 'buddy cloud:remove',
|
|
579
|
+
aliases: [],
|
|
580
|
+
arguments: [],
|
|
581
|
+
options: [],
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
signature: 'buddy cloud:cleanup',
|
|
585
|
+
description: 'Removes cloud setup & cleans up all potentially leftover resources',
|
|
586
|
+
notes: '',
|
|
587
|
+
synopsis: 'buddy cloud:cleanup',
|
|
588
|
+
aliases: [],
|
|
589
|
+
arguments: [],
|
|
590
|
+
options: [],
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
signature: 'buddy cloud:add --jump-box',
|
|
594
|
+
description: 'Adds a jump box to your cloud setup',
|
|
595
|
+
notes: '',
|
|
596
|
+
synopsis: 'buddy cloud:add --jump-box',
|
|
597
|
+
aliases: [],
|
|
598
|
+
arguments: [],
|
|
599
|
+
options: [],
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
signature: 'buddy example',
|
|
603
|
+
description: 'Prompts you to select which example to run',
|
|
604
|
+
notes: '',
|
|
605
|
+
synopsis: 'buddy example',
|
|
606
|
+
aliases: [],
|
|
607
|
+
arguments: [],
|
|
608
|
+
options: [],
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
signature: 'buddy example:vue',
|
|
612
|
+
description: 'Runs the Vue example',
|
|
613
|
+
notes: '',
|
|
614
|
+
synopsis: 'buddy example:vue',
|
|
615
|
+
aliases: [],
|
|
616
|
+
arguments: [],
|
|
617
|
+
options: [],
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
signature: 'buddy example:web-components',
|
|
621
|
+
description: 'Runs the Web Component example',
|
|
622
|
+
notes: '',
|
|
623
|
+
synopsis: 'buddy example:web-components',
|
|
624
|
+
aliases: [],
|
|
625
|
+
arguments: [],
|
|
626
|
+
options: [],
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
signature: 'buddy generate',
|
|
630
|
+
description: 'Prompts you to select which generator to run',
|
|
631
|
+
notes: '',
|
|
632
|
+
synopsis: 'buddy generate',
|
|
633
|
+
aliases: [],
|
|
634
|
+
arguments: [],
|
|
635
|
+
options: [],
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
signature: 'buddy generate:types',
|
|
639
|
+
description: 'Generates types for your components, functions, & views',
|
|
640
|
+
notes: '',
|
|
641
|
+
synopsis: 'buddy generate:types',
|
|
642
|
+
aliases: [],
|
|
643
|
+
arguments: [],
|
|
644
|
+
options: [],
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
signature: 'buddy generate:entries',
|
|
648
|
+
description: 'Generates entry files for components, functions, & views',
|
|
649
|
+
notes: '',
|
|
650
|
+
synopsis: 'buddy generate:entries',
|
|
651
|
+
aliases: [],
|
|
652
|
+
arguments: [],
|
|
653
|
+
options: [],
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
signature: 'buddy generate:web-types',
|
|
657
|
+
description: 'Generates Web Component types',
|
|
658
|
+
notes: '',
|
|
659
|
+
synopsis: 'buddy generate:web-types',
|
|
660
|
+
aliases: [],
|
|
661
|
+
arguments: [],
|
|
662
|
+
options: [],
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
signature: 'buddy generate:vscode-custom-data',
|
|
666
|
+
description: 'Generates VSCode custom data',
|
|
667
|
+
notes: '',
|
|
668
|
+
synopsis: 'buddy generate:vscode-custom-data',
|
|
669
|
+
aliases: [],
|
|
670
|
+
arguments: [],
|
|
671
|
+
options: [],
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
signature: 'buddy generate:ide-helpers',
|
|
675
|
+
description: 'Generates IDE helpers',
|
|
676
|
+
notes: '',
|
|
677
|
+
synopsis: 'buddy generate:ide-helpers',
|
|
678
|
+
aliases: [],
|
|
679
|
+
arguments: [],
|
|
680
|
+
options: [],
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
signature: 'buddy generate:component-meta',
|
|
684
|
+
description: 'Generates component meta',
|
|
685
|
+
notes: '',
|
|
686
|
+
synopsis: 'buddy generate:component-meta',
|
|
687
|
+
aliases: [],
|
|
688
|
+
arguments: [],
|
|
689
|
+
options: [],
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
signature: 'buddy generate:all',
|
|
693
|
+
description: 'Runs all generators',
|
|
694
|
+
notes: '',
|
|
695
|
+
synopsis: 'buddy generate:all',
|
|
696
|
+
aliases: [],
|
|
697
|
+
arguments: [],
|
|
698
|
+
options: [],
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
signature: 'buddy types:generate',
|
|
702
|
+
description: 'Generates types for your components, functions, & views',
|
|
703
|
+
notes: '',
|
|
704
|
+
synopsis: 'buddy types:generate',
|
|
705
|
+
aliases: [],
|
|
706
|
+
arguments: [],
|
|
707
|
+
options: [],
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
signature: 'buddy types:fix',
|
|
711
|
+
description: 'Auto-fixes types for your components, functions, & views',
|
|
712
|
+
notes: '',
|
|
713
|
+
synopsis: 'buddy types:fix',
|
|
714
|
+
aliases: [],
|
|
715
|
+
arguments: [],
|
|
716
|
+
options: [],
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
signature: 'buddy domains',
|
|
720
|
+
description: 'Alias for `buddy domains:list`',
|
|
721
|
+
notes: '',
|
|
722
|
+
synopsis: 'buddy domains',
|
|
723
|
+
aliases: [],
|
|
724
|
+
arguments: [],
|
|
725
|
+
options: [],
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
signature: 'buddy domains:add stacksjs.com',
|
|
729
|
+
description: 'Adds a domain',
|
|
730
|
+
notes: '',
|
|
731
|
+
synopsis: 'buddy domains:add stacksjs.com',
|
|
732
|
+
aliases: [],
|
|
733
|
+
arguments: [],
|
|
734
|
+
options: [],
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
signature: 'buddy domains:remove stacksjs.com',
|
|
738
|
+
description: 'Removes a domain',
|
|
739
|
+
notes: '',
|
|
740
|
+
synopsis: 'buddy domains:remove stacksjs.com',
|
|
741
|
+
aliases: [],
|
|
742
|
+
arguments: [],
|
|
743
|
+
options: [],
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
signature: 'buddy domains:list',
|
|
747
|
+
description: 'Lists all domains',
|
|
748
|
+
notes: '',
|
|
749
|
+
synopsis: 'buddy domains:list',
|
|
750
|
+
aliases: [],
|
|
751
|
+
arguments: [],
|
|
752
|
+
options: [],
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
signature: 'buddy domains:update',
|
|
756
|
+
description: 'Apply ./config/dns.ts updates',
|
|
757
|
+
notes: '',
|
|
758
|
+
synopsis: 'buddy domains:update',
|
|
759
|
+
aliases: [],
|
|
760
|
+
arguments: [],
|
|
761
|
+
options: [],
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
signature: 'buddy domains:purchase stacksjs.com',
|
|
765
|
+
description: 'Purchase a new domain',
|
|
766
|
+
notes: '',
|
|
767
|
+
synopsis: 'buddy domains:purchase stacksjs.com',
|
|
768
|
+
aliases: [],
|
|
769
|
+
arguments: [],
|
|
770
|
+
options: [],
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
signature: 'buddy test',
|
|
774
|
+
description: 'Runs test suite (unit & e2e)',
|
|
775
|
+
notes: '',
|
|
776
|
+
synopsis: 'buddy test',
|
|
777
|
+
aliases: [],
|
|
778
|
+
arguments: [],
|
|
779
|
+
options: [],
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
signature: 'buddy test:coverage',
|
|
783
|
+
description: 'Runs test coverage',
|
|
784
|
+
notes: '',
|
|
785
|
+
synopsis: 'buddy test:coverage',
|
|
786
|
+
aliases: [],
|
|
787
|
+
arguments: [],
|
|
788
|
+
options: [],
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
signature: 'buddy test:types',
|
|
792
|
+
description: 'Runs typecheck',
|
|
793
|
+
notes: '',
|
|
794
|
+
synopsis: 'buddy test:types',
|
|
795
|
+
aliases: [],
|
|
796
|
+
arguments: [],
|
|
797
|
+
options: [],
|
|
798
|
+
},
|
|
799
|
+
],
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
})
|