conductor-node 11.6.4 → 11.6.6
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": "11.6.
|
|
3
|
+
"version": "11.6.6",
|
|
4
4
|
"description": "QuickBooks Desktop API for Node.js and TypeScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"QuickBooks",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"axios-mock-adapter": "^1.22.0",
|
|
43
|
-
"tsc-alias": "^1.8.
|
|
43
|
+
"tsc-alias": "^1.8.9"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=16"
|
package/dist/src/Client.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export default class Client {
|
|
|
13
13
|
readonly integrationConnections: IntegrationConnectionsResource;
|
|
14
14
|
readonly authSessions: AuthSessionsResource;
|
|
15
15
|
/**
|
|
16
|
-
* Executes any QuickBooks Desktop (QBD) API against the specified
|
|
16
|
+
* Executes any QuickBooks Desktop (QBD) API against the specified EndUser.
|
|
17
17
|
*/
|
|
18
18
|
readonly qbd: QbdIntegration;
|
|
19
19
|
private readonly httpClient;
|
package/dist/src/Client.js
CHANGED
|
@@ -150,7 +150,7 @@ export interface AccountQueryRq {
|
|
|
150
150
|
/** Filters according to the object’s `Name`. */
|
|
151
151
|
NameRangeFilter?: NameRangeFilter;
|
|
152
152
|
/** A list of QuickBooks account types. */
|
|
153
|
-
AccountType?: AccountType
|
|
153
|
+
AccountType?: AccountType;
|
|
154
154
|
/** Filters by the specified currency. */
|
|
155
155
|
CurrencyFilter?: CurrencyFilter;
|
|
156
156
|
/** You use this if you want to limit the data that will be returned in the response. In this list, you specify the name of each top-level element or aggregate that you want to be returned in the response to the request. You cannot specify fields within an aggregate, for example, you cannot specify a `City` within an `Address`: you must specify `Address` and will get the entire address.
|
|
@@ -1736,7 +1736,7 @@ export interface ColData {
|
|
|
1736
1736
|
/** The data in this cell of the report. */
|
|
1737
1737
|
Value: string;
|
|
1738
1738
|
/** The data type: IDTYPE, STRTYPE, and so on. */
|
|
1739
|
-
DataType
|
|
1739
|
+
DataType?: DataType;
|
|
1740
1740
|
}
|
|
1741
1741
|
export interface ColDesc {
|
|
1742
1742
|
/** A list of `IColTitle` objects, each of which represents a title for this column. For example, if the first two rows of this column were titles, two `IColTitle` objects would be returned. */
|
|
@@ -1746,7 +1746,7 @@ export interface ColDesc {
|
|
|
1746
1746
|
/** An identifying number that corresponds to the position of this column in the report. The columns are numbered from left to right, starting with 1. */
|
|
1747
1747
|
ColID: number;
|
|
1748
1748
|
/** The data type: IDTYPE, STRTYPE, and so on. */
|
|
1749
|
-
DataType
|
|
1749
|
+
DataType?: DataType;
|
|
1750
1750
|
}
|
|
1751
1751
|
export interface ColTitle {
|
|
1752
1752
|
/** The number of this title row. For example, if the first three rows of a report were titles, `titleRow` of the third of these rows would be 3. */
|
|
@@ -3666,6 +3666,8 @@ export interface DataRow {
|
|
|
3666
3666
|
RowData?: RowData;
|
|
3667
3667
|
/** A list of `IColData` objects, each of which describes the data in one cell of the report. */
|
|
3668
3668
|
ColData?: ColData | ColData[];
|
|
3669
|
+
/** The row number. Rows are numbered from top to bottom, starting with 1. */
|
|
3670
|
+
RowNumber: number;
|
|
3669
3671
|
}
|
|
3670
3672
|
export type DataType = "AMTTYPE" | "BOOLTYPE" | "DATETIMETYPE" | "DATETYPE" | "ENUMTYPE" | "GUIDTYPE" | "IDTYPE" | "INTTYPE" | "PERCENTTYPE" | "PRICETYPE" | "QUANTYPE" | "STRTYPE" | "TIMEINTERVALTYPE";
|
|
3671
3673
|
export interface DateDrivenTermsAdd {
|
|
@@ -10183,7 +10185,7 @@ export interface ReportData {
|
|
|
10183
10185
|
/** A row that contains a calculated total of all the data that has come before and a double underline. There will only be one `TotalRow` per report.
|
|
10184
10186
|
|
|
10185
10187
|
If `TotalRow` does not include any numerical values, the columns required to show the total values are not part of the report. These columns were not included when the report was customized. */
|
|
10186
|
-
TotalRow?: TotalRow;
|
|
10188
|
+
TotalRow?: TotalRow | TotalRow[];
|
|
10187
10189
|
}
|
|
10188
10190
|
export type ReportDateMacro = "All" | "LastMonth" | "LastMonthToDate" | "LastQuarter" | "LastQuarterToDate" | "LastWeek" | "LastWeekToDate" | "LastYear" | "LastYearToDate" | "NextFourWeeks" | "NextMonth" | "NextQuarter" | "NextWeek" | "NextYear" | "ThisMonth" | "ThisMonthToDate" | "ThisQuarter" | "ThisQuarterToDate" | "ThisWeek" | "ThisWeekToDate" | "ThisYear" | "ThisYearToDate" | "Today" | "Yesterday";
|
|
10189
10191
|
/** @default: All */
|
|
@@ -11896,6 +11898,7 @@ export interface SubtotalRow {
|
|
|
11896
11898
|
RowData?: RowData;
|
|
11897
11899
|
/** A list of `IColData` objects, each of which describes the data in one cell of the report. */
|
|
11898
11900
|
ColData?: ColData | ColData[];
|
|
11901
|
+
RowNumber: number;
|
|
11899
11902
|
}
|
|
11900
11903
|
export type SummarizeBudgetColumnsBy = "Class" | "Customer" | "Date";
|
|
11901
11904
|
export type SummarizeBudgetRowsBy = "Account" | "Class" | "Customer";
|
|
@@ -11945,7 +11948,6 @@ export interface TermsRef {
|
|
|
11945
11948
|
FullName?: string;
|
|
11946
11949
|
}
|
|
11947
11950
|
export interface TextRow {
|
|
11948
|
-
/** The row number. Rows are numbered from top to bottom, starting with 1. */
|
|
11949
11951
|
RowNumber: number;
|
|
11950
11952
|
/** The data in this cell of the report. */
|
|
11951
11953
|
Value: string;
|
|
@@ -12134,6 +12136,7 @@ export interface TotalRow {
|
|
|
12134
12136
|
RowData?: RowData;
|
|
12135
12137
|
/** A list of `IColData` objects, each of which describes the data in one cell of the report. */
|
|
12136
12138
|
ColData?: ColData | ColData[];
|
|
12139
|
+
RowNumber: number;
|
|
12137
12140
|
}
|
|
12138
12141
|
export interface TransactionAccountFilter {
|
|
12139
12142
|
/** Allows you to report on a specific account type. */
|
|
@@ -12469,7 +12472,7 @@ export interface TransferInventoryLineRet {
|
|
|
12469
12472
|
/** The lot number of the asset. */
|
|
12470
12473
|
LotNumber?: string;
|
|
12471
12474
|
/** The expiration date of the inventory serial/lot number. Expiration `Date` is supported from QB Desktop 2023 version 3 (USA & Canada) and SDK 16.0. */
|
|
12472
|
-
ExpirationDateForSerialLotNumber
|
|
12475
|
+
ExpirationDateForSerialLotNumber?: string;
|
|
12473
12476
|
}
|
|
12474
12477
|
export interface TransferInventoryMod {
|
|
12475
12478
|
/** 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. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "conductor-node",
|
|
3
|
-
"version": "11.6.
|
|
3
|
+
"version": "11.6.6",
|
|
4
4
|
"description": "QuickBooks Desktop API for Node.js and TypeScript",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"QuickBooks",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"axios-mock-adapter": "^1.22.0",
|
|
43
|
-
"tsc-alias": "^1.8.
|
|
43
|
+
"tsc-alias": "^1.8.9"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=16"
|