@@ -608,6 +608,7 @@ For more details, review the [Object lifetime management][].
608
608
#### napi_type_tag
609
609
<!-- YAML
610
610
added: v12.19.0
611
+ napiVersion: 8
611
612
-->
612
613
613
614
A 128-bit value stored as two unsigned 64-bit integers. It serves as a UUID
@@ -1620,10 +1621,9 @@ changes:
1620
1621
- version: v12.19.0
1621
1622
pr-url: https://github.com./nodejs/node/pull/34819
1622
1623
description: Changed signature of the `hook` callback.
1624
+ napiVersion: 8
1623
1625
-->
1624
1626
1625
- > Stability: 1 - Experimental
1626
-
1627
1627
```c
1628
1628
NAPI_EXTERN napi_status napi_add_async_cleanup_hook(
1629
1629
napi_env env,
@@ -1661,8 +1661,6 @@ changes:
1661
1661
description: Removed `env` parameter.
1662
1662
-->
1663
1663
1664
- > Stability: 1 - Experimental
1665
-
1666
1664
```c
1667
1665
NAPI_EXTERN napi_status napi_remove_async_cleanup_hook(
1668
1666
napi_async_cleanup_hook_handle remove_handle);
@@ -4095,10 +4093,9 @@ specification).
4095
4093
#### napi_object_freeze
4096
4094
<!-- YAML
4097
4095
added: v12.20.0
4096
+ napiVersion: 8
4098
4097
-->
4099
4098
4100
- > Stability: 1 - Experimental
4101
-
4102
4099
```c
4103
4100
napi_status napi_object_freeze(napi_env env,
4104
4101
napi_value object);
@@ -4120,10 +4117,9 @@ ECMA-262 specification.
4120
4117
#### napi_object_seal
4121
4118
<!-- YAML
4122
4119
added: v12.20.0
4120
+ napiVersion: 8
4123
4121
-->
4124
4122
4125
- > Stability: 1 - Experimental
4126
-
4127
4123
```c
4128
4124
napi_status napi_object_seal(napi_env env,
4129
4125
napi_value object);
@@ -4776,10 +4772,9 @@ JavaScript object becomes garbage-collected.
4776
4772
### napi_type_tag_object
4777
4773
<!-- YAML
4778
4774
added: v12.19.0
4775
+ napiVersion: 8
4779
4776
-->
4780
4777
4781
- > Stability: 1 - Experimental
4782
-
4783
4778
```c
4784
4779
napi_status napi_type_tag_object(napi_env env,
4785
4780
napi_value js_object,
@@ -4803,10 +4798,9 @@ If the object already has an associated type tag, this API will return
4803
4798
### napi_check_object_type_tag
4804
4799
<!-- YAML
4805
4800
added: v12.19.0
4801
+ napiVersion: 8
4806
4802
-->
4807
4803
4808
- > Stability: 1 - Experimental
4809
-
4810
4804
```c
4811
4805
napi_status napi_check_object_type_tag(napi_env env,
4812
4806
napi_value js_object,
0 commit comments