@trycourier/courier 9.5.0 → 9.7.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 +25 -0
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/broadcasts.d.mts +1 -1
- package/resources/broadcasts.d.ts +1 -1
- package/resources/broadcasts.js +1 -1
- package/resources/broadcasts.mjs +1 -1
- package/resources/digests/digests.d.mts +67 -1
- package/resources/digests/digests.d.mts.map +1 -1
- package/resources/digests/digests.d.ts +67 -1
- package/resources/digests/digests.d.ts.map +1 -1
- package/resources/digests/digests.js.map +1 -1
- package/resources/digests/digests.mjs.map +1 -1
- package/resources/digests/index.d.mts +1 -1
- package/resources/digests/index.d.mts.map +1 -1
- package/resources/digests/index.d.ts +1 -1
- package/resources/digests/index.d.ts.map +1 -1
- package/resources/digests/index.js.map +1 -1
- package/resources/digests/index.mjs.map +1 -1
- package/resources/index.d.mts +2 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/journeys/journeys.d.mts +51 -2
- package/resources/journeys/journeys.d.mts.map +1 -1
- package/resources/journeys/journeys.d.ts +51 -2
- package/resources/journeys/journeys.d.ts.map +1 -1
- package/resources/journeys/journeys.js.map +1 -1
- package/resources/journeys/journeys.mjs.map +1 -1
- package/resources/users/preferences.d.mts +20 -0
- package/resources/users/preferences.d.mts.map +1 -1
- package/resources/users/preferences.d.ts +20 -0
- package/resources/users/preferences.d.ts.map +1 -1
- package/resources/workspace-preferences/index.d.mts +2 -2
- package/resources/workspace-preferences/index.d.mts.map +1 -1
- package/resources/workspace-preferences/index.d.ts +2 -2
- package/resources/workspace-preferences/index.d.ts.map +1 -1
- package/resources/workspace-preferences/index.js.map +1 -1
- package/resources/workspace-preferences/index.mjs.map +1 -1
- package/resources/workspace-preferences/topics.d.mts +141 -4
- package/resources/workspace-preferences/topics.d.mts.map +1 -1
- package/resources/workspace-preferences/topics.d.ts +141 -4
- package/resources/workspace-preferences/topics.d.ts.map +1 -1
- package/resources/workspace-preferences/topics.js +48 -3
- package/resources/workspace-preferences/topics.js.map +1 -1
- package/resources/workspace-preferences/topics.mjs +48 -3
- package/resources/workspace-preferences/topics.mjs.map +1 -1
- package/resources/workspace-preferences/workspace-preferences.d.mts +271 -3
- package/resources/workspace-preferences/workspace-preferences.d.mts.map +1 -1
- package/resources/workspace-preferences/workspace-preferences.d.ts +271 -3
- package/resources/workspace-preferences/workspace-preferences.d.ts.map +1 -1
- package/resources/workspace-preferences/workspace-preferences.js.map +1 -1
- package/resources/workspace-preferences/workspace-preferences.mjs.map +1 -1
- package/src/client.ts +16 -0
- package/src/resources/broadcasts.ts +1 -1
- package/src/resources/digests/digests.ts +89 -0
- package/src/resources/digests/index.ts +3 -0
- package/src/resources/index.ts +8 -0
- package/src/resources/journeys/journeys.ts +55 -2
- package/src/resources/users/preferences.ts +22 -0
- package/src/resources/workspace-preferences/index.ts +7 -0
- package/src/resources/workspace-preferences/topics.ts +172 -3
- package/src/resources/workspace-preferences/workspace-preferences.ts +312 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import { APIResource } from '../../core/resource';
|
|
4
|
+
import * as WorkspacePreferencesAPI from './workspace-preferences';
|
|
4
5
|
import * as Shared from '../shared';
|
|
6
|
+
import * as DigestsAPI from '../digests/digests';
|
|
5
7
|
import * as TopicsAPI from './topics';
|
|
6
8
|
import {
|
|
7
9
|
TopicArchiveParams,
|
|
8
10
|
TopicCreateParams,
|
|
11
|
+
TopicDeleteDigestParams,
|
|
12
|
+
TopicReleaseDigestParams,
|
|
9
13
|
TopicReplaceParams,
|
|
10
14
|
TopicRetrieveParams,
|
|
11
15
|
Topics,
|
|
@@ -215,6 +219,216 @@ export interface PublishPreferencesResponse {
|
|
|
215
219
|
published_by?: string | null;
|
|
216
220
|
}
|
|
217
221
|
|
|
222
|
+
/**
|
|
223
|
+
* How events collected under a category key are retained when a digest holds more
|
|
224
|
+
* than it will render.
|
|
225
|
+
*/
|
|
226
|
+
export interface TopicDigestCategory {
|
|
227
|
+
/**
|
|
228
|
+
* The key that identifies the category within the digest.
|
|
229
|
+
*/
|
|
230
|
+
category_key: string;
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* How many collected events are carried into the rendered digest. Defaults to 10.
|
|
234
|
+
*
|
|
235
|
+
* Events beyond the limit are discarded, not held back for the next digest: the
|
|
236
|
+
* release consumes everything collected so far and only `limit` of them appear.
|
|
237
|
+
* `retain` decides which ones those are.
|
|
238
|
+
*/
|
|
239
|
+
limit?: number;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Which collected events survive the `limit`. `FIRST` and `LOWEST` keep the
|
|
243
|
+
* earliest or smallest; `LAST` and `HIGHEST` keep the latest or largest. Accepted
|
|
244
|
+
* case-insensitively, returned uppercase.
|
|
245
|
+
*/
|
|
246
|
+
retain?: 'FIRST' | 'LAST' | 'HIGHEST' | 'LOWEST' | 'NONE';
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* The data key used to rank events. Required when `retain` is `HIGHEST` or
|
|
250
|
+
* `LOWEST`.
|
|
251
|
+
*/
|
|
252
|
+
sort_key?: string;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* Which recipient's held digest to release.
|
|
257
|
+
*/
|
|
258
|
+
export interface TopicDigestReleaseRequest {
|
|
259
|
+
/**
|
|
260
|
+
* The recipient whose digest to release. Required: there is no "release everyone
|
|
261
|
+
* on this topic" form, because a whole-schedule flush already has its own endpoint
|
|
262
|
+
* and a body-shaped difference between one recipient and all of them is too easy
|
|
263
|
+
* to get wrong.
|
|
264
|
+
*/
|
|
265
|
+
user_id: string;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* The recipient's tenant, when they were sent to as part of one -- the same value
|
|
269
|
+
* returned as `tenant_id` on a digest instance and sent as
|
|
270
|
+
* `message.context.tenant_id`. It is part of the held digest's key, so a tenanted
|
|
271
|
+
* recipient cannot be found without it. Omit for an ordinary recipient.
|
|
272
|
+
*/
|
|
273
|
+
tenant_id?: string;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* A topic's digest configuration: the template that renders it, the cadences it
|
|
278
|
+
* delivers on, and how collected events are retained.
|
|
279
|
+
*
|
|
280
|
+
* Send `null` for the whole object to turn a digest off, which unlinks the
|
|
281
|
+
* template and removes its schedules. There is no `enabled` flag, and
|
|
282
|
+
* `schedules: []` is rejected, because both states are un-deliverable rather than
|
|
283
|
+
* merely off.
|
|
284
|
+
*/
|
|
285
|
+
export interface TopicDigestRequest {
|
|
286
|
+
/**
|
|
287
|
+
* The notification template that renders the digest. A digest with no template
|
|
288
|
+
* collects nothing, so this is required.
|
|
289
|
+
*/
|
|
290
|
+
template_id: string;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Optional audience the digest is scoped to.
|
|
294
|
+
*/
|
|
295
|
+
audience_id?: string;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Retention rules per category key. Defaults to a single `digest` category
|
|
299
|
+
* retaining `FIRST`.
|
|
300
|
+
*/
|
|
301
|
+
categories?: Array<TopicDigestCategory>;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* The cadences this digest delivers on.
|
|
305
|
+
*
|
|
306
|
+
* The array replaces the stored schedules wholesale, so a schedule you leave out
|
|
307
|
+
* of it is deleted along with its delivery rule. Omit the key entirely to leave
|
|
308
|
+
* the stored schedules untouched — useful for changing `template_id` or
|
|
309
|
+
* `categories` without restating every schedule.
|
|
310
|
+
*
|
|
311
|
+
* A digest must end up with at least one schedule, because one with none collects
|
|
312
|
+
* events into an instance that can never fire. So sending `[]` is always a `400`,
|
|
313
|
+
* and so is omitting the key on a topic that has no schedules stored yet.
|
|
314
|
+
*
|
|
315
|
+
* On **create** the key is required outright: a topic being created has nothing
|
|
316
|
+
* stored to leave alone, and the topic row is written before its digest, so
|
|
317
|
+
* rejecting it any later would leave the topic behind and let a retry duplicate
|
|
318
|
+
* it.
|
|
319
|
+
*/
|
|
320
|
+
schedules?: Array<TopicDigestScheduleRequest>;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Whether to deliver the digest even when nothing was collected.
|
|
324
|
+
*/
|
|
325
|
+
trigger_empty?: boolean;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* A topic's digest configuration.
|
|
330
|
+
*/
|
|
331
|
+
export interface TopicDigestResponse {
|
|
332
|
+
/**
|
|
333
|
+
* Retention rules per category key.
|
|
334
|
+
*/
|
|
335
|
+
categories: Array<TopicDigestCategory>;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* The digest's delivery cadences, each with its server-assigned `schedule_id`.
|
|
339
|
+
*/
|
|
340
|
+
schedules: Array<DigestsAPI.TopicDigestScheduleResponse>;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* The notification template that renders the digest.
|
|
344
|
+
*/
|
|
345
|
+
template_id: string;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* The audience the digest is scoped to, when set.
|
|
349
|
+
*/
|
|
350
|
+
audience_id?: string;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* ISO-8601 timestamp of when the digest was configured.
|
|
354
|
+
*/
|
|
355
|
+
created?: string;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* Whether the digest is delivered even when nothing was collected.
|
|
359
|
+
*/
|
|
360
|
+
trigger_empty?: boolean;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* ISO-8601 timestamp of the last update.
|
|
364
|
+
*/
|
|
365
|
+
updated?: string;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
/**
|
|
369
|
+
* One delivery cadence for a topic's digest. Supply `schedule_id` to update an
|
|
370
|
+
* existing schedule in place; omit it and one is assigned and returned. The
|
|
371
|
+
* `schedules` array is a full replacement, so a stored schedule absent from it is
|
|
372
|
+
* deleted along with its delivery rule.
|
|
373
|
+
*
|
|
374
|
+
* Updating by `schedule_id` replaces that schedule rather than merging into it:
|
|
375
|
+
* any field you leave out is cleared. Two of those change delivery silently — an
|
|
376
|
+
* omitted `timezone` reverts the schedule to UTC, and an omitted `is_default` can
|
|
377
|
+
* leave the topic with no default schedule, which is what recipients who have not
|
|
378
|
+
* chosen one fall back to. Restate every field you want to keep.
|
|
379
|
+
*/
|
|
380
|
+
export interface TopicDigestScheduleRequest {
|
|
381
|
+
/**
|
|
382
|
+
* How often a digest is delivered. `instant` delivers immediately without
|
|
383
|
+
* batching, and is the one value that takes no `time`.
|
|
384
|
+
*/
|
|
385
|
+
frequency: DigestsAPI.DigestFrequency;
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* Required when `frequency` is `monthly`.
|
|
389
|
+
*/
|
|
390
|
+
day_of_month?: number;
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* Required when `frequency` is `weekly`.
|
|
394
|
+
*/
|
|
395
|
+
day_of_week?: DigestsAPI.DigestDayOfWeek;
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* Required when `frequency` is `custom_days`.
|
|
399
|
+
*/
|
|
400
|
+
days_of_week?: Array<DigestsAPI.DigestDayOfWeek>;
|
|
401
|
+
|
|
402
|
+
/**
|
|
403
|
+
* Whether the schedule is disabled.
|
|
404
|
+
*/
|
|
405
|
+
disabled?: boolean;
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* The schedule recipients are placed on when they have not chosen one. Set this
|
|
409
|
+
* explicitly rather than relying on array position.
|
|
410
|
+
*/
|
|
411
|
+
is_default?: boolean;
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* Identifier of an existing schedule to update. Omit when creating a new one.
|
|
415
|
+
*/
|
|
416
|
+
schedule_id?: string;
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
* 24-hour local delivery time, `HH:MM`. Required for every frequency except
|
|
420
|
+
* `instant`.
|
|
421
|
+
*/
|
|
422
|
+
time?: string;
|
|
423
|
+
|
|
424
|
+
/**
|
|
425
|
+
* IANA timezone the `time` and day fields are expressed in, e.g.
|
|
426
|
+
* `America/New_York`. Absent means UTC. Delivery follows the same local wall-clock
|
|
427
|
+
* across daylight-saving changes.
|
|
428
|
+
*/
|
|
429
|
+
timezone?: string;
|
|
430
|
+
}
|
|
431
|
+
|
|
218
432
|
/**
|
|
219
433
|
* Request body for creating a workspace preference.
|
|
220
434
|
*/
|
|
@@ -354,6 +568,22 @@ export interface WorkspacePreferenceTopicCreateRequest {
|
|
|
354
568
|
*/
|
|
355
569
|
description?: string | null;
|
|
356
570
|
|
|
571
|
+
/**
|
|
572
|
+
* A topic's digest, as supplied when the topic itself is created: the template
|
|
573
|
+
* that renders it, the cadences it delivers on, and how collected events are
|
|
574
|
+
* retained.
|
|
575
|
+
*
|
|
576
|
+
* Identical to `TopicDigestRequest`, which a replace uses, except that `schedules`
|
|
577
|
+
* is required — a topic being created has no stored schedules for an absent key to
|
|
578
|
+
* leave alone.
|
|
579
|
+
*
|
|
580
|
+
* Send `null` for the whole object to turn a digest off, which unlinks the
|
|
581
|
+
* template and removes its schedules. There is no `enabled` flag, and
|
|
582
|
+
* `schedules: []` is rejected, because both states are un-deliverable rather than
|
|
583
|
+
* merely off.
|
|
584
|
+
*/
|
|
585
|
+
digest?: WorkspacePreferenceTopicCreateRequest.Digest | null;
|
|
586
|
+
|
|
357
587
|
/**
|
|
358
588
|
* Whether to include a list-unsubscribe header on emails for this topic.
|
|
359
589
|
*/
|
|
@@ -370,6 +600,65 @@ export interface WorkspacePreferenceTopicCreateRequest {
|
|
|
370
600
|
topic_data?: { [key: string]: unknown } | null;
|
|
371
601
|
}
|
|
372
602
|
|
|
603
|
+
export namespace WorkspacePreferenceTopicCreateRequest {
|
|
604
|
+
/**
|
|
605
|
+
* A topic's digest, as supplied when the topic itself is created: the template
|
|
606
|
+
* that renders it, the cadences it delivers on, and how collected events are
|
|
607
|
+
* retained.
|
|
608
|
+
*
|
|
609
|
+
* Identical to `TopicDigestRequest`, which a replace uses, except that `schedules`
|
|
610
|
+
* is required — a topic being created has no stored schedules for an absent key to
|
|
611
|
+
* leave alone.
|
|
612
|
+
*
|
|
613
|
+
* Send `null` for the whole object to turn a digest off, which unlinks the
|
|
614
|
+
* template and removes its schedules. There is no `enabled` flag, and
|
|
615
|
+
* `schedules: []` is rejected, because both states are un-deliverable rather than
|
|
616
|
+
* merely off.
|
|
617
|
+
*/
|
|
618
|
+
export interface Digest {
|
|
619
|
+
/**
|
|
620
|
+
* The cadences this digest delivers on.
|
|
621
|
+
*
|
|
622
|
+
* The array replaces the stored schedules wholesale, so a schedule you leave out
|
|
623
|
+
* of it is deleted along with its delivery rule. Omit the key entirely to leave
|
|
624
|
+
* the stored schedules untouched — useful for changing `template_id` or
|
|
625
|
+
* `categories` without restating every schedule.
|
|
626
|
+
*
|
|
627
|
+
* A digest must end up with at least one schedule, because one with none collects
|
|
628
|
+
* events into an instance that can never fire. So sending `[]` is always a `400`,
|
|
629
|
+
* and so is omitting the key on a topic that has no schedules stored yet.
|
|
630
|
+
*
|
|
631
|
+
* On **create** the key is required outright: a topic being created has nothing
|
|
632
|
+
* stored to leave alone, and the topic row is written before its digest, so
|
|
633
|
+
* rejecting it any later would leave the topic behind and let a retry duplicate
|
|
634
|
+
* it.
|
|
635
|
+
*/
|
|
636
|
+
schedules: Array<WorkspacePreferencesAPI.TopicDigestScheduleRequest>;
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* The notification template that renders the digest. A digest with no template
|
|
640
|
+
* collects nothing, so this is required.
|
|
641
|
+
*/
|
|
642
|
+
template_id: string;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* Optional audience the digest is scoped to.
|
|
646
|
+
*/
|
|
647
|
+
audience_id?: string;
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
* Retention rules per category key. Defaults to a single `digest` category
|
|
651
|
+
* retaining `FIRST`.
|
|
652
|
+
*/
|
|
653
|
+
categories?: Array<WorkspacePreferencesAPI.TopicDigestCategory>;
|
|
654
|
+
|
|
655
|
+
/**
|
|
656
|
+
* Whether to deliver the digest even when nothing was collected.
|
|
657
|
+
*/
|
|
658
|
+
trigger_empty?: boolean;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
|
|
373
662
|
/**
|
|
374
663
|
* A subscription preference topic in your workspace.
|
|
375
664
|
*/
|
|
@@ -429,6 +718,11 @@ export interface WorkspacePreferenceTopicGetResponse {
|
|
|
429
718
|
*/
|
|
430
719
|
description?: string | null;
|
|
431
720
|
|
|
721
|
+
/**
|
|
722
|
+
* A topic's digest configuration.
|
|
723
|
+
*/
|
|
724
|
+
digest?: TopicDigestResponse | null;
|
|
725
|
+
|
|
432
726
|
/**
|
|
433
727
|
* Id of the last updater.
|
|
434
728
|
*/
|
|
@@ -468,6 +762,17 @@ export interface WorkspacePreferenceTopicReplaceRequest {
|
|
|
468
762
|
*/
|
|
469
763
|
description?: string | null;
|
|
470
764
|
|
|
765
|
+
/**
|
|
766
|
+
* A topic's digest configuration: the template that renders it, the cadences it
|
|
767
|
+
* delivers on, and how collected events are retained.
|
|
768
|
+
*
|
|
769
|
+
* Send `null` for the whole object to turn a digest off, which unlinks the
|
|
770
|
+
* template and removes its schedules. There is no `enabled` flag, and
|
|
771
|
+
* `schedules: []` is rejected, because both states are un-deliverable rather than
|
|
772
|
+
* merely off.
|
|
773
|
+
*/
|
|
774
|
+
digest?: TopicDigestRequest | null;
|
|
775
|
+
|
|
471
776
|
/**
|
|
472
777
|
* Whether to include a list-unsubscribe header on emails for this topic.
|
|
473
778
|
*/
|
|
@@ -592,6 +897,11 @@ export declare namespace WorkspacePreferences {
|
|
|
592
897
|
export {
|
|
593
898
|
type PublishPreferencesRequest as PublishPreferencesRequest,
|
|
594
899
|
type PublishPreferencesResponse as PublishPreferencesResponse,
|
|
900
|
+
type TopicDigestCategory as TopicDigestCategory,
|
|
901
|
+
type TopicDigestReleaseRequest as TopicDigestReleaseRequest,
|
|
902
|
+
type TopicDigestRequest as TopicDigestRequest,
|
|
903
|
+
type TopicDigestResponse as TopicDigestResponse,
|
|
904
|
+
type TopicDigestScheduleRequest as TopicDigestScheduleRequest,
|
|
595
905
|
type WorkspacePreferenceCreateRequest as WorkspacePreferenceCreateRequest,
|
|
596
906
|
type WorkspacePreferenceGetResponse as WorkspacePreferenceGetResponse,
|
|
597
907
|
type WorkspacePreferenceListResponse as WorkspacePreferenceListResponse,
|
|
@@ -610,6 +920,8 @@ export declare namespace WorkspacePreferences {
|
|
|
610
920
|
type TopicCreateParams as TopicCreateParams,
|
|
611
921
|
type TopicRetrieveParams as TopicRetrieveParams,
|
|
612
922
|
type TopicArchiveParams as TopicArchiveParams,
|
|
923
|
+
type TopicDeleteDigestParams as TopicDeleteDigestParams,
|
|
924
|
+
type TopicReleaseDigestParams as TopicReleaseDigestParams,
|
|
613
925
|
type TopicReplaceParams as TopicReplaceParams,
|
|
614
926
|
};
|
|
615
927
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '9.
|
|
1
|
+
export const VERSION = '9.7.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "9.
|
|
1
|
+
export declare const VERSION = "9.7.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "9.
|
|
1
|
+
export declare const VERSION = "9.7.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '9.
|
|
1
|
+
export const VERSION = '9.7.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|