@@ -686,7 +686,10 @@ For more details, review the [Object lifetime management][].
686686
687687#### napi_type_tag
688688<!-- YAML
689- added: v14.8.0
689+ added:
690+ - v14.8.0
691+ - v12.19.0
692+ napiVersion: 8
690693-->
691694
692695A 128-bit value stored as two unsigned 64-bit integers. It serves as a UUID
@@ -1694,15 +1697,16 @@ with `napi_add_env_cleanup_hook`, otherwise the process will abort.
16941697
16951698#### napi_add_async_cleanup_hook
16961699<!-- YAML
1697- added: v14.8.0
1700+ added:
1701+ - v14.8.0
1702+ - v12.19.0
1703+ napiVersion: 8
16981704changes:
16991705 - version: v14.10.0
17001706 pr-url: https://github.com/nodejs/node/pull/34819
17011707 description: Changed signature of the `hook` callback.
17021708-->
17031709
1704- > Stability: 1 - Experimental
1705-
17061710```c
17071711NAPI_EXTERN napi_status napi_add_async_cleanup_hook(
17081712 napi_env env,
@@ -1740,8 +1744,6 @@ changes:
17401744 description: Removed `env` parameter.
17411745-->
17421746
1743- > Stability: 1 - Experimental
1744-
17451747```c
17461748NAPI_EXTERN napi_status napi_remove_async_cleanup_hook(
17471749 napi_async_cleanup_hook_handle remove_handle);
@@ -4196,11 +4198,12 @@ specification).
41964198
41974199#### napi_object_freeze
41984200<!-- YAML
4199- added: v14.14.0
4201+ added:
4202+ - v14.14.0
4203+ - v12.20.0
4204+ napiVersion: 8
42004205-->
42014206
4202- > Stability: 1 - Experimental
4203-
42044207```c
42054208napi_status napi_object_freeze(napi_env env,
42064209 napi_value object);
@@ -4221,11 +4224,12 @@ ECMA-262 specification.
42214224
42224225#### napi_object_seal
42234226<!-- YAML
4224- added: v14.14.0
4227+ added:
4228+ - v14.14.0
4229+ - v12.20.0
4230+ napiVersion: 8
42254231-->
42264232
4227- > Stability: 1 - Experimental
4228-
42294233```c
42304234napi_status napi_object_seal(napi_env env,
42314235 napi_value object);
@@ -4884,11 +4888,12 @@ JavaScript object becomes garbage-collected.
48844888
48854889### napi_type_tag_object
48864890<!-- YAML
4887- added: v14.8.0
4891+ added:
4892+ - v14.8.0
4893+ - v12.19.0
4894+ napiVersion: 8
48884895-->
48894896
4890- > Stability: 1 - Experimental
4891-
48924897```c
48934898napi_status napi_type_tag_object(napi_env env,
48944899 napi_value js_object,
@@ -4911,11 +4916,12 @@ If the object already has an associated type tag, this API will return
49114916
49124917### napi_check_object_type_tag
49134918<!-- YAML
4914- added: v14.8.0
4919+ added:
4920+ - v14.8.0
4921+ - v12.19.0
4922+ napiVersion: 8
49154923-->
49164924
4917- > Stability: 1 - Experimental
4918-
49194925```c
49204926napi_status napi_check_object_type_tag(napi_env env,
49214927 napi_value js_object,
0 commit comments