From 0fd479f9d687c7530cdc775906565a65995c775b Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Fri, 19 Sep 2025 10:44:22 +0300 Subject: [PATCH] chore: add since and feature flag TSDocs for setting workflows (#13550) --- .../src/settings/steps/create-view-configuration.ts | 7 ++----- .../src/settings/steps/set-active-view-configuration.ts | 7 ++----- .../src/settings/steps/update-view-configuration.ts | 7 ++----- .../src/settings/workflows/create-view-configuration.ts | 7 ++----- .../src/settings/workflows/update-view-configuration.ts | 7 ++----- 5 files changed, 10 insertions(+), 25 deletions(-) diff --git a/packages/core/core-flows/src/settings/steps/create-view-configuration.ts b/packages/core/core-flows/src/settings/steps/create-view-configuration.ts index 4cb927efc4..dd8dcdd836 100644 --- a/packages/core/core-flows/src/settings/steps/create-view-configuration.ts +++ b/packages/core/core-flows/src/settings/steps/create-view-configuration.ts @@ -9,11 +9,8 @@ export type CreateViewConfigurationStepInput = CreateViewConfigurationDTO export const createViewConfigurationStepId = "create-view-configuration" /** - * @ignore - * - * @privateRemarks - * Remove the `ignore` tag once the feature is ready. Otherwise, - * it will be generated in the documentation. + * @since 2.10.3 + * @featureFlag view_configurations */ export const createViewConfigurationStep = createStep( createViewConfigurationStepId, diff --git a/packages/core/core-flows/src/settings/steps/set-active-view-configuration.ts b/packages/core/core-flows/src/settings/steps/set-active-view-configuration.ts index f660721d66..d34036b94a 100644 --- a/packages/core/core-flows/src/settings/steps/set-active-view-configuration.ts +++ b/packages/core/core-flows/src/settings/steps/set-active-view-configuration.ts @@ -10,11 +10,8 @@ export type SetActiveViewConfigurationStepInput = { export const setActiveViewConfigurationStepId = "set-active-view-configuration" /** - * @ignore - * - * @privateRemarks - * Remove the `ignore` tag once the feature is ready. Otherwise, - * it will be generated in the documentation. + * @since 2.10.3 + * @featureFlag view_configurations */ export const setActiveViewConfigurationStep = createStep( setActiveViewConfigurationStepId, diff --git a/packages/core/core-flows/src/settings/steps/update-view-configuration.ts b/packages/core/core-flows/src/settings/steps/update-view-configuration.ts index 979ef8a9ca..aaaddbf041 100644 --- a/packages/core/core-flows/src/settings/steps/update-view-configuration.ts +++ b/packages/core/core-flows/src/settings/steps/update-view-configuration.ts @@ -13,11 +13,8 @@ export type UpdateViewConfigurationStepInput = { export const updateViewConfigurationStepId = "update-view-configuration" /** - * @ignore - * - * @privateRemarks - * Remove the `ignore` tag once the feature is ready. Otherwise, - * it will be generated in the documentation. + * @since 2.10.3 + * @featureFlag view_configurations */ export const updateViewConfigurationStep = createStep( updateViewConfigurationStepId, diff --git a/packages/core/core-flows/src/settings/workflows/create-view-configuration.ts b/packages/core/core-flows/src/settings/workflows/create-view-configuration.ts index 5dbf644b1c..de7c6ffdc3 100644 --- a/packages/core/core-flows/src/settings/workflows/create-view-configuration.ts +++ b/packages/core/core-flows/src/settings/workflows/create-view-configuration.ts @@ -21,11 +21,8 @@ export type CreateViewConfigurationWorkflowInput = export const createViewConfigurationWorkflowId = "create-view-configuration" /** - * @ignore - * - * @privateRemarks - * Remove the `ignore` tag once the feature is ready. Otherwise, - * it will be generated in the documentation. + * @since 2.10.3 + * @featureFlag view_configurations */ export const createViewConfigurationWorkflow = createWorkflow( createViewConfigurationWorkflowId, diff --git a/packages/core/core-flows/src/settings/workflows/update-view-configuration.ts b/packages/core/core-flows/src/settings/workflows/update-view-configuration.ts index a0446d1178..fdffe4e426 100644 --- a/packages/core/core-flows/src/settings/workflows/update-view-configuration.ts +++ b/packages/core/core-flows/src/settings/workflows/update-view-configuration.ts @@ -22,11 +22,8 @@ export type UpdateViewConfigurationWorkflowInput = { export const updateViewConfigurationWorkflowId = "update-view-configuration" /** - * @ignore - * - * @privateRemarks - * Remove the `ignore` tag once the feature is ready. Otherwise, - * it will be generated in the documentation. + * @since 2.10.3 + * @featureFlag view_configurations */ export const updateViewConfigurationWorkflow = createWorkflow( updateViewConfigurationWorkflowId,