conductor-node 14.7.0 → 14.8.1
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/CHANGELOG.md +53 -0
- package/internal/utils/env.js +2 -2
- package/internal/utils/env.js.map +1 -1
- package/internal/utils/env.mjs +2 -2
- package/internal/utils/env.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/qbd/credit-memos.d.mts +12 -0
- package/resources/qbd/credit-memos.d.mts.map +1 -1
- package/resources/qbd/credit-memos.d.ts +12 -0
- package/resources/qbd/credit-memos.d.ts.map +1 -1
- package/resources/qbd/inventory-assembly-items.d.mts +1 -1
- package/resources/qbd/inventory-assembly-items.d.mts.map +1 -1
- package/resources/qbd/inventory-assembly-items.d.ts +1 -1
- package/resources/qbd/inventory-assembly-items.d.ts.map +1 -1
- package/resources/qbd/inventory-items.d.mts +1 -1
- package/resources/qbd/inventory-items.d.mts.map +1 -1
- package/resources/qbd/inventory-items.d.ts +1 -1
- package/resources/qbd/inventory-items.d.ts.map +1 -1
- package/resources/qbd/invoices.d.mts +12 -0
- package/resources/qbd/invoices.d.mts.map +1 -1
- package/resources/qbd/invoices.d.ts +12 -0
- package/resources/qbd/invoices.d.ts.map +1 -1
- package/resources/qbd/non-inventory-items.d.mts +1 -1
- package/resources/qbd/non-inventory-items.d.mts.map +1 -1
- package/resources/qbd/non-inventory-items.d.ts +1 -1
- package/resources/qbd/non-inventory-items.d.ts.map +1 -1
- package/resources/qbd/other-charge-items.d.mts +1 -1
- package/resources/qbd/other-charge-items.d.mts.map +1 -1
- package/resources/qbd/other-charge-items.d.ts +1 -1
- package/resources/qbd/other-charge-items.d.ts.map +1 -1
- package/resources/qbd/purchase-orders.d.mts +12 -0
- package/resources/qbd/purchase-orders.d.mts.map +1 -1
- package/resources/qbd/purchase-orders.d.ts +12 -0
- package/resources/qbd/purchase-orders.d.ts.map +1 -1
- package/resources/qbd/sales-receipts.d.mts +12 -0
- package/resources/qbd/sales-receipts.d.mts.map +1 -1
- package/resources/qbd/sales-receipts.d.ts +12 -0
- package/resources/qbd/sales-receipts.d.ts.map +1 -1
- package/resources/qbd/service-items.d.mts +1 -1
- package/resources/qbd/service-items.d.mts.map +1 -1
- package/resources/qbd/service-items.d.ts +1 -1
- package/resources/qbd/service-items.d.ts.map +1 -1
- package/src/internal/utils/env.ts +2 -2
- package/src/resources/qbd/credit-memos.ts +14 -0
- package/src/resources/qbd/inventory-assembly-items.ts +1 -1
- package/src/resources/qbd/inventory-items.ts +1 -1
- package/src/resources/qbd/invoices.ts +14 -0
- package/src/resources/qbd/non-inventory-items.ts +1 -1
- package/src/resources/qbd/other-charge-items.ts +1 -1
- package/src/resources/qbd/purchase-orders.ts +14 -0
- package/src/resources/qbd/sales-receipts.ts +14 -0
- package/src/resources/qbd/service-items.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -688,6 +688,13 @@ export namespace Invoice {
|
|
|
688
688
|
*/
|
|
689
689
|
quantity: number | null;
|
|
690
690
|
|
|
691
|
+
/**
|
|
692
|
+
* The date on which the service for this invoice line group was or will be
|
|
693
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
694
|
+
* service items.
|
|
695
|
+
*/
|
|
696
|
+
serviceDate: string | null;
|
|
697
|
+
|
|
691
698
|
/**
|
|
692
699
|
* Indicates whether the individual items in this invoice line group and their
|
|
693
700
|
* separate amounts appear on printed forms.
|
|
@@ -2135,6 +2142,13 @@ export namespace InvoiceCreateParams {
|
|
|
2135
2142
|
*/
|
|
2136
2143
|
quantity?: number;
|
|
2137
2144
|
|
|
2145
|
+
/**
|
|
2146
|
+
* The date on which the service for this invoice line group was or will be
|
|
2147
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
2148
|
+
* service items.
|
|
2149
|
+
*/
|
|
2150
|
+
serviceDate?: string;
|
|
2151
|
+
|
|
2138
2152
|
/**
|
|
2139
2153
|
* The unit-of-measure used for the `quantity` in this invoice line group. Must be
|
|
2140
2154
|
* a valid unit within the item's available units of measure.
|
|
@@ -372,7 +372,7 @@ export namespace NonInventoryItem {
|
|
|
372
372
|
/**
|
|
373
373
|
* The income account used to track revenue from sales of this item.
|
|
374
374
|
*/
|
|
375
|
-
incomeAccount: SalesAndPurchaseDetails.IncomeAccount;
|
|
375
|
+
incomeAccount: SalesAndPurchaseDetails.IncomeAccount | null;
|
|
376
376
|
|
|
377
377
|
/**
|
|
378
378
|
* The preferred vendor from whom this item is typically purchased.
|
|
@@ -359,7 +359,7 @@ export namespace OtherChargeItem {
|
|
|
359
359
|
/**
|
|
360
360
|
* The income account used to track revenue from sales of this item.
|
|
361
361
|
*/
|
|
362
|
-
incomeAccount: SalesAndPurchaseDetails.IncomeAccount;
|
|
362
|
+
incomeAccount: SalesAndPurchaseDetails.IncomeAccount | null;
|
|
363
363
|
|
|
364
364
|
/**
|
|
365
365
|
* The preferred vendor from whom this item is typically purchased.
|
|
@@ -568,6 +568,13 @@ export namespace PurchaseOrder {
|
|
|
568
568
|
*/
|
|
569
569
|
quantity: number | null;
|
|
570
570
|
|
|
571
|
+
/**
|
|
572
|
+
* The date on which the service for this purchase order line group was or will be
|
|
573
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
574
|
+
* service items.
|
|
575
|
+
*/
|
|
576
|
+
serviceDate: string | null;
|
|
577
|
+
|
|
571
578
|
/**
|
|
572
579
|
* Indicates whether the individual items in this purchase order line group and
|
|
573
580
|
* their separate amounts appear on printed forms.
|
|
@@ -1889,6 +1896,13 @@ export namespace PurchaseOrderCreateParams {
|
|
|
1889
1896
|
*/
|
|
1890
1897
|
quantity?: number;
|
|
1891
1898
|
|
|
1899
|
+
/**
|
|
1900
|
+
* The date on which the service for this purchase order line group was or will be
|
|
1901
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
1902
|
+
* service items.
|
|
1903
|
+
*/
|
|
1904
|
+
serviceDate?: string;
|
|
1905
|
+
|
|
1892
1906
|
/**
|
|
1893
1907
|
* The unit-of-measure used for the `quantity` in this purchase order line group.
|
|
1894
1908
|
* Must be a valid unit within the item's available units of measure.
|
|
@@ -854,6 +854,13 @@ export namespace SalesReceipt {
|
|
|
854
854
|
*/
|
|
855
855
|
quantity: number | null;
|
|
856
856
|
|
|
857
|
+
/**
|
|
858
|
+
* The date on which the service for this sales receipt line group was or will be
|
|
859
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
860
|
+
* service items.
|
|
861
|
+
*/
|
|
862
|
+
serviceDate: string | null;
|
|
863
|
+
|
|
857
864
|
/**
|
|
858
865
|
* Indicates whether the individual items in this sales receipt line group and
|
|
859
866
|
* their separate amounts appear on printed forms.
|
|
@@ -2664,6 +2671,13 @@ export namespace SalesReceiptCreateParams {
|
|
|
2664
2671
|
*/
|
|
2665
2672
|
quantity?: number;
|
|
2666
2673
|
|
|
2674
|
+
/**
|
|
2675
|
+
* The date on which the service for this sales receipt line group was or will be
|
|
2676
|
+
* performed, in ISO 8601 format (YYYY-MM-DD). This is particularly relevant for
|
|
2677
|
+
* service items.
|
|
2678
|
+
*/
|
|
2679
|
+
serviceDate?: string;
|
|
2680
|
+
|
|
2667
2681
|
/**
|
|
2668
2682
|
* The unit-of-measure used for the `quantity` in this sales receipt line group.
|
|
2669
2683
|
* Must be a valid unit within the item's available units of measure.
|
|
@@ -352,7 +352,7 @@ export namespace ServiceItem {
|
|
|
352
352
|
/**
|
|
353
353
|
* The income account used to track revenue from sales of this item.
|
|
354
354
|
*/
|
|
355
|
-
incomeAccount: SalesAndPurchaseDetails.IncomeAccount;
|
|
355
|
+
incomeAccount: SalesAndPurchaseDetails.IncomeAccount | null;
|
|
356
356
|
|
|
357
357
|
/**
|
|
358
358
|
* The preferred vendor from whom this item is typically purchased.
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '14.
|
|
1
|
+
export const VERSION = '14.8.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "14.
|
|
1
|
+
export declare const VERSION = "14.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "14.
|
|
1
|
+
export declare const VERSION = "14.8.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '14.
|
|
1
|
+
export const VERSION = '14.8.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|