@@ -21,7 +21,6 @@ import {
21
21
* @param value - The value to set.
22
22
* @returns A `set` operation.
23
23
* {@link https://www.sanity.io/docs/http-patches#6TPENSW3}
24
- * @beta
25
24
*
26
25
* @example
27
26
* ```ts
@@ -36,7 +35,6 @@ export const set = <const T>(value: T): SetOp<T> => ({type: 'set', value})
36
35
* @param value - The value to set if missing.
37
36
* @returns A `setIfMissing` operation.
38
37
* {@link https://www.sanity.io/docs/http-patches#A80781bT}
39
- * @beta
40
38
* @example
41
39
* ```ts
42
40
* const setFooIfMissing = setIfMissing('foo')
@@ -52,7 +50,6 @@ export const setIfMissing = <const T>(value: T): SetIfMissingOp<T> => ({
52
50
* Creates an `unset` operation.
53
51
* @returns An `unset` operation.
54
52
* {@link https://www.sanity.io/docs/http-patches#xRtBjp8o}
55
- * @beta
56
53
*
57
54
* @example
58
55
* ```ts
@@ -66,7 +63,6 @@ export const unset = (): UnsetOp => ({type: 'unset'})
66
63
* @param amount - The amount to increment by.
67
64
* @returns An incrementation operation for numeric values
68
65
* {@link https://www.sanity.io/docs/http-patches#vIT8WWQo}
69
- * @beta
70
66
*
71
67
* @example
72
68
* ```ts
@@ -84,7 +80,6 @@ export const inc = <const N extends number = 1>(amount: N = 1 as N): IncOp<N> =>
84
80
* @param amount - The amount to decrement by.
85
81
* @returns A `dec` operation.
86
82
* {@link https://www.sanity.io/docs/http-patches#vIT8WWQo}
87
- * @beta
88
83
*
89
84
* @example
90
85
* ```ts
@@ -116,7 +111,6 @@ export const diffMatchPatch = (value: string): DiffMatchPatchOp => ({
116
111
* @param indexOrReferenceItem - The index or reference item to insert before or after.
117
112
* @returns An `insert` operation for adding values to arrays
118
113
* {@link https://www.sanity.io/docs/http-patches#febxf6Fk}
119
- * @beta
120
114
*
121
115
* @example
122
116
* ```ts
@@ -147,7 +141,6 @@ export function insert<
147
141
* @param items - The items to append.
148
142
* @returns An `insert` operation for adding a value to the end of an array.
149
143
* {@link https://www.sanity.io/docs/http-patches#Cw4vhD88}
150
- * @beta
151
144
*
152
145
* @example
153
146
* ```ts
@@ -165,7 +158,6 @@ export function append<const Items extends AnyArray<unknown>>(items: Items | Arr
165
158
* @param items - The items to prepend.
166
159
* @returns An `insert` operation for adding a value to the start of an array.
167
160
* {@link https://www.sanity.io/docs/http-patches#refAUsf0}
168
- * @beta
169
161
*
170
162
* @example
171
163
* ```ts
@@ -205,7 +197,6 @@ export function insertBefore<
205
197
* @param indexOrReferenceItem - The index or reference item to insert after.
206
198
* @returns An `insert` operation after the provided index or reference item.
207
199
* {@link https://www.sanity.io/docs/http-patches#0SQmPlb6}
208
- * @beta
209
200
*
210
201
* @example
211
202
* ```ts
@@ -230,7 +221,6 @@ export const insertAfter = <
230
221
* @returns A `truncate` operation.
231
222
* @remarks - This will be converted to an `unset` patch when submitted to the API
232
223
* {@link https://www.sanity.io/docs/http-patches#xRtBjp8o}
233
- * @beta
234
224
*
235
225
* @example
236
226
* ```ts
@@ -254,7 +244,6 @@ export function truncate(startIndex: number, endIndex?: number): TruncateOp {
254
244
* @returns A ReplaceOp operation.
255
245
* @remarks This will be converted to an `insert`/`replace` patch when submitted to the API
256
246
* {@link https://www.sanity.io/docs/http-patches#GnVSwcPa}
257
- * @beta
258
247
*
259
248
* @example
260
249
* ```ts
0 commit comments