@flareapp/js 1.0.0 → 1.0.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/dist/index.js CHANGED
@@ -38,7 +38,7 @@ module.exports = __toCommonJS(src_exports);
38
38
  // src/build.ts
39
39
  var build_default = {
40
40
  // Injected during build
41
- clientVersion: false ? "?" : '"1.0.0"',
41
+ clientVersion: false ? "?" : '"1.0.1"',
42
42
  // Optionally injected by flare-vite-plugin-sourcemap-uploader
43
43
  flareJsKey: typeof FLARE_JS_KEY === "undefined" ? "" : FLARE_JS_KEY,
44
44
  sourcemapVersion: typeof FLARE_SOURCEMAP_VERSION === "undefined" ? "" : FLARE_SOURCEMAP_VERSION
@@ -299,7 +299,7 @@ var FlareClient = class {
299
299
  this.version = build_default.clientVersion;
300
300
  this.config = {
301
301
  key: "",
302
- reportingUrl: "https://flareapp.io/api/reports",
302
+ reportingUrl: "https://reporting.flareapp.io/api/reports",
303
303
  maxGlowsPerReport: 30,
304
304
  maxReportsPerMinute: 500
305
305
  };
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  // src/build.ts
2
2
  var build_default = {
3
3
  // Injected during build
4
- clientVersion: false ? "?" : '"1.0.0"',
4
+ clientVersion: false ? "?" : '"1.0.1"',
5
5
  // Optionally injected by flare-vite-plugin-sourcemap-uploader
6
6
  flareJsKey: typeof FLARE_JS_KEY === "undefined" ? "" : FLARE_JS_KEY,
7
7
  sourcemapVersion: typeof FLARE_SOURCEMAP_VERSION === "undefined" ? "" : FLARE_SOURCEMAP_VERSION
@@ -262,7 +262,7 @@ var FlareClient = class {
262
262
  this.version = build_default.clientVersion;
263
263
  this.config = {
264
264
  key: "",
265
- reportingUrl: "https://flareapp.io/api/reports",
265
+ reportingUrl: "https://reporting.flareapp.io/api/reports",
266
266
  maxGlowsPerReport: 30,
267
267
  maxReportsPerMinute: 500
268
268
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flareapp/js",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "JavaScript client for flareapp.io",
5
5
  "homepage": "https://flareapp.io",
6
6
  "bugs": {
@@ -10,7 +10,7 @@ export default class FlareClient {
10
10
 
11
11
  public config: Flare.Config = {
12
12
  key: '',
13
- reportingUrl: 'https://flareapp.io/api/reports',
13
+ reportingUrl: 'https://reporting.flareapp.io/api/reports',
14
14
  maxGlowsPerReport: 30,
15
15
  maxReportsPerMinute: 500,
16
16
  };