conductor-node 12.0.0-beta.16 → 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 +38 -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/checks.d.ts +1 -1
- package/resources/qbd/checks.d.ts.map +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/customers.d.ts +2 -2
- package/resources/qbd/customers.d.ts.map +1 -1
- package/resources/qbd/employees.d.ts +2 -2
- package/resources/qbd/employees.d.ts.map +1 -1
- 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/qbd/receive-payments.d.ts +1 -1
- package/resources/qbd/receive-payments.d.ts.map +1 -1
- package/resources/qbd/vendors.d.ts +2 -2
- package/resources/qbd/vendors.d.ts.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/checks.ts +1 -1
- package/src/resources/qbd/company.ts +466 -0
- package/src/resources/qbd/customers.ts +2 -2
- package/src/resources/qbd/employees.ts +2 -2
- 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/qbd/receive-payments.ts +1 -1
- package/src/resources/qbd/vendors.ts +2 -2
- 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,
|
|
@@ -195,7 +195,7 @@ export interface ReceivePayment {
|
|
|
195
195
|
* The total monetary amount of this receive-payment, represented as a decimal
|
|
196
196
|
* string.
|
|
197
197
|
*/
|
|
198
|
-
totalAmount: string
|
|
198
|
+
totalAmount: string;
|
|
199
199
|
|
|
200
200
|
/**
|
|
201
201
|
* The total monetary amount of this receive-payment converted to the home currency
|
|
@@ -457,7 +457,7 @@ export namespace Vendor {
|
|
|
457
457
|
/**
|
|
458
458
|
* The date this note was last updated, in ISO 8601 format (YYYY-MM-DD).
|
|
459
459
|
*/
|
|
460
|
-
date: string;
|
|
460
|
+
date: string | null;
|
|
461
461
|
|
|
462
462
|
/**
|
|
463
463
|
* The text of this note.
|
|
@@ -1711,7 +1711,7 @@ export namespace VendorUpdateParams {
|
|
|
1711
1711
|
/**
|
|
1712
1712
|
* The text of this note.
|
|
1713
1713
|
*/
|
|
1714
|
-
note
|
|
1714
|
+
note: string;
|
|
1715
1715
|
}
|
|
1716
1716
|
|
|
1717
1717
|
/**
|
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
|