@finverse/sdk-typescript 0.0.16 → 0.0.19

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/api.d.ts +6 -0
  2. package/package.json +5 -5
package/dist/api.d.ts CHANGED
@@ -231,6 +231,12 @@ export interface AllProductStatus {
231
231
  * @memberof AllProductStatus
232
232
  */
233
233
  payments?: ProductStatus;
234
+ /**
235
+ *
236
+ * @type {ProductStatus}
237
+ * @memberof AllProductStatus
238
+ */
239
+ income_estimation?: ProductStatus;
234
240
  }
235
241
  /**
236
242
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.16",
3
+ "version": "0.0.19",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -11,11 +11,11 @@
11
11
  "@finverse/sdk-typescript"
12
12
  ],
13
13
  "license": "MIT",
14
- "main": "index",
15
- "typings": "index",
14
+ "main": "dist/index.js",
15
+ "typings": "dist/index.js",
16
16
  "scripts": {
17
- "build": "tsc --outDir dist/",
18
- "prepare": "npm run build"
17
+ "build": "tsc --outDir dist",
18
+ "test": "mocha --require ts-node/register test/**/*.spec.ts"
19
19
  },
20
20
  "dependencies": {
21
21
  "axios": "^0.21.4"