You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`merge`](#merge)| string | ➖ | ✅ |`"concat"`| <p>Determines merge behavior for arrays - either when modifying them directly or when recursively merging objects containing arrays. |
10
-
|[`type`](#type)| string | ➖ | ✅ |`"replace"`| <p>Determines what type of modification to perform. |
11
-
12
-
### `merge`
13
-
14
-
| Type | Required | Enum | Default |
15
-
| ---- | -------- | ---- | ------- |
16
-
| string | ➖ | ✅ |`"concat"`|
17
-
18
-
Determines merge behavior for arrays - either when modifying them directly
19
-
or when recursively merging objects containing arrays.
20
-
21
-
Allowed Values:
22
-
23
-
-`"concat"`: Concatenate source and destination arrays.
24
-
-`"upsert"`: Add source array items if not present in the destination.
25
-
-`"replace"`: Replace the destination with the source.
26
-
27
-
### `type`
28
-
29
-
| Type | Required | Enum | Default |
30
-
| ---- | -------- | ---- | ------- |
31
-
| string | ➖ | ✅ |`"replace"`|
32
-
33
3
Determines what type of modification to perform.
34
4
35
5
The append/prepend behavior differs slightly depending on
0 commit comments