conductor-node 12.18.1 → 12.19.0
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 +23 -0
- package/package.json +1 -5
- package/resources/qbd/index.d.ts +1 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +5 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +1 -0
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/inventory-items.d.ts +2 -3
- package/resources/qbd/inventory-items.d.ts.map +1 -1
- package/resources/qbd/inventory-items.js.map +1 -1
- package/resources/qbd/inventory-items.mjs.map +1 -1
- package/resources/qbd/other-charge-items.d.ts +933 -0
- package/resources/qbd/other-charge-items.d.ts.map +1 -0
- package/resources/qbd/other-charge-items.js +98 -0
- package/resources/qbd/other-charge-items.js.map +1 -0
- package/resources/qbd/other-charge-items.mjs +93 -0
- package/resources/qbd/other-charge-items.mjs.map +1 -0
- package/resources/qbd/qbd.d.ts +4 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +5 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +5 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/src/resources/qbd/index.ts +9 -0
- package/src/resources/qbd/inventory-items.ts +2 -3
- package/src/resources/qbd/other-charge-items.ts +1113 -0
- package/src/resources/qbd/qbd.ts +25 -0
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/qbd/qbd.ts
CHANGED
|
@@ -283,6 +283,16 @@ import {
|
|
|
283
283
|
NonInventoryItems,
|
|
284
284
|
NonInventoryItemsCursorPage,
|
|
285
285
|
} from "./non-inventory-items.js";
|
|
286
|
+
import * as OtherChargeItemsAPI from "./other-charge-items.js";
|
|
287
|
+
import {
|
|
288
|
+
OtherChargeItem,
|
|
289
|
+
OtherChargeItemCreateParams,
|
|
290
|
+
OtherChargeItemListParams,
|
|
291
|
+
OtherChargeItemRetrieveParams,
|
|
292
|
+
OtherChargeItemUpdateParams,
|
|
293
|
+
OtherChargeItems,
|
|
294
|
+
OtherChargeItemsCursorPage,
|
|
295
|
+
} from "./other-charge-items.js";
|
|
286
296
|
import * as OtherNamesAPI from "./other-names.js";
|
|
287
297
|
import {
|
|
288
298
|
OtherName,
|
|
@@ -522,6 +532,9 @@ export class Qbd extends APIResource {
|
|
|
522
532
|
nonInventoryItems: NonInventoryItemsAPI.NonInventoryItems = new NonInventoryItemsAPI.NonInventoryItems(
|
|
523
533
|
this._client,
|
|
524
534
|
);
|
|
535
|
+
otherChargeItems: OtherChargeItemsAPI.OtherChargeItems = new OtherChargeItemsAPI.OtherChargeItems(
|
|
536
|
+
this._client,
|
|
537
|
+
);
|
|
525
538
|
otherNames: OtherNamesAPI.OtherNames = new OtherNamesAPI.OtherNames(this._client);
|
|
526
539
|
paymentMethods: PaymentMethodsAPI.PaymentMethods = new PaymentMethodsAPI.PaymentMethods(this._client);
|
|
527
540
|
payrollWageItems: PayrollWageItemsAPI.PayrollWageItems = new PayrollWageItemsAPI.PayrollWageItems(
|
|
@@ -640,6 +653,8 @@ Qbd.JournalEntries = JournalEntries;
|
|
|
640
653
|
Qbd.JournalEntriesCursorPage = JournalEntriesCursorPage;
|
|
641
654
|
Qbd.NonInventoryItems = NonInventoryItems;
|
|
642
655
|
Qbd.NonInventoryItemsCursorPage = NonInventoryItemsCursorPage;
|
|
656
|
+
Qbd.OtherChargeItems = OtherChargeItems;
|
|
657
|
+
Qbd.OtherChargeItemsCursorPage = OtherChargeItemsCursorPage;
|
|
643
658
|
Qbd.OtherNames = OtherNames;
|
|
644
659
|
Qbd.PaymentMethods = PaymentMethods;
|
|
645
660
|
Qbd.PayrollWageItems = PayrollWageItems;
|
|
@@ -964,6 +979,16 @@ export declare namespace Qbd {
|
|
|
964
979
|
type NonInventoryItemListParams as NonInventoryItemListParams,
|
|
965
980
|
};
|
|
966
981
|
|
|
982
|
+
export {
|
|
983
|
+
OtherChargeItems as OtherChargeItems,
|
|
984
|
+
type OtherChargeItem as OtherChargeItem,
|
|
985
|
+
OtherChargeItemsCursorPage as OtherChargeItemsCursorPage,
|
|
986
|
+
type OtherChargeItemCreateParams as OtherChargeItemCreateParams,
|
|
987
|
+
type OtherChargeItemRetrieveParams as OtherChargeItemRetrieveParams,
|
|
988
|
+
type OtherChargeItemUpdateParams as OtherChargeItemUpdateParams,
|
|
989
|
+
type OtherChargeItemListParams as OtherChargeItemListParams,
|
|
990
|
+
};
|
|
991
|
+
|
|
967
992
|
export {
|
|
968
993
|
OtherNames as OtherNames,
|
|
969
994
|
type OtherName as OtherName,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.
|
|
1
|
+
export const VERSION = '12.19.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.
|
|
1
|
+
export declare const VERSION = "12.19.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.
|
|
1
|
+
export const VERSION = '12.19.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|