conductor-node 12.0.0-beta.3 → 12.0.0-beta.5

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,613 @@
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
+ import { CursorPage, type CursorPageParams } from '../../pagination';
6
+
7
+ export class TimeTrackingActivities extends APIResource {
8
+ /**
9
+ * Creates a new time tracking activity.
10
+ */
11
+ create(
12
+ params: TimeTrackingActivityCreateParams,
13
+ options?: Core.RequestOptions,
14
+ ): Core.APIPromise<TimeTrackingActivity> {
15
+ const { conductorEndUserId, ...body } = params;
16
+ return this._client.post('/quickbooks-desktop/time-tracking-activities', {
17
+ body,
18
+ ...options,
19
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
20
+ });
21
+ }
22
+
23
+ /**
24
+ * Retrieves a time tracking activity by ID.
25
+ */
26
+ retrieve(
27
+ id: string,
28
+ params: TimeTrackingActivityRetrieveParams,
29
+ options?: Core.RequestOptions,
30
+ ): Core.APIPromise<TimeTrackingActivity> {
31
+ const { conductorEndUserId } = params;
32
+ return this._client.get(`/quickbooks-desktop/time-tracking-activities/${id}`, {
33
+ ...options,
34
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
35
+ });
36
+ }
37
+
38
+ /**
39
+ * Updates an existing time tracking activity.
40
+ */
41
+ update(
42
+ id: string,
43
+ params: TimeTrackingActivityUpdateParams,
44
+ options?: Core.RequestOptions,
45
+ ): Core.APIPromise<TimeTrackingActivity> {
46
+ const { conductorEndUserId, ...body } = params;
47
+ return this._client.post(`/quickbooks-desktop/time-tracking-activities/${id}`, {
48
+ body,
49
+ ...options,
50
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
51
+ });
52
+ }
53
+
54
+ /**
55
+ * Returns a list of time tracking activities. Use the `cursor` parameter to
56
+ * paginate through the results.
57
+ */
58
+ list(
59
+ params: TimeTrackingActivityListParams,
60
+ options?: Core.RequestOptions,
61
+ ): Core.PagePromise<TimeTrackingActivitiesCursorPage, TimeTrackingActivity> {
62
+ const { conductorEndUserId, ...query } = params;
63
+ return this._client.getAPIList(
64
+ '/quickbooks-desktop/time-tracking-activities',
65
+ TimeTrackingActivitiesCursorPage,
66
+ { query, ...options, headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers } },
67
+ );
68
+ }
69
+
70
+ /**
71
+ * Permanently deletes a a time tracking activity. The deletion will fail if the
72
+ * time tracking activity is currently in use or has any linked transactions that
73
+ * are in use.
74
+ */
75
+ delete(
76
+ id: string,
77
+ params: TimeTrackingActivityDeleteParams,
78
+ options?: Core.RequestOptions,
79
+ ): Core.APIPromise<TimeTrackingActivityDeleteResponse> {
80
+ const { conductorEndUserId } = params;
81
+ return this._client.delete(`/quickbooks-desktop/time-tracking-activities/${id}`, {
82
+ ...options,
83
+ headers: { 'Conductor-End-User-Id': conductorEndUserId, ...options?.headers },
84
+ });
85
+ }
86
+ }
87
+
88
+ export class TimeTrackingActivitiesCursorPage extends CursorPage<TimeTrackingActivity> {}
89
+
90
+ export interface TimeTrackingActivity {
91
+ /**
92
+ * The unique identifier assigned by QuickBooks to this time tracking activity.
93
+ * This ID is unique across all transaction types.
94
+ */
95
+ id: string;
96
+
97
+ /**
98
+ * The billing status of this time tracking activity.
99
+ *
100
+ * **IMPORTANT**: When this field is set to "billable" for time tracking
101
+ * activities, both `customer` and `serviceItem` are required so that an invoice
102
+ * can be created.
103
+ */
104
+ billingStatus: 'billable' | 'has_been_billed' | 'not_billable' | null;
105
+
106
+ /**
107
+ * The time tracking activity's class. Classes can be used to categorize objects
108
+ * into meaningful segments, such as department, location, or type of work. In
109
+ * QuickBooks, class tracking is off by default.
110
+ */
111
+ class: TimeTrackingActivity.Class | null;
112
+
113
+ /**
114
+ * The date and time when this time tracking activity was created, in ISO 8601
115
+ * format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
116
+ * zone in QuickBooks.
117
+ */
118
+ createdAt: string;
119
+
120
+ /**
121
+ * The customer or customer-job to which this time could be billed. If
122
+ * `billingStatus` is set to "billable", this field is required.
123
+ */
124
+ customer: TimeTrackingActivity.Customer | null;
125
+
126
+ /**
127
+ * The time spent performing the service during this time tracking activity, in ISO
128
+ * 8601 format for time intervals (PTnHnMnS). For example, 1 hour and 30 minutes is
129
+ * represented as PT1H30M.
130
+ *
131
+ * **NOTE**: Although seconds can be specified when creating a time tracking
132
+ * activity, they are not returned in responses since QuickBooks Desktop's UI does
133
+ * not display seconds.
134
+ *
135
+ * **IMPORTANT**: This field is required for updating time tracking activities,
136
+ * even if the field is not being updated, because of a bug in QuickBooks itself.
137
+ */
138
+ duration: string;
139
+
140
+ /**
141
+ * The employee, vendor, or person on QuickBooks's "Other Names" list whose time is
142
+ * being tracked in this time tracking activity. This cannot refer to a customer -
143
+ * use the `customer` field to associate a customer or customer-job with this time
144
+ * tracking activity.
145
+ */
146
+ entity: TimeTrackingActivity.Entity;
147
+
148
+ /**
149
+ * A globally unique identifier (GUID) you, the developer, can provide for tracking
150
+ * this object in your external system. This field is immutable and can only be set
151
+ * during object creation.
152
+ */
153
+ externalId: string | null;
154
+
155
+ /**
156
+ * Indicates whether this time tracking activity has been billed.
157
+ */
158
+ isBilled: boolean | null;
159
+
160
+ /**
161
+ * A note or comment about this time tracking activity.
162
+ */
163
+ note: string | null;
164
+
165
+ /**
166
+ * The type of object. This value is always `"qbd_time_tracking_activity"`.
167
+ */
168
+ objectType: 'qbd_time_tracking_activity';
169
+
170
+ /**
171
+ * The payroll wage item (e.g., Regular Pay, Overtime Pay) to use for this time
172
+ * tracking activity. This field can only be used for time tracking if: (1) the
173
+ * person specified in `entity` is an employee in QuickBooks, and (2) the "Use time
174
+ * data to create paychecks" preference is enabled in their payroll settings.
175
+ */
176
+ payrollWageItem: TimeTrackingActivity.PayrollWageItem | null;
177
+
178
+ /**
179
+ * The current QuickBooks-assigned revision number of this time tracking activity
180
+ * object, which changes each time the object is modified. When updating this
181
+ * object, you must provide the most recent `revisionNumber` to ensure you're
182
+ * working with the latest data; otherwise, the update will return an error.
183
+ */
184
+ revisionNumber: string;
185
+
186
+ /**
187
+ * The type of service performed during this time tracking activity, referring to
188
+ * billable or purchasable services such as specialized labor, consulting hours,
189
+ * and professional fees.
190
+ *
191
+ * **NOTE**: This field is not required if no `customer` is specified. However, if
192
+ * `billingStatus` is set to "billable", both this field and `customer` are
193
+ * required.
194
+ */
195
+ serviceItem: TimeTrackingActivity.ServiceItem | null;
196
+
197
+ /**
198
+ * The date of this time tracking activity, in ISO 8601 format (YYYY-MM-DD).
199
+ */
200
+ transactionDate: string;
201
+
202
+ /**
203
+ * The date and time when this time tracking activity was last updated, in ISO 8601
204
+ * format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
205
+ * zone in QuickBooks.
206
+ */
207
+ updatedAt: string;
208
+ }
209
+
210
+ export namespace TimeTrackingActivity {
211
+ /**
212
+ * The time tracking activity's class. Classes can be used to categorize objects
213
+ * into meaningful segments, such as department, location, or type of work. In
214
+ * QuickBooks, class tracking is off by default.
215
+ */
216
+ export interface Class {
217
+ /**
218
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
219
+ * across all objects of the same type, but not across different QuickBooks object
220
+ * types.
221
+ */
222
+ id: string | null;
223
+
224
+ /**
225
+ * The fully-qualified unique name for this object, formed by combining the names
226
+ * of its parent objects with its own `name`, separated by colons. Not
227
+ * case-sensitive.
228
+ */
229
+ fullName: string | null;
230
+ }
231
+
232
+ /**
233
+ * The customer or customer-job to which this time could be billed. If
234
+ * `billingStatus` is set to "billable", this field is required.
235
+ */
236
+ export interface Customer {
237
+ /**
238
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
239
+ * across all objects of the same type, but not across different QuickBooks object
240
+ * types.
241
+ */
242
+ id: string | null;
243
+
244
+ /**
245
+ * The fully-qualified unique name for this object, formed by combining the names
246
+ * of its parent objects with its own `name`, separated by colons. Not
247
+ * case-sensitive.
248
+ */
249
+ fullName: string | null;
250
+ }
251
+
252
+ /**
253
+ * The employee, vendor, or person on QuickBooks's "Other Names" list whose time is
254
+ * being tracked in this time tracking activity. This cannot refer to a customer -
255
+ * use the `customer` field to associate a customer or customer-job with this time
256
+ * tracking activity.
257
+ */
258
+ export interface Entity {
259
+ /**
260
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
261
+ * across all objects of the same type, but not across different QuickBooks object
262
+ * types.
263
+ */
264
+ id: string | null;
265
+
266
+ /**
267
+ * The fully-qualified unique name for this object, formed by combining the names
268
+ * of its parent objects with its own `name`, separated by colons. Not
269
+ * case-sensitive.
270
+ */
271
+ fullName: string | null;
272
+ }
273
+
274
+ /**
275
+ * The payroll wage item (e.g., Regular Pay, Overtime Pay) to use for this time
276
+ * tracking activity. This field can only be used for time tracking if: (1) the
277
+ * person specified in `entity` is an employee in QuickBooks, and (2) the "Use time
278
+ * data to create paychecks" preference is enabled in their payroll settings.
279
+ */
280
+ export interface PayrollWageItem {
281
+ /**
282
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
283
+ * across all objects of the same type, but not across different QuickBooks object
284
+ * types.
285
+ */
286
+ id: string | null;
287
+
288
+ /**
289
+ * The fully-qualified unique name for this object, formed by combining the names
290
+ * of its parent objects with its own `name`, separated by colons. Not
291
+ * case-sensitive.
292
+ */
293
+ fullName: string | null;
294
+ }
295
+
296
+ /**
297
+ * The type of service performed during this time tracking activity, referring to
298
+ * billable or purchasable services such as specialized labor, consulting hours,
299
+ * and professional fees.
300
+ *
301
+ * **NOTE**: This field is not required if no `customer` is specified. However, if
302
+ * `billingStatus` is set to "billable", both this field and `customer` are
303
+ * required.
304
+ */
305
+ export interface ServiceItem {
306
+ /**
307
+ * The unique identifier assigned by QuickBooks to this object. This ID is unique
308
+ * across all objects of the same type, but not across different QuickBooks object
309
+ * types.
310
+ */
311
+ id: string | null;
312
+
313
+ /**
314
+ * The fully-qualified unique name for this object, formed by combining the names
315
+ * of its parent objects with its own `name`, separated by colons. Not
316
+ * case-sensitive.
317
+ */
318
+ fullName: string | null;
319
+ }
320
+ }
321
+
322
+ export interface TimeTrackingActivityDeleteResponse {
323
+ /**
324
+ * The QuickBooks-assigned unique identifier of the deleted time tracking activity.
325
+ */
326
+ id: string;
327
+
328
+ /**
329
+ * Indicates whether the time tracking activity was deleted.
330
+ */
331
+ deleted: boolean;
332
+
333
+ /**
334
+ * The type of object. This value is always `"qbd_time_tracking_activity"`.
335
+ */
336
+ objectType: 'qbd_time_tracking_activity';
337
+
338
+ /**
339
+ * The case-sensitive user-defined reference number of the deleted time tracking
340
+ * activity.
341
+ */
342
+ refNumber: string | null;
343
+ }
344
+
345
+ export interface TimeTrackingActivityCreateParams {
346
+ /**
347
+ * Body param: The time spent performing the service during this time tracking
348
+ * activity, in ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour
349
+ * and 30 minutes is represented as PT1H30M.
350
+ *
351
+ * **NOTE**: Although seconds can be specified when creating a time tracking
352
+ * activity, they are not returned in responses since QuickBooks Desktop's UI does
353
+ * not display seconds.
354
+ *
355
+ * **IMPORTANT**: This field is required for updating time tracking activities,
356
+ * even if the field is not being updated, because of a bug in QuickBooks itself.
357
+ */
358
+ duration: string;
359
+
360
+ /**
361
+ * Body param: The employee, vendor, or person on QuickBooks's "Other Names" list
362
+ * whose time is being tracked in this time tracking activity. This cannot refer to
363
+ * a customer - use the `customer` field to associate a customer or customer-job
364
+ * with this time tracking activity.
365
+ */
366
+ entityId: string;
367
+
368
+ /**
369
+ * Body param: The date of this time tracking activity, in ISO 8601 format
370
+ * (YYYY-MM-DD).
371
+ */
372
+ transactionDate: string;
373
+
374
+ /**
375
+ * Header param: The ID of the EndUser to receive this request (e.g.,
376
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
377
+ */
378
+ conductorEndUserId: string;
379
+
380
+ /**
381
+ * Body param: The billing status of this time tracking activity.
382
+ *
383
+ * **IMPORTANT**: When this field is set to "billable" for time tracking
384
+ * activities, both `customer` and `serviceItem` are required so that an invoice
385
+ * can be created.
386
+ */
387
+ billingStatus?: 'billable' | 'has_been_billed' | 'not_billable';
388
+
389
+ /**
390
+ * Body param: The time tracking activity's class. Classes can be used to
391
+ * categorize objects into meaningful segments, such as department, location, or
392
+ * type of work. In QuickBooks, class tracking is off by default.
393
+ */
394
+ classId?: string;
395
+
396
+ /**
397
+ * Body param: The customer or customer-job to which this time could be billed. If
398
+ * `billingStatus` is set to "billable", this field is required.
399
+ */
400
+ customerId?: string;
401
+
402
+ /**
403
+ * Body param: A globally unique identifier (GUID) you, the developer, can provide
404
+ * for tracking this object in your external system. This field is immutable and
405
+ * can only be set during object creation.
406
+ *
407
+ * **IMPORTANT**: This field must be formatted as a valid GUID; otherwise,
408
+ * QuickBooks will return an error.
409
+ */
410
+ externalId?: string;
411
+
412
+ /**
413
+ * Body param: A note or comment about this time tracking activity.
414
+ */
415
+ note?: string;
416
+
417
+ /**
418
+ * Body param: The payroll wage item (e.g., Regular Pay, Overtime Pay) to use for
419
+ * this time tracking activity. This field can only be used for time tracking if:
420
+ * (1) the person specified in `entity` is an employee in QuickBooks, and (2) the
421
+ * "Use time data to create paychecks" preference is enabled in their payroll
422
+ * settings.
423
+ */
424
+ payrollWageItemId?: string;
425
+
426
+ /**
427
+ * Body param: The type of service performed during this time tracking activity,
428
+ * referring to billable or purchasable services such as specialized labor,
429
+ * consulting hours, and professional fees.
430
+ *
431
+ * **NOTE**: This field is not required if no `customer` is specified. However, if
432
+ * `billingStatus` is set to "billable", both this field and `customer` are
433
+ * required.
434
+ */
435
+ serviceItemId?: string;
436
+ }
437
+
438
+ export interface TimeTrackingActivityRetrieveParams {
439
+ /**
440
+ * The ID of the EndUser to receive this request (e.g.,
441
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
442
+ */
443
+ conductorEndUserId: string;
444
+ }
445
+
446
+ export interface TimeTrackingActivityUpdateParams {
447
+ /**
448
+ * Body param: The time spent performing the service during this time tracking
449
+ * activity, in ISO 8601 format for time intervals (PTnHnMnS). For example, 1 hour
450
+ * and 30 minutes is represented as PT1H30M.
451
+ *
452
+ * **NOTE**: Although seconds can be specified when creating a time tracking
453
+ * activity, they are not returned in responses since QuickBooks Desktop's UI does
454
+ * not display seconds.
455
+ *
456
+ * **IMPORTANT**: This field is required for updating time tracking activities,
457
+ * even if the field is not being updated, because of a bug in QuickBooks itself.
458
+ */
459
+ duration: string;
460
+
461
+ /**
462
+ * Body param: The employee, vendor, or person on QuickBooks's "Other Names" list
463
+ * whose time is being tracked in this time tracking activity. This cannot refer to
464
+ * a customer - use the `customer` field to associate a customer or customer-job
465
+ * with this time tracking activity.
466
+ *
467
+ * **IMPORTANT**: This field is required for updating time tracking activities,
468
+ * even if the field is not being updated, because of a bug in QuickBooks itself.
469
+ */
470
+ entityId: string;
471
+
472
+ /**
473
+ * Body param: The current QuickBooks-assigned revision number of the time tracking
474
+ * activity object you are updating, which you can get by fetching the object
475
+ * first. Provide the most recent `revisionNumber` to ensure you're working with
476
+ * the latest data; otherwise, the update will return an error.
477
+ */
478
+ revisionNumber: string;
479
+
480
+ /**
481
+ * Header param: The ID of the EndUser to receive this request (e.g.,
482
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
483
+ */
484
+ conductorEndUserId: string;
485
+
486
+ /**
487
+ * Body param: The billing status of this time tracking activity.
488
+ *
489
+ * **IMPORTANT**: When this field is set to "billable" for time tracking
490
+ * activities, both `customer` and `serviceItem` are required so that an invoice
491
+ * can be created.
492
+ */
493
+ billingStatus?: 'billable' | 'has_been_billed' | 'not_billable';
494
+
495
+ /**
496
+ * Body param: The time tracking activity's class. Classes can be used to
497
+ * categorize objects into meaningful segments, such as department, location, or
498
+ * type of work. In QuickBooks, class tracking is off by default.
499
+ */
500
+ classId?: string;
501
+
502
+ /**
503
+ * Body param: The customer or customer-job to which this time could be billed. If
504
+ * `billingStatus` is set to "billable", this field is required.
505
+ */
506
+ customerId?: string;
507
+
508
+ /**
509
+ * Body param: A note or comment about this time tracking activity.
510
+ */
511
+ note?: string;
512
+
513
+ /**
514
+ * Body param: The payroll wage item (e.g., Regular Pay, Overtime Pay) to use for
515
+ * this time tracking activity. This field can only be used for time tracking if:
516
+ * (1) the person specified in `entity` is an employee in QuickBooks, and (2) the
517
+ * "Use time data to create paychecks" preference is enabled in their payroll
518
+ * settings.
519
+ */
520
+ payrollWageItemId?: string;
521
+
522
+ /**
523
+ * Body param: The type of service performed during this time tracking activity,
524
+ * referring to billable or purchasable services such as specialized labor,
525
+ * consulting hours, and professional fees.
526
+ *
527
+ * **NOTE**: This field is not required if no `customer` is specified. However, if
528
+ * `billingStatus` is set to "billable", both this field and `customer` are
529
+ * required.
530
+ */
531
+ serviceItemId?: string;
532
+
533
+ /**
534
+ * Body param: The date of this time tracking activity, in ISO 8601 format
535
+ * (YYYY-MM-DD).
536
+ */
537
+ transactionDate?: string;
538
+ }
539
+
540
+ export interface TimeTrackingActivityListParams extends CursorPageParams {
541
+ /**
542
+ * Header param: The ID of the EndUser to receive this request (e.g.,
543
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
544
+ */
545
+ conductorEndUserId: string;
546
+
547
+ /**
548
+ * Query param: Filter for specific time tracking activities by their
549
+ * QuickBooks-assigned unique identifier(s).
550
+ *
551
+ * **IMPORTANT**: If you include this parameter, QuickBooks will ignore all other
552
+ * query parameters for this request.
553
+ *
554
+ * **NOTE**: If any of the values you specify in this parameter are not found, the
555
+ * request will return an error.
556
+ */
557
+ ids?: Array<string>;
558
+
559
+ /**
560
+ * Query param: Filter for time tracking activities tracking the time of these
561
+ * employees, vendors, or persons on QuickBooks's "Other Names" list.
562
+ */
563
+ timeTrackingEntityIds?: Array<string>;
564
+
565
+ /**
566
+ * Query param: Filter for time tracking activities created on or after this date,
567
+ * in ISO 8601 format (YYYY-MM-DD).
568
+ */
569
+ transactionDateFrom?: string;
570
+
571
+ /**
572
+ * Query param: Filter for time tracking activities created on or before this date,
573
+ * in ISO 8601 format (YYYY-MM-DD).
574
+ */
575
+ transactionDateTo?: string;
576
+
577
+ /**
578
+ * Query param: Filter for time tracking activities updated on or after this date
579
+ * and time, in ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date
580
+ * (YYYY-MM-DD), the time is assumed to be 00:00:00 of that day.
581
+ */
582
+ updatedAfter?: string;
583
+
584
+ /**
585
+ * Query param: Filter for time tracking activities updated on or before this date
586
+ * and time, in ISO 8601 format (YYYY-MM-DDTHH:mm:ss). If you only provide a date
587
+ * (YYYY-MM-DD), the time is assumed to be 23:59:59 of that day.
588
+ */
589
+ updatedBefore?: string;
590
+ }
591
+
592
+ export interface TimeTrackingActivityDeleteParams {
593
+ /**
594
+ * The ID of the EndUser to receive this request (e.g.,
595
+ * `"Conductor-End-User-Id: {{END_USER_ID}}"`).
596
+ */
597
+ conductorEndUserId: string;
598
+ }
599
+
600
+ TimeTrackingActivities.TimeTrackingActivitiesCursorPage = TimeTrackingActivitiesCursorPage;
601
+
602
+ export declare namespace TimeTrackingActivities {
603
+ export {
604
+ type TimeTrackingActivity as TimeTrackingActivity,
605
+ type TimeTrackingActivityDeleteResponse as TimeTrackingActivityDeleteResponse,
606
+ TimeTrackingActivitiesCursorPage as TimeTrackingActivitiesCursorPage,
607
+ type TimeTrackingActivityCreateParams as TimeTrackingActivityCreateParams,
608
+ type TimeTrackingActivityRetrieveParams as TimeTrackingActivityRetrieveParams,
609
+ type TimeTrackingActivityUpdateParams as TimeTrackingActivityUpdateParams,
610
+ type TimeTrackingActivityListParams as TimeTrackingActivityListParams,
611
+ type TimeTrackingActivityDeleteParams as TimeTrackingActivityDeleteParams,
612
+ };
613
+ }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '12.0.0-beta.3'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.5'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "12.0.0-beta.3";
1
+ export declare const VERSION = "12.0.0-beta.5";
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.3'; // x-release-please-version
4
+ exports.VERSION = '12.0.0-beta.5'; // 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.3'; // x-release-please-version
1
+ export const VERSION = '12.0.0-beta.5'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map