conductor-node 12.30.0 → 12.31.1

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.
@@ -0,0 +1,533 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from "../../resource.js";
4
+ import * as Core from "../../core.js";
5
+
6
+ export class Currencies extends APIResource {
7
+ /**
8
+ * Creates a user-defined currency with the specified name and currency code.
9
+ * Exchange rates for user-defined currencies are not updated automatically by
10
+ * QuickBooks Desktop; update them manually as needed.
11
+ *
12
+ * @example
13
+ * ```ts
14
+ * const currency = await conductor.qbd.currencies.create({
15
+ * currencyCode: 'USD',
16
+ * name: 'United States Dollar',
17
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
18
+ * });
19
+ * ```
20
+ */
21
+ create(params: CurrencyCreateParams, options?: Core.RequestOptions): Core.APIPromise<Currency> {
22
+ const { conductorEndUserId, ...body } = params;
23
+ return this._client.post('/quickbooks-desktop/currencies', {
24
+ body,
25
+ ...options,
26
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
27
+ });
28
+ }
29
+
30
+ /**
31
+ * Retrieves a currency by ID.
32
+ *
33
+ * @example
34
+ * ```ts
35
+ * const currency = await conductor.qbd.currencies.retrieve(
36
+ * '80000001-1234567890',
37
+ * { conductorEndUserId: 'end_usr_1234567abcdefg' },
38
+ * );
39
+ * ```
40
+ */
41
+ retrieve(
42
+ id: string,
43
+ params: CurrencyRetrieveParams,
44
+ options?: Core.RequestOptions,
45
+ ): Core.APIPromise<Currency> {
46
+ const { conductorEndUserId } = params;
47
+ return this._client.get(`/quickbooks-desktop/currencies/${id}`, {
48
+ ...options,
49
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
50
+ });
51
+ }
52
+
53
+ /**
54
+ * Updates an existing currency. For built-in currencies, only the `isActive`
55
+ * status can be changed; name and currency code are not editable. For user-defined
56
+ * currencies, all fields in this request are editable.
57
+ *
58
+ * @example
59
+ * ```ts
60
+ * const currency = await conductor.qbd.currencies.update(
61
+ * '80000001-1234567890',
62
+ * {
63
+ * revisionNumber: '1721172183',
64
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
65
+ * },
66
+ * );
67
+ * ```
68
+ */
69
+ update(id: string, params: CurrencyUpdateParams, options?: Core.RequestOptions): Core.APIPromise<Currency> {
70
+ const { conductorEndUserId, ...body } = params;
71
+ return this._client.post(`/quickbooks-desktop/currencies/${id}`, {
72
+ body,
73
+ ...options,
74
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
75
+ });
76
+ }
77
+
78
+ /**
79
+ * Returns a list of currencies. NOTE: QuickBooks Desktop does not support
80
+ * pagination for currencies; hence, there is no `cursor` parameter. Users
81
+ * typically have few currencies.
82
+ *
83
+ * @example
84
+ * ```ts
85
+ * const currencies = await conductor.qbd.currencies.list({
86
+ * conductorEndUserId: 'end_usr_1234567abcdefg',
87
+ * });
88
+ * ```
89
+ */
90
+ list(params: CurrencyListParams, options?: Core.RequestOptions): Core.APIPromise<CurrencyListResponse> {
91
+ const { conductorEndUserId, ...query } = params;
92
+ return this._client.get('/quickbooks-desktop/currencies', {
93
+ query,
94
+ ...options,
95
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
96
+ });
97
+ }
98
+ }
99
+
100
+ export interface Currency {
101
+ /**
102
+ * The unique identifier assigned by QuickBooks to this currency. This ID is unique
103
+ * across all currencies but not across different QuickBooks object types.
104
+ */
105
+ id: string;
106
+
107
+ /**
108
+ * The date when the exchange rate for this currency was last updated, in ISO 8601
109
+ * format (YYYY-MM-DD).
110
+ */
111
+ asOfDate: string | null;
112
+
113
+ /**
114
+ * The date and time when this currency was created, in ISO 8601 format
115
+ * (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local
116
+ * timezone of the end-user's computer.
117
+ */
118
+ createdAt: string;
119
+
120
+ /**
121
+ * The internationally accepted currency code used by this currency, typically
122
+ * based on the ISO 4217 standard (for example, USD for US Dollars). Built-in
123
+ * QuickBooks currencies follow ISO 4217. For user-defined currencies, following
124
+ * ISO 4217 is recommended but not required. In many cases, the three-letter code
125
+ * is formed from the country's two-letter internet code plus a currency letter
126
+ * (e.g., BZ + D → BZD for Belize Dollar).
127
+ */
128
+ currencyCode: string;
129
+
130
+ /**
131
+ * Controls how this currency displays thousands separators, grouping, and decimal
132
+ * places.
133
+ */
134
+ currencyFormat: Currency.CurrencyFormat | null;
135
+
136
+ /**
137
+ * The market exchange rate between this currency's currency and the home currency
138
+ * in QuickBooks at the time of this transaction. Represented as a decimal value
139
+ * (e.g., 1.2345 for 1 EUR = 1.2345 USD if USD is the home currency).
140
+ */
141
+ exchangeRate: number | null;
142
+
143
+ /**
144
+ * Indicates whether this currency is active. Inactive objects are typically hidden
145
+ * from views and reports in QuickBooks. Defaults to `true`.
146
+ */
147
+ isActive: boolean;
148
+
149
+ /**
150
+ * Indicates whether this currency was created by a QuickBooks user (`true`) or is
151
+ * a built-in currency (`false`).
152
+ */
153
+ isUserDefinedCurrency: boolean | null;
154
+
155
+ /**
156
+ * The case-insensitive unique name of this currency, unique across all currencies.
157
+ * For built-in currencies, the name is the internationally accepted currency name
158
+ * and is not editable.
159
+ *
160
+ * **NOTE**: Currencies do not have a `fullName` field because they are not
161
+ * hierarchical objects, which is why `name` is unique for them but not for objects
162
+ * that have parents.
163
+ */
164
+ name: string;
165
+
166
+ /**
167
+ * The type of object. This value is always `"qbd_currency"`.
168
+ */
169
+ objectType: 'qbd_currency';
170
+
171
+ /**
172
+ * The current QuickBooks-assigned revision number of this currency object, which
173
+ * changes each time the object is modified. When updating this object, you must
174
+ * provide the most recent `revisionNumber` to ensure you're working with the
175
+ * latest data; otherwise, the update will return an error.
176
+ */
177
+ revisionNumber: string;
178
+
179
+ /**
180
+ * The date and time when this currency was last updated, in ISO 8601 format
181
+ * (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local
182
+ * timezone of the end-user's computer.
183
+ */
184
+ updatedAt: string;
185
+ }
186
+
187
+ export namespace Currency {
188
+ /**
189
+ * Controls how this currency displays thousands separators, grouping, and decimal
190
+ * places.
191
+ */
192
+ export interface CurrencyFormat {
193
+ /**
194
+ * Controls the number of decimal places displayed for currency values. Use `0` to
195
+ * hide decimals or `2` to display cents.
196
+ */
197
+ decimalPlaces: '0' | '2' | null;
198
+
199
+ /**
200
+ * Controls the decimal separator when displaying currency values (for example,
201
+ * "1.00" vs "1,00"). Defaults to period.
202
+ */
203
+ decimalSeparator: 'comma' | 'period' | null;
204
+
205
+ /**
206
+ * Controls the thousands separator when displaying currency values (for example,
207
+ * "1,000,000"). Defaults to comma.
208
+ */
209
+ thousandSeparator: 'apostrophe' | 'comma' | 'period' | 'space' | null;
210
+
211
+ /**
212
+ * Controls how digits are grouped for thousands when displaying currency values
213
+ * (for example, "10,000,000").
214
+ */
215
+ thousandSeparatorGrouping: 'x_xx_xx_xxx' | 'xx_xxx_xxx' | null;
216
+ }
217
+ }
218
+
219
+ export interface CurrencyListResponse {
220
+ /**
221
+ * The array of currencies.
222
+ */
223
+ data: Array<Currency>;
224
+
225
+ /**
226
+ * The type of object. This value is always `"list"`.
227
+ */
228
+ objectType: 'list';
229
+
230
+ /**
231
+ * The endpoint URL where this list can be accessed.
232
+ */
233
+ url: string;
234
+ }
235
+
236
+ export interface CurrencyCreateParams {
237
+ /**
238
+ * Body param: The internationally accepted currency code used by this currency,
239
+ * typically based on the ISO 4217 standard (for example, USD for US Dollars).
240
+ * Built-in QuickBooks currencies follow ISO 4217. For user-defined currencies,
241
+ * following ISO 4217 is recommended but not required. In many cases, the
242
+ * three-letter code is formed from the country's two-letter internet code plus a
243
+ * currency letter (e.g., BZ + D → BZD for Belize Dollar).
244
+ *
245
+ * Maximum length: 3 characters.
246
+ */
247
+ currencyCode: string;
248
+
249
+ /**
250
+ * Body param: The case-insensitive unique name of this currency, unique across all
251
+ * currencies. For built-in currencies, the name is the internationally accepted
252
+ * currency name and is not editable.
253
+ *
254
+ * **NOTE**: Currencies do not have a `fullName` field because they are not
255
+ * hierarchical objects, which is why `name` is unique for them but not for objects
256
+ * that have parents.
257
+ *
258
+ * Maximum length: 64 characters.
259
+ */
260
+ name: string;
261
+
262
+ /**
263
+ * Header param: The ID of the EndUser to receive this request (e.g.,
264
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
265
+ */
266
+ conductorEndUserId: string;
267
+
268
+ /**
269
+ * Body param: Controls how this currency displays thousands separators, grouping,
270
+ * and decimal places.
271
+ */
272
+ currencyFormat?: CurrencyCreateParams.CurrencyFormat;
273
+
274
+ /**
275
+ * Body param: Indicates whether this currency is active. Inactive objects are
276
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
277
+ */
278
+ isActive?: boolean;
279
+ }
280
+
281
+ export namespace CurrencyCreateParams {
282
+ /**
283
+ * Controls how this currency displays thousands separators, grouping, and decimal
284
+ * places.
285
+ */
286
+ export interface CurrencyFormat {
287
+ /**
288
+ * Controls the number of decimal places displayed for currency values. Use `0` to
289
+ * hide decimals or `2` to display cents.
290
+ */
291
+ decimalPlaces?: '0' | '2';
292
+
293
+ /**
294
+ * Controls the decimal separator when displaying currency values (for example,
295
+ * "1.00" vs "1,00"). Defaults to period.
296
+ */
297
+ decimalSeparator?: 'comma' | 'period';
298
+
299
+ /**
300
+ * Controls the thousands separator when displaying currency values (for example,
301
+ * "1,000,000"). Defaults to comma.
302
+ */
303
+ thousandSeparator?: 'apostrophe' | 'comma' | 'period' | 'space';
304
+
305
+ /**
306
+ * Controls how digits are grouped for thousands when displaying currency values
307
+ * (for example, "10,000,000").
308
+ */
309
+ thousandSeparatorGrouping?: 'x_xx_xx_xxx' | 'xx_xxx_xxx';
310
+ }
311
+ }
312
+
313
+ export interface CurrencyRetrieveParams {
314
+ /**
315
+ * The ID of the EndUser to receive this request (e.g.,
316
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
317
+ */
318
+ conductorEndUserId: string;
319
+ }
320
+
321
+ export interface CurrencyUpdateParams {
322
+ /**
323
+ * Body param: The current QuickBooks-assigned revision number of the currency
324
+ * object you are updating, which you can get by fetching the object first. Provide
325
+ * the most recent `revisionNumber` to ensure you're working with the latest data;
326
+ * otherwise, the update will return an error.
327
+ */
328
+ revisionNumber: string;
329
+
330
+ /**
331
+ * Header param: The ID of the EndUser to receive this request (e.g.,
332
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
333
+ */
334
+ conductorEndUserId: string;
335
+
336
+ /**
337
+ * Body param: The internationally accepted currency code used by this currency,
338
+ * typically based on the ISO 4217 standard (for example, USD for US Dollars).
339
+ * Built-in QuickBooks currencies follow ISO 4217. For user-defined currencies,
340
+ * following ISO 4217 is recommended but not required. In many cases, the
341
+ * three-letter code is formed from the country's two-letter internet code plus a
342
+ * currency letter (e.g., BZ + D → BZD for Belize Dollar).
343
+ *
344
+ * Maximum length: 3 characters.
345
+ */
346
+ currencyCode?: string;
347
+
348
+ /**
349
+ * Body param: Controls how this currency displays thousands separators, grouping,
350
+ * and decimal places.
351
+ */
352
+ currencyFormat?: CurrencyUpdateParams.CurrencyFormat;
353
+
354
+ /**
355
+ * Body param: Indicates whether this currency is active. Inactive objects are
356
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
357
+ */
358
+ isActive?: boolean;
359
+
360
+ /**
361
+ * Body param: The case-insensitive unique name of this currency, unique across all
362
+ * currencies. For built-in currencies, the name is the internationally accepted
363
+ * currency name and is not editable.
364
+ *
365
+ * **NOTE**: Currencies do not have a `fullName` field because they are not
366
+ * hierarchical objects, which is why `name` is unique for them but not for objects
367
+ * that have parents.
368
+ *
369
+ * Maximum length: 64 characters.
370
+ */
371
+ name?: string;
372
+ }
373
+
374
+ export namespace CurrencyUpdateParams {
375
+ /**
376
+ * Controls how this currency displays thousands separators, grouping, and decimal
377
+ * places.
378
+ */
379
+ export interface CurrencyFormat {
380
+ /**
381
+ * Controls the number of decimal places displayed for currency values. Use `0` to
382
+ * hide decimals or `2` to display cents.
383
+ */
384
+ decimalPlaces?: '0' | '2';
385
+
386
+ /**
387
+ * Controls the decimal separator when displaying currency values (for example,
388
+ * "1.00" vs "1,00"). Defaults to period.
389
+ */
390
+ decimalSeparator?: 'comma' | 'period';
391
+
392
+ /**
393
+ * Controls the thousands separator when displaying currency values (for example,
394
+ * "1,000,000"). Defaults to comma.
395
+ */
396
+ thousandSeparator?: 'apostrophe' | 'comma' | 'period' | 'space';
397
+
398
+ /**
399
+ * Controls how digits are grouped for thousands when displaying currency values
400
+ * (for example, "10,000,000").
401
+ */
402
+ thousandSeparatorGrouping?: 'x_xx_xx_xxx' | 'xx_xxx_xxx';
403
+ }
404
+ }
405
+
406
+ export interface CurrencyListParams {
407
+ /**
408
+ * Header param: The ID of the EndUser to receive this request (e.g.,
409
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
410
+ */
411
+ conductorEndUserId: string;
412
+
413
+ /**
414
+ * Query param: Filter for specific currencies by their QuickBooks-assigned unique
415
+ * identifier(s).
416
+ *
417
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
418
+ * query parameters for this request.
419
+ *
420
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
421
+ * request will return an error.
422
+ */
423
+ ids?: Array<string>;
424
+
425
+ /**
426
+ * Query param: The maximum number of objects to return.
427
+ *
428
+ * **IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for
429
+ * currencies. This parameter will limit the response size, but you cannot fetch
430
+ * subsequent results using a cursor. For pagination, use the name-range parameters
431
+ * instead (e.g., `nameFrom=A&nameTo=B`).
432
+ *
433
+ * When this parameter is omitted, the endpoint returns all currencies without
434
+ * limit, unlike paginated endpoints which default to 150 records. This is
435
+ * acceptable because currencies typically have low record counts.
436
+ */
437
+ limit?: number;
438
+
439
+ /**
440
+ * Query param: Filter for currencies whose `name` contains this substring,
441
+ * case-insensitive.
442
+ *
443
+ * **NOTE**: If you use this parameter, you cannot also use `nameStartsWith` or
444
+ * `nameEndsWith`.
445
+ */
446
+ nameContains?: string;
447
+
448
+ /**
449
+ * Query param: Filter for currencies whose `name` ends with this substring,
450
+ * case-insensitive.
451
+ *
452
+ * **NOTE**: If you use this parameter, you cannot also use `nameContains` or
453
+ * `nameStartsWith`.
454
+ */
455
+ nameEndsWith?: string;
456
+
457
+ /**
458
+ * Query param: Filter for currencies whose `name` is alphabetically greater than
459
+ * or equal to this value.
460
+ */
461
+ nameFrom?: string;
462
+
463
+ /**
464
+ * Query param: Filter for specific currencies by their name(s), case-insensitive.
465
+ * Like `id`, `name` is a unique identifier for a currency.
466
+ *
467
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
468
+ * query parameters for this request.
469
+ *
470
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
471
+ * request will return an error.
472
+ */
473
+ names?: Array<string>;
474
+
475
+ /**
476
+ * Query param: Filter for currencies whose `name` starts with this substring,
477
+ * case-insensitive.
478
+ *
479
+ * **NOTE**: If you use this parameter, you cannot also use `nameContains` or
480
+ * `nameEndsWith`.
481
+ */
482
+ nameStartsWith?: string;
483
+
484
+ /**
485
+ * Query param: Filter for currencies whose `name` is alphabetically less than or
486
+ * equal to this value.
487
+ */
488
+ nameTo?: string;
489
+
490
+ /**
491
+ * Query param: Filter for currencies that are active, inactive, or both.
492
+ */
493
+ status?: 'active' | 'all' | 'inactive';
494
+
495
+ /**
496
+ * Query param: Filter for currencies updated on or after this date/time. Accepts
497
+ * the following ISO 8601 formats:
498
+ *
499
+ * - **date-only** (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the
500
+ * **start of the specified day** in the local timezone of the end-user's
501
+ * computer (e.g., `2025-01-01` → `2025-01-01T00:00:00`).
502
+ * - **datetime without timezone** (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop
503
+ * interprets the timestamp in the local timezone of the end-user's computer.
504
+ * - **datetime with timezone** (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop
505
+ * interprets the timestamp using the specified timezone.
506
+ */
507
+ updatedAfter?: string;
508
+
509
+ /**
510
+ * Query param: Filter for currencies updated on or before this date/time. Accepts
511
+ * the following ISO 8601 formats:
512
+ *
513
+ * - **date-only** (YYYY-MM-DD) - QuickBooks Desktop interprets the date as the
514
+ * **end of the specified day** in the local timezone of the end-user's computer
515
+ * (e.g., `2025-01-01` → `2025-01-01T23:59:59`).
516
+ * - **datetime without timezone** (YYYY-MM-DDTHH:mm:ss) - QuickBooks Desktop
517
+ * interprets the timestamp in the local timezone of the end-user's computer.
518
+ * - **datetime with timezone** (YYYY-MM-DDTHH:mm:ss±HH:mm) - QuickBooks Desktop
519
+ * interprets the timestamp using the specified timezone.
520
+ */
521
+ updatedBefore?: string;
522
+ }
523
+
524
+ export declare namespace Currencies {
525
+ export {
526
+ type Currency as Currency,
527
+ type CurrencyListResponse as CurrencyListResponse,
528
+ type CurrencyCreateParams as CurrencyCreateParams,
529
+ type CurrencyRetrieveParams as CurrencyRetrieveParams,
530
+ type CurrencyUpdateParams as CurrencyUpdateParams,
531
+ type CurrencyListParams as CurrencyListParams,
532
+ };
533
+ }
@@ -112,6 +112,15 @@ export {
112
112
  type CreditMemoListParams,
113
113
  type CreditMemoDeleteParams,
114
114
  } from "./credit-memos.js";
115
+ export {
116
+ Currencies,
117
+ type Currency,
118
+ type CurrencyListResponse,
119
+ type CurrencyCreateParams,
120
+ type CurrencyRetrieveParams,
121
+ type CurrencyUpdateParams,
122
+ type CurrencyListParams,
123
+ } from "./currencies.js";
115
124
  export {
116
125
  CustomersCursorPage,
117
126
  Customers,
@@ -126,6 +126,16 @@ import {
126
126
  CreditMemos,
127
127
  CreditMemosCursorPage,
128
128
  } from "./credit-memos.js";
129
+ import * as CurrenciesAPI from "./currencies.js";
130
+ import {
131
+ Currencies,
132
+ Currency,
133
+ CurrencyCreateParams,
134
+ CurrencyListParams,
135
+ CurrencyListResponse,
136
+ CurrencyRetrieveParams,
137
+ CurrencyUpdateParams,
138
+ } from "./currencies.js";
129
139
  import * as CustomersAPI from "./customers.js";
130
140
  import {
131
141
  Customer,
@@ -538,6 +548,7 @@ export class Qbd extends APIResource {
538
548
  this._client,
539
549
  );
540
550
  creditMemos: CreditMemosAPI.CreditMemos = new CreditMemosAPI.CreditMemos(this._client);
551
+ currencies: CurrenciesAPI.Currencies = new CurrenciesAPI.Currencies(this._client);
541
552
  customers: CustomersAPI.Customers = new CustomersAPI.Customers(this._client);
542
553
  dateDrivenTerms: DateDrivenTermsAPI.DateDrivenTerms = new DateDrivenTermsAPI.DateDrivenTerms(this._client);
543
554
  deletedListObjects: DeletedListObjectsAPI.DeletedListObjects = new DeletedListObjectsAPI.DeletedListObjects(
@@ -661,6 +672,7 @@ Qbd.CreditCardCredits = CreditCardCredits;
661
672
  Qbd.CreditCardCreditsCursorPage = CreditCardCreditsCursorPage;
662
673
  Qbd.CreditMemos = CreditMemos;
663
674
  Qbd.CreditMemosCursorPage = CreditMemosCursorPage;
675
+ Qbd.Currencies = Currencies;
664
676
  Qbd.Customers = Customers;
665
677
  Qbd.CustomersCursorPage = CustomersCursorPage;
666
678
  Qbd.DateDrivenTerms = DateDrivenTerms;
@@ -860,6 +872,16 @@ export declare namespace Qbd {
860
872
  type CreditMemoDeleteParams as CreditMemoDeleteParams,
861
873
  };
862
874
 
875
+ export {
876
+ Currencies as Currencies,
877
+ type Currency as Currency,
878
+ type CurrencyListResponse as CurrencyListResponse,
879
+ type CurrencyCreateParams as CurrencyCreateParams,
880
+ type CurrencyRetrieveParams as CurrencyRetrieveParams,
881
+ type CurrencyUpdateParams as CurrencyUpdateParams,
882
+ type CurrencyListParams as CurrencyListParams,
883
+ };
884
+
863
885
  export {
864
886
  Customers as Customers,
865
887
  type Customer as Customer,
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.30.0'; // x-release-please-version
1
+ export const VERSION = '12.31.1'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.30.0";
1
+ export declare const VERSION = "12.31.1";
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.30.0'; // x-release-please-version
4
+ exports.VERSION = '12.31.1'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '12.30.0'; // x-release-please-version
1
+ export const VERSION = '12.31.1'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map