node-aix-ppc64 21.6.2 → 21.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,7 +36,7 @@
36
36
 
37
37
  # Reset this number to 0 on major V8 upgrades.
38
38
  # Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.19',
39
+ 'v8_embedder_string': '-node.20',
40
40
 
41
41
  ##### V8 defaults for Node.js #####
42
42
 
@@ -323,6 +323,7 @@
323
323
  'lib/readline.js',
324
324
  'lib/readline/promises.js',
325
325
  'lib/repl.js',
326
+ 'lib/sea.js',
326
327
  'lib/stream.js',
327
328
  'lib/stream/consumers.js',
328
329
  'lib/stream/promises.js',
@@ -374,6 +375,7 @@
374
375
  'shlib_suffix': '120.a',
375
376
  'single_executable_application': 'true',
376
377
  'target_arch': 'ppc64',
378
+ 'use_prefix_to_find_headers': 'false',
377
379
  'v8_enable_31bit_smis_on_64bit_arch': 0,
378
380
  'v8_enable_extensible_ro_snapshot': 0,
379
381
  'v8_enable_gdbjit': 0,
@@ -111,6 +111,13 @@ node_api_create_external_string_utf16(napi_env env,
111
111
  napi_value* result,
112
112
  bool* copied);
113
113
  #endif // NAPI_EXPERIMENTAL
114
+
115
+ #ifdef NAPI_EXPERIMENTAL
116
+ #define NODE_API_EXPERIMENTAL_HAS_PROPERTY_KEYS
117
+ NAPI_EXTERN napi_status NAPI_CDECL node_api_create_property_key_utf16(
118
+ napi_env env, const char16_t* str, size_t length, napi_value* result);
119
+ #endif // NAPI_EXPERIMENTAL
120
+
114
121
  NAPI_EXTERN napi_status NAPI_CDECL napi_create_symbol(napi_env env,
115
122
  napi_value description,
116
123
  napi_value* result);