Skip to content

Commit 0fd479f

Browse files
authored
chore: add since and feature flag TSDocs for setting workflows (medusajs#13550)
1 parent 138e340 commit 0fd479f

File tree

5 files changed

+10
-25
lines changed

5 files changed

+10
-25
lines changed

packages/core/core-flows/src/settings/steps/create-view-configuration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ export type CreateViewConfigurationStepInput = CreateViewConfigurationDTO
99
export const createViewConfigurationStepId = "create-view-configuration"
1010

1111
/**
12-
* @ignore
13-
*
14-
* @privateRemarks
15-
* Remove the `ignore` tag once the feature is ready. Otherwise,
16-
* it will be generated in the documentation.
12+
* @since 2.10.3
13+
* @featureFlag view_configurations
1714
*/
1815
export const createViewConfigurationStep = createStep(
1916
createViewConfigurationStepId,

packages/core/core-flows/src/settings/steps/set-active-view-configuration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@ export type SetActiveViewConfigurationStepInput = {
1010
export const setActiveViewConfigurationStepId = "set-active-view-configuration"
1111

1212
/**
13-
* @ignore
14-
*
15-
* @privateRemarks
16-
* Remove the `ignore` tag once the feature is ready. Otherwise,
17-
* it will be generated in the documentation.
13+
* @since 2.10.3
14+
* @featureFlag view_configurations
1815
*/
1916
export const setActiveViewConfigurationStep = createStep(
2017
setActiveViewConfigurationStepId,

packages/core/core-flows/src/settings/steps/update-view-configuration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,8 @@ export type UpdateViewConfigurationStepInput = {
1313
export const updateViewConfigurationStepId = "update-view-configuration"
1414

1515
/**
16-
* @ignore
17-
*
18-
* @privateRemarks
19-
* Remove the `ignore` tag once the feature is ready. Otherwise,
20-
* it will be generated in the documentation.
16+
* @since 2.10.3
17+
* @featureFlag view_configurations
2118
*/
2219
export const updateViewConfigurationStep = createStep(
2320
updateViewConfigurationStepId,

packages/core/core-flows/src/settings/workflows/create-view-configuration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ export type CreateViewConfigurationWorkflowInput =
2121
export const createViewConfigurationWorkflowId = "create-view-configuration"
2222

2323
/**
24-
* @ignore
25-
*
26-
* @privateRemarks
27-
* Remove the `ignore` tag once the feature is ready. Otherwise,
28-
* it will be generated in the documentation.
24+
* @since 2.10.3
25+
* @featureFlag view_configurations
2926
*/
3027
export const createViewConfigurationWorkflow = createWorkflow(
3128
createViewConfigurationWorkflowId,

packages/core/core-flows/src/settings/workflows/update-view-configuration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,8 @@ export type UpdateViewConfigurationWorkflowInput = {
2222
export const updateViewConfigurationWorkflowId = "update-view-configuration"
2323

2424
/**
25-
* @ignore
26-
*
27-
* @privateRemarks
28-
* Remove the `ignore` tag once the feature is ready. Otherwise,
29-
* it will be generated in the documentation.
25+
* @since 2.10.3
26+
* @featureFlag view_configurations
3027
*/
3128
export const updateViewConfigurationWorkflow = createWorkflow(
3229
updateViewConfigurationWorkflowId,

0 commit comments

Comments
 (0)