@conecli/cone-render 0.10.1-shop3.73 → 0.10.1-shop3.74
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/common/index.h5.ts +1 -1
- package/dist/components/base/ExposureSmart/reporter.tsx +1 -1
- package/dist/jumpEventReport/const.ts +1 -1
- package/dist/jumpEventReport/createReportFloorData.ts +1 -1
- package/dist/jumpEventReport/logEventConfig.h5.ts +1 -1
- package/dist/jumpEventReport/web/report.ts +1 -1
- package/dist/jumpEventReport/web.base.ts +1 -1
- package/dist/open/api/track.ts +1 -1
- package/dist/utils/h5Utils.ts +1 -1
- package/dist/utils/index.h5.ts +1 -1
- package/dist/utils/index.ts +1 -1
- package/dist/utils/index.weapp.ts +1 -1
- package/dist/utils/utils.ts +1 -1
- package/package.json +1 -1
package/dist/open/api/track.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import { JumpEventReport, JumpEventReportPromise } from '../../jumpEventReport'
|
|
2
1
|
getCustomClickEventInfo: (obj: object, obj2: object, obj3: object, groupState?: boolean) => object
|
|
3
2
|
getCustomExposureInfo: (obj: object, obj2: object, obj3: object, groupState?: boolean) => object
|
|
4
3
|
initOpenTriggerExposure: (type: string) => void
|
|
5
4
|
logPageIdInfo: Object
|
|
6
5
|
logPnameInfo: Object
|
|
7
6
|
getFloorPointIndexClassName: (obj: object, index?: number, tip?: string) => string
|
|
8
7
|
getIsvClickEventInfo: (obj) => obj,
|
|
9
8
|
getIsvExposureInfo: (obj) => obj,
|
|
10
9
|
getCustomClickEventInfo: (obj) => obj,
|
|
11
10
|
getCustomExposureInfo: (obj) => obj,
|
|
12
11
|
initOpenTriggerExposure: () => {},
|
|
13
12
|
logPageIdInfo: {},
|
|
14
13
|
logPnameInfo: {},
|
|
15
14
|
initOpenTriggerExposure,
|
|
16
15
|
logPageIdInfo,
|
|
17
16
|
logPnameInfo
|
|
18
17
|
getCustomClickEventInfo: ReportContainerData.getCustomClickEventInfo.bind(ReportContainerData),
|
|
19
18
|
getCustomExposureInfo: ReportContainerData.getCustomExposureInfo.bind(ReportContainerData),
|
|
20
19
|
initReportBaseData: ReportContainerData.initReportBaseData.bind(ReportContainerData),
|
|
21
20
|
updateSectionTabDataInfo: ReportContainerData.updateSectionTabDataInfo.bind(ReportContainerData),
|
|
22
21
|
initOpenTriggerExposure: initOpenTriggerExposure.bind(JumpEventReport),
|
|
23
22
|
logPnameInfo: logPnameInfo,
|
|
24
23
|
logPageIdInfo: logPageIdInfo,
|
|
25
24
|
getFloorPointIndexClassName: ReportContainerData.getFloorPointIndexClassName.bind(ReportContainerData)
|
|
25
|
+
import { JumpEventReport, JumpEventReportPromise } from '../../jumpEventReport'
|
|
26
26
|
getCustomClickEventInfo: (obj: object, obj2?: object, obj3?: object, groupState?: boolean) => object
|
|
27
27
|
getCustomExposureInfo: (obj: object, obj2?: object, obj3?: object, groupState?: boolean) => object
|
|
28
28
|
getCustomNewClickEventInfo: (obj: object, obj2?: object, obj3?: object, groupState?: boolean) => object
|
|
29
29
|
getCustomNewExposureInfo: (obj: object, obj2?: object, obj3?: object, groupState?: boolean) => object
|
|
30
30
|
initOpenTriggerExposure: (type: string) => void
|
|
31
31
|
logPageIdInfo: Object
|
|
32
32
|
logPnameInfo: Object
|
|
33
33
|
getFloorPointIndexClassName: (obj: object, index?: number, tip?: string) => string
|
|
34
34
|
getIsvClickEventInfo: (obj) => obj,
|
|
35
35
|
getIsvExposureInfo: (obj) => obj,
|
|
36
36
|
getCustomClickEventInfo: (obj) => obj,
|
|
37
37
|
getCustomExposureInfo: (obj) => obj,
|
|
38
38
|
getCustomNewClickEventInfo: (obj) => obj,
|
|
39
39
|
getCustomNewExposureInfo: (obj) => obj,
|
|
40
40
|
initOpenTriggerExposure: () => {},
|
|
41
41
|
logPageIdInfo: {},
|
|
42
42
|
logPnameInfo: {},
|
|
43
43
|
initOpenTriggerExposure,
|
|
44
44
|
logPageIdInfo,
|
|
45
45
|
logPnameInfo
|
|
46
46
|
getCustomClickEventInfo: ReportContainerData.getCustomClickEventInfo.bind(ReportContainerData),
|
|
47
47
|
getCustomExposureInfo: ReportContainerData.getCustomExposureInfo.bind(ReportContainerData),
|
|
48
48
|
getCustomNewClickEventInfo: ReportContainerData.getCustomNewClickEventInfo.bind(ReportContainerData),
|
|
49
49
|
getCustomNewExposureInfo: ReportContainerData.getCustomNewExposureInfo.bind(ReportContainerData),
|
|
50
50
|
initReportBaseData: ReportContainerData.initReportBaseData.bind(ReportContainerData),
|
|
51
51
|
updateSectionTabDataInfo: ReportContainerData.updateSectionTabDataInfo.bind(ReportContainerData),
|
|
52
52
|
initOpenTriggerExposure: initOpenTriggerExposure.bind(JumpEventReport),
|
|
53
53
|
logPnameInfo: logPnameInfo,
|
|
54
54
|
logPageIdInfo: logPageIdInfo,
|
|
55
55
|
getFloorPointIndexClassName: ReportContainerData.getFloorPointIndexClassName.bind(ReportContainerData)
|