conductor-node 3.5.4 → 3.5.5
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.
- package/dist/{BaseClient.d.ts → src/BaseClient.d.ts} +1 -1
- package/dist/{BaseClient.js → src/BaseClient.js} +0 -0
- package/dist/{Client.d.ts → src/Client.d.ts} +2 -2
- package/dist/{Client.js → src/Client.js} +2 -2
- package/dist/{environment.d.ts → src/environment.d.ts} +0 -0
- package/dist/{environment.js → src/environment.js} +0 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/{index.js → src/index.js} +1 -1
- package/dist/src/integrationTypes.d.ts +2 -0
- package/dist/{integrationTypes.js → src/integrationTypes.js} +0 -0
- package/dist/{qbd → src/qbd}/ClientQbd.d.ts +2 -2
- package/dist/{qbd → src/qbd}/ClientQbd.js +1 -1
- package/dist/{qbd → src/qbd}/qbdTypes.d.ts +0 -0
- package/dist/{qbd → src/qbd}/qbdTypes.js +0 -0
- package/package.json +4 -4
- package/dist/index.d.ts +0 -5
- package/dist/integrationTypes.d.ts +0 -2
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type { Environment } from "
|
|
2
|
-
import ClientQbd from "
|
|
1
|
+
import type { Environment } from "./environment";
|
|
2
|
+
import ClientQbd from "./qbd/ClientQbd";
|
|
3
3
|
export interface ClientOptions {
|
|
4
4
|
/** Log the each request and response. */
|
|
5
5
|
verbose?: boolean;
|
|
@@ -3,8 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const environment_1 = require("
|
|
7
|
-
const ClientQbd_1 = __importDefault(require("
|
|
6
|
+
const environment_1 = require("./environment");
|
|
7
|
+
const ClientQbd_1 = __importDefault(require("./qbd/ClientQbd"));
|
|
8
8
|
const graphql_request_1 = require("graphql-request");
|
|
9
9
|
class Client {
|
|
10
10
|
/** QuickBooks Desktop integration. */
|
|
File without changes
|
|
File without changes
|
|
@@ -3,5 +3,5 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const Client_1 = __importDefault(require("
|
|
6
|
+
const Client_1 = __importDefault(require("./Client"));
|
|
7
7
|
exports.default = Client_1.default;
|
|
File without changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import BaseClient from "
|
|
2
|
-
import type * as QbdTypes from "
|
|
1
|
+
import BaseClient from "../BaseClient";
|
|
2
|
+
import type * as QbdTypes from "../qbd/qbdTypes";
|
|
3
3
|
export default class ClientQbd extends BaseClient {
|
|
4
4
|
account: {
|
|
5
5
|
/**
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const BaseClient_1 = __importDefault(require("
|
|
6
|
+
const BaseClient_1 = __importDefault(require("../BaseClient"));
|
|
7
7
|
class ClientQbd extends BaseClient_1.default {
|
|
8
8
|
account = {
|
|
9
9
|
/**
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-node",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"description": "Conductor API wrapper",
|
|
5
5
|
"author": "Danny Nemer <hi@DannyNemer.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "commonjs",
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"types": "dist/index.d.ts",
|
|
8
|
+
"main": "dist/src/index.js",
|
|
9
|
+
"types": "dist/src/index.d.ts",
|
|
10
10
|
"files": [
|
|
11
11
|
"dist/**/*.[jt]s"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
-
"prepack": "yarn tsc && yarn tsc-alias",
|
|
14
|
+
"prepack": "yarn tsc && yarn tsc-alias --verbose",
|
|
15
15
|
"postpack": "rm -rf dist",
|
|
16
16
|
"clean": "rm -rf dist package conductor-node-*.tgz tsconfig.tsbuildinfo"
|
|
17
17
|
},
|
package/dist/index.d.ts
DELETED