anys-web 6.3.2 → 7.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anys-web",
3
- "version": "6.3.2",
3
+ "version": "7.0.0",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -12,25 +12,27 @@
12
12
  "author": "tangshuang",
13
13
  "license": "Apache-2.0",
14
14
  "dependencies": {
15
- "anys": "^6.3.0",
16
- "anys-shared": "^6.3.0",
17
- "anys-web-plugin-identify": "^6.2.0",
18
- "anys-web-plugin-monitor-ajax": "^6.3.0",
19
- "anys-web-plugin-monitor-dom-mutation": "^6.3.2",
20
- "anys-web-plugin-monitor-error": "^6.3.1",
21
- "anys-web-plugin-monitor-input-event": "^6.3.0",
22
- "anys-web-plugin-monitor-mouse-event": "^6.3.0",
23
- "anys-web-plugin-monitor-performance": "^6.3.0",
24
- "anys-web-plugin-monitor-scroll-event": "^6.3.0",
25
- "anys-web-plugin-monitor-touch-event": "^6.3.0",
26
- "anys-web-plugin-monitor-url": "^6.3.0",
27
- "anys-web-plugin-monitor-window-activity": "^6.3.0",
28
- "anys-web-plugin-monitor-window-size": "^6.3.0",
29
- "anys-web-plugin-send-by-ajax": "^6.3.0",
30
- "anys-web-plugin-store-offline": "^6.3.0"
15
+ "anys": "^7.0.0",
16
+ "anys-plugin-store-memory": "^7.0.0",
17
+ "anys-shared": "^7.0.0",
18
+ "anys-web-plugin-identify": "^7.0.0",
19
+ "anys-web-plugin-monitor-ajax": "^7.0.0",
20
+ "anys-web-plugin-monitor-dom-mutation": "^7.0.0",
21
+ "anys-web-plugin-monitor-error": "^7.0.0",
22
+ "anys-web-plugin-monitor-input-event": "^7.0.0",
23
+ "anys-web-plugin-monitor-mouse-event": "^7.0.0",
24
+ "anys-web-plugin-monitor-performance": "^7.0.0",
25
+ "anys-web-plugin-monitor-scroll-event": "^7.0.0",
26
+ "anys-web-plugin-monitor-touch-event": "^7.0.0",
27
+ "anys-web-plugin-monitor-url": "^7.0.0",
28
+ "anys-web-plugin-monitor-window-activity": "^7.0.0",
29
+ "anys-web-plugin-monitor-window-size": "^7.0.0",
30
+ "anys-web-plugin-send-by-ajax": "^7.0.0",
31
+ "anys-web-plugin-send-by-beacon": "^7.0.0",
32
+ "anys-web-plugin-store-offline": "^7.0.0"
31
33
  },
32
34
  "publishConfig": {
33
35
  "registry": "https://registry.npmjs.org/"
34
36
  },
35
- "gitHead": "c0f2dddfe6873acf138eb88111a02435147eecb2"
37
+ "gitHead": "3cd679df14e725098c6bdf0622cc1b20d52c910d"
36
38
  }
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Anys } from 'anys';
2
- import { AnysTracePlugin } from './tracer-plugin.js';
2
+ import { AnysOfflineTracerPlugin } from './offline-tracer-plugin.js';
3
3
 
4
4
  class Tracer extends Anys {
5
5
  /**
@@ -16,6 +16,6 @@ export const createTracer = (options = {}) => new Tracer({
16
16
  ...options,
17
17
  plugins: {
18
18
  ...(options.plugins || {}),
19
- tracer: AnysTracePlugin,
19
+ tracer: AnysOfflineTracerPlugin,
20
20
  },
21
21
  });
@@ -10,7 +10,7 @@ import { AnysMonitorDOMMutationPlugin } from 'anys-web-plugin-monitor-dom-mutati
10
10
  import { AnysMonitorWindowSizePlugin } from 'anys-web-plugin-monitor-window-size';
11
11
  import { AnysMonitorScrollEventPlugin } from 'anys-web-plugin-monitor-scroll-event';
12
12
 
13
- export class AnysTracePlugin extends AnysPlugin {
13
+ export class AnysOfflineTracerPlugin extends AnysPlugin {
14
14
  static dependencies = [
15
15
  AnysStoreOfflinePlugin,
16
16
  AnysMonitorUrlPlugin,