@nattyjs/core 0.0.1-beta.31 → 0.0.1-beta.33

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 (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -344,9 +344,9 @@ declare abstract class ParameterTypeConverter extends BaseResponse {
344
344
  };
345
345
  get types(): TypesInfo;
346
346
  getObjectTypeInfo(typeName: string): {
347
- path?: any;
348
- props?: TypeInfo[];
349
- values?: any[];
347
+ path?: string | any | Function;
348
+ props?: Array<TypeInfo>;
349
+ values?: Array<any>;
350
350
  };
351
351
  isArrayType(typeName: string): boolean;
352
352
  getTypeName(typeName: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/core",
3
- "version": "0.0.1-beta.31",
3
+ "version": "0.0.1-beta.33",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "ajayojha",
@@ -17,7 +17,7 @@
17
17
  "dependencies": {
18
18
  "tsyringe": "^4.7.0",
19
19
  "path-to-regexp": "6.2.1",
20
- "@nattyjs/common": "0.0.1-beta.31"
20
+ "@nattyjs/common": "0.0.1-beta.33"
21
21
  },
22
22
  "devDependencies": {
23
23
  "unbuild": "1.2.1"