@flareapp/js 1.0.0-beta.4 → 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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +3 -3
- package/src/FlareClient.ts +1 -1
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.
|
|
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.
|
|
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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flareapp/js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "JavaScript client for flareapp.io",
|
|
5
5
|
"homepage": "https://flareapp.io",
|
|
6
6
|
"bugs": {
|
|
7
|
-
"url": "https://github.com/
|
|
7
|
+
"url": "https://github.com/spatie/flare-client-js/issues"
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/
|
|
11
|
+
"url": "git+https://github.com/spatie/flare-client-js.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"author": "adriaan@spatie.be",
|
package/src/FlareClient.ts
CHANGED