jsii-pacmak 1.114.1 → 1.116.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.
Files changed (37) hide show
  1. package/lib/npm-modules.d.ts +1 -1
  2. package/lib/npm-modules.js +1 -3
  3. package/lib/packaging.d.ts +1 -5
  4. package/lib/packaging.js +12 -6
  5. package/lib/rosetta-assembly.d.ts +4 -0
  6. package/lib/rosetta-assembly.js +9 -3
  7. package/lib/targets/dotnet/dotnetdocgenerator.d.ts +4 -1
  8. package/lib/targets/dotnet/dotnetdocgenerator.js +66 -13
  9. package/lib/targets/dotnet/dotnetgenerator.d.ts +0 -4
  10. package/lib/targets/dotnet/dotnetgenerator.js +24 -14
  11. package/lib/targets/dotnet/dotnetruntimegenerator.js +11 -2
  12. package/lib/targets/dotnet/dotnettyperesolver.d.ts +13 -0
  13. package/lib/targets/dotnet/dotnettyperesolver.js +40 -2
  14. package/lib/targets/dotnet.d.ts +1 -1
  15. package/lib/targets/dotnet.js +6 -4
  16. package/lib/targets/go/runtime/runtime-type-checking.js +1 -0
  17. package/lib/targets/go/types/go-type-reference.d.ts +3 -0
  18. package/lib/targets/go/types/go-type-reference.js +20 -0
  19. package/lib/targets/go.js +1 -1
  20. package/lib/targets/java.d.ts +28 -4
  21. package/lib/targets/java.js +408 -217
  22. package/lib/targets/python/requirements-dev.txt +1 -1
  23. package/lib/targets/python/type-name.d.ts +18 -0
  24. package/lib/targets/python/type-name.js +59 -1
  25. package/lib/targets/python.d.ts +2 -1
  26. package/lib/targets/python.js +50 -18
  27. package/lib/targets/type-literals.d.ts +22 -0
  28. package/lib/targets/type-literals.js +39 -0
  29. package/lib/type-utils.d.ts +3 -0
  30. package/lib/type-utils.js +10 -0
  31. package/lib/type-visitor.d.ts +19 -0
  32. package/lib/type-visitor.js +47 -0
  33. package/lib/util.d.ts +18 -5
  34. package/lib/util.js +80 -13
  35. package/lib/version.d.ts +1 -1
  36. package/lib/version.js +3 -3
  37. package/package.json +12 -12
package/lib/version.js CHANGED
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
- // Generated at 2025-09-04T13:07:54Z by generate.sh
2
+ // Generated at 2025-10-14T11:47:21Z by generate.sh
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.VERSION_DESC = exports.VERSION = void 0;
5
5
  /** The short version number for this jsii-pacmak release (e.g: `X.Y.Z`) */
6
6
  // eslint-disable-next-line @typescript-eslint/no-inferrable-types
7
- exports.VERSION = '1.114.1';
7
+ exports.VERSION = '1.116.0';
8
8
  /** The qualified version number for this jsii-pacmak release (e.g: `X.Y.Z (build #######)`) */
9
- exports.VERSION_DESC = '1.114.1 (build 8a29f60)';
9
+ exports.VERSION_DESC = '1.116.0 (build 0eddcff)';
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsii-pacmak",
3
- "version": "1.114.1",
3
+ "version": "1.116.0",
4
4
  "description": "A code generation framework for jsii backend languages",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,24 +37,24 @@
37
37
  "package": "package-js"
38
38
  },
39
39
  "dependencies": {
40
- "@jsii/check-node": "1.114.1",
41
- "@jsii/spec": "1.114.1",
40
+ "@jsii/check-node": "1.116.0",
41
+ "@jsii/spec": "1.116.0",
42
42
  "clone": "^2.1.2",
43
- "codemaker": "^1.114.1",
43
+ "codemaker": "^1.116.0",
44
44
  "commonmark": "^0.31.2",
45
45
  "escape-string-regexp": "^4.0.0",
46
46
  "fs-extra": "^10.1.0",
47
- "jsii-reflect": "^1.114.1",
47
+ "jsii-reflect": "^1.116.0",
48
48
  "semver": "^7.7.2",
49
49
  "spdx-license-list": "^6.10.0",
50
50
  "xmlbuilder": "^15.1.1",
51
51
  "yargs": "^17.7.2"
52
52
  },
53
53
  "devDependencies": {
54
- "@jsii/dotnet-runtime": "^1.114.1",
55
- "@jsii/go-runtime": "^1.114.1",
56
- "@jsii/java-runtime": "^1.114.1",
57
- "@scope/jsii-calc-lib": "^1.114.1",
54
+ "@jsii/dotnet-runtime": "^1.116.0",
55
+ "@jsii/go-runtime": "^1.116.0",
56
+ "@jsii/java-runtime": "^1.116.0",
57
+ "@scope/jsii-calc-lib": "^1.116.0",
58
58
  "@types/clone": "^2.1.4",
59
59
  "@types/commonmark": "^0.27.10",
60
60
  "@types/diff": "^5.2.3",
@@ -62,10 +62,10 @@
62
62
  "@types/semver": "^7.7.0",
63
63
  "@types/yargs": "^17.0.33",
64
64
  "diff": "^5.2.0",
65
- "jsii": "^5.9.1",
66
- "jsii-build-tools": "^1.114.1",
65
+ "jsii": "^5.9.6",
66
+ "jsii-build-tools": "^1.116.0",
67
67
  "jsii-calc": "^3.20.120",
68
- "jsii-rosetta": "~5.9.1",
68
+ "jsii-rosetta": "~5.9.6",
69
69
  "pyright": "^1.1.403"
70
70
  },
71
71
  "peerDependencies": {