conductor-node 11.6.12 → 11.6.14

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.12",
3
+ "version": "11.6.14",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -36,7 +36,7 @@
36
36
  "prepublishOnly": "pnpm jest"
37
37
  },
38
38
  "dependencies": {
39
- "axios": "^1.7.3"
39
+ "axios": "^1.7.4"
40
40
  },
41
41
  "devDependencies": {
42
42
  "axios-mock-adapter": "^1.22.0",
@@ -3652,13 +3652,13 @@ export interface DataExtAdd {
3652
3652
  /** The name of the data extension. If this is a custom field, `DataExtName` will be visible as a label in the QuickBooks user interface. Also because `OwnerID` and `DataExtName` together make the data extension unique, and because custom fields all have the same `OwnerID` of zero, the `DataExtName` must be a unique value among existing custom fields. In contrast, the `DataExtName` for private data extensions must be unique only for the specified `OwnerID` GUID. */
3653
3653
  DataExtName: string;
3654
3654
  /** The type of list object (e.g. Customer) that this data extension is attached to. */
3655
- ListDataExtType: ListDataExtType;
3655
+ ListDataExtType?: ListDataExtType;
3656
3656
  /** Refers to a list object. In a `DataExtAdd` request, the list object ref must be the same type as the type specified in `ListDataExtType`.If a `ListObjRef` aggregate includes both `FullName` and `ListID`, `FullName` will be ignored. */
3657
- ListObjRef: ListObjRef;
3657
+ ListObjRef?: ListObjRef;
3658
3658
  /** The type of transaction that the data extension belongs to. */
3659
- TxnDataExtType: TxnDataExtType;
3659
+ TxnDataExtType?: TxnDataExtType;
3660
3660
  /** 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. */
3661
- TxnID: string;
3661
+ TxnID?: string;
3662
3662
  /** Identification number of the transaction line. (`TxnLineID` is supported as of v2.0 of the SDK. With qbXML v1.0 and v1.1, `TxnLineID` is always returned as zero.) If you need to add a new transaction line in a transaction Mod request, you can do so by setting the `TxnLineID` to -1. */
3663
3663
  TxnLineID?: string;
3664
3664
  /** Not supported. */
@@ -3679,13 +3679,13 @@ export interface DataExtMod {
3679
3679
  /** The name of the data extension. If this is a custom field, `DataExtName` will be visible as a label in the QuickBooks user interface. Also because `OwnerID` and `DataExtName` together make the data extension unique, and because custom fields all have the same `OwnerID` of zero, the `DataExtName` must be a unique value among existing custom fields. In contrast, the `DataExtName` for private data extensions must be unique only for the specified `OwnerID` GUID. */
3680
3680
  DataExtName: string;
3681
3681
  /** The type of list object (e.g. Customer) that this data extension is attached to. */
3682
- ListDataExtType: ListDataExtType;
3682
+ ListDataExtType?: ListDataExtType;
3683
3683
  /** Refers to a list object. In a `DataExtAdd` request, the list object ref must be the same type as the type specified in `ListDataExtType`.If a `ListObjRef` aggregate includes both `FullName` and `ListID`, `FullName` will be ignored. */
3684
- ListObjRef: ListObjRef;
3684
+ ListObjRef?: ListObjRef;
3685
3685
  /** The type of transaction that the data extension belongs to. */
3686
- TxnDataExtType: TxnDataExtType;
3686
+ TxnDataExtType?: TxnDataExtType;
3687
3687
  /** 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. */
3688
- TxnID: string;
3688
+ TxnID?: string;
3689
3689
  /** Identification number of the transaction line. (`TxnLineID` is supported as of v2.0 of the SDK. With qbXML v1.0 and v1.1, `TxnLineID` is always returned as zero.) If you need to add a new transaction line in a transaction Mod request, you can do so by setting the `TxnLineID` to -1. */
3690
3690
  TxnLineID?: string;
3691
3691
  /** Not supported. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "11.6.12",
3
+ "version": "11.6.14",
4
4
  "description": "QuickBooks Desktop API for Node.js and TypeScript",
5
5
  "keywords": [
6
6
  "QuickBooks",
@@ -36,7 +36,7 @@
36
36
  "prepublishOnly": "pnpm jest"
37
37
  },
38
38
  "dependencies": {
39
- "axios": "^1.7.3"
39
+ "axios": "^1.7.4"
40
40
  },
41
41
  "devDependencies": {
42
42
  "axios-mock-adapter": "^1.22.0",