@roarkanalytics/sdk 2.19.0 → 2.19.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.19.1 (2026-02-10)
4
+
5
+ Full Changelog: [v2.19.0...v2.19.1](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v2.19.0...v2.19.1)
6
+
7
+ ### Chores
8
+
9
+ * configure new SDK language ([b3dff44](https://github.com/roarkhq/sdk-roark-analytics-node/commit/b3dff449254211f442baec52476336263a28376d))
10
+
3
11
  ## 2.19.0 (2026-02-10)
4
12
 
5
13
  Full Changelog: [v2.18.0...v2.19.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v2.18.0...v2.19.0)
package/README.md CHANGED
@@ -8,6 +8,15 @@ The REST API documentation can be found on [docs.roark.ai](https://docs.roark.ai
8
8
 
9
9
  It is generated with [Stainless](https://www.stainless.com/).
10
10
 
11
+ ## MCP Server
12
+
13
+ Use the Roark MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
14
+
15
+ [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=%40roarkanalytics%2Fsdk-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkByb2Fya2FuYWx5dGljcy9zZGstbWNwIl0sImVudiI6eyJST0FSS19BUElfQkVBUkVSX1RPS0VOIjoiTXkgQmVhcmVyIFRva2VuIn19)
16
+ [![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40roarkanalytics%2Fsdk-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40roarkanalytics%2Fsdk-mcp%22%5D%2C%22env%22%3A%7B%22ROARK_API_BEARER_TOKEN%22%3A%22My%20Bearer%20Token%22%7D%7D)
17
+
18
+ > Note: You may need to set environment variables in your MCP client.
19
+
11
20
  ## Installation
12
21
 
13
22
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roarkanalytics/sdk",
3
- "version": "2.19.0",
3
+ "version": "2.19.1",
4
4
  "description": "The official TypeScript library for the Roark API",
5
5
  "author": "Roark <james@roark.ai>",
6
6
  "types": "./index.d.ts",
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- export * from '../bun-runtime';
4
+ export * from "../bun-runtime.js";
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- export * from '../node-runtime';
4
+ export * from "../node-runtime.js";
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- export * from '../web-runtime';
4
+ export * from "../web-runtime.js";
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- export * from '../node-types';
4
+ export * from "../node-types.js";
@@ -1,8 +1,8 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- import { type Shims } from './registry';
5
- import { getRuntime as getWebRuntime } from './web-runtime';
4
+ import { type Shims } from "./registry.js";
5
+ import { getRuntime as getWebRuntime } from "./web-runtime.js";
6
6
  import { ReadStream as FsReadStream } from 'node:fs';
7
7
 
8
8
  export function getRuntime(): Shims {
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- import { manual } from './manual-types';
5
- import * as auto from "./auto/types";
6
- import { type RequestOptions } from '../core';
4
+ import { manual } from "./manual-types.js";
5
+ import * as auto from "./auto/types.js";
6
+ import { type RequestOptions } from "../core.js";
7
7
 
8
8
  type SelectType<Manual, Auto> = unknown extends Manual ? Auto : Manual;
9
9
 
@@ -2,7 +2,7 @@
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
4
  import * as shims from './registry.mjs';
5
- import * as auto from "./auto/runtime";
5
+ import * as auto from "./auto/runtime.mjs";
6
6
  export const init = () => {
7
7
  if (!shims.kind) shims.setShims(auto.getRuntime(), { auto: true });
8
8
  };
@@ -10,9 +10,9 @@ import { ReadStream as FsReadStream } from 'node:fs';
10
10
  import { type Agent } from 'node:http';
11
11
  import { FormDataEncoder } from 'form-data-encoder';
12
12
  import { Readable } from 'node:stream';
13
- import { type RequestOptions } from '../core';
14
- import { MultipartBody } from './MultipartBody';
15
- import { type Shims } from './registry';
13
+ import { type RequestOptions } from "../core.js";
14
+ import { MultipartBody } from "./MultipartBody.js";
15
+ import { type Shims } from "./registry.js";
16
16
  import { ReadableStream } from 'node:stream/web';
17
17
 
18
18
  type FileFromPathOptions = Omit<FilePropertyBag, 'lastModified'>;
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- import { type RequestOptions } from '../core';
4
+ import { type RequestOptions } from "../core.js";
5
5
 
6
6
  export interface Shims {
7
7
  kind: string;
@@ -1,9 +1,9 @@
1
1
  /**
2
2
  * Disclaimer: modules in _shims aren't intended to be imported by SDK users.
3
3
  */
4
- import { MultipartBody } from './MultipartBody';
5
- import { type RequestOptions } from '../core';
6
- import { type Shims } from './registry';
4
+ import { MultipartBody } from "./MultipartBody.js";
5
+ import { type RequestOptions } from "../core.js";
6
+ import { type Shims } from "./registry.js";
7
7
 
8
8
  export function getRuntime({ manuallyImported }: { manuallyImported?: boolean } = {}): Shims {
9
9
  const recommendation =
package/src/core.ts CHANGED
@@ -1,11 +1,11 @@
1
- import { VERSION } from './version';
1
+ import { VERSION } from "./version.js";
2
2
  import {
3
3
  RoarkError,
4
4
  APIError,
5
5
  APIConnectionError,
6
6
  APIConnectionTimeoutError,
7
7
  APIUserAbortError,
8
- } from './error';
8
+ } from "./error.js";
9
9
  import {
10
10
  kind as shimsKind,
11
11
  type Readable,
@@ -17,19 +17,19 @@ import {
17
17
  type Response,
18
18
  type HeadersInit,
19
19
  init,
20
- } from './_shims/index';
20
+ } from "./_shims/index.js";
21
21
 
22
22
  // try running side effects outside of _shims/index to workaround https://github.com/vercel/next.js/issues/76881
23
23
  init();
24
24
 
25
25
  export { type Response };
26
- import { BlobLike, isBlobLike, isMultipartBody } from './uploads';
26
+ import { BlobLike, isBlobLike, isMultipartBody } from "./uploads.js";
27
27
  export {
28
28
  maybeMultipartFormRequestOptions,
29
29
  multipartFormRequestOptions,
30
30
  createForm,
31
31
  type Uploadable,
32
- } from './uploads';
32
+ } from "./uploads.js";
33
33
 
34
34
  export type Fetch = (url: RequestInfo, init?: RequestInit) => Promise<Response>;
35
35
 
package/src/error.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { castToError, Headers } from './core';
3
+ import { castToError, Headers } from "./core.js";
4
4
 
5
5
  export class RoarkError extends Error {}
6
6
 
package/src/index.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { type Agent } from './_shims/index';
4
- import * as qs from './internal/qs';
5
- import * as Core from './core';
6
- import * as Errors from './error';
7
- import * as Uploads from './uploads';
8
- import * as API from './resources/index';
3
+ import { type Agent } from "./_shims/index.js";
4
+ import * as qs from "./internal/qs.js";
5
+ import * as Core from "./core.js";
6
+ import * as Errors from "./error.js";
7
+ import * as Uploads from "./uploads.js";
8
+ import * as API from "./resources/index.js";
9
9
  import {
10
10
  Call,
11
11
  CallCreateParams,
@@ -17,7 +17,7 @@ import {
17
17
  CallListParams,
18
18
  CallListResponse,
19
19
  CallListSentimentRunsResponse,
20
- } from './resources/call';
20
+ } from "./resources/call.js";
21
21
  import {
22
22
  Evaluation,
23
23
  EvaluationCreateJobParams,
@@ -28,16 +28,16 @@ import {
28
28
  EvaluationListEvaluatorsResponse,
29
29
  EvaluationListJobRunsParams,
30
30
  EvaluationListJobRunsResponse,
31
- } from './resources/evaluation';
32
- import { Health, HealthGetResponse } from './resources/health';
31
+ } from "./resources/evaluation.js";
32
+ import { Health, HealthGetResponse } from "./resources/health.js";
33
33
  import {
34
34
  IntegrationCreateRetellCallParams,
35
35
  IntegrationCreateRetellCallResponse,
36
36
  IntegrationCreateVapiCallParams,
37
37
  IntegrationCreateVapiCallResponse,
38
38
  Integrations,
39
- } from './resources/integrations';
40
- import { Metric, MetricListDefinitionsResponse } from './resources/metric';
39
+ } from "./resources/integrations.js";
40
+ import { Metric, MetricListDefinitionsResponse } from "./resources/metric.js";
41
41
  import {
42
42
  Persona,
43
43
  PersonaCreateParams,
@@ -47,7 +47,7 @@ import {
47
47
  PersonaListResponse,
48
48
  PersonaUpdateParams,
49
49
  PersonaUpdateResponse,
50
- } from './resources/persona';
50
+ } from "./resources/persona.js";
51
51
  import {
52
52
  Simulation,
53
53
  SimulationGetRunPlanJobResponse,
@@ -59,7 +59,7 @@ import {
59
59
  SimulationLookupSimulationJobParams,
60
60
  SimulationLookupSimulationJobResponse,
61
61
  SimulationStartRunPlanJobResponse,
62
- } from './resources/simulation';
62
+ } from "./resources/simulation.js";
63
63
 
64
64
  export interface ClientOptions {
65
65
  /**
@@ -305,7 +305,7 @@ export declare namespace Roark {
305
305
  };
306
306
  }
307
307
 
308
- export { toFile, fileFromPath } from './uploads';
308
+ export { toFile, fileFromPath } from "./uploads.js";
309
309
  export {
310
310
  RoarkError,
311
311
  APIError,
@@ -320,6 +320,6 @@ export {
320
320
  InternalServerError,
321
321
  PermissionDeniedError,
322
322
  UnprocessableEntityError,
323
- } from './error';
323
+ } from "./error.js";
324
324
 
325
325
  export default Roark;
@@ -1,4 +1,4 @@
1
- import type { Format } from './types';
1
+ import type { Format } from "./types.js";
2
2
 
3
3
  export const default_format: Format = 'RFC3986';
4
4
  export const formatters: Record<Format, (str: PropertyKey) => string> = {
@@ -1,4 +1,4 @@
1
- import { default_format, formatters, RFC1738, RFC3986 } from './formats';
1
+ import { default_format, formatters, RFC1738, RFC3986 } from "./formats.js";
2
2
 
3
3
  const formats = {
4
4
  formatters,
@@ -7,7 +7,7 @@ const formats = {
7
7
  default: default_format,
8
8
  };
9
9
 
10
- export { stringify } from './stringify';
10
+ export { stringify } from "./stringify.js";
11
11
  export { formats };
12
12
 
13
- export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from './types';
13
+ export type { DefaultDecoder, DefaultEncoder, Format, ParseOptions, StringifyOptions } from "./types.js";
@@ -1,6 +1,6 @@
1
- import { encode, is_buffer, maybe_map } from './utils';
2
- import { default_format, formatters } from './formats';
3
- import type { NonNullableProperties, StringifyOptions } from './types';
1
+ import { encode, is_buffer, maybe_map } from "./utils.js";
2
+ import { default_format, formatters } from "./formats.js";
3
+ import type { NonNullableProperties, StringifyOptions } from "./types.js";
4
4
 
5
5
  const has = Object.prototype.hasOwnProperty;
6
6
 
@@ -1,5 +1,5 @@
1
- import { RFC1738 } from './formats';
2
- import type { DefaultEncoder, Format } from './types';
1
+ import { RFC1738 } from "./formats.js";
2
+ import type { DefaultEncoder, Format } from "./types.js";
3
3
 
4
4
  const has = Object.prototype.hasOwnProperty;
5
5
  const is_array = Array.isArray;
package/src/resource.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import type { Roark } from './index';
3
+ import type { Roark } from "./index.js";
4
4
 
5
5
  export abstract class APIResource {
6
6
  protected _client: Roark;
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import { isRequestOptions } from '../core';
5
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import { isRequestOptions } from "../core.js";
5
+ import * as Core from "../core.js";
6
6
 
7
7
  export class Call extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import { isRequestOptions } from '../core';
5
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import { isRequestOptions } from "../core.js";
5
+ import * as Core from "../core.js";
6
6
 
7
7
  export class Evaluation extends APIResource {
8
8
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import * as Core from "../core.js";
5
5
 
6
6
  export class Health extends APIResource {
7
7
  /**
@@ -11,7 +11,7 @@ export {
11
11
  type CallCreateParams,
12
12
  type CallListParams,
13
13
  type CallListMetricsParams,
14
- } from './call';
14
+ } from "./call.js";
15
15
  export {
16
16
  Evaluation,
17
17
  type EvaluationCreateJobResponse,
@@ -22,16 +22,16 @@ export {
22
22
  type EvaluationCreateJobParams,
23
23
  type EvaluationListEvaluatorsParams,
24
24
  type EvaluationListJobRunsParams,
25
- } from './evaluation';
26
- export { Health, type HealthGetResponse } from './health';
25
+ } from "./evaluation.js";
26
+ export { Health, type HealthGetResponse } from "./health.js";
27
27
  export {
28
28
  Integrations,
29
29
  type IntegrationCreateRetellCallResponse,
30
30
  type IntegrationCreateVapiCallResponse,
31
31
  type IntegrationCreateRetellCallParams,
32
32
  type IntegrationCreateVapiCallParams,
33
- } from './integrations';
34
- export { Metric, type MetricListDefinitionsResponse } from './metric';
33
+ } from "./integrations.js";
34
+ export { Metric, type MetricListDefinitionsResponse } from "./metric.js";
35
35
  export {
36
36
  Persona,
37
37
  type PersonaCreateResponse,
@@ -41,7 +41,7 @@ export {
41
41
  type PersonaCreateParams,
42
42
  type PersonaUpdateParams,
43
43
  type PersonaListParams,
44
- } from './persona';
44
+ } from "./persona.js";
45
45
  export {
46
46
  Simulation,
47
47
  type SimulationGetRunPlanJobResponse,
@@ -53,4 +53,4 @@ export {
53
53
  type SimulationListRunPlanJobsParams,
54
54
  type SimulationListScenariosParams,
55
55
  type SimulationLookupSimulationJobParams,
56
- } from './simulation';
56
+ } from "./simulation.js";
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import * as Core from "../core.js";
5
5
 
6
6
  export class Integrations extends APIResource {
7
7
  /**
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import * as Core from "../core.js";
5
5
 
6
6
  export class Metric extends APIResource {
7
7
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import { isRequestOptions } from '../core';
5
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import { isRequestOptions } from "../core.js";
5
+ import * as Core from "../core.js";
6
6
 
7
7
  export class Persona extends APIResource {
8
8
  /**
@@ -1,8 +1,8 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- import { APIResource } from '../resource';
4
- import { isRequestOptions } from '../core';
5
- import * as Core from '../core';
3
+ import { APIResource } from "../resource.js";
4
+ import { isRequestOptions } from "../core.js";
5
+ import * as Core from "../core.js";
6
6
 
7
7
  export class Simulation extends APIResource {
8
8
  /**
package/src/resources.ts CHANGED
@@ -1 +1 @@
1
- export * from './resources/index';
1
+ export * from "./resources/index.js";
package/src/shims/node.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // @ts-ignore
2
- import * as types from '../_shims/node-types';
3
- import { setShims } from '../_shims/registry';
4
- import { getRuntime } from '../_shims/node-runtime';
2
+ import * as types from "../_shims/node-types.js";
3
+ import { setShims } from "../_shims/registry.js";
4
+ import { getRuntime } from "../_shims/node-runtime.js";
5
5
  setShims(getRuntime());
6
6
 
7
7
  declare module '../_shims/manual-types' {
package/src/shims/web.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  // @ts-ignore
2
- import * as types from '../_shims/web-types';
3
- import { setShims } from '../_shims/registry';
4
- import { getRuntime } from '../_shims/web-runtime';
2
+ import * as types from "../_shims/web-types.js";
3
+ import { setShims } from "../_shims/registry.js";
4
+ import { getRuntime } from "../_shims/web-runtime.js";
5
5
  setShims(getRuntime({ manuallyImported: true }));
6
6
 
7
7
  declare module '../_shims/manual-types' {
package/src/uploads.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { type RequestOptions } from './core';
1
+ import { type RequestOptions } from "./core.js";
2
2
  import {
3
3
  FormData,
4
4
  File,
@@ -7,9 +7,9 @@ import {
7
7
  getMultipartRequestOptions,
8
8
  type FsReadStream,
9
9
  isFsReadStream,
10
- } from './_shims/index';
11
- import { MultipartBody } from './_shims/MultipartBody';
12
- export { fileFromPath } from './_shims/index';
10
+ } from "./_shims/index.js";
11
+ import { MultipartBody } from "./_shims/MultipartBody.js";
12
+ export { fileFromPath } from "./_shims/index.js";
13
13
 
14
14
  type BlobLikePart = string | ArrayBuffer | ArrayBufferView | BlobLike | Uint8Array | DataView;
15
15
  export type BlobPart = string | ArrayBuffer | ArrayBufferView | Blob | Uint8Array | DataView;
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '2.19.0'; // x-release-please-version
1
+ export const VERSION = '2.19.1'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "2.19.0";
1
+ export declare const VERSION = "2.19.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 = '2.19.0'; // x-release-please-version
4
+ exports.VERSION = '2.19.1'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '2.19.0'; // x-release-please-version
1
+ export const VERSION = '2.19.1'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map