@@ -189,6 +189,7 @@ tied to the life cycle of the Agent.
189
189
### napi_set_instance_data
190
190
<!-- YAML
191
191
added: REPLACEME
192
+ napiVersion: 6
192
193
-->
193
194
194
195
```C
@@ -216,6 +217,7 @@ by the previous call, it will not be called.
216
217
### napi_get_instance_data
217
218
<!-- YAML
218
219
added: REPLACEME
220
+ napiVersion: 6
219
221
-->
220
222
221
223
```C
@@ -1375,10 +1377,9 @@ the `napi_value` in question is of the JavaScript type expected by the API.
1375
1377
#### napi_key_collection_mode
1376
1378
<!-- YAML
1377
1379
added: REPLACEME
1380
+ napiVersion: 6
1378
1381
-->
1379
1382
1380
- > Stability: 1 - Experimental
1381
-
1382
1383
```C
1383
1384
typedef enum {
1384
1385
napi_key_include_prototypes,
@@ -1397,10 +1398,9 @@ of the objects's prototype chain as well.
1397
1398
#### napi_key_filter
1398
1399
<!-- YAML
1399
1400
added: REPLACEME
1401
+ napiVersion: 6
1400
1402
-->
1401
1403
1402
- > Stability: 1 - Experimental
1403
-
1404
1404
```C
1405
1405
typedef enum {
1406
1406
napi_key_all_properties = 0,
@@ -1417,10 +1417,9 @@ Property filter bits. They can be or'ed to build a composite filter.
1417
1417
#### napi_key_conversion
1418
1418
<!-- YAML
1419
1419
added: REPLACEME
1420
+ napiVersion: 6
1420
1421
-->
1421
1422
1422
- > Stability: 1 - Experimental
1423
-
1424
1423
```C
1425
1424
typedef enum {
1426
1425
napi_key_keep_numbers,
@@ -1940,10 +1939,9 @@ The JavaScript `Number` type is described in
1940
1939
#### napi_create_bigint_int64
1941
1940
<!-- YAML
1942
1941
added: v10.7.0
1942
+ napiVersion: 6
1943
1943
-->
1944
1944
1945
- > Stability: 1 - Experimental
1946
-
1947
1945
```C
1948
1946
napi_status napi_create_bigint_int64(napi_env env,
1949
1947
int64_t value,
@@ -1961,10 +1959,9 @@ This API converts the C `int64_t` type to the JavaScript `BigInt` type.
1961
1959
#### napi_create_bigint_uint64
1962
1960
<!-- YAML
1963
1961
added: v10.7.0
1962
+ napiVersion: 6
1964
1963
-->
1965
1964
1966
- > Stability: 1 - Experimental
1967
-
1968
1965
```C
1969
1966
napi_status napi_create_bigint_uint64(napi_env env,
1970
1967
uint64_t value,
@@ -1982,10 +1979,9 @@ This API converts the C `uint64_t` type to the JavaScript `BigInt` type.
1982
1979
#### napi_create_bigint_words
1983
1980
<!-- YAML
1984
1981
added: v10.7.0
1982
+ napiVersion: 6
1985
1983
-->
1986
1984
1987
- > Stability: 1 - Experimental
1988
-
1989
1985
```C
1990
1986
napi_status napi_create_bigint_words(napi_env env,
1991
1987
int sign_bit,
@@ -2319,10 +2315,9 @@ This API returns the C double primitive equivalent of the given JavaScript
2319
2315
#### napi_get_value_bigint_int64
2320
2316
<!-- YAML
2321
2317
added: v10.7.0
2318
+ napiVersion: 6
2322
2319
-->
2323
2320
2324
- > Stability: 1 - Experimental
2325
-
2326
2321
```C
2327
2322
napi_status napi_get_value_bigint_int64(napi_env env,
2328
2323
napi_value value,
@@ -2347,10 +2342,9 @@ This API returns the C `int64_t` primitive equivalent of the given JavaScript
2347
2342
#### napi_get_value_bigint_uint64
2348
2343
<!-- YAML
2349
2344
added: v10.7.0
2345
+ napiVersion: 6
2350
2346
-->
2351
2347
2352
- > Stability: 1 - Experimental
2353
-
2354
2348
```C
2355
2349
napi_status napi_get_value_bigint_uint64(napi_env env,
2356
2350
napi_value value,
@@ -2375,10 +2369,9 @@ This API returns the C `uint64_t` primitive equivalent of the given JavaScript
2375
2369
#### napi_get_value_bigint_words
2376
2370
<!-- YAML
2377
2371
added: v10.7.0
2372
+ napiVersion: 6
2378
2373
-->
2379
2374
2380
- > Stability: 1 - Experimental
2381
-
2382
2375
```C
2383
2376
napi_status napi_get_value_bigint_words(napi_env env,
2384
2377
napi_value value,
@@ -3189,10 +3182,9 @@ included.
3189
3182
#### napi_get_all_property_names
3190
3183
<!-- YAML
3191
3184
added: REPLACEME
3185
+ napiVersion: 6
3192
3186
-->
3193
3187
3194
- > Stability: 1 - Experimental
3195
-
3196
3188
```C
3197
3189
napi_get_all_property_names(napi_env env,
3198
3190
napi_value object,
0 commit comments