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.
- package/CHANGELOG.md +30 -0
- package/package.json +8 -29
- package/resources/auth-sessions.d.ts +1 -1
- package/resources/auth-sessions.js +1 -1
- package/resources/auth-sessions.mjs +1 -1
- package/resources/qbd/company.d.ts +354 -0
- package/resources/qbd/company.d.ts.map +1 -0
- package/resources/qbd/company.js +22 -0
- package/resources/qbd/company.js.map +1 -0
- package/resources/qbd/company.mjs +18 -0
- package/resources/qbd/company.mjs.map +1 -0
- package/resources/qbd/index.d.ts +2 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +6 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +2 -0
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/preferences.d.ts +591 -0
- package/resources/qbd/preferences.d.ts.map +1 -0
- package/resources/qbd/preferences.js +21 -0
- package/resources/qbd/preferences.js.map +1 -0
- package/resources/qbd/preferences.mjs +17 -0
- package/resources/qbd/preferences.mjs.map +1 -0
- package/resources/qbd/qbd.d.ts +8 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +6 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +6 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/resources.d.ts +2 -0
- package/resources.d.ts.map +1 -0
- package/resources.js +18 -0
- package/resources.js.map +1 -0
- package/resources.mjs +2 -0
- package/resources.mjs.map +1 -0
- package/src/resources/auth-sessions.ts +1 -1
- package/src/resources/qbd/company.ts +466 -0
- package/src/resources/qbd/index.ts +2 -0
- package/src/resources/qbd/preferences.ts +684 -0
- package/src/resources/qbd/qbd.ts +15 -0
- package/src/resources.ts +1 -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
|
@@ -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,
|
package/src/resources.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './resources/index';
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.0.0-beta.
|
|
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.
|
|
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.
|
|
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.
|
|
1
|
+
export const VERSION = '12.0.0-beta.18'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|