@jx3box/jx3box-common 8.6.6 → 8.6.7

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/js/stat.js CHANGED
@@ -66,7 +66,7 @@ function postHistory(data) {
66
66
  * @returns
67
67
  */
68
68
  function postReadHistory(data) {
69
- const {id, category, subcategory, visible_type, author_id, banner} = data;
69
+ const {id, category, subcategory, visible_type, author_id, banner, contentMetaId} = data;
70
70
  if (visible_type < 2) return Promise.resolve();
71
71
  // return $next2({mute: true}).post(`/api/next2/userdata/common-read-history/${category}/${subcategory}/${id}`, {visible_type, author_id, banner});
72
72
  return $next2({mute: true}).post(`/api/next2/userdata/common-read-history/content-meta/${contentMetaId}`, {visible_type, author_id, banner});
package/js/stat_v2.js CHANGED
@@ -66,7 +66,7 @@ function postHistory(data) {
66
66
  * @returns
67
67
  */
68
68
  function postReadHistory(data) {
69
- const {id, category, subcategory, visible_type, author_id, banner} = data;
69
+ const {id, category, subcategory, visible_type, author_id, banner, contentMetaId} = data;
70
70
  if (visible_type < 2) return Promise.resolve();
71
71
  // return $next2({mute: true}).post(`/api/next2/userdata/common-read-history/${category}/${subcategory}/${id}`, {visible_type, author_id, banner});
72
72
  return $next2({mute: true}).post(`/api/next2/userdata/common-read-history/content-meta/${contentMetaId}`, {visible_type, author_id, banner});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-common",
3
- "version": "8.6.6",
3
+ "version": "8.6.7",
4
4
  "description": "JX3BOX公共基础模块",
5
5
  "main": "main.js",
6
6
  "repository": {