@@ -374,6 +374,7 @@ tied to the life cycle of the Agent.
374374### napi_set_instance_data
375375<!-- YAML
376376added: v12.8.0
377+ napiVersion: 6
377378-->
378379
379380```C
@@ -401,6 +402,7 @@ by the previous call, it will not be called.
401402### napi_get_instance_data
402403<!-- YAML
403404added: v12.8.0
405+ napiVersion: 6
404406-->
405407
406408```C
@@ -1663,10 +1665,9 @@ the `napi_value` in question is of the JavaScript type expected by the API.
16631665#### napi_key_collection_mode
16641666<!-- YAML
16651667added: v13.7.0
1668+ napiVersion: 6
16661669-->
16671670
1668- > Stability: 1 - Experimental
1669-
16701671```C
16711672typedef enum {
16721673 napi_key_include_prototypes,
@@ -1685,10 +1686,9 @@ of the objects's prototype chain as well.
16851686#### napi_key_filter
16861687<!-- YAML
16871688added: v13.7.0
1689+ napiVersion: 6
16881690-->
16891691
1690- > Stability: 1 - Experimental
1691-
16921692```C
16931693typedef enum {
16941694 napi_key_all_properties = 0,
@@ -1705,10 +1705,9 @@ Property filter bits. They can be or'ed to build a composite filter.
17051705#### napi_key_conversion
17061706<!-- YAML
17071707added: v13.7.0
1708+ napiVersion: 6
17081709-->
17091710
1710- > Stability: 1 - Experimental
1711-
17121711```C
17131712typedef enum {
17141713 napi_key_keep_numbers,
@@ -2262,10 +2261,9 @@ The JavaScript `Number` type is described in
22622261#### napi_create_bigint_int64
22632262<!-- YAML
22642263added: v10.7.0
2264+ napiVersion: 6
22652265-->
22662266
2267- > Stability: 1 - Experimental
2268-
22692267```C
22702268napi_status napi_create_bigint_int64(napi_env env,
22712269 int64_t value,
@@ -2283,10 +2281,9 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
22832281#### napi_create_bigint_uint64
22842282<!-- YAML
22852283added: v10.7.0
2284+ napiVersion: 6
22862285-->
22872286
2288- > Stability: 1 - Experimental
2289-
22902287```C
22912288napi_status napi_create_bigint_uint64(napi_env env,
22922289 uint64_t value,
@@ -2304,10 +2301,9 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
23042301#### napi_create_bigint_words
23052302<!-- YAML
23062303added: v10.7.0
2304+ napiVersion: 6
23072305-->
23082306
2309- > Stability: 1 - Experimental
2310-
23112307```C
23122308napi_status napi_create_bigint_words(napi_env env,
23132309 int sign_bit,
@@ -2653,10 +2649,9 @@ This API returns the C double primitive equivalent of the given JavaScript
26532649#### napi_get_value_bigint_int64
26542650<!-- YAML
26552651added: v10.7.0
2652+ napiVersion: 6
26562653-->
26572654
2658- > Stability: 1 - Experimental
2659-
26602655```C
26612656napi_status napi_get_value_bigint_int64(napi_env env,
26622657 napi_value value,
@@ -2680,10 +2675,9 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
26802675#### napi_get_value_bigint_uint64
26812676<!-- YAML
26822677added: v10.7.0
2678+ napiVersion: 6
26832679-->
26842680
2685- > Stability: 1 - Experimental
2686-
26872681```C
26882682napi_status napi_get_value_bigint_uint64(napi_env env,
26892683 napi_value value,
@@ -2707,10 +2701,9 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
27072701#### napi_get_value_bigint_words
27082702<!-- YAML
27092703added: v10.7.0
2704+ napiVersion: 6
27102705-->
27112706
2712- > Stability: 1 - Experimental
2713-
27142707```C
27152708napi_status napi_get_value_bigint_words(napi_env env,
27162709 napi_value value,
@@ -3595,10 +3588,9 @@ included.
35953588#### napi_get_all_property_names
35963589<!-- YAML
35973590added: v13.7.0
3591+ napiVersion: 6
35983592-->
35993593
3600- > Stability: 1 - Experimental
3601-
36023594```C
36033595napi_get_all_property_names(napi_env env,
36043596 napi_value object,
0 commit comments