@honeybadger-io/js 4.8.2 → 4.9.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.
@@ -10,6 +10,7 @@ declare class Honeybadger extends Client {
10
10
  factory(opts?: Partial<Types.Config | Types.ServerlessConfig>): this;
11
11
  configure(opts?: Partial<Types.Config | Types.ServerlessConfig>): this;
12
12
  protected __initStore(): void;
13
+ showUserFeedbackForm(): Promise<void>;
13
14
  checkIn(id: string): Promise<void>;
14
15
  withRequest<R>(request: Record<symbol, unknown>, handler: (...args: never[]) => R, onError?: (...args: unknown[]) => unknown): R | void;
15
16
  run<R>(callback: (...args: never[]) => R): R;
@@ -812,7 +812,7 @@ var store_1 = store;
812
812
  var notifier = {
813
813
  name: 'honeybadger-js',
814
814
  url: 'https://github.com/honeybadger-io/honeybadger-js',
815
- version: '4.8.2'
815
+ version: '4.9.0'
816
816
  };
817
817
  // Split at commas and spaces
818
818
  var TAG_SEPARATOR = /,|\s+/;
@@ -1824,6 +1824,9 @@ stacked_store.StackedStore = StackedStore;
1824
1824
  // @ts-ignore
1825
1825
  this.__store = new stacked_store_1.StackedStore(this.config.maxBreadcrumbs);
1826
1826
  };
1827
+ Honeybadger.prototype.showUserFeedbackForm = function () {
1828
+ throw new Error('Honeybadger.showUserFeedbackForm() is not supported on the server-side');
1829
+ };
1827
1830
  Honeybadger.prototype.checkIn = function (id) {
1828
1831
  var _this = this;
1829
1832
  return this.__transport