Skip to content

Commit bde3afe

Browse files
committed
Remove beta annotations from args, returns and entriesFromObjects
1 parent ac3f05b commit bde3afe

File tree

5 files changed

+0
-18
lines changed

5 files changed

+0
-18
lines changed

library/src/actions/args/args.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ type Schema =
3333

3434
/**
3535
* Args action type.
36-
*
37-
* @beta
3836
*/
3937
export interface ArgsAction<
4038
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -65,8 +63,6 @@ export interface ArgsAction<
6563
* @param schema The arguments schema.
6664
*
6765
* @returns An args action.
68-
*
69-
* @beta
7066
*/
7167
export function args<
7268
// eslint-disable-next-line @typescript-eslint/no-explicit-any

library/src/actions/args/argsAsync.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ type Schema =
5555

5656
/**
5757
* Args action async type.
58-
*
59-
* @beta
6058
*/
6159
export interface ArgsActionAsync<
6260
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -87,8 +85,6 @@ export interface ArgsActionAsync<
8785
* @param schema The arguments schema.
8886
*
8987
* @returns An args action.
90-
*
91-
* @beta
9288
*/
9389
export function argsAsync<
9490
// eslint-disable-next-line @typescript-eslint/no-explicit-any

library/src/actions/returns/returns.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { ValiError } from '../../utils/index.ts';
88

99
/**
1010
* Returns action type.
11-
*
12-
* @beta
1311
*/
1412
export interface ReturnsAction<
1513
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -40,8 +38,6 @@ export interface ReturnsAction<
4038
* @param schema The arguments schema.
4139
*
4240
* @returns An returns action.
43-
*
44-
* @beta
4541
*/
4642
export function returns<
4743
// eslint-disable-next-line @typescript-eslint/no-explicit-any

library/src/actions/returns/returnsAsync.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import { ValiError } from '../../utils/index.ts';
1010

1111
/**
1212
* Returns action async type.
13-
*
14-
* @beta
1513
*/
1614
export interface ReturnsActionAsync<
1715
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -44,8 +42,6 @@ export interface ReturnsActionAsync<
4442
* @param schema The arguments schema.
4543
*
4644
* @returns An returns action.
47-
*
48-
* @beta
4945
*/
5046
export function returnsAsync<
5147
// eslint-disable-next-line @typescript-eslint/no-explicit-any

library/src/utils/entriesFromObjects/entriesFromObjects.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ type MergedEntries<TSchemas extends readonly [Schema, ...Schema[]]> = Prettify<
9696
* @param schemas The schemas to merge the entries from.
9797
*
9898
* @returns The object entries from the schemas.
99-
*
100-
* @beta
10199
*/
102100
export function entriesFromObjects<
103101
const TSchemas extends readonly [Schema, ...Schema[]],

0 commit comments

Comments
 (0)