@jsii/runtime 1.104.0 → 1.106.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsii/runtime",
3
- "version": "1.104.0",
3
+ "version": "1.106.0",
4
4
  "description": "jsii runtime kernel process",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -34,17 +34,17 @@
34
34
  "package": "package-js"
35
35
  },
36
36
  "dependencies": {
37
- "@jsii/kernel": "^1.104.0",
38
- "@jsii/check-node": "1.104.0",
39
- "@jsii/spec": "^1.104.0"
37
+ "@jsii/kernel": "^1.106.0",
38
+ "@jsii/check-node": "1.106.0",
39
+ "@jsii/spec": "^1.106.0"
40
40
  },
41
41
  "devDependencies": {
42
- "@scope/jsii-calc-base": "^1.104.0",
43
- "@scope/jsii-calc-lib": "^1.104.0",
44
- "jsii-build-tools": "^1.104.0",
42
+ "@scope/jsii-calc-base": "^1.106.0",
43
+ "@scope/jsii-calc-lib": "^1.106.0",
44
+ "jsii-build-tools": "^1.106.0",
45
45
  "jsii-calc": "^3.20.120",
46
46
  "source-map-loader": "^5.0.0",
47
- "webpack": "^5.94.0",
47
+ "webpack": "^5.96.1",
48
48
  "webpack-cli": "^5.1.4"
49
49
  }
50
50
  }
@@ -9105,6 +9105,7 @@ var __webpack_modules__ = {
9105
9105
  case spec.TypeKind.Interface:
9106
9106
  throw new JsiiFault(`Cannot create an object with an FQN of an interface: ${fqn}`);
9107
9107
 
9108
+ case spec.TypeKind.Enum:
9108
9109
  default:
9109
9110
  throw new JsiiFault(`Unexpected FQN kind: ${fqn}`);
9110
9111
  }
@@ -10536,6 +10537,8 @@ var __webpack_modules__ = {
10536
10537
  case "function":
10537
10538
  case "number":
10538
10539
  case "string":
10540
+ case "bigint":
10541
+ case "symbol":
10539
10542
  default:
10540
10543
  return `a ${type}`;
10541
10544
  }
@@ -16620,8 +16623,7 @@ var __webpack_modules__ = {
16620
16623
  }
16621
16624
  }
16622
16625
  if (options.reference !== "suffix" && components.scheme) {
16623
- uriTokens.push(components.scheme);
16624
- uriTokens.push(":");
16626
+ uriTokens.push(components.scheme, ":");
16625
16627
  }
16626
16628
  const authority = recomposeAuthority(components, options);
16627
16629
  if (authority !== undefined) {
@@ -16644,12 +16646,10 @@ var __webpack_modules__ = {
16644
16646
  uriTokens.push(s);
16645
16647
  }
16646
16648
  if (components.query !== undefined) {
16647
- uriTokens.push("?");
16648
- uriTokens.push(components.query);
16649
+ uriTokens.push("?", components.query);
16649
16650
  }
16650
16651
  if (components.fragment !== undefined) {
16651
- uriTokens.push("#");
16652
- uriTokens.push(components.fragment);
16652
+ uriTokens.push("#", components.fragment);
16653
16653
  }
16654
16654
  return uriTokens.join("");
16655
16655
  }
@@ -16732,9 +16732,6 @@ var __webpack_modules__ = {
16732
16732
  if (gotEncoding && parsed.scheme !== undefined) {
16733
16733
  parsed.scheme = unescape(parsed.scheme);
16734
16734
  }
16735
- if (gotEncoding && parsed.userinfo !== undefined) {
16736
- parsed.userinfo = unescape(parsed.userinfo);
16737
- }
16738
16735
  if (gotEncoding && parsed.host !== undefined) {
16739
16736
  parsed.host = unescape(parsed.host);
16740
16737
  }
@@ -17191,7 +17188,7 @@ var __webpack_modules__ = {
17191
17188
  },
17192
17189
  8330: module => {
17193
17190
  "use strict";
17194
- module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.104.0","description":"jsii runtime kernel process","license":"Apache-2.0","author":{"name":"Amazon Web Services","url":"https://aws.amazon.com"},"homepage":"https://github.com/aws/jsii","bugs":{"url":"https://github.com/aws/jsii/issues"},"repository":{"type":"git","url":"https://github.com/aws/jsii.git","directory":"packages/@jsii/runtime"},"engines":{"node":">= 14.17.0"},"main":"lib/index.js","types":"lib/index.d.ts","bin":{"jsii-runtime":"bin/jsii-runtime"},"scripts":{"build":"tsc --build && chmod +x bin/jsii-runtime && npx webpack-cli && npm run lint","watch":"tsc --build -w","lint":"ESLINT_USE_FLAT_CONFIG=false eslint . --ext .js,.ts --ignore-path=.gitignore --ignore-pattern=webpack.config.js","lint:fix":"yarn lint --fix","test":"jest","test:update":"jest -u","package":"package-js"},"dependencies":{"@jsii/kernel":"^1.104.0","@jsii/check-node":"1.104.0","@jsii/spec":"^1.104.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.104.0","@scope/jsii-calc-lib":"^1.104.0","jsii-build-tools":"^1.104.0","jsii-calc":"^3.20.120","source-map-loader":"^5.0.0","webpack":"^5.94.0","webpack-cli":"^5.1.4"}}');
17191
+ module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.106.0","description":"jsii runtime kernel process","license":"Apache-2.0","author":{"name":"Amazon Web Services","url":"https://aws.amazon.com"},"homepage":"https://github.com/aws/jsii","bugs":{"url":"https://github.com/aws/jsii/issues"},"repository":{"type":"git","url":"https://github.com/aws/jsii.git","directory":"packages/@jsii/runtime"},"engines":{"node":">= 14.17.0"},"main":"lib/index.js","types":"lib/index.d.ts","bin":{"jsii-runtime":"bin/jsii-runtime"},"scripts":{"build":"tsc --build && chmod +x bin/jsii-runtime && npx webpack-cli && npm run lint","watch":"tsc --build -w","lint":"ESLINT_USE_FLAT_CONFIG=false eslint . --ext .js,.ts --ignore-path=.gitignore --ignore-pattern=webpack.config.js","lint:fix":"yarn lint --fix","test":"jest","test:update":"jest -u","package":"package-js"},"dependencies":{"@jsii/kernel":"^1.106.0","@jsii/check-node":"1.106.0","@jsii/spec":"^1.106.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.106.0","@scope/jsii-calc-lib":"^1.106.0","jsii-build-tools":"^1.106.0","jsii-calc":"^3.20.120","source-map-loader":"^5.0.0","webpack":"^5.96.1","webpack-cli":"^5.1.4"}}');
17195
17192
  },
17196
17193
  9453: module => {
17197
17194
  "use strict";
@@ -17230,38 +17227,38 @@ var __webpack_exports__ = {};
17230
17227
  (() => {
17231
17228
  "use strict";
17232
17229
  var exports = __webpack_exports__;
17233
- var __webpack_unused_export__;
17234
- var _a;
17235
- __webpack_unused_export__ = {
17230
+ var program_webpack_unused_export_;
17231
+ var program_a;
17232
+ program_webpack_unused_export_ = {
17236
17233
  value: true
17237
17234
  };
17238
- const packageInfo = __webpack_require__(8330);
17239
- const host_1 = __webpack_require__(8623);
17240
- const in_out_1 = __webpack_require__(6663);
17241
- const sync_stdio_1 = __webpack_require__(7614);
17242
- const name = packageInfo.name;
17243
- const version = packageInfo.version;
17244
- const noStack = !!process.env.JSII_NOSTACK;
17245
- const debug = !!process.env.JSII_DEBUG;
17246
- const debugTiming = !!process.env.JSII_DEBUG_TIMING;
17247
- const validateAssemblies = !!process.env.JSII_VALIDATE_ASSEMBLIES;
17248
- const stdio = new sync_stdio_1.SyncStdio({
17249
- errorFD: (_a = process.stderr.fd) !== null && _a !== void 0 ? _a : 2,
17235
+ const program_packageInfo = __webpack_require__(8330);
17236
+ const program_host_1 = __webpack_require__(8623);
17237
+ const program_in_out_1 = __webpack_require__(6663);
17238
+ const program_sync_stdio_1 = __webpack_require__(7614);
17239
+ const program_name = program_packageInfo.name;
17240
+ const program_version = program_packageInfo.version;
17241
+ const program_noStack = !!process.env.JSII_NOSTACK;
17242
+ const program_debug = !!process.env.JSII_DEBUG;
17243
+ const program_debugTiming = !!process.env.JSII_DEBUG_TIMING;
17244
+ const program_validateAssemblies = !!process.env.JSII_VALIDATE_ASSEMBLIES;
17245
+ const program_stdio = new program_sync_stdio_1.SyncStdio({
17246
+ errorFD: (program_a = process.stderr.fd) !== null && program_a !== void 0 ? program_a : 2,
17250
17247
  readFD: 3,
17251
17248
  writeFD: 3
17252
17249
  });
17253
- const inout = new in_out_1.InputOutput(stdio);
17254
- const host = new host_1.KernelHost(inout, {
17255
- debug,
17256
- noStack,
17257
- debugTiming,
17258
- validateAssemblies
17250
+ const program_inout = new program_in_out_1.InputOutput(program_stdio);
17251
+ const program_host = new program_host_1.KernelHost(program_inout, {
17252
+ debug: program_debug,
17253
+ noStack: program_noStack,
17254
+ debugTiming: program_debugTiming,
17255
+ validateAssemblies: program_validateAssemblies
17259
17256
  });
17260
- host.once("exit", process.exit.bind(process));
17261
- inout.write({
17262
- hello: `${name}@${version}`
17257
+ program_host.once("exit", process.exit.bind(process));
17258
+ program_inout.write({
17259
+ hello: `${program_name}@${program_version}`
17263
17260
  });
17264
- inout.debug = debug;
17265
- host.run();
17261
+ program_inout.debug = program_debug;
17262
+ program_host.run();
17266
17263
  })();
17267
17264
  //# sourceMappingURL=program.js.map