@@ -189,6 +189,7 @@ tied to the life cycle of the Agent.
189189### napi_set_instance_data
190190<!-- YAML
191191added: REPLACEME
192+ napiVersion: 6
192193-->
193194
194195```C
@@ -216,6 +217,7 @@ by the previous call, it will not be called.
216217### napi_get_instance_data
217218<!-- YAML
218219added: REPLACEME
220+ napiVersion: 6
219221-->
220222
221223```C
@@ -1375,10 +1377,9 @@ the `napi_value` in question is of the JavaScript type expected by the API.
13751377#### napi_key_collection_mode
13761378<!-- YAML
13771379added: REPLACEME
1380+ napiVersion: 6
13781381-->
13791382
1380- > Stability: 1 - Experimental
1381-
13821383```C
13831384typedef enum {
13841385 napi_key_include_prototypes,
@@ -1397,10 +1398,9 @@ of the objects's prototype chain as well.
13971398#### napi_key_filter
13981399<!-- YAML
13991400added: REPLACEME
1401+ napiVersion: 6
14001402-->
14011403
1402- > Stability: 1 - Experimental
1403-
14041404```C
14051405typedef enum {
14061406 napi_key_all_properties = 0,
@@ -1417,10 +1417,9 @@ Property filter bits. They can be or'ed to build a composite filter.
14171417#### napi_key_conversion
14181418<!-- YAML
14191419added: REPLACEME
1420+ napiVersion: 6
14201421-->
14211422
1422- > Stability: 1 - Experimental
1423-
14241423```C
14251424typedef enum {
14261425 napi_key_keep_numbers,
@@ -1940,10 +1939,9 @@ The JavaScript `Number` type is described in
19401939#### napi_create_bigint_int64
19411940<!-- YAML
19421941added: v10.7.0
1942+ napiVersion: 6
19431943-->
19441944
1945- > Stability: 1 - Experimental
1946-
19471945```C
19481946napi_status napi_create_bigint_int64(napi_env env,
19491947 int64_t value,
@@ -1961,10 +1959,9 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
19611959#### napi_create_bigint_uint64
19621960<!-- YAML
19631961added: v10.7.0
1962+ napiVersion: 6
19641963-->
19651964
1966- > Stability: 1 - Experimental
1967-
19681965```C
19691966napi_status napi_create_bigint_uint64(napi_env env,
19701967 uint64_t value,
@@ -1982,10 +1979,9 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
19821979#### napi_create_bigint_words
19831980<!-- YAML
19841981added: v10.7.0
1982+ napiVersion: 6
19851983-->
19861984
1987- > Stability: 1 - Experimental
1988-
19891985```C
19901986napi_status napi_create_bigint_words(napi_env env,
19911987 int sign_bit,
@@ -2319,10 +2315,9 @@ This API returns the C double primitive equivalent of the given JavaScript
23192315#### napi_get_value_bigint_int64
23202316<!-- YAML
23212317added: v10.7.0
2318+ napiVersion: 6
23222319-->
23232320
2324- > Stability: 1 - Experimental
2325-
23262321```C
23272322napi_status napi_get_value_bigint_int64(napi_env env,
23282323 napi_value value,
@@ -2347,10 +2342,9 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
23472342#### napi_get_value_bigint_uint64
23482343<!-- YAML
23492344added: v10.7.0
2345+ napiVersion: 6
23502346-->
23512347
2352- > Stability: 1 - Experimental
2353-
23542348```C
23552349napi_status napi_get_value_bigint_uint64(napi_env env,
23562350 napi_value value,
@@ -2375,10 +2369,9 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
23752369#### napi_get_value_bigint_words
23762370<!-- YAML
23772371added: v10.7.0
2372+ napiVersion: 6
23782373-->
23792374
2380- > Stability: 1 - Experimental
2381-
23822375```C
23832376napi_status napi_get_value_bigint_words(napi_env env,
23842377 napi_value value,
@@ -3189,10 +3182,9 @@ included.
31893182#### napi_get_all_property_names
31903183<!-- YAML
31913184added: REPLACEME
3185+ napiVersion: 6
31923186-->
31933187
3194- > Stability: 1 - Experimental
3195-
31963188```C
31973189napi_get_all_property_names(napi_env env,
31983190 napi_value object,
0 commit comments