conductor-node 12.0.0-beta.17 → 12.0.0-beta.18

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.
Files changed (45) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +8 -29
  3. package/resources/auth-sessions.d.ts +1 -1
  4. package/resources/auth-sessions.js +1 -1
  5. package/resources/auth-sessions.mjs +1 -1
  6. package/resources/qbd/company.d.ts +354 -0
  7. package/resources/qbd/company.d.ts.map +1 -0
  8. package/resources/qbd/company.js +22 -0
  9. package/resources/qbd/company.js.map +1 -0
  10. package/resources/qbd/company.mjs +18 -0
  11. package/resources/qbd/company.mjs.map +1 -0
  12. package/resources/qbd/index.d.ts +2 -0
  13. package/resources/qbd/index.d.ts.map +1 -1
  14. package/resources/qbd/index.js +6 -2
  15. package/resources/qbd/index.js.map +1 -1
  16. package/resources/qbd/index.mjs +2 -0
  17. package/resources/qbd/index.mjs.map +1 -1
  18. package/resources/qbd/preferences.d.ts +591 -0
  19. package/resources/qbd/preferences.d.ts.map +1 -0
  20. package/resources/qbd/preferences.js +21 -0
  21. package/resources/qbd/preferences.js.map +1 -0
  22. package/resources/qbd/preferences.mjs +17 -0
  23. package/resources/qbd/preferences.mjs.map +1 -0
  24. package/resources/qbd/qbd.d.ts +8 -0
  25. package/resources/qbd/qbd.d.ts.map +1 -1
  26. package/resources/qbd/qbd.js +6 -0
  27. package/resources/qbd/qbd.js.map +1 -1
  28. package/resources/qbd/qbd.mjs +6 -0
  29. package/resources/qbd/qbd.mjs.map +1 -1
  30. package/resources.d.ts +2 -0
  31. package/resources.d.ts.map +1 -0
  32. package/resources.js +18 -0
  33. package/resources.js.map +1 -0
  34. package/resources.mjs +2 -0
  35. package/resources.mjs.map +1 -0
  36. package/src/resources/auth-sessions.ts +1 -1
  37. package/src/resources/qbd/company.ts +466 -0
  38. package/src/resources/qbd/index.ts +2 -0
  39. package/src/resources/qbd/preferences.ts +684 -0
  40. package/src/resources/qbd/qbd.ts +15 -0
  41. package/src/resources.ts +1 -0
  42. package/src/version.ts +1 -1
  43. package/version.d.ts +1 -1
  44. package/version.js +1 -1
  45. package/version.mjs +1 -1
@@ -69,6 +69,8 @@ import {
69
69
  ClassUpdateParams,
70
70
  Classes,
71
71
  } from './classes';
72
+ import * as CompanyAPI from './company';
73
+ import { Company, CompanyResource, CompanyRetrieveParams } from './company';
72
74
  import * as CreditCardChargesAPI from './credit-card-charges';
73
75
  import {
74
76
  CreditCardCharge,
@@ -241,6 +243,8 @@ import {
241
243
  PayrollWageItems,
242
244
  PayrollWageItemsCursorPage,
243
245
  } from './payroll-wage-items';
246
+ import * as PreferencesAPI from './preferences';
247
+ import { PreferenceRetrieveParams, Preferences } from './preferences';
244
248
  import * as PurchaseOrdersAPI from './purchase-orders';
245
249
  import {
246
250
  PurchaseOrder,
@@ -411,6 +415,7 @@ export class Qbd extends APIResource {
411
415
  bills: BillsAPI.Bills = new BillsAPI.Bills(this._client);
412
416
  checks: ChecksAPI.Checks = new ChecksAPI.Checks(this._client);
413
417
  classes: ClassesAPI.Classes = new ClassesAPI.Classes(this._client);
418
+ company: CompanyAPI.CompanyResource = new CompanyAPI.CompanyResource(this._client);
414
419
  creditCardCharges: CreditCardChargesAPI.CreditCardCharges = new CreditCardChargesAPI.CreditCardCharges(
415
420
  this._client,
416
421
  );
@@ -437,6 +442,7 @@ export class Qbd extends APIResource {
437
442
  payrollWageItems: PayrollWageItemsAPI.PayrollWageItems = new PayrollWageItemsAPI.PayrollWageItems(
438
443
  this._client,
439
444
  );
445
+ preferences: PreferencesAPI.Preferences = new PreferencesAPI.Preferences(this._client);
440
446
  purchaseOrders: PurchaseOrdersAPI.PurchaseOrders = new PurchaseOrdersAPI.PurchaseOrders(this._client);
441
447
  receivePayments: ReceivePaymentsAPI.ReceivePayments = new ReceivePaymentsAPI.ReceivePayments(this._client);
442
448
  salesOrders: SalesOrdersAPI.SalesOrders = new SalesOrdersAPI.SalesOrders(this._client);
@@ -505,6 +511,7 @@ Qbd.BillsCursorPage = BillsCursorPage;
505
511
  Qbd.Checks = Checks;
506
512
  Qbd.ChecksCursorPage = ChecksCursorPage;
507
513
  Qbd.Classes = Classes;
514
+ Qbd.CompanyResource = CompanyResource;
508
515
  Qbd.CreditCardCharges = CreditCardCharges;
509
516
  Qbd.CreditCardChargesCursorPage = CreditCardChargesCursorPage;
510
517
  Qbd.CreditCardCredits = CreditCardCredits;
@@ -635,6 +642,12 @@ export declare namespace Qbd {
635
642
  type ClassListParams as ClassListParams,
636
643
  };
637
644
 
645
+ export {
646
+ CompanyResource as CompanyResource,
647
+ type Company as Company,
648
+ type CompanyRetrieveParams as CompanyRetrieveParams,
649
+ };
650
+
638
651
  export {
639
652
  CreditCardCharges as CreditCardCharges,
640
653
  type CreditCardCharge as CreditCardCharge,
@@ -807,6 +820,8 @@ export declare namespace Qbd {
807
820
  type PayrollWageItemListParams as PayrollWageItemListParams,
808
821
  };
809
822
 
823
+ export { type Preferences as Preferences, type PreferenceRetrieveParams as PreferenceRetrieveParams };
824
+
810
825
  export {
811
826
  PurchaseOrders as PurchaseOrders,
812
827
  type PurchaseOrder as PurchaseOrder,
@@ -0,0 +1 @@
1
+ export * from './resources/index';
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.0.0-beta.17'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.18'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.0.0-beta.17";
1
+ export declare const VERSION = "12.0.0-beta.18";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '12.0.0-beta.17'; // x-release-please-version
4
+ exports.VERSION = '12.0.0-beta.18'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.0.0-beta.17'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.18'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map