conductor-node 12.38.0 → 12.39.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 +8 -0
- package/package.json +1 -1
- package/resources/qbd/customer-types.d.ts +302 -0
- package/resources/qbd/customer-types.d.ts.map +1 -0
- package/resources/qbd/customer-types.js +73 -0
- package/resources/qbd/customer-types.js.map +1 -0
- package/resources/qbd/customer-types.mjs +69 -0
- package/resources/qbd/customer-types.mjs.map +1 -0
- package/resources/qbd/index.d.ts +1 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +4 -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/qbd.d.ts +4 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +4 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +4 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/src/resources/qbd/customer-types.ts +372 -0
- package/src/resources/qbd/index.ts +8 -0
- package/src/resources/qbd/qbd.ts +20 -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
|
@@ -147,6 +147,15 @@ import {
|
|
|
147
147
|
CurrencyRetrieveParams,
|
|
148
148
|
CurrencyUpdateParams,
|
|
149
149
|
} from "./currencies.js";
|
|
150
|
+
import * as CustomerTypesAPI from "./customer-types.js";
|
|
151
|
+
import {
|
|
152
|
+
CustomerType,
|
|
153
|
+
CustomerTypeCreateParams,
|
|
154
|
+
CustomerTypeListParams,
|
|
155
|
+
CustomerTypeListResponse,
|
|
156
|
+
CustomerTypeRetrieveParams,
|
|
157
|
+
CustomerTypes,
|
|
158
|
+
} from "./customer-types.js";
|
|
150
159
|
import * as CustomersAPI from "./customers.js";
|
|
151
160
|
import {
|
|
152
161
|
Customer,
|
|
@@ -563,6 +572,7 @@ export class Qbd extends APIResource {
|
|
|
563
572
|
);
|
|
564
573
|
creditMemos: CreditMemosAPI.CreditMemos = new CreditMemosAPI.CreditMemos(this._client);
|
|
565
574
|
currencies: CurrenciesAPI.Currencies = new CurrenciesAPI.Currencies(this._client);
|
|
575
|
+
customerTypes: CustomerTypesAPI.CustomerTypes = new CustomerTypesAPI.CustomerTypes(this._client);
|
|
566
576
|
customers: CustomersAPI.Customers = new CustomersAPI.Customers(this._client);
|
|
567
577
|
dateDrivenTerms: DateDrivenTermsAPI.DateDrivenTerms = new DateDrivenTermsAPI.DateDrivenTerms(this._client);
|
|
568
578
|
deletedListObjects: DeletedListObjectsAPI.DeletedListObjects = new DeletedListObjectsAPI.DeletedListObjects(
|
|
@@ -689,6 +699,7 @@ Qbd.CreditCardRefundsCursorPage = CreditCardRefundsCursorPage;
|
|
|
689
699
|
Qbd.CreditMemos = CreditMemos;
|
|
690
700
|
Qbd.CreditMemosCursorPage = CreditMemosCursorPage;
|
|
691
701
|
Qbd.Currencies = Currencies;
|
|
702
|
+
Qbd.CustomerTypes = CustomerTypes;
|
|
692
703
|
Qbd.Customers = Customers;
|
|
693
704
|
Qbd.CustomersCursorPage = CustomersCursorPage;
|
|
694
705
|
Qbd.DateDrivenTerms = DateDrivenTerms;
|
|
@@ -909,6 +920,15 @@ export declare namespace Qbd {
|
|
|
909
920
|
type CurrencyListParams as CurrencyListParams,
|
|
910
921
|
};
|
|
911
922
|
|
|
923
|
+
export {
|
|
924
|
+
CustomerTypes as CustomerTypes,
|
|
925
|
+
type CustomerType as CustomerType,
|
|
926
|
+
type CustomerTypeListResponse as CustomerTypeListResponse,
|
|
927
|
+
type CustomerTypeCreateParams as CustomerTypeCreateParams,
|
|
928
|
+
type CustomerTypeRetrieveParams as CustomerTypeRetrieveParams,
|
|
929
|
+
type CustomerTypeListParams as CustomerTypeListParams,
|
|
930
|
+
};
|
|
931
|
+
|
|
912
932
|
export {
|
|
913
933
|
Customers as Customers,
|
|
914
934
|
type Customer as Customer,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.
|
|
1
|
+
export const VERSION = '12.39.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.39.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.39.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|