@@ -608,6 +608,7 @@ For more details, review the [Object lifetime management][].
608608#### napi_type_tag
609609<!-- YAML
610610added: v12.19.0
611+ napiVersion: 8
611612-->
612613
613614A 128-bit value stored as two unsigned 64-bit integers. It serves as a UUID
@@ -1620,10 +1621,9 @@ changes:
16201621 - version: v12.19.0
16211622 pr-url: https://github.com/nodejs/node/pull/34819
16221623 description: Changed signature of the `hook` callback.
1624+ napiVersion: 8
16231625-->
16241626
1625- > Stability: 1 - Experimental
1626-
16271627```c
16281628NAPI_EXTERN napi_status napi_add_async_cleanup_hook(
16291629 napi_env env,
@@ -1661,8 +1661,6 @@ changes:
16611661 description: Removed `env` parameter.
16621662-->
16631663
1664- > Stability: 1 - Experimental
1665-
16661664```c
16671665NAPI_EXTERN napi_status napi_remove_async_cleanup_hook(
16681666 napi_async_cleanup_hook_handle remove_handle);
@@ -4095,10 +4093,9 @@ specification).
40954093#### napi_object_freeze
40964094<!-- YAML
40974095added: v12.20.0
4096+ napiVersion: 8
40984097-->
40994098
4100- > Stability: 1 - Experimental
4101-
41024099```c
41034100napi_status napi_object_freeze(napi_env env,
41044101 napi_value object);
@@ -4120,10 +4117,9 @@ ECMA-262 specification.
41204117#### napi_object_seal
41214118<!-- YAML
41224119added: v12.20.0
4120+ napiVersion: 8
41234121-->
41244122
4125- > Stability: 1 - Experimental
4126-
41274123```c
41284124napi_status napi_object_seal(napi_env env,
41294125 napi_value object);
@@ -4776,10 +4772,9 @@ JavaScript object becomes garbage-collected.
47764772### napi_type_tag_object
47774773<!-- YAML
47784774added: v12.19.0
4775+ napiVersion: 8
47794776-->
47804777
4781- > Stability: 1 - Experimental
4782-
47834778```c
47844779napi_status napi_type_tag_object(napi_env env,
47854780 napi_value js_object,
@@ -4803,10 +4798,9 @@ If the object already has an associated type tag, this API will return
48034798### napi_check_object_type_tag
48044799<!-- YAML
48054800added: v12.19.0
4801+ napiVersion: 8
48064802-->
48074803
4808- > Stability: 1 - Experimental
4809-
48104804```c
48114805napi_status napi_check_object_type_tag(napi_env env,
48124806 napi_value js_object,
0 commit comments