@@ -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
@@ -1662,10 +1664,9 @@ the `napi_value` in question is of the JavaScript type expected by the API.
1662
1664
#### napi_key_collection_mode
1663
1665
<!-- YAML
1664
1666
added: REPLACEME
1667
+ napiVersion: 6
1665
1668
-->
1666
1669
1667
- > Stability: 1 - Experimental
1668
-
1669
1670
```C
1670
1671
typedef enum {
1671
1672
napi_key_include_prototypes,
@@ -1684,10 +1685,9 @@ of the objects's prototype chain as well.
1684
1685
#### napi_key_filter
1685
1686
<!-- YAML
1686
1687
added: REPLACEME
1688
+ napiVersion: 6
1687
1689
-->
1688
1690
1689
- > Stability: 1 - Experimental
1690
-
1691
1691
```C
1692
1692
typedef enum {
1693
1693
napi_key_all_properties = 0,
@@ -1704,10 +1704,9 @@ Property filter bits. They can be or'ed to build a composite filter.
1704
1704
#### napi_key_conversion
1705
1705
<!-- YAML
1706
1706
added: REPLACEME
1707
+ napiVersion: 6
1707
1708
-->
1708
1709
1709
- > Stability: 1 - Experimental
1710
-
1711
1710
```C
1712
1711
typedef enum {
1713
1712
napi_key_keep_numbers,
@@ -2261,10 +2260,9 @@ The JavaScript `Number` type is described in
2261
2260
#### napi_create_bigint_int64
2262
2261
<!-- YAML
2263
2262
added: v10.7.0
2263
+ napiVersion: 6
2264
2264
-->
2265
2265
2266
- > Stability: 1 - Experimental
2267
-
2268
2266
```C
2269
2267
napi_status napi_create_bigint_int64(napi_env env,
2270
2268
int64_t value,
@@ -2282,10 +2280,9 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
2282
2280
#### napi_create_bigint_uint64
2283
2281
<!-- YAML
2284
2282
added: v10.7.0
2283
+ napiVersion: 6
2285
2284
-->
2286
2285
2287
- > Stability: 1 - Experimental
2288
-
2289
2286
```C
2290
2287
napi_status napi_create_bigint_uint64(napi_env env,
2291
2288
uint64_t value,
@@ -2303,10 +2300,9 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
2303
2300
#### napi_create_bigint_words
2304
2301
<!-- YAML
2305
2302
added: v10.7.0
2303
+ napiVersion: 6
2306
2304
-->
2307
2305
2308
- > Stability: 1 - Experimental
2309
-
2310
2306
```C
2311
2307
napi_status napi_create_bigint_words(napi_env env,
2312
2308
int sign_bit,
@@ -2656,10 +2652,9 @@ This API returns the C double primitive equivalent of the given JavaScript
2656
2652
#### napi_get_value_bigint_int64
2657
2653
<!-- YAML
2658
2654
added: v10.7.0
2655
+ napiVersion: 6
2659
2656
-->
2660
2657
2661
- > Stability: 1 - Experimental
2662
-
2663
2658
```C
2664
2659
napi_status napi_get_value_bigint_int64(napi_env env,
2665
2660
napi_value value,
@@ -2683,10 +2678,9 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
2683
2678
#### napi_get_value_bigint_uint64
2684
2679
<!-- YAML
2685
2680
added: v10.7.0
2681
+ napiVersion: 6
2686
2682
-->
2687
2683
2688
- > Stability: 1 - Experimental
2689
-
2690
2684
```C
2691
2685
napi_status napi_get_value_bigint_uint64(napi_env env,
2692
2686
napi_value value,
@@ -2710,10 +2704,9 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
2710
2704
#### napi_get_value_bigint_words
2711
2705
<!-- YAML
2712
2706
added: v10.7.0
2707
+ napiVersion: 6
2713
2708
-->
2714
2709
2715
- > Stability: 1 - Experimental
2716
-
2717
2710
```C
2718
2711
napi_status napi_get_value_bigint_words(napi_env env,
2719
2712
napi_value value,
@@ -3598,10 +3591,9 @@ included.
3598
3591
#### napi_get_all_property_names
3599
3592
<!-- YAML
3600
3593
added: REPLACEME
3594
+ napiVersion: 6
3601
3595
-->
3602
3596
3603
- > Stability: 1 - Experimental
3604
-
3605
3597
```C
3606
3598
napi_get_all_property_names(napi_env env,
3607
3599
napi_value object,
0 commit comments