@golemcloud/golem-ts-typegen 0.0.67 → 0.0.72

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.
@@ -23,3 +23,8 @@ export declare function getLiterallyObjectType(): Type.Type;
23
23
  export declare function getRecursiveType(): Type.Type;
24
24
  export declare function getObjectWithTypeParameter(): Type.Type;
25
25
  export declare function getUnionWithTypeParameter(): Type.Type;
26
+ export declare function getConstructorParams(className: string): Array<{
27
+ name: string;
28
+ type: Type.Type;
29
+ }>;
30
+ export declare function getMethodParams(className: string, methodName: string): Map<string, Type.Type>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@golemcloud/golem-ts-typegen",
3
3
  "type": "module",
4
- "version": "0.0.67",
4
+ "version": "0.0.72",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "tag": "test"
@@ -64,8 +64,9 @@
64
64
  "commander": "^14.0.0",
65
65
  "log-symbols": "^7.0.1",
66
66
  "ts-morph": "^26.0.0",
67
- "@golemcloud/golem-ts-types-core": "0.0.67"
67
+ "@golemcloud/golem-ts-types-core": "0.0.72"
68
68
  },
69
+ "repository": "https://github.com/golemcloud/golem-agentic",
69
70
  "scripts": {
70
71
  "lint": "eslint . --ext .ts,.tsx",
71
72
  "lint:fix": "eslint . --ext .ts,.tsx --fix",