conductor-node 0.0.10 → 0.0.11

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/README.md CHANGED
@@ -1,12 +1,10 @@
1
1
  # Conductor Node.js Library
2
2
 
3
- The Conductor Node.js library provides convenient access to the Conductor API from applications written in server-side JavaScript.
4
-
5
- There are zero dependencies.
3
+ The Conductor Node.js library provides convenient access to the Conductor API from applications written in server-side JavaScript. Zero dependencies.
6
4
 
7
5
  ## Requirements
8
6
 
9
- 1. A running version of QuickBooks Desktop with QuickBooks Web Connector configured for Conductor. See the [Conductor Getting Started guide](https://www.notion.so/conductor-io/Conductor-Documentation-Getting-Started-7f0f42593d444337b0b3200c771d98e6) for help.
7
+ 1. A running version of QuickBooks Desktop with QuickBooks Web Connector configured for Conductor. See the [Conductor Getting Started guide](https://www.notion.so/conductor-io/Conductor-Documentation-Getting-Started-7f0f42593d444337b0b3200c771d98e6).
10
8
  2. A Conductor API key from Danny.
11
9
 
12
10
  ## Installation
@@ -21,7 +19,7 @@ The package must be configured with your account's secret key, which is availabl
21
19
 
22
20
  Currently supports executing any [QuickBooks Desktop API](https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop) via JSON and receiving the response in JSON. In the future, Conductor will incorporate extensive typings for these APIs.
23
21
 
24
- To send a request to a specific QuickBooks Desktop user, you must also supply the username in their `.qwc` file that you provided them.
22
+ To send a request to a specific QuickBooks Desktop user, you must also supply the username that is in their `.qwc` file that you provided them.
25
23
 
26
24
  ```ts
27
25
  import Conductor from "conductor-node";
@@ -1,4 +1,5 @@
1
1
  import type { AccountAdd, AccountQueryRq, AccountRet } from "../qb/qbXMLTypes/Account";
2
+ import type { CustomerQueryRq, CustomerRet } from "../qb/qbXMLTypes/Customer";
2
3
  import type { EmployeeAdd, EmployeeMod, EmployeeQueryRq, EmployeeRet } from "../qb/qbXMLTypes/Employee";
3
4
  import type { VendorQueryRq, VendorRet } from "../qb/qbXMLTypes/Vendor";
4
5
  export default class ClientQBD {
@@ -12,26 +13,39 @@ export default class ClientQBD {
12
13
  */
13
14
  sendRequest(qbwcUsername: string, requestObj: object): Promise<object>;
14
15
  /**
15
- * This message allows you to perform the same activities as a user does in
16
- * the QB New Account form, which can be accessed in QB by selecting
17
- * Lists->Chart of Accounts->Accounts->New.
16
+ * Perform the same activities as a user does in the QB New Account form,
17
+ * which can be accessed in QB by selecting "Lists" → "Chart of Accounts" →
18
+ * "Accounts" "New".
18
19
  *
19
20
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountadd
20
21
  */
21
22
  accountAdd(qbwcUsername: string, params: AccountAdd): Promise<AccountRet>;
22
23
  /**
23
- * `AccountQuery` is a list query that returns data for all accounts that match
24
- * the provided filter criteria. Notice that it returns only data internal to
25
- * the account itself. It does not return any data about transactions
26
- * involving the account. It does, however, return the parent account, if
27
- * there is one. You can search across all accounts or you can specify an
28
- * account type and search only those.
24
+ * `AccountQuery` is a list query that returns data for all accounts that
25
+ * match the provided filter criteria. Notice that it returns only data
26
+ * internal to the account itself. It does not return any data about
27
+ * transactions involving the account. It does, however, return the parent
28
+ * account, if there is one. You can search across all accounts or you can
29
+ * specify an account type and search only those.
29
30
  *
30
31
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountquery
31
32
  */
32
33
  accountQuery(qbwcUsername: string, params: AccountQueryRq): Promise<AccountRet>;
33
34
  /**
34
- * Adds an employee with personal data about the employee as well as certain payroll-related data.
35
+ * Returns data for the specified customers.
36
+ *
37
+ * Important: We highly recommend that you use the `IncludeRetElement` tag in
38
+ * your `CustomerQuery` to include any data you want but do NOT include the
39
+ * `ShipAddress` data in the `Response`, unless you need to get the shipping
40
+ * address for a particular customer. Excluding the shipping address data will
41
+ * significantly improve the performance of the `CustomerQuery`.
42
+ *
43
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/customerquery
44
+ */
45
+ customerQuery(qbwcUsername: string, params: CustomerQueryRq): Promise<CustomerRet>;
46
+ /**
47
+ * Adds an employee with personal data about the employee as well as certain
48
+ * payroll-related data.
35
49
  *
36
50
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/employeeAdd
37
51
  */
@@ -32,9 +32,9 @@ class ClientQBD {
32
32
  return responseObj;
33
33
  }
34
34
  /**
35
- * This message allows you to perform the same activities as a user does in
36
- * the QB New Account form, which can be accessed in QB by selecting
37
- * Lists->Chart of Accounts->Accounts->New.
35
+ * Perform the same activities as a user does in the QB New Account form,
36
+ * which can be accessed in QB by selecting "Lists" → "Chart of Accounts" →
37
+ * "Accounts" "New".
38
38
  *
39
39
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountadd
40
40
  */
@@ -49,12 +49,12 @@ class ClientQBD {
49
49
  return responseBody;
50
50
  }
51
51
  /**
52
- * `AccountQuery` is a list query that returns data for all accounts that match
53
- * the provided filter criteria. Notice that it returns only data internal to
54
- * the account itself. It does not return any data about transactions
55
- * involving the account. It does, however, return the parent account, if
56
- * there is one. You can search across all accounts or you can specify an
57
- * account type and search only those.
52
+ * `AccountQuery` is a list query that returns data for all accounts that
53
+ * match the provided filter criteria. Notice that it returns only data
54
+ * internal to the account itself. It does not return any data about
55
+ * transactions involving the account. It does, however, return the parent
56
+ * account, if there is one. You can search across all accounts or you can
57
+ * specify an account type and search only those.
58
58
  *
59
59
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountquery
60
60
  */
@@ -69,7 +69,29 @@ class ClientQBD {
69
69
  return responseBody;
70
70
  }
71
71
  /**
72
- * Adds an employee with personal data about the employee as well as certain payroll-related data.
72
+ * Returns data for the specified customers.
73
+ *
74
+ * Important: We highly recommend that you use the `IncludeRetElement` tag in
75
+ * your `CustomerQuery` to include any data you want but do NOT include the
76
+ * `ShipAddress` data in the `Response`, unless you need to get the shipping
77
+ * address for a particular customer. Excluding the shipping address data will
78
+ * significantly improve the performance of the `CustomerQuery`.
79
+ *
80
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/customerquery
81
+ */
82
+ async customerQuery(qbwcUsername, params) {
83
+ const response = (await this.sendRequest(qbwcUsername, {
84
+ CustomerQueryRq: params,
85
+ }));
86
+ const responseBody = response.CustomerQueryRs.CustomerRet;
87
+ if (!responseBody) {
88
+ throw new Error("No response");
89
+ }
90
+ return responseBody;
91
+ }
92
+ /**
93
+ * Adds an employee with personal data about the employee as well as certain
94
+ * payroll-related data.
73
95
  *
74
96
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/employeeAdd
75
97
  */
@@ -1,4 +1,4 @@
1
- import type { ActiveStatus, CurrencyFilter, CurrencyRef, DataExtRet, NameFilter, NameRangeFilter, SalesTaxCodeRef } from "../../qb/qbXMLTypes/shared";
1
+ import type { ActiveStatus, CurrencyFilter, CurrencyRef, DataExtRet, NameFilter, NameRangeFilter, ParentRef, SalesTaxCodeRef } from "../../qb/qbXMLTypes/shared";
2
2
  export interface AccountAddRq {
3
3
  AccountAdd: AccountAdd;
4
4
  IncludeRetElement?: string;
@@ -238,10 +238,6 @@ export interface AccountRet {
238
238
  CurrencyRef?: CurrencyRef;
239
239
  DataExtRet?: DataExtRet;
240
240
  }
241
- interface ParentRef {
242
- ListID?: string;
243
- FullName?: string;
244
- }
245
241
  declare type AccountType = "AccountsPayable" | "AccountsReceivable" | "Bank" | "CostOfGoodsSold" | "CreditCard" | "Equity" | "Expense" | "FixedAsset" | "Income" | "LongTermLiability" | "NonPosting" | "OtherAsset" | "OtherCurrentAsset" | "OtherCurrentLiability" | "OtherExpense" | "OtherIncome";
246
242
  declare type SpecialAccountType = "AccountsPayable" | "AccountsReceivable" | "CondenseItemAdjustmentExpenses" | "CostOfGoodsSold" | "DirectDepositLiabilities" | "Estimates" | "ExchangeGainLoss" | "InventoryAssets" | "ItemReceiptAccount" | "OpeningBalanceEquity" | "PayrollExpenses" | "PayrollLiabilities" | "PettyCash" | "PurchaseOrders" | "ReconciliationDifferences" | "RetainedEarnings" | "SalesOrders" | "SalesTaxPayable" | "UncategorizedExpenses" | "UncategorizedIncome" | "UndepositedFunds";
247
243
  declare type CashFlowClassification = "Financing" | "Investing" | "None" | "NotApplicable" | "Operating";
@@ -0,0 +1,152 @@
1
+ import type { ActiveStatus, AdditionalContactRef, AdditionalNotesRet, ClassFilter, ClassRef, ContactsRet, CurrencyFilter, CurrencyRef, DataExtRet, NameFilter, NameRangeFilter, ParentRef, SalesTaxCodeRef, SalesTaxCountry, ShipAddress, TermsRef, TotalBalanceFilter } from "../../qb/qbXMLTypes/shared";
2
+ export interface CustomerQueryRq {
3
+ ListID?: string;
4
+ FullName?: string;
5
+ MaxReturned?: number;
6
+ ActiveStatus?: ActiveStatus;
7
+ FromModifiedDate?: Date;
8
+ ToModifiedDate?: Date;
9
+ NameFilter?: NameFilter;
10
+ NameRangeFilter?: NameRangeFilter;
11
+ TotalBalanceFilter?: TotalBalanceFilter;
12
+ CurrencyFilter?: CurrencyFilter;
13
+ ClassFilter?: ClassFilter;
14
+ IncludeRetElement?: string;
15
+ OwnerID?: string;
16
+ }
17
+ export interface CustomerQueryRs {
18
+ CustomerRet?: CustomerRet;
19
+ }
20
+ export interface CustomerRet {
21
+ ListID: string;
22
+ TimeCreated: Date;
23
+ TimeModified: Date;
24
+ EditSequence: string;
25
+ Name: string;
26
+ FullName: string;
27
+ IsActive?: boolean;
28
+ ClassRef?: ClassRef;
29
+ ParentRef?: ParentRef;
30
+ Sublevel: number;
31
+ CompanyName?: string;
32
+ Salutation?: string;
33
+ FirstName?: string;
34
+ MiddleName?: string;
35
+ LastName?: string;
36
+ JobTitle?: string;
37
+ BillAddress?: BillAddress;
38
+ BillAddressBlock?: BillAddressBlock;
39
+ ShipAddress?: ShipAddress;
40
+ ShipAddressBlock?: ShipAddressBlock;
41
+ ShipToAddress?: ShipToAddress;
42
+ Phone?: string;
43
+ AltPhone?: string;
44
+ Fax?: string;
45
+ Email?: string;
46
+ Cc?: string;
47
+ Contact?: string;
48
+ AltContact?: string;
49
+ AdditionalContactRef?: AdditionalContactRef;
50
+ ContactsRet?: ContactsRet;
51
+ CustomerTypeRef?: CustomerTypeRef;
52
+ TermsRef?: TermsRef;
53
+ SalesRepRef?: SalesRepRef;
54
+ Balance?: string;
55
+ TotalBalance?: string;
56
+ SalesTaxCodeRef?: SalesTaxCodeRef;
57
+ ItemSalesTaxRef?: ItemSalesTaxRef;
58
+ SalesTaxCountry?: SalesTaxCountry;
59
+ ResaleNumber?: string;
60
+ AccountNumber?: string;
61
+ CreditLimit?: string;
62
+ PreferredPaymentMethodRef?: PreferredPaymentMethodRef;
63
+ CreditCardInfo?: CreditCardInfo;
64
+ JobStatus?: JobStatus;
65
+ JobStartDate?: Date;
66
+ JobProjectedEndDate?: Date;
67
+ JobEndDate?: Date;
68
+ JobDesc?: string;
69
+ JobTypeRef?: JobTypeRef;
70
+ Notes?: string;
71
+ AdditionalNotesRet?: AdditionalNotesRet;
72
+ PreferredDeliveryMethod?: PreferredDeliveryMethod;
73
+ PriceLevelRef?: PriceLevelRef;
74
+ ExternalGUID?: string;
75
+ TaxRegistrationNumber?: string;
76
+ CurrencyRef?: CurrencyRef;
77
+ DataExtRet?: DataExtRet;
78
+ }
79
+ interface BillAddress {
80
+ Addr1?: string;
81
+ Addr2?: string;
82
+ Addr3?: string;
83
+ Addr4?: string;
84
+ Addr5?: string;
85
+ City?: string;
86
+ State?: string;
87
+ PostalCode?: string;
88
+ Country?: string;
89
+ Note?: string;
90
+ }
91
+ interface BillAddressBlock {
92
+ Addr1?: string;
93
+ Addr2?: string;
94
+ Addr3?: string;
95
+ Addr4?: string;
96
+ Addr5?: string;
97
+ }
98
+ interface ShipAddressBlock {
99
+ Addr1?: string;
100
+ Addr2?: string;
101
+ Addr3?: string;
102
+ Addr4?: string;
103
+ Addr5?: string;
104
+ }
105
+ interface ShipToAddress {
106
+ Addr1?: string;
107
+ Addr2?: string;
108
+ Addr3?: string;
109
+ Addr4?: string;
110
+ Addr5?: string;
111
+ City?: string;
112
+ State?: string;
113
+ PostalCode?: string;
114
+ Country?: string;
115
+ Note?: string;
116
+ DefaultShipTo?: boolean;
117
+ }
118
+ interface CustomerTypeRef {
119
+ ListID?: string;
120
+ FullName?: string;
121
+ }
122
+ interface SalesRepRef {
123
+ ListID?: string;
124
+ FullName?: string;
125
+ }
126
+ interface ItemSalesTaxRef {
127
+ ListID?: string;
128
+ FullName?: string;
129
+ }
130
+ interface PreferredPaymentMethodRef {
131
+ ListID?: string;
132
+ FullName?: string;
133
+ }
134
+ interface CreditCardInfo {
135
+ CreditCardNumber?: string;
136
+ ExpirationMonth?: number;
137
+ ExpirationYear?: number;
138
+ NameOnCard?: string;
139
+ CreditCardAddress?: string;
140
+ CreditCardPostalCode?: string;
141
+ }
142
+ declare type JobStatus = "Awarded" | "Closed" | "InProgress" | "None" | "NotAwarded" | "Pending";
143
+ interface JobTypeRef {
144
+ ListID?: string;
145
+ FullName?: string;
146
+ }
147
+ declare type PreferredDeliveryMethod = "Email" | "Fax" | "None";
148
+ interface PriceLevelRef {
149
+ ListID?: string;
150
+ FullName?: string;
151
+ }
152
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,4 @@
1
- import type { ActiveStatus, AdditionalContactRef, AdditionalNotesRet, BillingRateRef, ClassRef, CurrencyFilter, CurrencyRef, DataExtRet, NameFilter, NameRangeFilter, SalesTaxCodeRef } from "../../qb/qbXMLTypes/shared";
1
+ import type { ActiveStatus, AdditionalContactRef, AdditionalNotesRet, BillingRateRef, ClassFilter, ClassRef, ContactsRet, CurrencyFilter, CurrencyRef, DataExtRet, NameFilter, NameRangeFilter, SalesTaxCodeRef, SalesTaxCountry, ShipAddress, TermsRef, TotalBalanceFilter } from "../../qb/qbXMLTypes/shared";
2
2
  export interface VendorQueryRq {
3
3
  ListID?: string;
4
4
  FullName?: string;
@@ -17,32 +17,71 @@ export interface VendorQueryRq {
17
17
  export interface VendorQueryRs {
18
18
  VendorRet?: VendorRet;
19
19
  }
20
- interface TotalBalanceFilter {
21
- Operator: Operator;
22
- Amount: string;
23
- }
24
- declare type Operator = "Equal" | "GreaterThan" | "GreaterThanEqual" | "LessThan" | "LessThanEqual";
25
- interface ClassFilter {
26
- ListID?: string;
27
- FullName?: string;
28
- ListIDWithChildren?: string;
29
- FullNameWithChildren?: string;
30
- }
31
20
  export interface VendorRet {
32
21
  ListID: string;
33
22
  TimeCreated: Date;
34
23
  TimeModified: Date;
35
24
  EditSequence: string;
36
25
  Name: string;
26
+ /**
27
+ * If `IsActive` is `true`, this object is currently enabled for use by
28
+ * QuickBooks. The default value is `true`.
29
+ */
37
30
  IsActive?: boolean;
31
+ /**
32
+ * Classes can be used to separate transactions into meaningful categories.
33
+ * (For example, transactions could be classified according to department,
34
+ * business location, or type of work.) In QuickBooks, class tracking is off
35
+ * by default. A `ClassRef` aggregate refers to one of these named classes.
36
+ * For example, in a `TimeTracking` message, `ClassRef` refers to the
37
+ * QuickBooks class into which the timed activity falls. If a `ClassRef`
38
+ * aggregate includes both `FullName` and `ListID`, `FullName` will be
39
+ * ignored. In an `InvoiceAdd` request, if you specify a `ClassRef` for the
40
+ * whole invoice, that same `ClassRef` is automatically used in the line
41
+ * items. If you want to clear that (that is, have NO `ClassRef` for the line
42
+ * item, you can clear it in the line item by simply not specifying it in the
43
+ * line item.
44
+ */
38
45
  ClassRef?: ClassRef;
46
+ /**
47
+ * Is the current entity a tax agency.
48
+ */
39
49
  IsTaxAgency?: boolean;
50
+ /**
51
+ * The name of the QuickBooks user’s business, as specified in QuickBooks.
52
+ * `CompanyName` and `Address` are used on invoices, checks, and other forms.
53
+ * (`LegalCompanyName` and `LegalAddress`, on the other hand, are used on a
54
+ * company’s tax forms and pay stubs.)
55
+ */
40
56
  CompanyName?: string;
57
+ /**
58
+ * A formal reference, such as Mr. or Dr., that precedes a name.
59
+ */
41
60
  Salutation?: string;
61
+ /**
62
+ * The first name of a customer, vendor, employee, or person on the “other
63
+ * names” list.
64
+ */
42
65
  FirstName?: string;
66
+ /**
67
+ * The middle name of a customer, vendor, employee, or person on the “other
68
+ * names” list.
69
+ */
43
70
  MiddleName?: string;
71
+ /**
72
+ * The last name of a customer, vendor, employee, or person on the “other
73
+ * names” list.
74
+ */
44
75
  LastName?: string;
76
+ /**
77
+ * The job title of a customer, vendor, employee, or person on the “other
78
+ * names” list.
79
+ */
45
80
  JobTitle?: string;
81
+ /**
82
+ * If an address request fails, some combination of address fields might be
83
+ * too long.
84
+ */
46
85
  VendorAddress?: VendorAddress;
47
86
  VendorAddressBlock?: VendorAddressBlock;
48
87
  ShipAddress?: ShipAddress;
@@ -101,40 +140,10 @@ interface VendorAddressBlock {
101
140
  Addr4?: string;
102
141
  Addr5?: string;
103
142
  }
104
- interface ShipAddress {
105
- Addr1?: string;
106
- Addr2?: string;
107
- Addr3?: string;
108
- Addr4?: string;
109
- Addr5?: string;
110
- City?: string;
111
- State?: string;
112
- PostalCode?: string;
113
- Country?: string;
114
- Note?: string;
115
- }
116
- interface ContactsRet {
117
- ListID: string;
118
- TimeCreated: Date;
119
- TimeModified: Date;
120
- EditSequence: string;
121
- Contact?: string;
122
- Salutation?: string;
123
- FirstName?: string;
124
- MiddleName?: string;
125
- LastName?: string;
126
- JobTitle?: string;
127
- AdditionalContactRef?: AdditionalContactRef;
128
- }
129
143
  interface VendorTypeRef {
130
144
  ListID?: string;
131
145
  FullName?: string;
132
146
  }
133
- interface TermsRef {
134
- ListID?: string;
135
- FullName?: string;
136
- }
137
- declare type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";
138
147
  interface SalesTaxReturnRef {
139
148
  ListID?: string;
140
149
  FullNam?: string;
@@ -61,4 +61,49 @@ export interface CurrencyRef {
61
61
  ListID?: string;
62
62
  FullName?: string;
63
63
  }
64
+ export interface TotalBalanceFilter {
65
+ Operator: Operator;
66
+ Amount: string;
67
+ }
68
+ declare type Operator = "Equal" | "GreaterThan" | "GreaterThanEqual" | "LessThan" | "LessThanEqual";
69
+ export interface ClassFilter {
70
+ ListID?: string;
71
+ FullName?: string;
72
+ ListIDWithChildren?: string;
73
+ FullNameWithChildren?: string;
74
+ }
75
+ export interface ParentRef {
76
+ ListID?: string;
77
+ FullName?: string;
78
+ }
79
+ export interface ShipAddress {
80
+ Addr1?: string;
81
+ Addr2?: string;
82
+ Addr3?: string;
83
+ Addr4?: string;
84
+ Addr5?: string;
85
+ City?: string;
86
+ State?: string;
87
+ PostalCode?: string;
88
+ Country?: string;
89
+ Note?: string;
90
+ }
91
+ export interface ContactsRet {
92
+ ListID: string;
93
+ TimeCreated: Date;
94
+ TimeModified: Date;
95
+ EditSequence: string;
96
+ Contact?: string;
97
+ Salutation?: string;
98
+ FirstName?: string;
99
+ MiddleName?: string;
100
+ LastName?: string;
101
+ JobTitle?: string;
102
+ AdditionalContactRef?: AdditionalContactRef;
103
+ }
104
+ export interface TermsRef {
105
+ ListID?: string;
106
+ FullName?: string;
107
+ }
108
+ export declare type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";
64
109
  export {};
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../src/qb/qbxmltypes/shared.ts","../src/qb/qbxmltypes/account.ts","../src/qb/qbxmltypes/employee.ts","../src/qb/qbxmltypes/vendor.ts","../src/qb/clientqbd.ts","../src/client.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/cacheable-request/node_modules/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true,"impliedFormat":1},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","impliedFormat":1},{"version":"f427d705e0f6173f742027af5901a469d0ecb98cf061d6f420c551ff8d5520ae","signature":"6198d596d8e7e8ae9c9d473ad49157eb26de0f2469e8ff552fedf266db5e0d6c","impliedFormat":1},{"version":"dbd27b6c72c92821c4911f366b4169e0b2388ebb005d25f9be28153109911c68","signature":"1501e85cf1fafd75500c819ff4bf240387d213d07f6c1bfb4753a148cacb21bc","impliedFormat":1},{"version":"cf9f4f6f542687409b1a38e1734782cee77808368f39603a20884a73a6de4870","signature":"681a5b334343123283fe2bb063e339671871ddf397092cdc97c46e730db68589","impliedFormat":1},{"version":"8143105fb6271849136a2b2ea679e174757694ece923c8f52046740c418e2db6","signature":"7d38a993fb00e148e9ddb688fe0e63693478e55482a21a6884ac8927c4595902","impliedFormat":1},{"version":"b018033483e22d0e4945f71f9cad55a4168ffb014c1d0812938de0c3024ad186","signature":"2dda3fb8c70d0279c422746cd87b2adccc449ecc9b4058ffff6a7b087f42af3e","impliedFormat":1},{"version":"b1f79c5d223b21b7d7e5a0df475de466c70a0406f316d5bef70d437133ea5f6f","signature":"20d486da322ba3020d23dd399623f7430ff12abf66953a002fbd668f9ccb2550","impliedFormat":1},{"version":"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","impliedFormat":1},{"version":"68915895d4a136df5cf5f90aaa41d8e1e47ec047e7781a150b5d0cf273dbb7a9","impliedFormat":1},{"version":"1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","impliedFormat":1},{"version":"09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"76527127c8b749bee5977408861ce3ee56ec19ddcea8704c628f98ca610283e6","impliedFormat":1},{"version":"a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","impliedFormat":1},{"version":"cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","impliedFormat":1},{"version":"cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b","impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"0830071706fa0e477fb5e95f0955cc1062b5948b146b7d4e03a126f12ad6085f","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","impliedFormat":1},{"version":"a7d9d2a35530516e191ade6dc804d7de42d45ff6620c0319cfb4469dbdbd8044","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"e938de3d9b0516644b3e7069e3e94e325ca00eab9a664f5fa81e84c884d52d5e","impliedFormat":99},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","impliedFormat":1},{"version":"65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","impliedFormat":1}],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"declaration":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[79,82,108,109,116,117,118,119],[68,97,109],[109],[79,109,116],[64,109],[67,109],[68,73,109],[69,79,80,87,97,108,109],[69,70,79,87,109],[71,109],[72,73,80,88,109],[73,97,105,109],[74,76,79,87,109],[75,109],[76,77,109],[78,79,109],[79,109],[79,80,81,97,108,109],[79,80,81,97,100,109],[109,113],[82,87,97,108,109],[79,80,82,83,87,97,105,108,109],[82,84,97,105,108,109],[64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115],[79,85,109],[86,108,109],[76,79,87,97,109],[88,109],[89,109],[67,90,109],[91,107,109,113],[92,109],[93,109],[79,94,95,109],[94,96,109,111],[79,97,98,99,100,109],[97,99,109],[97,98,109],[100,109],[101,109],[79,103,104,109],[103,104,109],[73,87,97,105,109],[106,109],[87,107,109],[68,82,93,108,109],[73,109],[97,109,110],[109,111],[109,112],[68,73,79,81,90,97,108,109,111,113],[97,109,114],[82,97,109,116],[79,97,109,116],[62,109],[59,60,61,109],[58,109],[62],[59,60,61],[58]],"referencedMap":[[120,1],[119,2],[118,3],[121,3],[122,3],[123,4],[64,5],[65,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,13],[75,14],[76,15],[77,15],[78,16],[79,17],[80,18],[81,19],[66,20],[115,3],[82,21],[83,22],[84,23],[116,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,32],[93,33],[94,34],[95,34],[96,35],[97,36],[99,37],[98,38],[100,39],[101,40],[102,3],[103,41],[104,42],[105,43],[106,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[124,53],[125,3],[126,54],[117,17],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[36,3],[37,3],[38,3],[39,3],[7,3],[40,3],[45,3],[46,3],[41,3],[42,3],[43,3],[44,3],[8,3],[50,3],[47,3],[48,3],[49,3],[51,3],[9,3],[52,3],[53,3],[54,3],[55,3],[1,3],[10,3],[57,3],[56,3],[14,3],[13,3],[63,55],[62,56],[59,57],[60,57],[58,3],[61,57]],"exportedModulesMap":[[120,1],[119,2],[118,3],[121,3],[122,3],[123,4],[64,5],[65,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,13],[75,14],[76,15],[77,15],[78,16],[79,17],[80,18],[81,19],[66,20],[115,3],[82,21],[83,22],[84,23],[116,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,32],[93,33],[94,34],[95,34],[96,35],[97,36],[99,37],[98,38],[100,39],[101,40],[102,3],[103,41],[104,42],[105,43],[106,44],[107,45],[108,46],[109,47],[110,48],[111,49],[112,50],[113,51],[114,52],[124,53],[125,3],[126,54],[117,17],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[36,3],[37,3],[38,3],[39,3],[7,3],[40,3],[45,3],[46,3],[41,3],[42,3],[43,3],[44,3],[8,3],[50,3],[47,3],[48,3],[49,3],[51,3],[9,3],[52,3],[53,3],[54,3],[55,3],[1,3],[10,3],[57,3],[56,3],[14,3],[13,3],[63,58],[62,59],[59,60],[60,60],[61,60]],"semanticDiagnosticsPerFile":[120,119,118,121,122,123,64,65,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,66,115,82,83,84,116,85,86,87,88,89,90,91,92,93,94,95,96,97,99,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,124,125,126,117,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,55,1,10,57,56,14,13,63,62,59,60,58,61]},"version":"4.7.4"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/typescript/lib/lib.esnext.full.d.ts","../src/qb/qbxmltypes/shared.ts","../src/qb/qbxmltypes/account.ts","../src/qb/qbxmltypes/customer.ts","../src/qb/qbxmltypes/employee.ts","../src/qb/qbxmltypes/vendor.ts","../src/qb/clientqbd.ts","../src/client.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/readline/promises.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/keyv/src/index.d.ts","../../../node_modules/@types/http-cache-semantics/index.d.ts","../../../node_modules/@types/cacheable-request/node_modules/responselike/index.d.ts","../../../node_modules/@types/cacheable-request/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/keyv/index.d.ts","../../../node_modules/@types/responselike/index.d.ts","../../../node_modules/@types/uuid/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true,"impliedFormat":1},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true,"impliedFormat":1},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"d96fa8a56871904776165ceb8e00bd56127e1a017bb2664cae76223b5f815141","impliedFormat":1},{"version":"9a7367358332a233c9dc60a17f218260d37ae6c6a7180fced2284ae814c25ed0","signature":"69e988f265d618eddde5b5bb32ec9ce98fdbb154709c6d54716cf8b3ce75b416","impliedFormat":1},{"version":"925975a66a6759342f0ef45270bb33d476a56f273d4f9c1e0450705b80502e5a","signature":"46566541702b71df881352bae09b6f22ddfc495ae77abdc15f5483235e1b27a1","impliedFormat":1},{"version":"00fb6ec7ca3645d7ca36cbd8acec73dce3eb471d30b01237d301d648e9649852","signature":"1d4afed7070c57463a1fb896621f2788774748ef126a04e13585a9ba1ee61116","impliedFormat":1},{"version":"cf9f4f6f542687409b1a38e1734782cee77808368f39603a20884a73a6de4870","signature":"681a5b334343123283fe2bb063e339671871ddf397092cdc97c46e730db68589","impliedFormat":1},{"version":"47f39c8ba26f35633070b34fc8e386d5f19808706d85510a5214569c837d1ddc","signature":"a768c407ff5bdf29e7c14fbdde30eab83946fc54d5d5b98c131f0fd50dd2cb36","impliedFormat":1},{"version":"7577ba85c0989c0f06a947a0090e8f0c75043b0b46a263af88780c0dbb1285cd","signature":"1305219fda44f702569fd7c2b3a2812cfad65f6b6a3c79547d3103f538368d9e","impliedFormat":1},{"version":"b1f79c5d223b21b7d7e5a0df475de466c70a0406f316d5bef70d437133ea5f6f","signature":"20d486da322ba3020d23dd399623f7430ff12abf66953a002fbd668f9ccb2550","impliedFormat":1},{"version":"9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true,"impliedFormat":1},{"version":"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9","impliedFormat":1},{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"c4cfc9a6e2ebb8bc8c0e2392dfc4056993ced3b35069ebf132ac18ca7a562881","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","impliedFormat":1},{"version":"f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true,"impliedFormat":1},{"version":"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","impliedFormat":1},{"version":"df36874d9e56aff601e921c4b3971d37cf66d14f6455935ce821e6cad13b1823","impliedFormat":1},{"version":"68915895d4a136df5cf5f90aaa41d8e1e47ec047e7781a150b5d0cf273dbb7a9","impliedFormat":1},{"version":"1abb206a4ecd13b21536b677d7d5f66e0d7316f0d44610197cfcc5776f78884a","impliedFormat":1},{"version":"09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"76527127c8b749bee5977408861ce3ee56ec19ddcea8704c628f98ca610283e6","impliedFormat":1},{"version":"a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","impliedFormat":1},{"version":"cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","impliedFormat":1},{"version":"cb4f3f03480e1727eae46400606cecaa97f550186ff8fa909ebc00db4180531b","impliedFormat":1},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"0830071706fa0e477fb5e95f0955cc1062b5948b146b7d4e03a126f12ad6085f","impliedFormat":1},{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d526e6f21d8cc66ac11ada32874e95ae88d870c6c9d3d9d4e03b1d1f9ad7b8e","impliedFormat":1},{"version":"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","impliedFormat":1},{"version":"ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a12806a1bde5e9f137bb79728d87a4ceaedf04e95efc9967d3288a3c252d9a7b","impliedFormat":1},{"version":"a7d9d2a35530516e191ade6dc804d7de42d45ff6620c0319cfb4469dbdbd8044","impliedFormat":1},{"version":"cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","impliedFormat":1},{"version":"e938de3d9b0516644b3e7069e3e94e325ca00eab9a664f5fa81e84c884d52d5e","impliedFormat":99},{"version":"f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","impliedFormat":1},{"version":"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","impliedFormat":1},{"version":"3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","impliedFormat":1},{"version":"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","impliedFormat":1},{"version":"65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","impliedFormat":1}],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"declaration":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[80,83,109,110,117,118,119,120],[69,98,110],[110],[80,110,117],[65,110],[68,110],[69,74,110],[70,80,81,88,98,109,110],[70,71,80,88,110],[72,110],[73,74,81,89,110],[74,98,106,110],[75,77,80,88,110],[76,110],[77,78,110],[79,80,110],[80,110],[80,81,82,98,109,110],[80,81,82,98,101,110],[110,114],[83,88,98,109,110],[80,81,83,84,88,98,106,109,110],[83,85,98,106,109,110],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116],[80,86,110],[87,109,110],[77,80,88,98,110],[89,110],[90,110],[68,91,110],[92,108,110,114],[93,110],[94,110],[80,95,96,110],[95,97,110,112],[80,98,99,100,101,110],[98,100,110],[98,99,110],[101,110],[102,110],[80,104,105,110],[104,105,110],[74,88,98,106,110],[107,110],[88,108,110],[69,83,94,109,110],[74,110],[98,110,111],[110,112],[110,113],[69,74,80,82,91,98,109,110,112,114],[98,110,115],[83,98,110,117],[80,98,110,117],[63,110],[59,60,61,62,110],[58,110],[63],[59,60,61,62],[58]],"referencedMap":[[121,1],[120,2],[119,3],[122,3],[123,3],[124,4],[65,5],[66,5],[68,6],[69,7],[70,8],[71,9],[72,10],[73,11],[74,12],[75,13],[76,14],[77,15],[78,15],[79,16],[80,17],[81,18],[82,19],[67,20],[116,3],[83,21],[84,22],[85,23],[117,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,32],[94,33],[95,34],[96,34],[97,35],[98,36],[100,37],[99,38],[101,39],[102,40],[103,3],[104,41],[105,42],[106,43],[107,44],[108,45],[109,46],[110,47],[111,48],[112,49],[113,50],[114,51],[115,52],[125,53],[126,3],[127,54],[118,17],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[36,3],[37,3],[38,3],[39,3],[7,3],[40,3],[45,3],[46,3],[41,3],[42,3],[43,3],[44,3],[8,3],[50,3],[47,3],[48,3],[49,3],[51,3],[9,3],[52,3],[53,3],[54,3],[55,3],[1,3],[10,3],[57,3],[56,3],[14,3],[13,3],[64,55],[63,56],[59,57],[60,57],[61,57],[58,3],[62,57]],"exportedModulesMap":[[121,1],[120,2],[119,3],[122,3],[123,3],[124,4],[65,5],[66,5],[68,6],[69,7],[70,8],[71,9],[72,10],[73,11],[74,12],[75,13],[76,14],[77,15],[78,15],[79,16],[80,17],[81,18],[82,19],[67,20],[116,3],[83,21],[84,22],[85,23],[117,24],[86,25],[87,26],[88,27],[89,28],[90,29],[91,30],[92,31],[93,32],[94,33],[95,34],[96,34],[97,35],[98,36],[100,37],[99,38],[101,39],[102,40],[103,3],[104,41],[105,42],[106,43],[107,44],[108,45],[109,46],[110,47],[111,48],[112,49],[113,50],[114,51],[115,52],[125,53],[126,3],[127,54],[118,17],[11,3],[12,3],[16,3],[15,3],[2,3],[17,3],[18,3],[19,3],[20,3],[21,3],[22,3],[23,3],[24,3],[3,3],[4,3],[28,3],[25,3],[26,3],[27,3],[29,3],[30,3],[31,3],[5,3],[32,3],[33,3],[34,3],[35,3],[6,3],[36,3],[37,3],[38,3],[39,3],[7,3],[40,3],[45,3],[46,3],[41,3],[42,3],[43,3],[44,3],[8,3],[50,3],[47,3],[48,3],[49,3],[51,3],[9,3],[52,3],[53,3],[54,3],[55,3],[1,3],[10,3],[57,3],[56,3],[14,3],[13,3],[64,58],[63,59],[59,60],[60,60],[61,60],[62,60]],"semanticDiagnosticsPerFile":[121,120,119,122,123,124,65,66,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,67,116,83,84,85,117,86,87,88,89,90,91,92,93,94,95,96,97,98,100,99,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,125,126,127,118,11,12,16,15,2,17,18,19,20,21,22,23,24,3,4,28,25,26,27,29,30,31,5,32,33,34,35,6,36,37,38,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,55,1,10,57,56,14,13,64,63,59,60,61,58,62]},"version":"4.7.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Conductor API wrapper",
5
5
  "author": "Danny Nemer <hi@DannyNemer.com>",
6
6
  "license": "MIT",
@@ -5,6 +5,11 @@ import type {
5
5
  AccountQueryRs,
6
6
  AccountRet,
7
7
  } from "@conductor/client/qb/qbXMLTypes/Account";
8
+ import type {
9
+ CustomerQueryRq,
10
+ CustomerQueryRs,
11
+ CustomerRet,
12
+ } from "@conductor/client/qb/qbXMLTypes/Customer";
8
13
  import type {
9
14
  EmployeeAdd,
10
15
  EmployeeAddRs,
@@ -69,9 +74,9 @@ export default class ClientQBD {
69
74
  }
70
75
 
71
76
  /**
72
- * This message allows you to perform the same activities as a user does in
73
- * the QB New Account form, which can be accessed in QB by selecting
74
- * Lists->Chart of Accounts->Accounts->New.
77
+ * Perform the same activities as a user does in the QB New Account form,
78
+ * which can be accessed in QB by selecting "Lists" → "Chart of Accounts" →
79
+ * "Accounts" "New".
75
80
  *
76
81
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountadd
77
82
  */
@@ -90,12 +95,12 @@ export default class ClientQBD {
90
95
  }
91
96
 
92
97
  /**
93
- * `AccountQuery` is a list query that returns data for all accounts that match
94
- * the provided filter criteria. Notice that it returns only data internal to
95
- * the account itself. It does not return any data about transactions
96
- * involving the account. It does, however, return the parent account, if
97
- * there is one. You can search across all accounts or you can specify an
98
- * account type and search only those.
98
+ * `AccountQuery` is a list query that returns data for all accounts that
99
+ * match the provided filter criteria. Notice that it returns only data
100
+ * internal to the account itself. It does not return any data about
101
+ * transactions involving the account. It does, however, return the parent
102
+ * account, if there is one. You can search across all accounts or you can
103
+ * specify an account type and search only those.
99
104
  *
100
105
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/accountquery
101
106
  */
@@ -114,7 +119,33 @@ export default class ClientQBD {
114
119
  }
115
120
 
116
121
  /**
117
- * Adds an employee with personal data about the employee as well as certain payroll-related data.
122
+ * Returns data for the specified customers.
123
+ *
124
+ * Important: We highly recommend that you use the `IncludeRetElement` tag in
125
+ * your `CustomerQuery` to include any data you want but do NOT include the
126
+ * `ShipAddress` data in the `Response`, unless you need to get the shipping
127
+ * address for a particular customer. Excluding the shipping address data will
128
+ * significantly improve the performance of the `CustomerQuery`.
129
+ *
130
+ * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/customerquery
131
+ */
132
+ public async customerQuery(
133
+ qbwcUsername: string,
134
+ params: CustomerQueryRq
135
+ ): Promise<CustomerRet> {
136
+ const response = (await this.sendRequest(qbwcUsername, {
137
+ CustomerQueryRq: params,
138
+ })) as { CustomerQueryRs: CustomerQueryRs };
139
+ const responseBody = response.CustomerQueryRs.CustomerRet;
140
+ if (!responseBody) {
141
+ throw new Error("No response");
142
+ }
143
+ return responseBody;
144
+ }
145
+
146
+ /**
147
+ * Adds an employee with personal data about the employee as well as certain
148
+ * payroll-related data.
118
149
  *
119
150
  * https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop/employeeAdd
120
151
  */
@@ -5,6 +5,7 @@ import type {
5
5
  DataExtRet,
6
6
  NameFilter,
7
7
  NameRangeFilter,
8
+ ParentRef,
8
9
  SalesTaxCodeRef,
9
10
  } from "@conductor/client/qb/qbXMLTypes/shared";
10
11
 
@@ -259,11 +260,6 @@ export interface AccountRet {
259
260
  DataExtRet?: DataExtRet;
260
261
  }
261
262
 
262
- interface ParentRef {
263
- ListID?: string;
264
- FullName?: string;
265
- }
266
-
267
263
  type AccountType =
268
264
  | "AccountsPayable"
269
265
  | "AccountsReceivable"
@@ -0,0 +1,193 @@
1
+ import type {
2
+ ActiveStatus,
3
+ AdditionalContactRef,
4
+ AdditionalNotesRet,
5
+ ClassFilter,
6
+ ClassRef,
7
+ ContactsRet,
8
+ CurrencyFilter,
9
+ CurrencyRef,
10
+ DataExtRet,
11
+ NameFilter,
12
+ NameRangeFilter,
13
+ ParentRef,
14
+ SalesTaxCodeRef,
15
+ SalesTaxCountry,
16
+ ShipAddress,
17
+ TermsRef,
18
+ TotalBalanceFilter,
19
+ } from "@conductor/client/qb/qbXMLTypes/shared";
20
+
21
+ export interface CustomerQueryRq {
22
+ ListID?: string;
23
+ FullName?: string;
24
+ MaxReturned?: number;
25
+ ActiveStatus?: ActiveStatus;
26
+ FromModifiedDate?: Date;
27
+ ToModifiedDate?: Date;
28
+ NameFilter?: NameFilter;
29
+ NameRangeFilter?: NameRangeFilter;
30
+ TotalBalanceFilter?: TotalBalanceFilter;
31
+ CurrencyFilter?: CurrencyFilter;
32
+ ClassFilter?: ClassFilter;
33
+ IncludeRetElement?: string;
34
+ OwnerID?: string;
35
+ }
36
+
37
+ export interface CustomerQueryRs {
38
+ CustomerRet?: CustomerRet;
39
+ }
40
+
41
+ export interface CustomerRet {
42
+ ListID: string;
43
+ TimeCreated: Date;
44
+ TimeModified: Date;
45
+ EditSequence: string;
46
+ Name: string;
47
+ FullName: string;
48
+ IsActive?: boolean;
49
+ ClassRef?: ClassRef;
50
+ ParentRef?: ParentRef;
51
+ Sublevel: number;
52
+ CompanyName?: string;
53
+ Salutation?: string;
54
+ FirstName?: string;
55
+ MiddleName?: string;
56
+ LastName?: string;
57
+ JobTitle?: string;
58
+ BillAddress?: BillAddress;
59
+ BillAddressBlock?: BillAddressBlock;
60
+ ShipAddress?: ShipAddress;
61
+ ShipAddressBlock?: ShipAddressBlock;
62
+ ShipToAddress?: ShipToAddress;
63
+ Phone?: string;
64
+ AltPhone?: string;
65
+ Fax?: string;
66
+ Email?: string;
67
+ Cc?: string;
68
+ Contact?: string;
69
+ AltContact?: string;
70
+ AdditionalContactRef?: AdditionalContactRef;
71
+ ContactsRet?: ContactsRet;
72
+ CustomerTypeRef?: CustomerTypeRef;
73
+ TermsRef?: TermsRef;
74
+ SalesRepRef?: SalesRepRef;
75
+ Balance?: string;
76
+ TotalBalance?: string;
77
+ SalesTaxCodeRef?: SalesTaxCodeRef;
78
+ ItemSalesTaxRef?: ItemSalesTaxRef;
79
+ SalesTaxCountry?: SalesTaxCountry;
80
+ ResaleNumber?: string;
81
+ AccountNumber?: string;
82
+ CreditLimit?: string;
83
+ PreferredPaymentMethodRef?: PreferredPaymentMethodRef;
84
+ CreditCardInfo?: CreditCardInfo;
85
+ JobStatus?: JobStatus;
86
+ JobStartDate?: Date;
87
+ JobProjectedEndDate?: Date;
88
+ JobEndDate?: Date;
89
+ JobDesc?: string;
90
+ JobTypeRef?: JobTypeRef;
91
+ Notes?: string;
92
+ AdditionalNotesRet?: AdditionalNotesRet;
93
+ PreferredDeliveryMethod?: PreferredDeliveryMethod;
94
+ PriceLevelRef?: PriceLevelRef;
95
+ ExternalGUID?: string;
96
+ TaxRegistrationNumber?: string;
97
+ CurrencyRef?: CurrencyRef;
98
+ DataExtRet?: DataExtRet;
99
+ }
100
+
101
+ interface BillAddress {
102
+ Addr1?: string;
103
+ Addr2?: string;
104
+ Addr3?: string;
105
+ Addr4?: string;
106
+ Addr5?: string;
107
+ City?: string;
108
+ State?: string;
109
+ PostalCode?: string;
110
+ Country?: string;
111
+ Note?: string;
112
+ }
113
+
114
+ interface BillAddressBlock {
115
+ Addr1?: string;
116
+ Addr2?: string;
117
+ Addr3?: string;
118
+ Addr4?: string;
119
+ Addr5?: string;
120
+ }
121
+
122
+ interface ShipAddressBlock {
123
+ Addr1?: string;
124
+ Addr2?: string;
125
+ Addr3?: string;
126
+ Addr4?: string;
127
+ Addr5?: string;
128
+ }
129
+
130
+ interface ShipToAddress {
131
+ Addr1?: string;
132
+ Addr2?: string;
133
+ Addr3?: string;
134
+ Addr4?: string;
135
+ Addr5?: string;
136
+ City?: string;
137
+ State?: string;
138
+ PostalCode?: string;
139
+ Country?: string;
140
+ Note?: string;
141
+ DefaultShipTo?: boolean;
142
+ }
143
+
144
+ interface CustomerTypeRef {
145
+ ListID?: string;
146
+ FullName?: string;
147
+ }
148
+
149
+ interface SalesRepRef {
150
+ ListID?: string;
151
+ FullName?: string;
152
+ }
153
+
154
+ interface ItemSalesTaxRef {
155
+ ListID?: string;
156
+ FullName?: string;
157
+ }
158
+
159
+ interface PreferredPaymentMethodRef {
160
+ ListID?: string;
161
+ FullName?: string;
162
+ }
163
+
164
+ interface CreditCardInfo {
165
+ CreditCardNumber?: string;
166
+ ExpirationMonth?: number;
167
+ ExpirationYear?: number;
168
+ NameOnCard?: string;
169
+ CreditCardAddress?: string;
170
+ CreditCardPostalCode?: string;
171
+ }
172
+
173
+ // Default is "None"
174
+ type JobStatus =
175
+ | "Awarded"
176
+ | "Closed"
177
+ | "InProgress"
178
+ | "None"
179
+ | "NotAwarded"
180
+ | "Pending";
181
+
182
+ interface JobTypeRef {
183
+ ListID?: string;
184
+ FullName?: string;
185
+ }
186
+
187
+ // Default is "None"
188
+ type PreferredDeliveryMethod = "Email" | "Fax" | "None";
189
+
190
+ interface PriceLevelRef {
191
+ ListID?: string;
192
+ FullName?: string;
193
+ }
@@ -3,13 +3,19 @@ import type {
3
3
  AdditionalContactRef,
4
4
  AdditionalNotesRet,
5
5
  BillingRateRef,
6
+ ClassFilter,
6
7
  ClassRef,
8
+ ContactsRet,
7
9
  CurrencyFilter,
8
10
  CurrencyRef,
9
11
  DataExtRet,
10
12
  NameFilter,
11
13
  NameRangeFilter,
12
14
  SalesTaxCodeRef,
15
+ SalesTaxCountry,
16
+ ShipAddress,
17
+ TermsRef,
18
+ TotalBalanceFilter,
13
19
  } from "@conductor/client/qb/qbXMLTypes/shared";
14
20
 
15
21
  export interface VendorQueryRq {
@@ -32,40 +38,71 @@ export interface VendorQueryRs {
32
38
  VendorRet?: VendorRet;
33
39
  }
34
40
 
35
- interface TotalBalanceFilter {
36
- Operator: Operator;
37
- Amount: string;
38
- }
39
-
40
- type Operator =
41
- | "Equal"
42
- | "GreaterThan"
43
- | "GreaterThanEqual"
44
- | "LessThan"
45
- | "LessThanEqual";
46
-
47
- interface ClassFilter {
48
- ListID?: string;
49
- FullName?: string;
50
- ListIDWithChildren?: string;
51
- FullNameWithChildren?: string;
52
- }
53
-
54
41
  export interface VendorRet {
55
42
  ListID: string;
56
43
  TimeCreated: Date;
57
44
  TimeModified: Date;
58
45
  EditSequence: string;
59
46
  Name: string;
47
+ /**
48
+ * If `IsActive` is `true`, this object is currently enabled for use by
49
+ * QuickBooks. The default value is `true`.
50
+ */
60
51
  IsActive?: boolean;
52
+ /**
53
+ * Classes can be used to separate transactions into meaningful categories.
54
+ * (For example, transactions could be classified according to department,
55
+ * business location, or type of work.) In QuickBooks, class tracking is off
56
+ * by default. A `ClassRef` aggregate refers to one of these named classes.
57
+ * For example, in a `TimeTracking` message, `ClassRef` refers to the
58
+ * QuickBooks class into which the timed activity falls. If a `ClassRef`
59
+ * aggregate includes both `FullName` and `ListID`, `FullName` will be
60
+ * ignored. In an `InvoiceAdd` request, if you specify a `ClassRef` for the
61
+ * whole invoice, that same `ClassRef` is automatically used in the line
62
+ * items. If you want to clear that (that is, have NO `ClassRef` for the line
63
+ * item, you can clear it in the line item by simply not specifying it in the
64
+ * line item.
65
+ */
61
66
  ClassRef?: ClassRef;
67
+ /**
68
+ * Is the current entity a tax agency.
69
+ */
62
70
  IsTaxAgency?: boolean;
71
+ /**
72
+ * The name of the QuickBooks user’s business, as specified in QuickBooks.
73
+ * `CompanyName` and `Address` are used on invoices, checks, and other forms.
74
+ * (`LegalCompanyName` and `LegalAddress`, on the other hand, are used on a
75
+ * company’s tax forms and pay stubs.)
76
+ */
63
77
  CompanyName?: string;
78
+ /**
79
+ * A formal reference, such as Mr. or Dr., that precedes a name.
80
+ */
64
81
  Salutation?: string;
82
+ /**
83
+ * The first name of a customer, vendor, employee, or person on the “other
84
+ * names” list.
85
+ */
65
86
  FirstName?: string;
87
+ /**
88
+ * The middle name of a customer, vendor, employee, or person on the “other
89
+ * names” list.
90
+ */
66
91
  MiddleName?: string;
92
+ /**
93
+ * The last name of a customer, vendor, employee, or person on the “other
94
+ * names” list.
95
+ */
67
96
  LastName?: string;
97
+ /**
98
+ * The job title of a customer, vendor, employee, or person on the “other
99
+ * names” list.
100
+ */
68
101
  JobTitle?: string;
102
+ /**
103
+ * If an address request fails, some combination of address fields might be
104
+ * too long.
105
+ */
69
106
  VendorAddress?: VendorAddress;
70
107
  VendorAddressBlock?: VendorAddressBlock;
71
108
  ShipAddress?: ShipAddress;
@@ -127,46 +164,11 @@ interface VendorAddressBlock {
127
164
  Addr5?: string;
128
165
  }
129
166
 
130
- interface ShipAddress {
131
- Addr1?: string;
132
- Addr2?: string;
133
- Addr3?: string;
134
- Addr4?: string;
135
- Addr5?: string;
136
- City?: string;
137
- State?: string;
138
- PostalCode?: string;
139
- Country?: string;
140
- Note?: string;
141
- }
142
-
143
- interface ContactsRet {
144
- ListID: string;
145
- TimeCreated: Date;
146
- TimeModified: Date;
147
- EditSequence: string;
148
- Contact?: string;
149
- Salutation?: string;
150
- FirstName?: string;
151
- MiddleName?: string;
152
- LastName?: string;
153
- JobTitle?: string;
154
- AdditionalContactRef?: AdditionalContactRef;
155
- }
156
-
157
167
  interface VendorTypeRef {
158
168
  ListID?: string;
159
169
  FullName?: string;
160
170
  }
161
171
 
162
- interface TermsRef {
163
- ListID?: string;
164
- FullName?: string;
165
- }
166
-
167
- // Default is Canada
168
- type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";
169
-
170
172
  interface SalesTaxReturnRef {
171
173
  ListID?: string;
172
174
  FullNam?: string;
@@ -82,3 +82,62 @@ export interface CurrencyRef {
82
82
  ListID?: string;
83
83
  FullName?: string;
84
84
  }
85
+
86
+ export interface TotalBalanceFilter {
87
+ Operator: Operator;
88
+ Amount: string;
89
+ }
90
+
91
+ type Operator =
92
+ | "Equal"
93
+ | "GreaterThan"
94
+ | "GreaterThanEqual"
95
+ | "LessThan"
96
+ | "LessThanEqual";
97
+
98
+ export interface ClassFilter {
99
+ ListID?: string;
100
+ FullName?: string;
101
+ ListIDWithChildren?: string;
102
+ FullNameWithChildren?: string;
103
+ }
104
+
105
+ export interface ParentRef {
106
+ ListID?: string;
107
+ FullName?: string;
108
+ }
109
+
110
+ export interface ShipAddress {
111
+ Addr1?: string;
112
+ Addr2?: string;
113
+ Addr3?: string;
114
+ Addr4?: string;
115
+ Addr5?: string;
116
+ City?: string;
117
+ State?: string;
118
+ PostalCode?: string;
119
+ Country?: string;
120
+ Note?: string;
121
+ }
122
+
123
+ export interface ContactsRet {
124
+ ListID: string;
125
+ TimeCreated: Date;
126
+ TimeModified: Date;
127
+ EditSequence: string;
128
+ Contact?: string;
129
+ Salutation?: string;
130
+ FirstName?: string;
131
+ MiddleName?: string;
132
+ LastName?: string;
133
+ JobTitle?: string;
134
+ AdditionalContactRef?: AdditionalContactRef;
135
+ }
136
+
137
+ export interface TermsRef {
138
+ ListID?: string;
139
+ FullName?: string;
140
+ }
141
+
142
+ // Default is Canada
143
+ export type SalesTaxCountry = "Australia" | "Canada" | "UK" | "US";