conductor-node 4.0.2 → 4.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-type async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -161,7 +161,7 @@ export interface AccountQueryRq {
161
161
  OwnerID?: string[] | string;
162
162
  }
163
163
  export interface AccountQueryRs {
164
- AccountRet: [AccountRet, ...AccountRet[]];
164
+ AccountRet: AccountRet[];
165
165
  }
166
166
  export interface AccountRef {
167
167
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -623,7 +623,7 @@ export interface BillPaymentCheckQueryRq {
623
623
  OwnerID?: string[] | string;
624
624
  }
625
625
  export interface BillPaymentCheckQueryRs {
626
- BillPaymentCheckRet: [BillPaymentCheckRet, ...BillPaymentCheckRet[]];
626
+ BillPaymentCheckRet: BillPaymentCheckRet[];
627
627
  }
628
628
  export interface BillPaymentCheckRet {
629
629
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests. Notice that you cannot supply the `TxnID` of a `TimeTracking` transaction to `TransactionQueryRq` requests. If you do, you get an error stating that no such record could be found, even though the transaction is in QuickBooks. This behavior reflects the behavior in the QuicKBooks UI in the Find window. */
@@ -730,7 +730,7 @@ export interface BillQueryRq {
730
730
  OwnerID?: string[] | string;
731
731
  }
732
732
  export interface BillQueryRs {
733
- BillRet: [BillRet, ...BillRet[]];
733
+ BillRet: BillRet[];
734
734
  }
735
735
  export interface BillRet {
736
736
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests.
@@ -954,7 +954,7 @@ export interface CheckQueryRq {
954
954
  OwnerID?: string[] | string;
955
955
  }
956
956
  export interface CheckQueryRs {
957
- CheckRet: [CheckRet, ...CheckRet[]];
957
+ CheckRet: CheckRet[];
958
958
  }
959
959
  export interface CheckRet {
960
960
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests. Notice that you cannot supply the `TxnID` of a `TimeTracking` transaction to `TransactionQueryRq` requests. If you do, you get an error stating that no such record could be found, even though the transaction is in QuickBooks. This behavior reflects the behavior in the QuicKBooks UI in the Find window. */
@@ -1077,7 +1077,7 @@ export interface ClassQueryRq {
1077
1077
  IncludeRetElement?: string[] | string;
1078
1078
  }
1079
1079
  export interface ClassQueryRs {
1080
- ClassRet: [ClassRet, ...ClassRet[]];
1080
+ ClassRet: ClassRet[];
1081
1081
  }
1082
1082
  export interface ClassRef {
1083
1083
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -1430,7 +1430,7 @@ export interface CustomerQueryRq {
1430
1430
  OwnerID?: string[] | string;
1431
1431
  }
1432
1432
  export interface CustomerQueryRs {
1433
- CustomerRet: [CustomerRet, ...CustomerRet[]];
1433
+ CustomerRet: CustomerRet[];
1434
1434
  }
1435
1435
  export interface CustomerRef {
1436
1436
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -1745,7 +1745,7 @@ export interface DepositQueryRq {
1745
1745
  OwnerID?: string[] | string;
1746
1746
  }
1747
1747
  export interface DepositQueryRs {
1748
- DepositRet: [DepositRet, ...DepositRet[]];
1748
+ DepositRet: DepositRet[];
1749
1749
  }
1750
1750
  export interface DepositRet {
1751
1751
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests. Notice that you cannot supply the `TxnID` of a `TimeTracking` transaction to `TransactionQueryRq` requests. If you do, you get an error stating that no such record could be found, even though the transaction is in QuickBooks. This behavior reflects the behavior in the QuicKBooks UI in the Find window. */
@@ -2089,7 +2089,7 @@ export interface EmployeeQueryRq {
2089
2089
  OwnerID?: string[] | string;
2090
2090
  }
2091
2091
  export interface EmployeeQueryRs {
2092
- EmployeeRet: [EmployeeRet, ...EmployeeRet[]];
2092
+ EmployeeRet: EmployeeRet[];
2093
2093
  }
2094
2094
  export interface EmployeeRet {
2095
2095
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -2741,7 +2741,7 @@ export interface ItemServiceQueryRq {
2741
2741
  OwnerID?: string[] | string;
2742
2742
  }
2743
2743
  export interface ItemServiceQueryRs {
2744
- ItemServiceRet: [ItemServiceRet, ...ItemServiceRet[]];
2744
+ ItemServiceRet: ItemServiceRet[];
2745
2745
  }
2746
2746
  export interface ItemServiceRef {
2747
2747
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -2922,7 +2922,7 @@ export interface JournalEntryQueryRq {
2922
2922
  OwnerID?: string[] | string;
2923
2923
  }
2924
2924
  export interface JournalEntryQueryRs {
2925
- JournalEntryRet: [JournalEntryRet, ...JournalEntryRet[]];
2925
+ JournalEntryRet: JournalEntryRet[];
2926
2926
  }
2927
2927
  export interface JournalEntryRet {
2928
2928
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests. Notice that you cannot supply the `TxnID` of a `TimeTracking` transaction to `TransactionQueryRq` requests. If you do, you get an error stating that no such record could be found, even though the transaction is in QuickBooks. This behavior reflects the behavior in the QuicKBooks UI in the Find window. */
@@ -3442,7 +3442,7 @@ export interface TimeTrackingQueryRq {
3442
3442
  IncludeRetElement?: string[] | string;
3443
3443
  }
3444
3444
  export interface TimeTrackingQueryRs {
3445
- TimeTrackingRet: [TimeTrackingRet, ...TimeTrackingRet[]];
3445
+ TimeTrackingRet: TimeTrackingRet[];
3446
3446
  }
3447
3447
  export interface TimeTrackingRet {
3448
3448
  /** QuickBooks generates a unique `TxnID` for each transaction that is added to QuickBooks. A `TxnID` returned from a request can be used to refer to the transaction in subsequent requests. Notice that you cannot supply the `TxnID` of a `TimeTracking` transaction to `TransactionQueryRq` requests. If you do, you get an error stating that no such record could be found, even though the transaction is in QuickBooks. This behavior reflects the behavior in the QuicKBooks UI in the Find window. */
@@ -3795,7 +3795,7 @@ export interface VendorQueryRq {
3795
3795
  OwnerID?: string[] | string;
3796
3796
  }
3797
3797
  export interface VendorQueryRs {
3798
- VendorRet: [VendorRet, ...VendorRet[]];
3798
+ VendorRet: VendorRet[];
3799
3799
  }
3800
3800
  export interface VendorRef {
3801
3801
  /** Along with `FullName`, `ListID` is a way to identify a list object. When a list object is added to QuickBooks through the SDK or through the QuickBooks user interface, the server assigns it a `ListID`. A `ListID` is not unique across lists, but it is unique across each particular type of list. For example, two customers could not have the same `ListID`, and a customer could not have the same `ListID` as an employee (because Customer and Employee are both name lists). But a customer could have the same `ListID` as a non-inventory item. */
@@ -1,2 +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";
1
+ export declare const TEST_CLIENT_API_KEY = "test_client_api_key";
2
+ export declare const TEST_QBD_CONNECTION_ID = "test_qbd_connection_id";
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
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";
3
+ exports.TEST_QBD_CONNECTION_ID = exports.TEST_CLIENT_API_KEY = void 0;
4
+ exports.TEST_CLIENT_API_KEY = "test_client_api_key";
5
+ exports.TEST_QBD_CONNECTION_ID = "test_qbd_connection_id";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Easily integrate with the entire QuickBooks Desktop API with fully-type async TypeScript",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",