@@ -374,6 +374,7 @@ tied to the life cycle of the Agent.
374
374
### napi_set_instance_data
375
375
<!-- YAML
376
376
added: v12.8.0
377
+ napiVersion: 6
377
378
-->
378
379
379
380
```C
@@ -401,6 +402,7 @@ by the previous call, it will not be called.
401
402
### napi_get_instance_data
402
403
<!-- YAML
403
404
added: v12.8.0
405
+ napiVersion: 6
404
406
-->
405
407
406
408
```C
@@ -1663,10 +1665,9 @@ the `napi_value` in question is of the JavaScript type expected by the API.
1663
1665
#### napi_key_collection_mode
1664
1666
<!-- YAML
1665
1667
added: v13.7.0
1668
+ napiVersion: 6
1666
1669
-->
1667
1670
1668
- > Stability: 1 - Experimental
1669
-
1670
1671
```C
1671
1672
typedef enum {
1672
1673
napi_key_include_prototypes,
@@ -1685,10 +1686,9 @@ of the objects's prototype chain as well.
1685
1686
#### napi_key_filter
1686
1687
<!-- YAML
1687
1688
added: v13.7.0
1689
+ napiVersion: 6
1688
1690
-->
1689
1691
1690
- > Stability: 1 - Experimental
1691
-
1692
1692
```C
1693
1693
typedef enum {
1694
1694
napi_key_all_properties = 0,
@@ -1705,10 +1705,9 @@ Property filter bits. They can be or'ed to build a composite filter.
1705
1705
#### napi_key_conversion
1706
1706
<!-- YAML
1707
1707
added: v13.7.0
1708
+ napiVersion: 6
1708
1709
-->
1709
1710
1710
- > Stability: 1 - Experimental
1711
-
1712
1711
```C
1713
1712
typedef enum {
1714
1713
napi_key_keep_numbers,
@@ -2262,10 +2261,9 @@ The JavaScript `Number` type is described in
2262
2261
#### napi_create_bigint_int64
2263
2262
<!-- YAML
2264
2263
added: v10.7.0
2264
+ napiVersion: 6
2265
2265
-->
2266
2266
2267
- > Stability: 1 - Experimental
2268
-
2269
2267
```C
2270
2268
napi_status napi_create_bigint_int64(napi_env env,
2271
2269
int64_t value,
@@ -2283,10 +2281,9 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
2283
2281
#### napi_create_bigint_uint64
2284
2282
<!-- YAML
2285
2283
added: v10.7.0
2284
+ napiVersion: 6
2286
2285
-->
2287
2286
2288
- > Stability: 1 - Experimental
2289
-
2290
2287
```C
2291
2288
napi_status napi_create_bigint_uint64(napi_env env,
2292
2289
uint64_t value,
@@ -2304,10 +2301,9 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
2304
2301
#### napi_create_bigint_words
2305
2302
<!-- YAML
2306
2303
added: v10.7.0
2304
+ napiVersion: 6
2307
2305
-->
2308
2306
2309
- > Stability: 1 - Experimental
2310
-
2311
2307
```C
2312
2308
napi_status napi_create_bigint_words(napi_env env,
2313
2309
int sign_bit,
@@ -2653,10 +2649,9 @@ This API returns the C double primitive equivalent of the given JavaScript
2653
2649
#### napi_get_value_bigint_int64
2654
2650
<!-- YAML
2655
2651
added: v10.7.0
2652
+ napiVersion: 6
2656
2653
-->
2657
2654
2658
- > Stability: 1 - Experimental
2659
-
2660
2655
```C
2661
2656
napi_status napi_get_value_bigint_int64(napi_env env,
2662
2657
napi_value value,
@@ -2680,10 +2675,9 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
2680
2675
#### napi_get_value_bigint_uint64
2681
2676
<!-- YAML
2682
2677
added: v10.7.0
2678
+ napiVersion: 6
2683
2679
-->
2684
2680
2685
- > Stability: 1 - Experimental
2686
-
2687
2681
```C
2688
2682
napi_status napi_get_value_bigint_uint64(napi_env env,
2689
2683
napi_value value,
@@ -2707,10 +2701,9 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
2707
2701
#### napi_get_value_bigint_words
2708
2702
<!-- YAML
2709
2703
added: v10.7.0
2704
+ napiVersion: 6
2710
2705
-->
2711
2706
2712
- > Stability: 1 - Experimental
2713
-
2714
2707
```C
2715
2708
napi_status napi_get_value_bigint_words(napi_env env,
2716
2709
napi_value value,
@@ -3595,10 +3588,9 @@ included.
3595
3588
#### napi_get_all_property_names
3596
3589
<!-- YAML
3597
3590
added: v13.7.0
3591
+ napiVersion: 6
3598
3592
-->
3599
3593
3600
- > Stability: 1 - Experimental
3601
-
3602
3594
```C
3603
3595
napi_get_all_property_names(napi_env env,
3604
3596
napi_value object,
0 commit comments