conductor-node 12.0.0-beta.18 → 12.0.0-beta.19

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,567 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../../resource';
4
+ import * as Core from '../../core';
5
+
6
+ export class PriceLevels extends APIResource {
7
+ /**
8
+ * Creates a new price level.
9
+ */
10
+ create(params: PriceLevelCreateParams, options?: Core.RequestOptions): Core.APIPromise<PriceLevel> {
11
+ const { conductorEndUserId, ...body } = params;
12
+ return this._client.post('/quickbooks-desktop/price-levels', {
13
+ body,
14
+ ...options,
15
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
16
+ });
17
+ }
18
+
19
+ /**
20
+ * Retrieves a price level by ID.
21
+ */
22
+ retrieve(
23
+ id: string,
24
+ params: PriceLevelRetrieveParams,
25
+ options?: Core.RequestOptions,
26
+ ): Core.APIPromise<PriceLevel> {
27
+ const { conductorEndUserId } = params;
28
+ return this._client.get(`/quickbooks-desktop/price-levels/${id}`, {
29
+ ...options,
30
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
31
+ });
32
+ }
33
+
34
+ /**
35
+ * Updates an existing price level.
36
+ */
37
+ update(
38
+ id: string,
39
+ params: PriceLevelUpdateParams,
40
+ options?: Core.RequestOptions,
41
+ ): Core.APIPromise<PriceLevel> {
42
+ const { conductorEndUserId, ...body } = params;
43
+ return this._client.post(`/quickbooks-desktop/price-levels/${id}`, {
44
+ body,
45
+ ...options,
46
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
47
+ });
48
+ }
49
+
50
+ /**
51
+ * Returns a list of price levels. NOTE: QuickBooks Desktop does not support
52
+ * pagination for price levels; hence, there is no `cursor` parameter. Users
53
+ * typically have few price levels.
54
+ */
55
+ list(params: PriceLevelListParams, options?: Core.RequestOptions): Core.APIPromise<PriceLevelListResponse> {
56
+ const { conductorEndUserId, ...query } = params;
57
+ return this._client.get('/quickbooks-desktop/price-levels', {
58
+ query,
59
+ ...options,
60
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
61
+ });
62
+ }
63
+ }
64
+
65
+ export interface PriceLevel {
66
+ /**
67
+ * The unique identifier assigned by QuickBooks to this price level. This ID is
68
+ * unique across all price levels but not across different QuickBooks object types.
69
+ */
70
+ id: string;
71
+
72
+ /**
73
+ * The date and time when this price level was created, in ISO 8601 format
74
+ * (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
75
+ * in QuickBooks.
76
+ */
77
+ createdAt: string;
78
+
79
+ /**
80
+ * The price level's currency. For built-in currencies, the name and code are
81
+ * standard international values. For user-defined currencies, all values are
82
+ * editable.
83
+ */
84
+ currency: PriceLevel.Currency | null;
85
+
86
+ /**
87
+ * The fixed percentage adjustment applied to all items for this price level
88
+ * (instead of a per-item price level). Once you create the price level, you cannot
89
+ * change this.
90
+ *
91
+ * When this price level is applied to a customer, it automatically adjusts the
92
+ * `rate` and `amount` columns for applicable line items in sales orders and
93
+ * invoices for that customer. This value supports both positive and negative
94
+ * values - a value of "20" increases prices by 20%, while "-10" decreases prices
95
+ * by 10%.
96
+ */
97
+ fixedPercentage: string | null;
98
+
99
+ /**
100
+ * Indicates whether this price level is active. Inactive objects are typically
101
+ * hidden from views and reports in QuickBooks. Defaults to `true`.
102
+ */
103
+ isActive: boolean;
104
+
105
+ /**
106
+ * The case-insensitive unique name of this price level, unique across all price
107
+ * levels.
108
+ *
109
+ * **NOTE**: Price levels do not have a `fullName` field because they are not
110
+ * hierarchical objects, which is why `name` is unique for them but not for objects
111
+ * that have parents.
112
+ */
113
+ name: string;
114
+
115
+ /**
116
+ * The type of object. This value is always `"qbd_price_level"`.
117
+ */
118
+ objectType: 'qbd_price_level';
119
+
120
+ /**
121
+ * The per-item price level configurations for this price level.
122
+ */
123
+ perItemPriceLevels: Array<PriceLevel.PerItemPriceLevel>;
124
+
125
+ /**
126
+ * The price level's type.
127
+ */
128
+ priceLevelType: 'fixed_percentage' | 'per_item';
129
+
130
+ /**
131
+ * The current QuickBooks-assigned revision number of this price level object,
132
+ * which changes each time the object is modified. When updating this object, you
133
+ * must provide the most recent `revisionNumber` to ensure you're working with the
134
+ * latest data; otherwise, the update will return an error.
135
+ */
136
+ revisionNumber: string;
137
+
138
+ /**
139
+ * The date and time when this price level was last updated, in ISO 8601 format
140
+ * (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
141
+ * in QuickBooks.
142
+ */
143
+ updatedAt: string;
144
+ }
145
+
146
+ export namespace PriceLevel {
147
+ /**
148
+ * The price level's currency. For built-in currencies, the name and code are
149
+ * standard international values. For user-defined currencies, all values are
150
+ * editable.
151
+ */
152
+ export interface Currency {
153
+ /**
154
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
155
+ * across all objects of the same type, but not across different QuickBooks object
156
+ * types.
157
+ */
158
+ id: string | null;
159
+
160
+ /**
161
+ * The fully-qualified unique name for this object, formed by combining the names
162
+ * of its parent objects with its own `name`, separated by colons. Not
163
+ * case-sensitive.
164
+ */
165
+ fullName: string | null;
166
+ }
167
+
168
+ export interface PerItemPriceLevel {
169
+ /**
170
+ * The percentage adjustment for this per-item price level when using relative
171
+ * pricing. Specifies a percentage to modify pricing, using positive values (e.g.,
172
+ * "20") to increase prices by that percentage, or negative values (e.g., "-10") to
173
+ * apply a discount.
174
+ */
175
+ adjustPercentage: string;
176
+
177
+ /**
178
+ * The base value reference for this per-item price level's percentage adjustment.
179
+ * Specifies which price to use as the starting point for the adjustment
180
+ * calculation in the price level.
181
+ *
182
+ * **NOTE:** The price level must use either a fixed pricing approach
183
+ * (`customPrice` or `customPricePercent`) or a relative adjustment approach
184
+ * (`adjustPercentage` with `adjustRelativeTo`) when configuring per-item price
185
+ * levels.
186
+ */
187
+ adjustRelativeTo: 'cost' | 'current_custom_price' | 'standard_price';
188
+
189
+ /**
190
+ * The item associated with this per-item price level. This can refer to any good
191
+ * or service that the business buys or sells, including item types such as a
192
+ * service item, inventory item, or special calculation item like a discount item
193
+ * or sales-tax item.
194
+ */
195
+ item: PerItemPriceLevel.Item | null;
196
+ }
197
+
198
+ export namespace PerItemPriceLevel {
199
+ /**
200
+ * The item associated with this per-item price level. This can refer to any good
201
+ * or service that the business buys or sells, including item types such as a
202
+ * service item, inventory item, or special calculation item like a discount item
203
+ * or sales-tax item.
204
+ */
205
+ export interface Item {
206
+ /**
207
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
208
+ * across all objects of the same type, but not across different QuickBooks object
209
+ * types.
210
+ */
211
+ id: string | null;
212
+
213
+ /**
214
+ * The fully-qualified unique name for this object, formed by combining the names
215
+ * of its parent objects with its own `name`, separated by colons. Not
216
+ * case-sensitive.
217
+ */
218
+ fullName: string | null;
219
+ }
220
+ }
221
+ }
222
+
223
+ export interface PriceLevelListResponse {
224
+ /**
225
+ * The array of price levels.
226
+ */
227
+ data: Array<PriceLevel>;
228
+
229
+ /**
230
+ * The type of object. This value is always `"list"`.
231
+ */
232
+ objectType: 'list';
233
+
234
+ /**
235
+ * The endpoint URL where this list can be accessed.
236
+ */
237
+ url: string;
238
+ }
239
+
240
+ export interface PriceLevelCreateParams {
241
+ /**
242
+ * Body param: The case-insensitive unique name of this price level, unique across
243
+ * all price levels.
244
+ *
245
+ * **NOTE**: Price levels do not have a `fullName` field because they are not
246
+ * hierarchical objects, which is why `name` is unique for them but not for objects
247
+ * that have parents.
248
+ *
249
+ * Maximum length: 31 characters.
250
+ */
251
+ name: string;
252
+
253
+ /**
254
+ * Header param: The ID of the EndUser to receive this request (e.g.,
255
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
256
+ */
257
+ conductorEndUserId: string;
258
+
259
+ /**
260
+ * Body param: The price level's currency. For built-in currencies, the name and
261
+ * code are standard international values. For user-defined currencies, all values
262
+ * are editable.
263
+ */
264
+ currencyId?: string;
265
+
266
+ /**
267
+ * Body param: The fixed percentage adjustment applied to all items for this price
268
+ * level (instead of a per-item price level). Once you create the price level, you
269
+ * cannot change this.
270
+ *
271
+ * When this price level is applied to a customer, it automatically adjusts the
272
+ * `rate` and `amount` columns for applicable line items in sales orders and
273
+ * invoices for that customer. This value supports both positive and negative
274
+ * values - a value of "20" increases prices by 20%, while "-10" decreases prices
275
+ * by 10%.
276
+ */
277
+ fixedPercentage?: string;
278
+
279
+ /**
280
+ * Body param: Indicates whether this price level is active. Inactive objects are
281
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
282
+ */
283
+ isActive?: boolean;
284
+
285
+ /**
286
+ * Body param: The per-item price level configurations for this price level.
287
+ */
288
+ perItemPriceLevels?: Array<PriceLevelCreateParams.PerItemPriceLevel>;
289
+ }
290
+
291
+ export namespace PriceLevelCreateParams {
292
+ export interface PerItemPriceLevel {
293
+ /**
294
+ * The percentage adjustment for this per-item price level when using relative
295
+ * pricing. Specifies a percentage to modify pricing, using positive values (e.g.,
296
+ * "20") to increase prices by that percentage, or negative values (e.g., "-10") to
297
+ * apply a discount.
298
+ */
299
+ adjustPercentage: string;
300
+
301
+ /**
302
+ * The base value reference for this per-item price level's percentage adjustment.
303
+ * Specifies which price to use as the starting point for the adjustment
304
+ * calculation in the price level.
305
+ *
306
+ * **NOTE:** The price level must use either a fixed pricing approach
307
+ * (`customPrice` or `customPricePercent`) or a relative adjustment approach
308
+ * (`adjustPercentage` with `adjustRelativeTo`) when configuring per-item price
309
+ * levels.
310
+ */
311
+ adjustRelativeTo: 'cost' | 'current_custom_price' | 'standard_price';
312
+
313
+ /**
314
+ * The fixed amount custom price for this per-item price level that overrides the
315
+ * standard price for the specified item. Used when setting an absolute price value
316
+ * for the item in this price level.
317
+ */
318
+ customPrice?: string;
319
+
320
+ /**
321
+ * The fixed discount percentage for this per-item price level that modifies the
322
+ * specified item's standard price. Used to create a fixed percentage markup or
323
+ * discount specific to this item within this price level.
324
+ */
325
+ customPricePercent?: string;
326
+
327
+ /**
328
+ * The item associated with this per-item price level. This can refer to any good
329
+ * or service that the business buys or sells, including item types such as a
330
+ * service item, inventory item, or special calculation item like a discount item
331
+ * or sales-tax item.
332
+ */
333
+ itemId?: string;
334
+ }
335
+ }
336
+
337
+ export interface PriceLevelRetrieveParams {
338
+ /**
339
+ * The ID of the EndUser to receive this request (e.g.,
340
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
341
+ */
342
+ conductorEndUserId: string;
343
+ }
344
+
345
+ export interface PriceLevelUpdateParams {
346
+ /**
347
+ * Body param: The current QuickBooks-assigned revision number of the price level
348
+ * object you are updating, which you can get by fetching the object first. Provide
349
+ * the most recent `revisionNumber` to ensure you're working with the latest data;
350
+ * otherwise, the update will return an error.
351
+ */
352
+ revisionNumber: string;
353
+
354
+ /**
355
+ * Header param: The ID of the EndUser to receive this request (e.g.,
356
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
357
+ */
358
+ conductorEndUserId: string;
359
+
360
+ /**
361
+ * Body param: The price level's currency. For built-in currencies, the name and
362
+ * code are standard international values. For user-defined currencies, all values
363
+ * are editable.
364
+ */
365
+ currencyId?: string;
366
+
367
+ /**
368
+ * Body param: The fixed percentage adjustment applied to all items for this price
369
+ * level (instead of a per-item price level). Once you create the price level, you
370
+ * cannot change this.
371
+ *
372
+ * When this price level is applied to a customer, it automatically adjusts the
373
+ * `rate` and `amount` columns for applicable line items in sales orders and
374
+ * invoices for that customer. This value supports both positive and negative
375
+ * values - a value of "20" increases prices by 20%, while "-10" decreases prices
376
+ * by 10%.
377
+ */
378
+ fixedPercentage?: string;
379
+
380
+ /**
381
+ * Body param: Indicates whether this price level is active. Inactive objects are
382
+ * typically hidden from views and reports in QuickBooks. Defaults to `true`.
383
+ */
384
+ isActive?: boolean;
385
+
386
+ /**
387
+ * Body param: The case-insensitive unique name of this price level, unique across
388
+ * all price levels.
389
+ *
390
+ * **NOTE**: Price levels do not have a `fullName` field because they are not
391
+ * hierarchical objects, which is why `name` is unique for them but not for objects
392
+ * that have parents.
393
+ *
394
+ * Maximum length: 31 characters.
395
+ */
396
+ name?: string;
397
+
398
+ /**
399
+ * Body param: The per-item price level configurations for this price level.
400
+ */
401
+ perItemPriceLevels?: Array<PriceLevelUpdateParams.PerItemPriceLevel>;
402
+ }
403
+
404
+ export namespace PriceLevelUpdateParams {
405
+ export interface PerItemPriceLevel {
406
+ /**
407
+ * The percentage adjustment for this per-item price level when using relative
408
+ * pricing. Specifies a percentage to modify pricing, using positive values (e.g.,
409
+ * "20") to increase prices by that percentage, or negative values (e.g., "-10") to
410
+ * apply a discount.
411
+ */
412
+ adjustPercentage: string;
413
+
414
+ /**
415
+ * The base value reference for this per-item price level's percentage adjustment.
416
+ * Specifies which price to use as the starting point for the adjustment
417
+ * calculation in the price level.
418
+ *
419
+ * **NOTE:** The price level must use either a fixed pricing approach
420
+ * (`customPrice` or `customPricePercent`) or a relative adjustment approach
421
+ * (`adjustPercentage` with `adjustRelativeTo`) when configuring per-item price
422
+ * levels.
423
+ */
424
+ adjustRelativeTo: 'cost' | 'current_custom_price' | 'standard_price';
425
+
426
+ /**
427
+ * The fixed amount custom price for this per-item price level that overrides the
428
+ * standard price for the specified item. Used when setting an absolute price value
429
+ * for the item in this price level.
430
+ */
431
+ customPrice?: string;
432
+
433
+ /**
434
+ * The fixed discount percentage for this per-item price level that modifies the
435
+ * specified item's standard price. Used to create a fixed percentage markup or
436
+ * discount specific to this item within this price level.
437
+ */
438
+ customPricePercent?: string;
439
+
440
+ /**
441
+ * The item associated with this per-item price level. This can refer to any good
442
+ * or service that the business buys or sells, including item types such as a
443
+ * service item, inventory item, or special calculation item like a discount item
444
+ * or sales-tax item.
445
+ */
446
+ itemId?: string;
447
+ }
448
+ }
449
+
450
+ export interface PriceLevelListParams {
451
+ /**
452
+ * Header param: The ID of the EndUser to receive this request (e.g.,
453
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
454
+ */
455
+ conductorEndUserId: string;
456
+
457
+ /**
458
+ * Query param: Filter for price levels in these currencies.
459
+ */
460
+ currencyIds?: Array<string>;
461
+
462
+ /**
463
+ * Query param: Filter for specific price levels by their QuickBooks-assigned
464
+ * unique identifier(s).
465
+ *
466
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
467
+ * query parameters for this request.
468
+ *
469
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
470
+ * request will return an error.
471
+ */
472
+ ids?: Array<string>;
473
+
474
+ /**
475
+ * Query param: Filter for price levels containing these items.
476
+ */
477
+ itemIds?: Array<string>;
478
+
479
+ /**
480
+ * Query param: The maximum number of objects to return.
481
+ *
482
+ * **IMPORTANT**: QuickBooks Desktop does not support cursor-based pagination for
483
+ * price levels. This parameter will limit the response size, but you cannot fetch
484
+ * subsequent results using a cursor. For pagination, use the name-range parameters
485
+ * instead (e.g., `nameFrom=A&nameTo=B`).
486
+ *
487
+ * When this parameter is omitted, the endpoint returns all price levels without
488
+ * limit, unlike paginated endpoints which default to 150 records. This is
489
+ * acceptable because price levels typically have low record counts.
490
+ */
491
+ limit?: number;
492
+
493
+ /**
494
+ * Query param: Filter for price levels whose `name` contains this substring,
495
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
496
+ * `nameStartsWith` or `nameEndsWith`.
497
+ */
498
+ nameContains?: string;
499
+
500
+ /**
501
+ * Query param: Filter for price levels whose `name` ends with this substring,
502
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
503
+ * `nameContains` or `nameStartsWith`.
504
+ */
505
+ nameEndsWith?: string;
506
+
507
+ /**
508
+ * Query param: Filter for price levels whose `name` is alphabetically greater than
509
+ * or equal to this value.
510
+ */
511
+ nameFrom?: string;
512
+
513
+ /**
514
+ * Query param: Filter for specific price levels by their name(s),
515
+ * case-insensitive. Like `id`, `name` is a unique identifier for a price level.
516
+ *
517
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
518
+ * query parameters for this request.
519
+ *
520
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
521
+ * request will return an error.
522
+ */
523
+ names?: Array<string>;
524
+
525
+ /**
526
+ * Query param: Filter for price levels whose `name` starts with this substring,
527
+ * case-insensitive. NOTE: If you use this parameter, you cannot also use
528
+ * `nameContains` or `nameEndsWith`.
529
+ */
530
+ nameStartsWith?: string;
531
+
532
+ /**
533
+ * Query param: Filter for price levels whose `name` is alphabetically less than or
534
+ * equal to this value.
535
+ */
536
+ nameTo?: string;
537
+
538
+ /**
539
+ * Query param: Filter for price levels that are active, inactive, or both.
540
+ */
541
+ status?: 'active' | 'all' | 'inactive';
542
+
543
+ /**
544
+ * Query param: Filter for price levels updated on or after this date and time, in
545
+ * ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date (YYYY-MM-DD),
546
+ * the time is assumed to be 00:00:00 of that day.
547
+ */
548
+ updatedAfter?: string;
549
+
550
+ /**
551
+ * Query param: Filter for price levels updated on or before this date and time, in
552
+ * ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date (YYYY-MM-DD),
553
+ * the time is assumed to be 23:59:59 of that day.
554
+ */
555
+ updatedBefore?: string;
556
+ }
557
+
558
+ export declare namespace PriceLevels {
559
+ export {
560
+ type PriceLevel as PriceLevel,
561
+ type PriceLevelListResponse as PriceLevelListResponse,
562
+ type PriceLevelCreateParams as PriceLevelCreateParams,
563
+ type PriceLevelRetrieveParams as PriceLevelRetrieveParams,
564
+ type PriceLevelUpdateParams as PriceLevelUpdateParams,
565
+ type PriceLevelListParams as PriceLevelListParams,
566
+ };
567
+ }
@@ -245,6 +245,16 @@ import {
245
245
  } from './payroll-wage-items';
246
246
  import * as PreferencesAPI from './preferences';
247
247
  import { PreferenceRetrieveParams, Preferences } from './preferences';
248
+ import * as PriceLevelsAPI from './price-levels';
249
+ import {
250
+ PriceLevel,
251
+ PriceLevelCreateParams,
252
+ PriceLevelListParams,
253
+ PriceLevelListResponse,
254
+ PriceLevelRetrieveParams,
255
+ PriceLevelUpdateParams,
256
+ PriceLevels,
257
+ } from './price-levels';
248
258
  import * as PurchaseOrdersAPI from './purchase-orders';
249
259
  import {
250
260
  PurchaseOrder,
@@ -443,6 +453,7 @@ export class Qbd extends APIResource {
443
453
  this._client,
444
454
  );
445
455
  preferences: PreferencesAPI.Preferences = new PreferencesAPI.Preferences(this._client);
456
+ priceLevels: PriceLevelsAPI.PriceLevels = new PriceLevelsAPI.PriceLevels(this._client);
446
457
  purchaseOrders: PurchaseOrdersAPI.PurchaseOrders = new PurchaseOrdersAPI.PurchaseOrders(this._client);
447
458
  receivePayments: ReceivePaymentsAPI.ReceivePayments = new ReceivePaymentsAPI.ReceivePayments(this._client);
448
459
  salesOrders: SalesOrdersAPI.SalesOrders = new SalesOrdersAPI.SalesOrders(this._client);
@@ -541,6 +552,7 @@ Qbd.NonInventoryItems = NonInventoryItems;
541
552
  Qbd.NonInventoryItemsCursorPage = NonInventoryItemsCursorPage;
542
553
  Qbd.PayrollWageItems = PayrollWageItems;
543
554
  Qbd.PayrollWageItemsCursorPage = PayrollWageItemsCursorPage;
555
+ Qbd.PriceLevels = PriceLevels;
544
556
  Qbd.PurchaseOrders = PurchaseOrders;
545
557
  Qbd.PurchaseOrdersCursorPage = PurchaseOrdersCursorPage;
546
558
  Qbd.ReceivePayments = ReceivePayments;
@@ -822,6 +834,16 @@ export declare namespace Qbd {
822
834
 
823
835
  export { type Preferences as Preferences, type PreferenceRetrieveParams as PreferenceRetrieveParams };
824
836
 
837
+ export {
838
+ PriceLevels as PriceLevels,
839
+ type PriceLevel as PriceLevel,
840
+ type PriceLevelListResponse as PriceLevelListResponse,
841
+ type PriceLevelCreateParams as PriceLevelCreateParams,
842
+ type PriceLevelRetrieveParams as PriceLevelRetrieveParams,
843
+ type PriceLevelUpdateParams as PriceLevelUpdateParams,
844
+ type PriceLevelListParams as PriceLevelListParams,
845
+ };
846
+
825
847
  export {
826
848
  PurchaseOrders as PurchaseOrders,
827
849
  type PurchaseOrder as PurchaseOrder,
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.0.0-beta.18'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.19'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.0.0-beta.18";
1
+ export declare const VERSION = "12.0.0-beta.19";
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.18'; // x-release-please-version
4
+ exports.VERSION = '12.0.0-beta.19'; // 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.18'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.19'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map