conductor-node 3.6.0 → 3.7.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.
@@ -0,0 +1,2 @@
1
+ export declare const MOCK_CLIENT_API_KEY = "mock_client_api_key";
2
+ export declare const MOCK_QBD_USER_CONNECTION_ID = "mock_qbd_user_connection_id";
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MOCK_QBD_USER_CONNECTION_ID = exports.MOCK_CLIENT_API_KEY = void 0;
4
+ exports.MOCK_CLIENT_API_KEY = "mock_client_api_key";
5
+ exports.MOCK_QBD_USER_CONNECTION_ID = "mock_qbd_user_connection_id";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "Conductor API wrapper",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -8,10 +8,12 @@
8
8
  "main": "dist/src/index.js",
9
9
  "types": "dist/src/index.d.ts",
10
10
  "files": [
11
- "dist/**/*.[jt]s"
11
+ "dist/src/**/*.[jt]s",
12
+ "dist/package.json"
12
13
  ],
13
14
  "scripts": {
14
- "prepack": "yarn tsc && yarn tsc-alias --verbose",
15
+ "prepack": "yarn tsc && yarn delete-compiled-tests && yarn tsc-alias --verbose",
16
+ "delete-compiled-tests": "rm -rfv `find ./dist -type d -name __tests__`",
15
17
  "postpack": "rm -rf dist",
16
18
  "clean": "rm -rf dist package conductor-node-*.tgz tsconfig.tsbuildinfo"
17
19
  },
@@ -1,5 +0,0 @@
1
- import type Client from "../Client";
2
- export default class BaseClient {
3
- protected readonly root: Client;
4
- constructor(client: Client);
5
- }