hina-cloud-js-sdk 4.0.0 → 4.0.2

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.d.ts CHANGED
@@ -1,107 +1,19 @@
1
- import { Monitor } from 'hina-cloud-monitor';
2
- export { MonitorInstance } from 'hina-cloud-monitor';
3
- import { WebClient } from 'hina-cloud-core';
4
- import { PluginBase, TrackOptions, ReportDataType, VariablesTypes, FetchParams, ResultItem, StorageDataType, RequestData, ResponseData, PageLeaveAutoTrackObject, IAnyObject, LinkerItem, SiteLinkerOptions, AbTestingOptions, VoidFn, UnKnownFn, ReportProperties, AnyFn, ReportTypes } from 'hina-cloud-types';
5
- export * from 'hina-cloud-types';
6
- import { State } from 'hina-cloud-utils';
1
+ import { WebClient } from 'hina-cloud-js-core';
2
+ import { FetchParams, ResponseData, PluginBase, ReportDataType, WebOptions, AbTestingOptions, IAnyObject, PluginConstructor, CommonGeneralProperties, HLatestUtmOptions, HUtmOptions, VoidFn, UnKnownFn, AnyFn, ReportTypes } from 'hina-cloud-type';
3
+ export * from 'hina-cloud-type';
4
+ import { AbtestBasePlugin, WebState } from 'hina-cloud-util';
5
+ import { PerformanceOptions } from 'hina-cloud-js-monitor';
7
6
 
8
- declare class AbTestingPlugin extends PluginBase<TrackOptions> {
7
+ declare class AbTestingPlugin extends AbtestBasePlugin {
9
8
  options: TrackOptions;
10
9
  context: TrackInstance;
11
10
  name: string;
12
- isReady: boolean;
13
- /**
14
- * 浏览器平台 H5 Web
15
- */
16
- platform: "H5" | "Web";
17
- /**
18
- * 项目key
19
- */
20
- projectKey: string;
21
- /**
22
- * 本地存储名称
23
- */
24
- storageName: string;
25
11
  constructor(options: TrackOptions, context: TrackInstance);
26
- init(): void;
27
- transform(): ReportDataType<any>;
28
- /**
29
- * 判断类型和值是否匹配
30
- * @param value
31
- * @param type
32
- */
33
- valueMatchType(value: unknown, type: VariablesTypes): boolean;
34
- /**
35
- * 处理参数
36
- * @param prefixLog
37
- * @param params
38
- * @param validateKeys
39
- */
40
- normalizeParams(prefixLog: string, params: FetchParams, validateKeys?: (keyof FetchParams)[]): {
41
- verify_success: boolean;
42
- para: FetchParams;
43
- };
44
- /**
45
- * 发送 H_ABTestTrigger事件
46
- * @param data
47
- */
48
- sendTriggerEvent(data: {
49
- abtest_experiment_id: string;
50
- abtest_experiment_group_id: string;
51
- }): void;
52
- /**
53
- * 从本地缓存中获取实验结果
54
- * @param params 实验参数对象
55
- * @param list
56
- */
57
- getExpResult(params: FetchParams, list?: ResultItem[]): string | number | boolean;
58
- /**
59
- * 获取本地数据
60
- * @returns
61
- */
62
- getStorageData(): StorageDataType | null;
63
- /**
64
- * 保存数据到本地
65
- * @param list
66
- */
67
- saveResponseData(list: ResultItem[]): void;
68
- /**
69
- * 创建请求数据
70
- * @param params
71
- */
72
- createRequestData(params: FetchParams): RequestData;
73
12
  /**
74
13
  * 从服务器获取数据
75
14
  * @param params
76
15
  */
77
16
  getResultFromServer(params: FetchParams): Promise<ResponseData>;
78
- /**
79
- * 请求服务接口获取数据
80
- * @param params
81
- */
82
- asyncFetch(params: FetchParams): Promise<ResponseData>;
83
- /**
84
- * 调用方法前验证参数
85
- */
86
- preFetch(prefixLog: string, params: FetchParams): boolean;
87
- /**
88
- * 获取试验变量
89
- * 忽略本地缓存,从服务端获取数据
90
- * @param params
91
- */
92
- asyncFetchABTest(params: FetchParams): void;
93
- /**
94
- * 获取试验变量
95
- * 读取本地缓存,缓存不存在时使用默认值
96
- * @param params
97
- */
98
- fetchCacheABTest(params: FetchParams): void;
99
- /**
100
- * 获取试验变量
101
- * 优先读取本地缓存,缓存不存在时从服务端获取数据
102
- * @param params
103
- */
104
- fastFetchABTest(params: FetchParams): void;
105
17
  }
106
18
 
107
19
  declare class PageLeavePlugin extends PluginBase<TrackOptions> {
@@ -140,7 +52,7 @@ declare class PageLeavePlugin extends PluginBase<TrackOptions> {
140
52
  delHeartBeatData(storageKey?: string): void;
141
53
  isCollectUrl(): boolean;
142
54
  saveHeartBeatData(type?: string): void;
143
- getPageLeaveProperties(): IAnyObject;
55
+ getPageLeaveProperties(): WebPageLeaveOptions;
144
56
  }
145
57
 
146
58
  declare class SiteLinkerPlugin extends PluginBase<TrackOptions> {
@@ -188,6 +100,407 @@ declare class SiteLinkerPlugin extends PluginBase<TrackOptions> {
188
100
  addClickListen(): void;
189
101
  }
190
102
 
103
+ /**
104
+ * 上报数据事件
105
+ */
106
+ type ReportEventsName = 'H_SignUp' | 'H_pageview' | 'H_WebClick' | 'H_WebStay' | 'H_WebPageLeave' | string;
107
+ /**
108
+ * 上报数据类型
109
+ */
110
+ type ReportTypesName = 'user_set' | 'user_unset' | 'user_delete' | 'user_set_once' | 'user_append' | 'user_add' | 'track_signup' | 'track' | string;
111
+ /**
112
+ * 埋点配置
113
+ */
114
+ interface TrackOptions extends WebOptions {
115
+ /**
116
+ * 埋点配置
117
+ */
118
+ autoTrackConfig: {
119
+ /**
120
+ * 是否开启自动点击采集(默认 true), true表示开启,自动采集 H_WebClick 事件
121
+ */
122
+ clickAutoTrack?: boolean;
123
+ /**
124
+ * 是否开启dom元素采集(默认 false) 可以是boolean类型,也可以是object类型(只对div元素有效)
125
+ *
126
+ * object类型,有如下参数:
127
+ *
128
+ * ignoreTags:忽略的标签 不可自定义,内部定义好的
129
+ * maxLevel:层级 默认是 1,可配置范围是 [1, 2, 3],非该范围配置值,会被当作 1 处理。
130
+ * 其中:['a', 'input', 'button', 'textarea']这四个元素是固定采集的
131
+ */
132
+ collectTags?: {
133
+ [key: string]: boolean | {
134
+ ignoreTags?: string[];
135
+ maxLevel?: number;
136
+ };
137
+ };
138
+ /**
139
+ * 开启全埋点时,配置带有指定属性的页面元素点击,自动采集点击事件(默认['hn-click'])
140
+ */
141
+ trackAttr?: string[];
142
+ /**
143
+ * 是否采集当前页面的数据(默认返回true),返回false表示不采集当前页面,
144
+ * 设置这个函数后,内容为空的话,是返回false。不设置函数默认是采集所有页面。
145
+ */
146
+ isCollectUrl?: () => boolean;
147
+ /**
148
+ * 用户点击页面元素时会触发这个函数,判断是否要采集当前这个元素,返回true表示采集,返回false表示不采集。(默认true)
149
+ */
150
+ isCollectElement?: (value?: any) => boolean;
151
+ /**
152
+ * 考虑到用户隐私,这里可以设置 input 里的内容是否采集
153
+ * 如果返回true,表示采集 input 内容,返回false表示不采集 input 内容,(默认false)。
154
+ */
155
+ isCollectInput?: (value?: any) => boolean;
156
+ /**
157
+ * 根据特定标签添加上报的自定义字段
158
+ * 比如您需要给有 data=test 属性的标签的点击事件增加自定义属性 name:'aa' ,则代码如下:
159
+ * if(element_target.getAttribute('data') === 'test'){
160
+ * return {
161
+ * name:'aa'
162
+ * }
163
+ * }
164
+ */
165
+ addCustomProperty?: (value?: any) => any;
166
+ /**
167
+ * 是否开启页面停留采集(默认 true), true表示开启,自动采集 H_WebStay 事件
168
+ */
169
+ stayAutoTrack?: boolean;
170
+ /**
171
+ * 有效停留时长超过多少毫秒过开始采集(默认4000ms),单位ms
172
+ */
173
+ stayDelayTime?: number;
174
+ /**
175
+ * 预置属性停留时长 event_duration 的最大值,(默认 18000s),单位s
176
+ */
177
+ maxStayPageDuration?: number;
178
+ /**
179
+ * 是否开启页面浏览采集(默认 false),auto 只在SDK初始化时会上报一次H_pageview事件 singlePage 路由改变时自动采集H_pageview事件
180
+ * 若页面中有锚点设计,需要将该配置设为 false,否则触发锚点会多触发 H_pageview 事件
181
+ */
182
+ pageviewAutoTrack?: 'singlePage' | 'auto' | false;
183
+ /**
184
+ * 自动采集web离开事件(默认 false) false object(PageLeave的配置) 默认关闭
185
+ */
186
+ pageLeaveAutoTrack?: boolean | PageLeaveAutoTrackObject;
187
+ };
188
+ /**
189
+ * 多域名打通插件配置项 v4版本开始支持配置项开启,v4版本之前只能通过use方法开启
190
+ */
191
+ siteLinkerConfig?: SiteLinkerOptions;
192
+ /**
193
+ * abTest插件配置
194
+ */
195
+ abTestingPluginConfig?: AbTestingOptions;
196
+ /**
197
+ * 采集当前页面的视区停留事件(默认返回 true),返回false则不采集
198
+ */
199
+ stayAutoTrackConfig?: {
200
+ isCollectUrl?: () => boolean;
201
+ };
202
+ /**
203
+ * @deprecated
204
+ * 慎重使用,在未来的某个版本将不再支持该配置项。
205
+ *
206
+ * 单页面配置(默认false),若页面中有锚点设计,需要将该配置删除,否则触发锚点会多触发 H_pageview 事件
207
+ */
208
+ isSinglePage?: boolean | (() => boolean | IAnyObject);
209
+ /**
210
+ * 是否使用app的jsBridge
211
+ */
212
+ appJsBridge?: boolean;
213
+ /**
214
+ * 是否开启 H_latest 相关的最近一次相关事件属性采集以及配置 H_url 作为公共属性,默认值为一个对象
215
+ * 子配置项 true 表示采集,false 表示不采集,未设置的参数取默认值
216
+ */
217
+ presetProperties?: PresetProperties;
218
+ /**
219
+ * 自定义渠道来源属性,默认为空,用户可以自定义,如['utm_account']等
220
+ */
221
+ sourceChannel?: string[];
222
+ /**
223
+ * 插件系统,v4版本开始支持用户自定义插件,具体插件开发规范参考插件文档
224
+ */
225
+ plugins?: PluginConstructor<TrackOptions>[];
226
+ /**
227
+ * 性能监控系统配置
228
+ */
229
+ performanceErrorConfig?: PerformanceOptions;
230
+ }
231
+ /**
232
+ * 采集最近一次的广告系列相关参数
233
+ */
234
+ interface PresetProperties {
235
+ /**
236
+ * 是否采集 最近一次广告系列相关参数,默认值 true
237
+ */
238
+ latest_utm?: boolean;
239
+ /**
240
+ * 是否采集 最近一次流量来源类型,默认值 true
241
+ */
242
+ latest_traffic_source_type?: boolean;
243
+ /**
244
+ * 是否采集 最近一次搜索引擎关键字,默认值 true
245
+ */
246
+ latest_search_keyword?: boolean;
247
+ /**
248
+ * 是否采集 最近一次前向地址,默认值 true
249
+ */
250
+ latest_referrer?: boolean;
251
+ }
252
+ /**
253
+ * PageLeavePlugin插件参数
254
+ */
255
+ interface PageLeaveAutoTrackObject {
256
+ /**
257
+ * 心跳记录刷新时间 单位秒(s) 默认值 5s
258
+ */
259
+ heartbeat_interval_time?: number;
260
+ /**
261
+ * 最大页面浏览时长 单位秒(s) 默认值 432000s (5天)
262
+ */
263
+ max_duration?: number;
264
+ /**
265
+ * 设置是否采集当前页面浏览时长, 返回 true 为需要采集,返回 false 或者不返回则为不采集
266
+ */
267
+ isCollectUrl?: (url?: string) => boolean;
268
+ /**
269
+ * 页面浏览时长自定义属性
270
+ */
271
+ custom_props?: {
272
+ [key: string]: any;
273
+ };
274
+ }
275
+ /**
276
+ * SiteLinker插件参数
277
+ */
278
+ interface LinkerItem {
279
+ /**
280
+ * 配置值为打通网站网址的一部分。建议配置时配置为打通网站的域名。
281
+ */
282
+ part_url?: string;
283
+ /**
284
+ * 配置 _hnsdk 参数在 URL 的 hash 部分(即 # 后部分)还是在 URL 的 search 部分(即 # 前的 ?部分)。
285
+ * 必填属性,且属性值必须为布尔类型,即 true 或 false(默认建议填 false)。
286
+ */
287
+ after_hash?: boolean;
288
+ }
289
+ interface SiteLinkerOptions {
290
+ /**
291
+ * 该配置设置为 true 后,如果从已登录的页面跳转过来,即使当前网页已经登录,当前网页仍然会以之前网页的登录 id 再次登录。
292
+ */
293
+ re_login?: boolean;
294
+ /**
295
+ * 具体网站链接配置项
296
+ */
297
+ linker?: LinkerItem[];
298
+ }
299
+ /**
300
+ * 公共事件属性/预置属性
301
+ */
302
+ interface GeneralProperties extends CommonGeneralProperties, HLatestUtmOptions {
303
+ /**
304
+ * 是否首日访问
305
+ */
306
+ H_is_first_day?: boolean;
307
+ /**
308
+ * 最近一次站外地址
309
+ */
310
+ H_latest_referrer?: string;
311
+ /**
312
+ * 最近一次站外域名
313
+ */
314
+ H_latest_referrer_host?: string;
315
+ /**
316
+ * 最近一次搜索引擎关键词 由于各搜索引擎策略不同,可能有获取不到的情况
317
+ */
318
+ H_latest_search_keyword?: string;
319
+ /**
320
+ * 最近一次流量来源类型
321
+ */
322
+ H_latest_traffic_source_type?: string;
323
+ /**
324
+ * 页面高度 滚动高度
325
+ */
326
+ H_page_height?: number;
327
+ }
328
+ /**
329
+ * user_setOnce事件
330
+ */
331
+ interface UserSetOnceOptions extends HUtmOptions {
332
+ /**
333
+ * 首次访问时间
334
+ */
335
+ H_first_visit_time?: number;
336
+ /**
337
+ * 首次前向地址
338
+ */
339
+ H_first_referrer?: string;
340
+ /**
341
+ * 首次前向域名
342
+ */
343
+ H_first_referrer_host?: string;
344
+ /**
345
+ * 首次浏览器语言
346
+ */
347
+ H_first_browser_language?: string;
348
+ /**
349
+ * 首次浏览器字符
350
+ */
351
+ H_first_browser_charset?: string;
352
+ /**
353
+ * 首次搜索引擎关键词
354
+ */
355
+ H_first_search_keyword?: string;
356
+ /**
357
+ * 首次流量来源类型
358
+ */
359
+ H_first_traffic_source_type?: string;
360
+ [key: string]: any;
361
+ }
362
+ /**
363
+ * Web 浏览页面 H_pageview事件
364
+ */
365
+ interface PageViewOptions extends HUtmOptions {
366
+ /**
367
+ * 是否首次
368
+ */
369
+ H_is_first_time?: boolean;
370
+ /**
371
+ * 页面路径
372
+ */
373
+ H_url_path?: string;
374
+ /**
375
+ * 前向地址
376
+ */
377
+ H_referrer?: string;
378
+ /**
379
+ * 前向域名
380
+ */
381
+ H_referrer_host?: string;
382
+ [key: string]: any;
383
+ }
384
+ /**
385
+ * Web 元素点击 H_WebClick事件
386
+ */
387
+ interface WebClickOptions {
388
+ /**
389
+ * 元素类型
390
+ */
391
+ H_element_type?: string;
392
+ /**
393
+ * 元素名称
394
+ */
395
+ H_element_name?: string;
396
+ /**
397
+ * 元素ID
398
+ */
399
+ H_element_id?: string;
400
+ /**
401
+ * 元素链接地址
402
+ */
403
+ H_element_target_url?: string;
404
+ /**
405
+ * 元素内容
406
+ */
407
+ H_element_content?: string;
408
+ /**
409
+ * 元素className
410
+ */
411
+ H_element_class_name?: string;
412
+ /**
413
+ * 元素选择器
414
+ */
415
+ H_element_selector?: string;
416
+ /**
417
+ * 元素路径
418
+ */
419
+ H_element_path?: string;
420
+ /**
421
+ * 页面路径
422
+ */
423
+ H_url_path?: string;
424
+ /**
425
+ * 点击位置距网页左侧距离
426
+ */
427
+ H_page_x?: number;
428
+ /**
429
+ * 点击位置距网页顶部距离
430
+ */
431
+ H_page_y?: number;
432
+ /**
433
+ * 页面点击位置
434
+ * 页面 li 标签 以及 li 标签内的子标签(即叶子结点为 li 标签 或叶子结点的父节点或父父节点为 li 标签)时采集。
435
+ */
436
+ H_element_position?: number;
437
+ [key: string]: any;
438
+ }
439
+ /**
440
+ * Web 视区停留 H_WebStay
441
+ */
442
+ interface WebStayOptions {
443
+ /**
444
+ * 视区宽度
445
+ */
446
+ H_viewport_width?: number;
447
+ /**
448
+ * 视区高度
449
+ */
450
+ H_viewport_height?: number;
451
+ /**
452
+ * 视区距顶部的位置
453
+ */
454
+ H_viewport_position?: number;
455
+ /**
456
+ * 停留时长
457
+ */
458
+ event_duration?: number;
459
+ /**
460
+ * 页面路径
461
+ */
462
+ H_url_path?: string;
463
+ [key: string]: any;
464
+ }
465
+ /**
466
+ * H_WebPageLeave事件
467
+ */
468
+ interface WebPageLeaveOptions {
469
+ /**
470
+ * 页面地址
471
+ */
472
+ H_url?: string;
473
+ /**
474
+ * 页面路径
475
+ */
476
+ H_url_path?: string;
477
+ /**
478
+ * 页面hash
479
+ */
480
+ H_url_hash?: string;
481
+ /**
482
+ * 前向地址
483
+ */
484
+ H_referrer?: string;
485
+ /**
486
+ * 前向域名
487
+ */
488
+ H_referrer_host?: string;
489
+ /**
490
+ * 视区距顶部的位置
491
+ */
492
+ H_viewport_position?: number;
493
+ /**
494
+ * 停留时长
495
+ */
496
+ event_duration?: number;
497
+ [key: string]: any;
498
+ }
499
+ /**
500
+ * 埋点上报数据类型
501
+ */
502
+ type ReportProperties = (PageViewOptions | WebClickOptions | WebStayOptions | WebPageLeaveOptions) & GeneralProperties & HUtmOptions;
503
+
191
504
  /**
192
505
  * 内置插件实例
193
506
  */
@@ -224,33 +537,28 @@ interface BuiltPluginsConfig {
224
537
  }
225
538
 
226
539
  declare class HinaTrack extends WebClient<TrackOptions> {
227
- consolePrefix: string;
228
540
  /**
229
541
  * 存储对象
230
542
  */
231
- store: State<TrackOptions>;
232
- /**
233
- * 性能监控实例
234
- */
235
- epmInstance: Monitor;
543
+ store: WebState;
236
544
  /**
237
545
  * 上报数据的dom元素 默认有 'a', 'input', 'button', 'textarea'
238
546
  */
239
547
  trackTags: string[];
240
548
  /**
241
- * 事件静态公共属性
549
+ * 用户手动设置的公共事件属性
242
550
  */
243
- presetProps: IAnyObject;
551
+ customProperties: IAnyObject;
552
+ /**
553
+ * 公共事件属性/预置属性
554
+ */
555
+ generalProperties: GeneralProperties;
244
556
  constructor(options: TrackOptions, useInstancing?: boolean);
245
557
  /**
246
558
  * 注册/初始化SDK
247
559
  * @param options
248
560
  */
249
561
  init(options: TrackOptions): void;
250
- /**
251
- * 初始化共享数据
252
- */
253
- initState(): void;
254
562
  /**
255
563
  * 处理配置信息
256
564
  */
@@ -259,10 +567,20 @@ declare class HinaTrack extends WebClient<TrackOptions> {
259
567
  * 更新采集的dom元素
260
568
  */
261
569
  updateTrackTags(): void;
570
+ /**
571
+ * 初始化共享数据
572
+ */
573
+ initState(): void;
262
574
  /**
263
575
  * 初始化广告参数
264
576
  */
265
577
  initAdvProps(): void;
578
+ /**
579
+ * 获取公共事件属性
580
+ * H_url H_url_host H_title这三个属性会变化 所以每次获取的时候 都需要重新获取
581
+ * @returns
582
+ */
583
+ getGeneralProperties(): GeneralProperties;
266
584
  /**
267
585
  * 应用插件
268
586
  */
@@ -318,7 +636,7 @@ declare class HinaTrack extends WebClient<TrackOptions> {
318
636
  * @param data
319
637
  * @param callback
320
638
  */
321
- userSetOnce(data: IAnyObject, callback?: VoidFn): void;
639
+ userSetOnce(data: UserSetOnceOptions, callback?: VoidFn): void;
322
640
  /**
323
641
  * 对当前用户的属性做递增或者递减
324
642
  * @param data
@@ -328,7 +646,7 @@ declare class HinaTrack extends WebClient<TrackOptions> {
328
646
  [key: string]: number;
329
647
  }, callback?: VoidFn): void;
330
648
  /**
331
- * 给数组属性添加值。通过userSet只能改变属性的值。如果这个属性是数组类型的,你不想完全改变这个值,只想做添加操作可以使用此方法。
649
+ * 给数组属性添加值。如果这个属性是数组类型的,你不想完全改变这个值,只想做添加操作可以使用此方法。
332
650
  */
333
651
  userAppend(data: IAnyObject, callback?: VoidFn): void;
334
652
  /**
@@ -350,19 +668,13 @@ declare class HinaTrack extends WebClient<TrackOptions> {
350
668
  registerCommonProperties(params: IAnyObject | UnKnownFn): void;
351
669
  /**
352
670
  * 获取预置属性
353
- * 此方法可获取,页面地址,页面标题,前向地址,SDK 类型及版本,屏幕宽高,最近一次的相关属性
354
671
  */
355
- getPresetProperties(): ReportProperties;
672
+ getPresetProperties(): GeneralProperties;
356
673
  /**
357
- * 清空或删除指定预置属性
674
+ * 清空或删除指定自定义预置属性
358
675
  * @param payload
359
676
  */
360
677
  clearPageRegister(payload?: boolean | string[]): void;
361
- /**
362
- * 检查发送数据
363
- * @param props
364
- */
365
- checkReportProperties(props: IAnyObject): void;
366
678
  /**
367
679
  * 自定义埋点事件
368
680
  * @param event
@@ -389,23 +701,17 @@ declare class HinaTrack extends WebClient<TrackOptions> {
389
701
  * @param callback
390
702
  * @param type
391
703
  */
392
- report(data: ReportDataType<any>, callback?: AnyFn, type?: ReportTypes): void;
704
+ report(data: ReportDataType<ReportProperties>, callback?: AnyFn, type?: ReportTypes): void;
393
705
  /**
394
706
  * 获取上报数据
395
707
  * @param type
396
708
  * @param event
397
709
  * @param data
398
710
  */
399
- getReportData<T = any>(type: string, event: string, data?: T): ReportDataType<T & ReportProperties>;
400
- /**
401
- * 获取通用的上报数据
402
- * @param type 上报类型
403
- * @param event 事件名称
404
- */
405
- getReportProperties(type?: string, event?: string): ReportProperties;
711
+ getReportData<T = any>(type: ReportTypesName, event: ReportEventsName, data?: T): ReportDataType<ReportProperties>;
406
712
  }
407
713
  type TrackInstance = InstanceType<typeof HinaTrack>;
408
714
 
409
715
  declare const hinaSdk: HinaTrack;
410
716
 
411
- export { HinaTrack, type TrackInstance, hinaSdk as default };
717
+ export { type BuiltPluginsConfig, type BuiltPluginsInstanceMap, type GeneralProperties, HinaTrack, type LinkerItem, type PageLeaveAutoTrackObject, type PageViewOptions, type PresetProperties, type ReportEventsName, type ReportProperties, type ReportTypesName, type SiteLinkerOptions, type TrackInstance, type TrackOptions, type UserSetOnceOptions, type WebClickOptions, type WebPageLeaveOptions, type WebStayOptions, hinaSdk as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hina-cloud-js-sdk",
3
- "version": "4.0.0",
3
+ "version": "4.0.2",
4
4
  "description": "WEB埋点SDK",
5
5
  "main": "dist/hina.full.js",
6
6
  "module": "dist/hina.esm.js",
@@ -14,23 +14,30 @@
14
14
  "author": {
15
15
  "name": "dongrudong@hinadt.com"
16
16
  },
17
+ "sideEffects": false,
17
18
  "license": "ISC",
18
19
  "dependencies": {
19
- "hina-cloud-core": "4.0.0",
20
- "hina-cloud-monitor": "4.0.0",
21
- "hina-cloud-types": "2.0.0",
22
- "hina-cloud-utils": "2.0.0"
20
+ "hina-cloud-js-core": "4.0.1",
21
+ "hina-cloud-type": "2.0.1",
22
+ "hina-cloud-util": "2.0.1"
23
23
  },
24
- "buildOptions": {
25
- "name": "hinaDataStatistic",
26
- "fileName": "hina",
27
- "formats": [
28
- "esm",
29
- "esm-full",
30
- "cjs",
31
- "global",
32
- "umd"
33
- ],
34
- "external": []
35
- }
36
- }
24
+ "devDependencies": {
25
+ "hina-cloud-js-monitor": "4.0.1"
26
+ },
27
+ "buildOptions": [
28
+ {
29
+ "name": "hinaDataStatistic",
30
+ "inputName": "index",
31
+ "outputName": "hina",
32
+ "formats": [
33
+ "esm",
34
+ "esm-full",
35
+ "cjs",
36
+ "cjs-full",
37
+ "global",
38
+ "umd"
39
+ ],
40
+ "external": []
41
+ }
42
+ ]
43
+ }