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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 12.39.0 (2025-10-19)
4
+
5
+ Full Changelog: [v12.38.0...v12.39.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.38.0...v12.39.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a328664](https://github.com/conductor-is/quickbooks-desktop-node/commit/a328664e8eafe2bade7a0092d3f106861383fd75))
10
+
3
11
  ## 12.38.0 (2025-10-14)
4
12
 
5
13
  Full Changelog: [v12.37.0...v12.38.0](https://github.com/conductor-is/quickbooks-desktop-node/compare/v12.37.0...v12.38.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-node",
3
- "version": "12.38.0",
3
+ "version": "12.39.0",
4
4
  "description": "The official TypeScript library for the Conductor API",
5
5
  "author": "Conductor <support@conductor.is>",
6
6
  "types": "./index.d.ts",
@@ -0,0 +1,302 @@
1
+ import { APIResource } from "../../resource.js";
2
+ import * as Core from "../../core.js";
3
+ export declare class CustomerTypes extends APIResource {
4
+ /**
5
+ * Creates a new customer type.
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * const customerType =
10
+ * await conductor.qbd.customerTypes.create({
11
+ * name: 'Healthcare',
12
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
13
+ * });
14
+ * ```
15
+ */
16
+ create(params: CustomerTypeCreateParams, options?: Core.RequestOptions): Core.APIPromise<CustomerType>;
17
+ /**
18
+ * Retrieves a customer type by ID.
19
+ *
20
+ * **IMPORTANT:** If you need to fetch multiple specific customer types by ID, use
21
+ * the list endpoint instead with the `ids` parameter. It accepts an array of IDs
22
+ * so you can batch the request into a single call, which is significantly faster.
23
+ *
24
+ * @example
25
+ * ```ts
26
+ * const customerType =
27
+ * await conductor.qbd.customerTypes.retrieve(
28
+ * '80000001-1234567890',
29
+ * { conductorEndUserId: 'end_usr_1234567abcdefg' },
30
+ * );
31
+ * ```
32
+ */
33
+ retrieve(id: string, params: CustomerTypeRetrieveParams, options?: Core.RequestOptions): Core.APIPromise<CustomerType>;
34
+ /**
35
+ * Returns a list of customer types. NOTE: QuickBooks Desktop does not support
36
+ * pagination for customer types; hence, there is no `cursor` parameter. Users
37
+ * typically have few customer types.
38
+ *
39
+ * @example
40
+ * ```ts
41
+ * const customerTypes =
42
+ * await conductor.qbd.customerTypes.list({
43
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
44
+ * });
45
+ * ```
46
+ */
47
+ list(params: CustomerTypeListParams, options?: Core.RequestOptions): Core.APIPromise<CustomerTypeListResponse>;
48
+ }
49
+ export interface CustomerType {
50
+ /**
51
+ * The unique identifier assigned by QuickBooks to this customer type. This ID is
52
+ * unique across all customer types but not across different QuickBooks object
53
+ * types.
54
+ */
55
+ id: string;
56
+ /**
57
+ * The date and time when this customer type was created, in ISO 8601 format
58
+ * (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local
59
+ * timezone of the end-user's computer.
60
+ */
61
+ createdAt: string;
62
+ /**
63
+ * The case-insensitive fully-qualified unique name of this customer type, formed
64
+ * by combining the names of its hierarchical parent objects with its own `name`,
65
+ * separated by colons. For example, if a customer type is under "Industry" and has
66
+ * the `name` "Healthcare", its `fullName` would be "Industry:Healthcare".
67
+ *
68
+ * **NOTE**: Unlike `name`, `fullName` is guaranteed to be unique across all
69
+ * customer type objects. However, `fullName` can still be arbitrarily changed by
70
+ * the QuickBooks user when they modify the underlying `name` field.
71
+ */
72
+ fullName: string;
73
+ /**
74
+ * Indicates whether this customer type is active. Inactive objects are typically
75
+ * hidden from views and reports in QuickBooks. Defaults to `true`.
76
+ */
77
+ isActive: boolean;
78
+ /**
79
+ * The case-insensitive name of this customer type. Not guaranteed to be unique
80
+ * because it does not include the names of its hierarchical parent objects like
81
+ * `fullName` does. For example, two customer types could both have the `name`
82
+ * "Healthcare", but they could have unique `fullName` values, such as
83
+ * "Industry:Healthcare" and "Region:Healthcare".
84
+ */
85
+ name: string;
86
+ /**
87
+ * The type of object. This value is always `"qbd_customer_type"`.
88
+ */
89
+ objectType: 'qbd_customer_type';
90
+ /**
91
+ * The parent customer type one level above this one in the hierarchy. For example,
92
+ * if this customer type has a `fullName` of "Industry:Healthcare", its parent has
93
+ * a `fullName` of "Industry". If this customer type is at the top level, this
94
+ * field will be `null`.
95
+ */
96
+ parent: CustomerType.Parent | null;
97
+ /**
98
+ * The current QuickBooks-assigned revision number of this customer type object,
99
+ * which changes each time the object is modified. When updating this object, you
100
+ * must provide the most recent `revisionNumber` to ensure you're working with the
101
+ * latest data; otherwise, the update will return an error.
102
+ */
103
+ revisionNumber: string;
104
+ /**
105
+ * The depth level of this customer type in the hierarchy. A top-level customer
106
+ * type has a `sublevel` of 0; each subsequent sublevel increases this number by 1.
107
+ * For example, a customer type with a `fullName` of "Industry:Healthcare" would
108
+ * have a `sublevel` of 1.
109
+ */
110
+ sublevel: number;
111
+ /**
112
+ * The date and time when this customer type was last updated, in ISO 8601 format
113
+ * (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local
114
+ * timezone of the end-user's computer.
115
+ */
116
+ updatedAt: string;
117
+ }
118
+ export declare namespace CustomerType {
119
+ /**
120
+ * The parent customer type one level above this one in the hierarchy. For example,
121
+ * if this customer type has a `fullName` of "Industry:Healthcare", its parent has
122
+ * a `fullName` of "Industry". If this customer type is at the top level, this
123
+ * field will be `null`.
124
+ */
125
+ interface Parent {
126
+ /**
127
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
128
+ * across all objects of the same type, but not across different QuickBooks object
129
+ * types.
130
+ */
131
+ id: string | null;
132
+ /**
133
+ * The fully-qualified unique name for this object, formed by combining the names
134
+ * of its parent objects with its own `name`, separated by colons. Not
135
+ * case-sensitive.
136
+ */
137
+ fullName: string | null;
138
+ }
139
+ }
140
+ export interface CustomerTypeListResponse {
141
+ /**
142
+ * The array of customer types.
143
+ */
144
+ data: Array<CustomerType>;
145
+ /**
146
+ * The type of object. This value is always `"list"`.
147
+ */
148
+ objectType: 'list';
149
+ /**
150
+ * The endpoint URL where this list can be accessed.
151
+ */
152
+ url: string;
153
+ }
154
+ export interface CustomerTypeCreateParams {
155
+ /**
156
+ * Body param: The case-insensitive name of this customer type. Not guaranteed to
157
+ * be unique because it does not include the names of its hierarchical parent
158
+ * objects like `fullName` does. For example, two customer types could both have
159
+ * the `name` "Healthcare", but they could have unique `fullName` values, such as
160
+ * "Industry:Healthcare" and "Region:Healthcare".
161
+ *
162
+ * Maximum length: 31 characters.
163
+ */
164
+ name: string;
165
+ /**
166
+ * Header param: The ID of the EndUser to receive this request (e.g.,
167
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
168
+ */
169
+ conductorEndUserId: string;
170
+ /**
171
+ * Body param: Indicates whether this customer type is active. Inactive objects are
172
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
173
+ */
174
+ isActive?: boolean;
175
+ /**
176
+ * Body param: The parent customer type one level above this one in the hierarchy.
177
+ * For example, if this customer type has a `fullName` of "Industry:Healthcare",
178
+ * its parent has a `fullName` of "Industry". If this customer type is at the top
179
+ * level, this field will be `null`.
180
+ */
181
+ parentId?: string;
182
+ }
183
+ export interface CustomerTypeRetrieveParams {
184
+ /**
185
+ * The ID of the EndUser to receive this request (e.g.,
186
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
187
+ */
188
+ conductorEndUserId: string;
189
+ }
190
+ export interface CustomerTypeListParams {
191
+ /**
192
+ * Header param: The ID of the EndUser to receive this request (e.g.,
193
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
194
+ */
195
+ conductorEndUserId: string;
196
+ /**
197
+ * Query param: Filter for specific customer types by their full-name(s),
198
+ * case-insensitive. Like `id`, `fullName` is a unique identifier for a customer
199
+ * type, formed by by combining the names of its parent objects with its own
200
+ * `name`, separated by colons. For example, if a customer type is under "Industry"
201
+ * and has the `name` "Healthcare", its `fullName` would be "Industry:Healthcare".
202
+ *
203
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
204
+ * query parameters for this request.
205
+ *
206
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
207
+ * request will return an error.
208
+ */
209
+ fullNames?: Array<string>;
210
+ /**
211
+ * Query param: Filter for specific customer types by their QuickBooks-assigned
212
+ * unique identifier(s).
213
+ *
214
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
215
+ * query parameters for this request.
216
+ *
217
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
218
+ * request will return an error.
219
+ */
220
+ ids?: Array<string>;
221
+ /**
222
+ * Query param: The maximum number of objects to return.
223
+ *
224
+ * **IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for
225
+ * customer types. This parameter will limit the response size, but you cannot
226
+ * fetch subsequent results using a cursor. For pagination, use the name-range
227
+ * parameters instead (e.g., `nameFrom=A&nameTo=B`).
228
+ *
229
+ * When this parameter is omitted, the endpoint returns all customer types without
230
+ * limit, unlike paginated endpoints which default to 150 records. This is
231
+ * acceptable because customer types typically have low record counts.
232
+ */
233
+ limit?: number;
234
+ /**
235
+ * Query param: Filter for customer types whose `name` contains this substring,
236
+ * case-insensitive.
237
+ *
238
+ * **NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or
239
+ * `nameEndsWith`.
240
+ */
241
+ nameContains?: string;
242
+ /**
243
+ * Query param: Filter for customer types whose `name` ends with this substring,
244
+ * case-insensitive.
245
+ *
246
+ * **NOTE**: If you use this parameter, you cannot also use `nameContains` or
247
+ * `nameStartsWith`.
248
+ */
249
+ nameEndsWith?: string;
250
+ /**
251
+ * Query param: Filter for customer types whose `name` is alphabetically greater
252
+ * than or equal to this value.
253
+ */
254
+ nameFrom?: string;
255
+ /**
256
+ * Query param: Filter for customer types whose `name` starts with this substring,
257
+ * case-insensitive.
258
+ *
259
+ * **NOTE**: If you use this parameter, you cannot also use `nameContains` or
260
+ * `nameEndsWith`.
261
+ */
262
+ nameStartsWith?: string;
263
+ /**
264
+ * Query param: Filter for customer types whose `name` is alphabetically less than
265
+ * or equal to this value.
266
+ */
267
+ nameTo?: string;
268
+ /**
269
+ * Query param: Filter for customer types that are active, inactive, or both.
270
+ */
271
+ status?: 'active' | 'all' | 'inactive';
272
+ /**
273
+ * Query param: Filter for customer types updated on or after this date/time.
274
+ * Accepts the following ISO 8601 formats:
275
+ *
276
+ * - **date-only** (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the
277
+ * **start of the specified day** in the local timezone of the end-user's
278
+ * computer (e.g., `2025-01-01` → `2025-01-01T00:00:00`).
279
+ * - **datetime without timezone** (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop
280
+ * interprets the timestamp in the local timezone of the end-user's computer.
281
+ * - **datetime with timezone** (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop
282
+ * interprets the timestamp using the specified timezone.
283
+ */
284
+ updatedAfter?: string;
285
+ /**
286
+ * Query param: Filter for customer types updated on or before this date/time.
287
+ * Accepts the following ISO 8601 formats:
288
+ *
289
+ * - **date-only** (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the
290
+ * **end of the specified day** in the local timezone of the end-user's computer
291
+ * (e.g., `2025-01-01` → `2025-01-01T23:59:59`).
292
+ * - **datetime without timezone** (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop
293
+ * interprets the timestamp in the local timezone of the end-user's computer.
294
+ * - **datetime with timezone** (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop
295
+ * interprets the timestamp using the specified timezone.
296
+ */
297
+ updatedBefore?: string;
298
+ }
299
+ export declare namespace CustomerTypes {
300
+ export { type CustomerType as CustomerType, type CustomerTypeListResponse as CustomerTypeListResponse, type CustomerTypeCreateParams as CustomerTypeCreateParams, type CustomerTypeRetrieveParams as CustomerTypeRetrieveParams, type CustomerTypeListParams as CustomerTypeListParams, };
301
+ }
302
+ //# sourceMappingURL=customer-types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customer-types.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/customer-types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.CustomerTypes = void 0;
5
+ const resource_1 = require("../../resource.js");
6
+ class CustomerTypes extends resource_1.APIResource {
7
+ /**
8
+ * Creates a new customer type.
9
+ *
10
+ * @example
11
+ * ```ts
12
+ * const customerType =
13
+ * await conductor.qbd.customerTypes.create({
14
+ * name: 'Healthcare',
15
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
16
+ * });
17
+ * ```
18
+ */
19
+ create(params, options) {
20
+ const { conductorEndUserId, ...body } = params;
21
+ return this._client.post('/quickbooks-desktop/customer-types', {
22
+ body,
23
+ ...options,
24
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
25
+ });
26
+ }
27
+ /**
28
+ * Retrieves a customer type by ID.
29
+ *
30
+ * **IMPORTANT:** If you need to fetch multiple specific customer types by ID, use
31
+ * the list endpoint instead with the `ids` parameter. It accepts an array of IDs
32
+ * so you can batch the request into a single call, which is significantly faster.
33
+ *
34
+ * @example
35
+ * ```ts
36
+ * const customerType =
37
+ * await conductor.qbd.customerTypes.retrieve(
38
+ * '80000001-1234567890',
39
+ * { conductorEndUserId: 'end_usr_1234567abcdefg' },
40
+ * );
41
+ * ```
42
+ */
43
+ retrieve(id, params, options) {
44
+ const { conductorEndUserId } = params;
45
+ return this._client.get(`/quickbooks-desktop/customer-types/${id}`, {
46
+ ...options,
47
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
48
+ });
49
+ }
50
+ /**
51
+ * Returns a list of customer types. NOTE: QuickBooks Desktop does not support
52
+ * pagination for customer types; hence, there is no `cursor` parameter. Users
53
+ * typically have few customer types.
54
+ *
55
+ * @example
56
+ * ```ts
57
+ * const customerTypes =
58
+ * await conductor.qbd.customerTypes.list({
59
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
60
+ * });
61
+ * ```
62
+ */
63
+ list(params, options) {
64
+ const { conductorEndUserId, ...query } = params;
65
+ return this._client.get('/quickbooks-desktop/customer-types', {
66
+ query,
67
+ ...options,
68
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
69
+ });
70
+ }
71
+ }
72
+ exports.CustomerTypes = CustomerTypes;
73
+ //# sourceMappingURL=customer-types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customer-types.js","sourceRoot":"","sources":["../../src/resources/qbd/customer-types.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAG7C,MAAa,aAAc,SAAQ,sBAAW;IAC5C;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,MAAgC,EAAE,OAA6B;QACpE,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oCAAoC,EAAE;YAC7D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,QAAQ,CACN,EAAU,EACV,MAAkC,EAClC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sCAAsC,EAAE,EAAE,EAAE;YAClE,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,IAAI,CACF,MAA8B,EAC9B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,oCAAoC,EAAE;YAC5D,KAAK;YACL,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF;AA1ED,sCA0EC"}
@@ -0,0 +1,69 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+ import { APIResource } from "../../resource.mjs";
3
+ export class CustomerTypes extends APIResource {
4
+ /**
5
+ * Creates a new customer type.
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * const customerType =
10
+ * await conductor.qbd.customerTypes.create({
11
+ * name: 'Healthcare',
12
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
13
+ * });
14
+ * ```
15
+ */
16
+ create(params, options) {
17
+ const { conductorEndUserId, ...body } = params;
18
+ return this._client.post('/quickbooks-desktop/customer-types', {
19
+ body,
20
+ ...options,
21
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
22
+ });
23
+ }
24
+ /**
25
+ * Retrieves a customer type by ID.
26
+ *
27
+ * **IMPORTANT:** If you need to fetch multiple specific customer types by ID, use
28
+ * the list endpoint instead with the `ids` parameter. It accepts an array of IDs
29
+ * so you can batch the request into a single call, which is significantly faster.
30
+ *
31
+ * @example
32
+ * ```ts
33
+ * const customerType =
34
+ * await conductor.qbd.customerTypes.retrieve(
35
+ * '80000001-1234567890',
36
+ * { conductorEndUserId: 'end_usr_1234567abcdefg' },
37
+ * );
38
+ * ```
39
+ */
40
+ retrieve(id, params, options) {
41
+ const { conductorEndUserId } = params;
42
+ return this._client.get(`/quickbooks-desktop/customer-types/${id}`, {
43
+ ...options,
44
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
45
+ });
46
+ }
47
+ /**
48
+ * Returns a list of customer types. NOTE: QuickBooks Desktop does not support
49
+ * pagination for customer types; hence, there is no `cursor` parameter. Users
50
+ * typically have few customer types.
51
+ *
52
+ * @example
53
+ * ```ts
54
+ * const customerTypes =
55
+ * await conductor.qbd.customerTypes.list({
56
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
57
+ * });
58
+ * ```
59
+ */
60
+ list(params, options) {
61
+ const { conductorEndUserId, ...query } = params;
62
+ return this._client.get('/quickbooks-desktop/customer-types', {
63
+ query,
64
+ ...options,
65
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
66
+ });
67
+ }
68
+ }
69
+ //# sourceMappingURL=customer-types.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"customer-types.mjs","sourceRoot":"","sources":["../../src/resources/qbd/customer-types.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAGtB,MAAM,OAAO,aAAc,SAAQ,WAAW;IAC5C;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,MAAgC,EAAE,OAA6B;QACpE,MAAM,EAAE,kBAAkB,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QAC/C,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oCAAoC,EAAE;YAC7D,IAAI;YACJ,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;;;;OAeG;IACH,QAAQ,CACN,EAAU,EACV,MAAkC,EAClC,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QACtC,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sCAAsC,EAAE,EAAE,EAAE;YAClE,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;;;;OAYG;IACH,IAAI,CACF,MAA8B,EAC9B,OAA6B;QAE7B,MAAM,EAAE,kBAAkB,EAAE,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;QAChD,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,oCAAoC,EAAE;YAC5D,KAAK;YACL,GAAG,OAAO;YACV,OAAO,EAAE,EAAE,uBAAuB,EAAE,kBAAkB,EAAE,GAAG,OAAO,EAAE,OAAO,EAAE;SAC9E,CAAC,CAAC;IACL,CAAC;CACF"}
@@ -12,6 +12,7 @@ export { CreditCardCreditsCursorPage, CreditCardCredits, type CreditCardCredit,
12
12
  export { CreditCardRefundsCursorPage, CreditCardRefunds, type CreditCardRefund, type CreditCardRefundDeleteResponse, type CreditCardRefundCreateParams, type CreditCardRefundRetrieveParams, type CreditCardRefundListParams, type CreditCardRefundDeleteParams, } from "./credit-card-refunds.js";
13
13
  export { CreditMemosCursorPage, CreditMemos, type CreditMemo, type CreditMemoDeleteResponse, type CreditMemoCreateParams, type CreditMemoRetrieveParams, type CreditMemoUpdateParams, type CreditMemoListParams, type CreditMemoDeleteParams, } from "./credit-memos.js";
14
14
  export { Currencies, type Currency, type CurrencyListResponse, type CurrencyCreateParams, type CurrencyRetrieveParams, type CurrencyUpdateParams, type CurrencyListParams, } from "./currencies.js";
15
+ export { CustomerTypes, type CustomerType, type CustomerTypeListResponse, type CustomerTypeCreateParams, type CustomerTypeRetrieveParams, type CustomerTypeListParams, } from "./customer-types.js";
15
16
  export { CustomersCursorPage, Customers, type Customer, type CustomerCreateParams, type CustomerRetrieveParams, type CustomerUpdateParams, type CustomerListParams, } from "./customers.js";
16
17
  export { DateDrivenTerms, type DateDrivenTerm, type DateDrivenTermListResponse, type DateDrivenTermCreateParams, type DateDrivenTermRetrieveParams, type DateDrivenTermListParams, } from "./date-driven-terms.js";
17
18
  export { DeletedListObjects, type DeletedListObject, type DeletedListObjectListResponse, type DeletedListObjectListParams, } from "./deleted-list-objects.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"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"}
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.NonInventoryItemsCursorPage = exports.JournalEntries = exports.JournalEntriesCursorPage = exports.ItemSites = exports.ItemSitesCursorPage = exports.ItemReceipts = exports.ItemReceiptsCursorPage = exports.ItemGroups = exports.ItemGroupsCursorPage = exports.Invoices = exports.InvoicesCursorPage = exports.InventorySites = exports.InventoryItems = exports.InventoryItemsCursorPage = exports.InventoryAssemblyItems = exports.InventoryAssemblyItemsCursorPage = exports.InventoryAdjustments = exports.Estimates = exports.EstimatesCursorPage = exports.Employees = exports.DiscountItems = exports.DiscountItemsCursorPage = exports.DeletedTransactions = exports.DeletedListObjects = exports.DateDrivenTerms = exports.Customers = exports.CustomersCursorPage = exports.Currencies = exports.CreditMemos = exports.CreditMemosCursorPage = exports.CreditCardRefunds = exports.CreditCardRefundsCursorPage = exports.CreditCardCredits = exports.CreditCardCreditsCursorPage = exports.CreditCardCharges = exports.CreditCardChargesCursorPage = exports.CompanyResource = exports.Classes = exports.Checks = exports.ChecksCursorPage = exports.BuildAssemblies = exports.BuildAssembliesCursorPage = exports.Bills = exports.BillsCursorPage = exports.BillCreditCardPayments = exports.BillCreditCardPaymentsCursorPage = exports.BillCheckPayments = exports.BillCheckPaymentsCursorPage = exports.Accounts = exports.AccountTaxLines = void 0;
5
- exports.Vendors = exports.VendorsCursorPage = exports.VendorCredits = exports.VendorCreditsCursorPage = exports.UnitOfMeasureSets = exports.Transfers = exports.TransfersCursorPage = exports.Transactions = exports.TransactionsCursorPage = exports.TimeTrackingActivities = exports.TimeTrackingActivitiesCursorPage = exports.Templates = exports.SubtotalItems = exports.SubtotalItemsCursorPage = exports.StandardTerms = exports.ServiceItems = exports.ServiceItemsCursorPage = exports.SalesTaxItems = exports.SalesTaxItemsCursorPage = exports.SalesTaxCodes = exports.SalesRepresentatives = exports.SalesReceipts = exports.SalesReceiptsCursorPage = exports.SalesOrders = exports.SalesOrdersCursorPage = exports.ReceivePayments = exports.ReceivePaymentsCursorPage = exports.Qbd = exports.PurchaseOrders = exports.PurchaseOrdersCursorPage = exports.PriceLevels = exports.Preferences = exports.PayrollWageItems = exports.PayrollWageItemsCursorPage = exports.PaymentMethods = exports.OtherNames = exports.OtherChargeItems = exports.OtherChargeItemsCursorPage = exports.NonInventoryItems = void 0;
4
+ exports.JournalEntries = exports.JournalEntriesCursorPage = exports.ItemSites = exports.ItemSitesCursorPage = exports.ItemReceipts = exports.ItemReceiptsCursorPage = exports.ItemGroups = exports.ItemGroupsCursorPage = exports.Invoices = exports.InvoicesCursorPage = exports.InventorySites = exports.InventoryItems = exports.InventoryItemsCursorPage = exports.InventoryAssemblyItems = exports.InventoryAssemblyItemsCursorPage = exports.InventoryAdjustments = exports.Estimates = exports.EstimatesCursorPage = exports.Employees = exports.DiscountItems = exports.DiscountItemsCursorPage = exports.DeletedTransactions = exports.DeletedListObjects = exports.DateDrivenTerms = exports.Customers = exports.CustomersCursorPage = exports.CustomerTypes = exports.Currencies = exports.CreditMemos = exports.CreditMemosCursorPage = exports.CreditCardRefunds = exports.CreditCardRefundsCursorPage = exports.CreditCardCredits = exports.CreditCardCreditsCursorPage = exports.CreditCardCharges = exports.CreditCardChargesCursorPage = exports.CompanyResource = exports.Classes = exports.Checks = exports.ChecksCursorPage = exports.BuildAssemblies = exports.BuildAssembliesCursorPage = exports.Bills = exports.BillsCursorPage = exports.BillCreditCardPayments = exports.BillCreditCardPaymentsCursorPage = exports.BillCheckPayments = exports.BillCheckPaymentsCursorPage = exports.Accounts = exports.AccountTaxLines = void 0;
5
+ exports.Vendors = exports.VendorsCursorPage = exports.VendorCredits = exports.VendorCreditsCursorPage = exports.UnitOfMeasureSets = exports.Transfers = exports.TransfersCursorPage = exports.Transactions = exports.TransactionsCursorPage = exports.TimeTrackingActivities = exports.TimeTrackingActivitiesCursorPage = exports.Templates = exports.SubtotalItems = exports.SubtotalItemsCursorPage = exports.StandardTerms = exports.ServiceItems = exports.ServiceItemsCursorPage = exports.SalesTaxItems = exports.SalesTaxItemsCursorPage = exports.SalesTaxCodes = exports.SalesRepresentatives = exports.SalesReceipts = exports.SalesReceiptsCursorPage = exports.SalesOrders = exports.SalesOrdersCursorPage = exports.ReceivePayments = exports.ReceivePaymentsCursorPage = exports.Qbd = exports.PurchaseOrders = exports.PurchaseOrdersCursorPage = exports.PriceLevels = exports.Preferences = exports.PayrollWageItems = exports.PayrollWageItemsCursorPage = exports.PaymentMethods = exports.OtherNames = exports.OtherChargeItems = exports.OtherChargeItemsCursorPage = exports.NonInventoryItems = exports.NonInventoryItemsCursorPage = void 0;
6
6
  var account_tax_lines_1 = require("./account-tax-lines.js");
7
7
  Object.defineProperty(exports, "AccountTaxLines", { enumerable: true, get: function () { return account_tax_lines_1.AccountTaxLines; } });
8
8
  var accounts_1 = require("./accounts.js");
@@ -40,6 +40,8 @@ Object.defineProperty(exports, "CreditMemosCursorPage", { enumerable: true, get:
40
40
  Object.defineProperty(exports, "CreditMemos", { enumerable: true, get: function () { return credit_memos_1.CreditMemos; } });
41
41
  var currencies_1 = require("./currencies.js");
42
42
  Object.defineProperty(exports, "Currencies", { enumerable: true, get: function () { return currencies_1.Currencies; } });
43
+ var customer_types_1 = require("./customer-types.js");
44
+ Object.defineProperty(exports, "CustomerTypes", { enumerable: true, get: function () { return customer_types_1.CustomerTypes; } });
43
45
  var customers_1 = require("./customers.js");
44
46
  Object.defineProperty(exports, "CustomersCursorPage", { enumerable: true, get: function () { return customers_1.CustomersCursorPage; } });
45
47
  Object.defineProperty(exports, "Customers", { enumerable: true, get: function () { return customers_1.Customers; } });
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,4DAK6B;AAJ3B,oHAAA,eAAe,OAAA;AAKjB,0CAQoB;AAPlB,oGAAA,QAAQ,OAAA;AAQV,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,4EASqC;AARnC,6IAAA,gCAAgC,OAAA;AAChC,mIAAA,sBAAsB,OAAA;AAQxB,oCAUiB;AATf,wGAAA,eAAe,OAAA;AACf,8FAAA,KAAK,OAAA;AASP,0DAU4B;AAT1B,6HAAA,yBAAyB,OAAA;AACzB,mHAAA,eAAe,OAAA;AASjB,sCAUkB;AAThB,0GAAA,gBAAgB,OAAA;AAChB,gGAAA,MAAM,OAAA;AASR,wCAQmB;AAPjB,kGAAA,OAAO,OAAA;AAQT,wCAAsF;AAA7E,0GAAA,eAAe,OAAA;AACxB,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,gEAS+B;AAR7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AAQnB,kDAUwB;AATtB,qHAAA,qBAAqB,OAAA;AACrB,2GAAA,WAAW,OAAA;AASb,8CAQsB;AAPpB,wGAAA,UAAU,OAAA;AAQZ,4CAQqB;AAPnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AAOX,4DAO6B;AAN3B,oHAAA,eAAe,OAAA;AAOjB,kEAKgC;AAJ9B,0HAAA,kBAAkB,OAAA;AAKpB,kEAKgC;AAJ9B,2HAAA,mBAAmB,OAAA;AAKrB,sDAQ0B;AAPxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AAOf,4CAQqB;AAPnB,sGAAA,SAAS,OAAA;AAQX,4CAUqB;AATnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AASX,oEAUiC;AAT/B,6HAAA,oBAAoB,OAAA;AAUtB,0EAQoC;AAPlC,4IAAA,gCAAgC,OAAA;AAChC,kIAAA,sBAAsB,OAAA;AAOxB,wDAQ2B;AAPzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAOhB,wDAQ2B;AAPzB,iHAAA,cAAc,OAAA;AAQhB,0CAUoB;AATlB,8GAAA,kBAAkB,OAAA;AAClB,oGAAA,QAAQ,OAAA;AASV,gDAQuB;AAPrB,mHAAA,oBAAoB,OAAA;AACpB,yGAAA,UAAU,OAAA;AAOZ,oDAUyB;AATvB,uHAAA,sBAAsB,OAAA;AACtB,6GAAA,YAAY,OAAA;AASd,8CAMsB;AALpB,iHAAA,mBAAmB,OAAA;AACnB,uGAAA,SAAS,OAAA;AAKX,wDAU2B;AATzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAShB,gEAQ+B;AAP7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AAOnB,8DAQ8B;AAP5B,gIAAA,0BAA0B,OAAA;AAC1B,sHAAA,gBAAgB,OAAA;AAOlB,gDAQuB;AAPrB,yGAAA,UAAU,OAAA;AAQZ,wDAO2B;AANzB,iHAAA,cAAc,OAAA;AAOhB,8DAO8B;AAN5B,gIAAA,0BAA0B,OAAA;AAC1B,sHAAA,gBAAgB,OAAA;AAMlB,gDAA2E;AAAlE,0GAAA,WAAW,OAAA;AACpB,kDAQwB;AAPtB,2GAAA,WAAW,OAAA;AAQb,wDAU2B;AATzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAShB,gCAAoF;AAA3E,0FAAA,GAAG,OAAA;AACZ,0DAU4B;AAT1B,6HAAA,yBAAyB,OAAA;AACzB,mHAAA,eAAe,OAAA;AASjB,kDAUwB;AATtB,qHAAA,qBAAqB,OAAA;AACrB,2GAAA,WAAW,OAAA;AASb,sDAU0B;AATxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AASf,oEAQiC;AAP/B,6HAAA,oBAAoB,OAAA;AAQtB,wDAQ2B;AAPzB,gHAAA,aAAa,OAAA;AAQf,wDAQ2B;AAPzB,0HAAA,uBAAuB,OAAA;AACvB,gHAAA,aAAa,OAAA;AAOf,oDAQyB;AAPvB,uHAAA,sBAAsB,OAAA;AACtB,6GAAA,YAAY,OAAA;AAOd,sDAO0B;AANxB,+GAAA,aAAa,OAAA;AAOf,sDAQ0B;AAPxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AAOf,4CAA2G;AAAlG,sGAAA,SAAS,OAAA;AAClB,0EAUoC;AATlC,4IAAA,gCAAgC,OAAA;AAChC,kIAAA,sBAAsB,OAAA;AASxB,kDAMwB;AALtB,sHAAA,sBAAsB,OAAA;AACtB,4GAAA,YAAY,OAAA;AAKd,4CAQqB;AAPnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AAOX,kEAOgC;AAN9B,yHAAA,iBAAiB,OAAA;AAOnB,sDAU0B;AATxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AASf,wCAQmB;AAPjB,4GAAA,iBAAiB,OAAA;AACjB,kGAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,4DAK6B;AAJ3B,oHAAA,eAAe,OAAA;AAKjB,0CAQoB;AAPlB,oGAAA,QAAQ,OAAA;AAQV,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,4EASqC;AARnC,6IAAA,gCAAgC,OAAA;AAChC,mIAAA,sBAAsB,OAAA;AAQxB,oCAUiB;AATf,wGAAA,eAAe,OAAA;AACf,8FAAA,KAAK,OAAA;AASP,0DAU4B;AAT1B,6HAAA,yBAAyB,OAAA;AACzB,mHAAA,eAAe,OAAA;AASjB,sCAUkB;AAThB,0GAAA,gBAAgB,OAAA;AAChB,gGAAA,MAAM,OAAA;AASR,wCAQmB;AAPjB,kGAAA,OAAO,OAAA;AAQT,wCAAsF;AAA7E,0GAAA,eAAe,OAAA;AACxB,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,gEAU+B;AAT7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AASnB,gEAS+B;AAR7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AAQnB,kDAUwB;AATtB,qHAAA,qBAAqB,OAAA;AACrB,2GAAA,WAAW,OAAA;AASb,8CAQsB;AAPpB,wGAAA,UAAU,OAAA;AAQZ,sDAO0B;AANxB,+GAAA,aAAa,OAAA;AAOf,4CAQqB;AAPnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AAOX,4DAO6B;AAN3B,oHAAA,eAAe,OAAA;AAOjB,kEAKgC;AAJ9B,0HAAA,kBAAkB,OAAA;AAKpB,kEAKgC;AAJ9B,2HAAA,mBAAmB,OAAA;AAKrB,sDAQ0B;AAPxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AAOf,4CAQqB;AAPnB,sGAAA,SAAS,OAAA;AAQX,4CAUqB;AATnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AASX,oEAUiC;AAT/B,6HAAA,oBAAoB,OAAA;AAUtB,0EAQoC;AAPlC,4IAAA,gCAAgC,OAAA;AAChC,kIAAA,sBAAsB,OAAA;AAOxB,wDAQ2B;AAPzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAOhB,wDAQ2B;AAPzB,iHAAA,cAAc,OAAA;AAQhB,0CAUoB;AATlB,8GAAA,kBAAkB,OAAA;AAClB,oGAAA,QAAQ,OAAA;AASV,gDAQuB;AAPrB,mHAAA,oBAAoB,OAAA;AACpB,yGAAA,UAAU,OAAA;AAOZ,oDAUyB;AATvB,uHAAA,sBAAsB,OAAA;AACtB,6GAAA,YAAY,OAAA;AASd,8CAMsB;AALpB,iHAAA,mBAAmB,OAAA;AACnB,uGAAA,SAAS,OAAA;AAKX,wDAU2B;AATzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAShB,gEAQ+B;AAP7B,kIAAA,2BAA2B,OAAA;AAC3B,wHAAA,iBAAiB,OAAA;AAOnB,8DAQ8B;AAP5B,gIAAA,0BAA0B,OAAA;AAC1B,sHAAA,gBAAgB,OAAA;AAOlB,gDAQuB;AAPrB,yGAAA,UAAU,OAAA;AAQZ,wDAO2B;AANzB,iHAAA,cAAc,OAAA;AAOhB,8DAO8B;AAN5B,gIAAA,0BAA0B,OAAA;AAC1B,sHAAA,gBAAgB,OAAA;AAMlB,gDAA2E;AAAlE,0GAAA,WAAW,OAAA;AACpB,kDAQwB;AAPtB,2GAAA,WAAW,OAAA;AAQb,wDAU2B;AATzB,2HAAA,wBAAwB,OAAA;AACxB,iHAAA,cAAc,OAAA;AAShB,gCAAoF;AAA3E,0FAAA,GAAG,OAAA;AACZ,0DAU4B;AAT1B,6HAAA,yBAAyB,OAAA;AACzB,mHAAA,eAAe,OAAA;AASjB,kDAUwB;AATtB,qHAAA,qBAAqB,OAAA;AACrB,2GAAA,WAAW,OAAA;AASb,sDAU0B;AATxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AASf,oEAQiC;AAP/B,6HAAA,oBAAoB,OAAA;AAQtB,wDAQ2B;AAPzB,gHAAA,aAAa,OAAA;AAQf,wDAQ2B;AAPzB,0HAAA,uBAAuB,OAAA;AACvB,gHAAA,aAAa,OAAA;AAOf,oDAQyB;AAPvB,uHAAA,sBAAsB,OAAA;AACtB,6GAAA,YAAY,OAAA;AAOd,sDAO0B;AANxB,+GAAA,aAAa,OAAA;AAOf,sDAQ0B;AAPxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AAOf,4CAA2G;AAAlG,sGAAA,SAAS,OAAA;AAClB,0EAUoC;AATlC,4IAAA,gCAAgC,OAAA;AAChC,kIAAA,sBAAsB,OAAA;AASxB,kDAMwB;AALtB,sHAAA,sBAAsB,OAAA;AACtB,4GAAA,YAAY,OAAA;AAKd,4CAQqB;AAPnB,gHAAA,mBAAmB,OAAA;AACnB,sGAAA,SAAS,OAAA;AAOX,kEAOgC;AAN9B,yHAAA,iBAAiB,OAAA;AAOnB,sDAU0B;AATxB,yHAAA,uBAAuB,OAAA;AACvB,+GAAA,aAAa,OAAA;AASf,wCAQmB;AAPjB,4GAAA,iBAAiB,OAAA;AACjB,kGAAA,OAAO,OAAA"}
@@ -13,6 +13,7 @@ export { CreditCardCreditsCursorPage, CreditCardCredits, } from "./credit-card-c
13
13
  export { CreditCardRefundsCursorPage, CreditCardRefunds, } from "./credit-card-refunds.mjs";
14
14
  export { CreditMemosCursorPage, CreditMemos, } from "./credit-memos.mjs";
15
15
  export { Currencies, } from "./currencies.mjs";
16
+ export { CustomerTypes, } from "./customer-types.mjs";
16
17
  export { CustomersCursorPage, Customers, } from "./customers.mjs";
17
18
  export { DateDrivenTerms, } from "./date-driven-terms.mjs";
18
19
  export { DeletedListObjects, } from "./deleted-list-objects.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,eAAe,GAIhB;OACM,EACL,QAAQ,GAOT;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAOvB;OACM,EACL,eAAe,EACf,KAAK,GAQN;OACM,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,gBAAgB,EAChB,MAAM,GAQP;OACM,EACL,OAAO,GAOR;OACM,EAAE,eAAe,EAA4C;OAC7D,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAOlB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,UAAU,GAOX;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,eAAe,GAMhB;OACM,EACL,kBAAkB,GAInB;OACM,EACL,mBAAmB,GAIpB;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,SAAS,GAOV;OACM,EACL,mBAAmB,EACnB,SAAS,GAQV;OACM,EACL,oBAAoB,GASrB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAMvB;OACM,EACL,wBAAwB,EACxB,cAAc,GAMf;OACM,EACL,cAAc,GAOf;OACM,EACL,kBAAkB,EAClB,QAAQ,GAQT;OACM,EACL,oBAAoB,EACpB,UAAU,GAMX;OACM,EACL,sBAAsB,EACtB,YAAY,GAQb;OACM,EACL,mBAAmB,EACnB,SAAS,GAIV;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAMlB;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAMjB;OACM,EACL,UAAU,GAOX;OACM,EACL,cAAc,GAMf;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAKjB;OACM,EAAE,WAAW,EAAiC;OAC9C,EACL,WAAW,GAOZ;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EAAE,GAAG,EAA0D;OAC/D,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,oBAAoB,GAOrB;OACM,EACL,aAAa,GAOd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,sBAAsB,EACtB,YAAY,GAMb;OACM,EACL,aAAa,GAMd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EAAE,SAAS,EAAqE;OAChF,EACL,gCAAgC,EAChC,sBAAsB,GAQvB;OACM,EACL,sBAAsB,EACtB,YAAY,GAIb;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,iBAAiB,GAMlB;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,iBAAiB,EACjB,OAAO,GAMR"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/qbd/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,eAAe,GAIhB;OACM,EACL,QAAQ,GAOT;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAOvB;OACM,EACL,eAAe,EACf,KAAK,GAQN;OACM,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,gBAAgB,EAChB,MAAM,GAQP;OACM,EACL,OAAO,GAOR;OACM,EAAE,eAAe,EAA4C;OAC7D,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAQlB;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAOlB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,UAAU,GAOX;OACM,EACL,aAAa,GAMd;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,eAAe,GAMhB;OACM,EACL,kBAAkB,GAInB;OACM,EACL,mBAAmB,GAIpB;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,SAAS,GAOV;OACM,EACL,mBAAmB,EACnB,SAAS,GAQV;OACM,EACL,oBAAoB,GASrB;OACM,EACL,gCAAgC,EAChC,sBAAsB,GAMvB;OACM,EACL,wBAAwB,EACxB,cAAc,GAMf;OACM,EACL,cAAc,GAOf;OACM,EACL,kBAAkB,EAClB,QAAQ,GAQT;OACM,EACL,oBAAoB,EACpB,UAAU,GAMX;OACM,EACL,sBAAsB,EACtB,YAAY,GAQb;OACM,EACL,mBAAmB,EACnB,SAAS,GAIV;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EACL,2BAA2B,EAC3B,iBAAiB,GAMlB;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAMjB;OACM,EACL,UAAU,GAOX;OACM,EACL,cAAc,GAMf;OACM,EACL,0BAA0B,EAC1B,gBAAgB,GAKjB;OACM,EAAE,WAAW,EAAiC;OAC9C,EACL,WAAW,GAOZ;OACM,EACL,wBAAwB,EACxB,cAAc,GAQf;OACM,EAAE,GAAG,EAA0D;OAC/D,EACL,yBAAyB,EACzB,eAAe,GAQhB;OACM,EACL,qBAAqB,EACrB,WAAW,GAQZ;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,oBAAoB,GAOrB;OACM,EACL,aAAa,GAOd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EACL,sBAAsB,EACtB,YAAY,GAMb;OACM,EACL,aAAa,GAMd;OACM,EACL,uBAAuB,EACvB,aAAa,GAMd;OACM,EAAE,SAAS,EAAqE;OAChF,EACL,gCAAgC,EAChC,sBAAsB,GAQvB;OACM,EACL,sBAAsB,EACtB,YAAY,GAIb;OACM,EACL,mBAAmB,EACnB,SAAS,GAMV;OACM,EACL,iBAAiB,GAMlB;OACM,EACL,uBAAuB,EACvB,aAAa,GAQd;OACM,EACL,iBAAiB,EACjB,OAAO,GAMR"}
@@ -28,6 +28,8 @@ import * as CreditMemosAPI from "./credit-memos.js";
28
28
  import { CreditMemo, CreditMemoCreateParams, CreditMemoDeleteParams, CreditMemoDeleteResponse, CreditMemoListParams, CreditMemoRetrieveParams, CreditMemoUpdateParams, CreditMemos, CreditMemosCursorPage } from "./credit-memos.js";
29
29
  import * as CurrenciesAPI from "./currencies.js";
30
30
  import { Currencies, Currency, CurrencyCreateParams, CurrencyListParams, CurrencyListResponse, CurrencyRetrieveParams, CurrencyUpdateParams } from "./currencies.js";
31
+ import * as CustomerTypesAPI from "./customer-types.js";
32
+ import { CustomerType, CustomerTypeCreateParams, CustomerTypeListParams, CustomerTypeListResponse, CustomerTypeRetrieveParams, CustomerTypes } from "./customer-types.js";
31
33
  import * as CustomersAPI from "./customers.js";
32
34
  import { Customer, CustomerCreateParams, CustomerListParams, CustomerRetrieveParams, CustomerUpdateParams, Customers, CustomersCursorPage } from "./customers.js";
33
35
  import * as DateDrivenTermsAPI from "./date-driven-terms.js";
@@ -123,6 +125,7 @@ export declare class Qbd extends APIResource {
123
125
  creditCardRefunds: CreditCardRefundsAPI.CreditCardRefunds;
124
126
  creditMemos: CreditMemosAPI.CreditMemos;
125
127
  currencies: CurrenciesAPI.Currencies;
128
+ customerTypes: CustomerTypesAPI.CustomerTypes;
126
129
  customers: CustomersAPI.Customers;
127
130
  dateDrivenTerms: DateDrivenTermsAPI.DateDrivenTerms;
128
131
  deletedListObjects: DeletedListObjectsAPI.DeletedListObjects;
@@ -213,6 +216,7 @@ export declare namespace Qbd {
213
216
  export { CreditCardRefunds as CreditCardRefunds, type CreditCardRefund as CreditCardRefund, type CreditCardRefundDeleteResponse as CreditCardRefundDeleteResponse, CreditCardRefundsCursorPage as CreditCardRefundsCursorPage, type CreditCardRefundCreateParams as CreditCardRefundCreateParams, type CreditCardRefundRetrieveParams as CreditCardRefundRetrieveParams, type CreditCardRefundListParams as CreditCardRefundListParams, type CreditCardRefundDeleteParams as CreditCardRefundDeleteParams, };
214
217
  export { CreditMemos as CreditMemos, type CreditMemo as CreditMemo, type CreditMemoDeleteResponse as CreditMemoDeleteResponse, CreditMemosCursorPage as CreditMemosCursorPage, type CreditMemoCreateParams as CreditMemoCreateParams, type CreditMemoRetrieveParams as CreditMemoRetrieveParams, type CreditMemoUpdateParams as CreditMemoUpdateParams, type CreditMemoListParams as CreditMemoListParams, type CreditMemoDeleteParams as CreditMemoDeleteParams, };
215
218
  export { Currencies as Currencies, type Currency as Currency, type CurrencyListResponse as CurrencyListResponse, type CurrencyCreateParams as CurrencyCreateParams, type CurrencyRetrieveParams as CurrencyRetrieveParams, type CurrencyUpdateParams as CurrencyUpdateParams, type CurrencyListParams as CurrencyListParams, };
219
+ export { CustomerTypes as CustomerTypes, type CustomerType as CustomerType, type CustomerTypeListResponse as CustomerTypeListResponse, type CustomerTypeCreateParams as CustomerTypeCreateParams, type CustomerTypeRetrieveParams as CustomerTypeRetrieveParams, type CustomerTypeListParams as CustomerTypeListParams, };
216
220
  export { Customers as Customers, type Customer as Customer, CustomersCursorPage as CustomersCursorPage, type CustomerCreateParams as CustomerCreateParams, type CustomerRetrieveParams as CustomerRetrieveParams, type CustomerUpdateParams as CustomerUpdateParams, type CustomerListParams as CustomerListParams, };
217
221
  export { DateDrivenTerms as DateDrivenTerms, type DateDrivenTerm as DateDrivenTerm, type DateDrivenTermListResponse as DateDrivenTermListResponse, type DateDrivenTermCreateParams as DateDrivenTermCreateParams, type DateDrivenTermRetrieveParams as DateDrivenTermRetrieveParams, type DateDrivenTermListParams as DateDrivenTermListParams, };
218
222
  export { DeletedListObjects as DeletedListObjects, type DeletedListObject as DeletedListObject, type DeletedListObjectListResponse as DeletedListObjectListResponse, type DeletedListObjectListParams as DeletedListObjectListParams, };