@ccw-api/api 0.3.0 → 0.4.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/README.md +367 -0
- package/dist/esm/src/bfs-web/index.js +4 -0
- package/dist/esm/src/bfs-web/users/{oid}/extensions.js +21 -0
- package/dist/esm/src/bfs-web/users/{oid}/extensions.test.js +4 -0
- package/dist/esm/src/community-web/api/v1/short_code/encode.js +25 -0
- package/dist/esm/src/community-web/api/v1/short_code/shortcode.test.js +5 -0
- package/dist/esm/src/community-web/approval/approval.test.js +5 -0
- package/dist/esm/src/community-web/approval/list.js +16 -0
- package/dist/esm/src/community-web/base/dateTime.js +10 -0
- package/dist/esm/src/community-web/base/dateTime.test.js +6 -0
- package/dist/esm/src/community-web/campaign_resource/detail.js +12 -0
- package/dist/esm/src/community-web/campaign_resource/detail.test.js +10 -0
- package/dist/esm/src/community-web/ccw-main/status.js +12 -0
- package/dist/esm/src/community-web/ccw-main/status.test.js +4 -0
- package/dist/esm/src/community-web/check_in_record/check_in_record.test.js +8 -0
- package/dist/esm/src/community-web/check_in_record/detail.js +11 -0
- package/dist/esm/src/community-web/check_in_record/insert.js +12 -0
- package/dist/esm/src/community-web/cloud_asset/search.js +25 -0
- package/dist/esm/src/community-web/cloud_asset/search.test.js +6 -0
- package/dist/esm/src/community-web/cloud_asset/user/privacy.js +11 -0
- package/dist/esm/src/community-web/cloud_asset/user/privacy.test.js +4 -0
- package/dist/esm/src/community-web/comment/create.js +16 -0
- package/dist/esm/src/community-web/comment/create.test.js +13 -0
- package/dist/esm/src/community-web/comment/like_record/create.js +13 -0
- package/dist/esm/src/community-web/comment/like_record/create.test.js +4 -0
- package/dist/esm/src/community-web/comment/page.js +24 -0
- package/dist/esm/src/community-web/comment/page.test.js +15 -0
- package/dist/esm/src/community-web/comment/page_by_topic.js +28 -0
- package/dist/esm/src/community-web/comment/page_by_topic.test.js +13 -0
- package/dist/esm/src/community-web/comment/reply.js +17 -0
- package/dist/esm/src/community-web/comment/reply.test.js +4 -0
- package/dist/esm/src/community-web/config/detail.js +13 -0
- package/dist/esm/src/community-web/config/detail.test.js +9 -0
- package/dist/esm/src/community-web/creation/detail.js +14 -0
- package/dist/esm/src/community-web/creation/detail.test.js +18 -0
- package/dist/esm/src/community-web/creation/excellent/list.js +13 -0
- package/dist/esm/src/community-web/creation/excellent/list.test.js +10 -0
- package/dist/esm/src/community-web/creation/introduction/detail.js +13 -0
- package/dist/esm/src/community-web/creation/introduction/detail.test.js +17 -0
- package/dist/esm/src/community-web/creation/like/detail.js +13 -0
- package/dist/esm/src/community-web/creation/like/detail.test.js +19 -0
- package/dist/esm/src/community-web/creation/loading/tips.js +11 -0
- package/dist/esm/src/community-web/creation/loading/tips.test.js +8 -0
- package/dist/esm/src/community-web/creation/own/page.js +26 -0
- package/dist/esm/src/community-web/creation/own/page.test.js +4 -0
- package/dist/esm/src/community-web/creation/page.js +24 -0
- package/dist/esm/src/community-web/creation/page.test.js +16 -0
- package/dist/esm/src/community-web/creation/page_by_student.js +24 -0
- package/dist/esm/src/community-web/creation/page_by_student.test.js +20 -0
- package/dist/esm/src/community-web/creation/potential/list.js +13 -0
- package/dist/esm/src/community-web/creation/potential/list.test.js +10 -0
- package/dist/esm/src/community-web/creation/recommend.js +23 -0
- package/dist/esm/src/community-web/creation/recommend.test.js +10 -0
- package/dist/esm/src/community-web/creation/search/page.js +24 -0
- package/dist/esm/src/community-web/creation/search/page.test.js +5 -0
- package/dist/esm/src/community-web/creation/smart_contract/split_rule/create.js +14 -0
- package/dist/esm/src/community-web/creation/smart_contract/split_rule/create.test.js +4 -0
- package/dist/esm/src/community-web/creation/smart_contract/split_rule/detail.js +13 -0
- package/dist/esm/src/community-web/creation/smart_contract/split_rule/detail.test.js +4 -0
- package/dist/esm/src/community-web/creation/student/detail.js +13 -0
- package/dist/esm/src/community-web/creation/student/detail.test.js +17 -0
- package/dist/esm/src/community-web/creation/submit.js +12 -0
- package/dist/esm/src/community-web/creation/submit.test.js +32 -0
- package/dist/esm/src/community-web/creation/tag/list.js +12 -0
- package/dist/esm/src/community-web/creation/tag/list.test.js +10 -0
- package/dist/esm/src/community-web/creation/team_member/list.js +14 -0
- package/dist/esm/src/community-web/creation/team_member/list.test.js +4 -0
- package/dist/esm/src/community-web/creation/team_member/produce_ticket.js +13 -0
- package/dist/esm/src/community-web/creation/team_member/produce_ticket.test.js +4 -0
- package/dist/esm/src/community-web/creation/teamwork_log/page.js +38 -0
- package/dist/esm/src/community-web/creation/teamwork_log/page.test.js +4 -0
- package/dist/esm/src/community-web/creation/update.js +22 -0
- package/dist/esm/src/community-web/creation/update.test.js +4 -0
- package/dist/esm/src/community-web/creation_activity_stats/list.js +13 -0
- package/dist/esm/src/community-web/creation_activity_stats/list.test.js +5 -0
- package/dist/esm/src/community-web/creation_attribute/detail.js +24 -0
- package/dist/esm/src/community-web/creation_attribute/detail.test.js +10 -0
- package/dist/esm/src/community-web/creation_donated_record/ranking_list.js +22 -0
- package/dist/esm/src/community-web/creation_donated_record/ranking_list.test.js +12 -0
- package/dist/esm/src/community-web/creation_favorite/detail.js +13 -0
- package/dist/esm/src/community-web/creation_favorite/detail.test.js +5 -0
- package/dist/esm/src/community-web/creation_recommend_position/list.js +14 -0
- package/dist/esm/src/community-web/creation_recommend_position/list.test.js +5 -0
- package/dist/esm/src/community-web/creation_release/code_profiling/detail.js +14 -0
- package/dist/esm/src/community-web/creation_release/code_profiling/detail.test.js +5 -0
- package/dist/esm/src/community-web/creation_release/page.js +24 -0
- package/dist/esm/src/community-web/creation_release/page.test.js +12 -0
- package/dist/esm/src/community-web/creation_screenshot/page.js +20 -0
- package/dist/esm/src/community-web/creation_screenshot/page.test.js +11 -0
- package/dist/esm/src/community-web/creation_stats/view.js +14 -0
- package/dist/esm/src/community-web/creation_stats/view.test.js +6 -0
- package/dist/esm/src/community-web/currency/account/personal.js +11 -0
- package/dist/esm/src/community-web/currency/account/personal.test.js +4 -0
- package/dist/esm/src/community-web/emoji/all.js +11 -0
- package/dist/esm/src/community-web/emoji/all.test.js +11 -0
- package/dist/esm/src/community-web/emoji/category/list.js +11 -0
- package/dist/esm/src/community-web/emoji/category/list.test.js +9 -0
- package/dist/esm/src/community-web/emoji/page.js +23 -0
- package/dist/esm/src/community-web/emoji/page.test.js +12 -0
- package/dist/esm/src/community-web/event.js +13 -0
- package/dist/esm/src/community-web/event.test.js +5 -0
- package/dist/esm/src/community-web/hash_tag/detail.js +13 -0
- package/dist/esm/src/community-web/hash_tag/hash_tag_detail.test.js +9 -0
- package/dist/esm/src/community-web/hash_tag/managed/list.js +29 -0
- package/dist/esm/src/community-web/hash_tag/managed/managed_list.test.js +10 -0
- package/dist/esm/src/community-web/hash_tag/recommend/list.js +11 -0
- package/dist/esm/src/community-web/hash_tag/recommend/list.test.js +4 -0
- package/dist/esm/src/community-web/hash_tag_creation/hash_tag_creation_list_relation.test.js +4 -0
- package/dist/esm/src/community-web/hash_tag_creation/hash_tag_creation_mine.test.js +4 -0
- package/dist/esm/src/community-web/hash_tag_creation/list_relation.js +13 -0
- package/dist/esm/src/community-web/hash_tag_creation/list_relation.test.js +5 -0
- package/dist/esm/src/community-web/hash_tag_creation/mine.js +29 -0
- package/dist/esm/src/community-web/hash_tag_favorite/detail.js +13 -0
- package/dist/esm/src/community-web/hash_tag_favorite/hash_tag_favorite_detail.test.js +4 -0
- package/dist/esm/src/community-web/health/check.js +12 -0
- package/dist/esm/src/community-web/health/check.test.js +10 -0
- package/dist/esm/src/community-web/historical_team_member/page.js +27 -0
- package/dist/esm/src/community-web/historical_team_member/page.test.js +12 -0
- package/dist/esm/src/community-web/index.js +190 -0
- package/dist/esm/src/community-web/leaflets/item/list.js +13 -0
- package/dist/esm/src/community-web/leaflets/item/list.test.js +5 -0
- package/dist/esm/src/community-web/locked_user/detail.js +13 -0
- package/dist/esm/src/community-web/locked_user/detail.test.js +6 -0
- package/dist/esm/src/community-web/muted_user/detail.js +13 -0
- package/dist/esm/src/community-web/muted_user/detail.test.js +6 -0
- package/dist/esm/src/community-web/notification/page.js +23 -0
- package/dist/esm/src/community-web/notification/page.test.js +4 -0
- package/dist/esm/src/community-web/notification/stats/v2.js +13 -0
- package/dist/esm/src/community-web/notification/stats/v2.test.js +4 -0
- package/dist/esm/src/community-web/notify_message/notify_message.test.js +5 -0
- package/dist/esm/src/community-web/notify_message/show.js +12 -0
- package/dist/esm/src/community-web/post/detail.js +13 -0
- package/dist/esm/src/community-web/post/post.test.js +9 -0
- package/dist/esm/src/community-web/search/hot_words.js +13 -0
- package/dist/esm/src/community-web/search/search.test.js +6 -0
- package/dist/esm/src/community-web/short_url/create.js +15 -0
- package/dist/esm/src/community-web/short_url/decompress.js +13 -0
- package/dist/esm/src/community-web/short_url/decompress.test.js +4 -0
- package/dist/esm/src/community-web/short_url/shortUrl.test.js +4 -0
- package/dist/esm/src/community-web/student/block_record/block_record_list.test.js +4 -0
- package/dist/esm/src/community-web/student/block_record/block_record_status.test.js +8 -0
- package/dist/esm/src/community-web/student/block_record/detail.js +13 -0
- package/dist/esm/src/community-web/student/block_record/detail.test.js +4 -0
- package/dist/esm/src/community-web/student/block_record/list.js +21 -0
- package/dist/esm/src/community-web/student/block_record/status.js +13 -0
- package/dist/esm/src/community-web/student/following/page.js +24 -0
- package/dist/esm/src/community-web/student/following/page.test.js +6 -0
- package/dist/esm/src/community-web/students/creator_score.js +12 -0
- package/dist/esm/src/community-web/students/creator_score.test.js +4 -0
- package/dist/esm/src/community-web/students/last_active_at.js +13 -0
- package/dist/esm/src/community-web/students/last_active_at.test.js +6 -0
- package/dist/esm/src/community-web/students/list.js +13 -0
- package/dist/esm/src/community-web/students/list.test.js +7 -0
- package/dist/esm/src/community-web/students/list_sessions.js +21 -0
- package/dist/esm/src/community-web/students/list_sessions.test.js +4 -0
- package/dist/esm/src/community-web/students/profile.js +13 -0
- package/dist/esm/src/community-web/students/profile.test.js +6 -0
- package/dist/esm/src/community-web/students/reputation_score_log/page.js +21 -0
- package/dist/esm/src/community-web/students/reputation_score_log/reputation_score_log.test.js +4 -0
- package/dist/esm/src/community-web/students/self/detail.js +15 -0
- package/dist/esm/src/community-web/students/self/self_detail.test.js +4 -0
- package/dist/esm/src/community-web/students/stats.js +13 -0
- package/dist/esm/src/community-web/students/stats.test.js +7 -0
- package/dist/esm/src/community-web/students/update.js +31 -0
- package/dist/esm/src/community-web/students/update.test.js +4 -0
- package/dist/esm/src/community-web/study-community/cloud_variable/create.js +15 -0
- package/dist/esm/src/community-web/study-community/cloud_variable/create.test.js +4 -0
- package/dist/esm/src/community-web/study-community/comment/delete.js +13 -0
- package/dist/esm/src/community-web/study-community/comment/delete.test.js +4 -0
- package/dist/esm/src/community-web/study-community/comment/fold.js +13 -0
- package/dist/esm/src/community-web/study-community/comment/fold.test.js +4 -0
- package/dist/esm/src/community-web/study-community/comment/reset_weight.js +13 -0
- package/dist/esm/src/community-web/study-community/comment/reset_weight.test.js +4 -0
- package/dist/esm/src/community-web/study-community/comment/top.js +13 -0
- package/dist/esm/src/community-web/study-community/comment/top.test.js +4 -0
- package/dist/esm/src/community-web/study-community/member/detail.js +12 -0
- package/dist/esm/src/community-web/study-community/member/member_detail.test.js +4 -0
- package/dist/esm/src/community-web/study-community/spread_feed/unread/count.js +13 -0
- package/dist/esm/src/community-web/study-community/spread_feed/unread/spread_feed_unread_count.test.js +5 -0
- package/dist/esm/src/community-web/subject_area/page.js +22 -0
- package/dist/esm/src/community-web/subject_area/page_by_channel.js +22 -0
- package/dist/esm/src/community-web/subject_area/subject_area_page.test.js +5 -0
- package/dist/esm/src/community-web/subject_area/subject_area_page_by_channel.test.js +5 -0
- package/dist/esm/src/community-web/task/award.js +13 -0
- package/dist/esm/src/community-web/task/mine.js +12 -0
- package/dist/esm/src/community-web/task/task_award.test.js +5 -0
- package/dist/esm/src/community-web/task/task_mine.test.js +4 -0
- package/dist/esm/src/community-web/typical_project/page.js +25 -0
- package/dist/esm/src/community-web/typical_project/page.test.js +12 -0
- package/dist/esm/src/community-web/typical_project/student/unread_count.js +14 -0
- package/dist/esm/src/community-web/typical_project/student/unread_count.test.js +4 -0
- package/dist/esm/src/community-web/user-card/detail.js +13 -0
- package/dist/esm/src/community-web/user-card/user_card_detail.test.js +6 -0
- package/dist/esm/src/community-web/user_label/list.js +12 -0
- package/dist/esm/src/community-web/user_label/user_label_list.test.js +5 -0
- package/dist/esm/src/coverage.test.js +5 -0
- package/dist/esm/src/gandi-main/bulletins/detail.js +12 -0
- package/dist/esm/src/gandi-main/bulletins/detail.test.js +17 -0
- package/dist/esm/src/gandi-main/bulletins/page.js +24 -0
- package/dist/esm/src/gandi-main/bulletins/page.test.js +6 -0
- package/dist/esm/src/gandi-main/index.js +8 -0
- package/dist/esm/src/gandi-main/timestamp/current.js +9 -0
- package/dist/esm/src/gandi-main/timestamp/current.test.js +6 -0
- package/dist/esm/src/index.js +12 -0
- package/dist/esm/src/queryPages.js +22 -0
- package/dist/esm/src/sso/index.js +8 -0
- package/dist/esm/src/sso/web/auth/auth.test.js +15 -0
- package/dist/esm/src/sso/web/auth/login-by-password.js +27 -0
- package/dist/esm/src/sso/web/auth/logout.js +11 -0
- package/dist/esm/src/sso/web/auth/logout_by_session.js +12 -0
- package/dist/esm/types/notification.js +7 -0
- package/dist/esm/types/notificationContent.js +1 -0
- package/dist/node/src/bfs-web/index.js +7 -0
- package/dist/node/src/bfs-web/users/{oid}/extensions.js +25 -0
- package/dist/node/src/bfs-web/users/{oid}/extensions.test.js +6 -0
- package/dist/node/src/community-web/api/v1/short_code/encode.js +29 -0
- package/dist/node/src/community-web/api/v1/short_code/shortcode.test.js +7 -0
- package/dist/node/src/community-web/approval/approval.test.js +7 -0
- package/dist/node/src/community-web/approval/list.js +23 -0
- package/dist/node/src/community-web/base/dateTime.js +17 -0
- package/dist/node/src/community-web/base/dateTime.test.js +8 -0
- package/dist/node/src/community-web/campaign_resource/detail.js +16 -0
- package/dist/node/src/community-web/campaign_resource/detail.test.js +12 -0
- package/dist/node/src/community-web/ccw-main/status.js +16 -0
- package/dist/node/src/community-web/ccw-main/status.test.js +6 -0
- package/dist/node/src/community-web/check_in_record/check_in_record.test.js +10 -0
- package/dist/node/src/community-web/check_in_record/detail.js +15 -0
- package/dist/node/src/community-web/check_in_record/insert.js +16 -0
- package/dist/node/src/community-web/cloud_asset/search.js +29 -0
- package/dist/node/src/community-web/cloud_asset/search.test.js +8 -0
- package/dist/node/src/community-web/cloud_asset/user/privacy.js +15 -0
- package/dist/node/src/community-web/cloud_asset/user/privacy.test.js +6 -0
- package/dist/node/src/community-web/comment/create.js +20 -0
- package/dist/node/src/community-web/comment/create.test.js +15 -0
- package/dist/node/src/community-web/comment/like_record/create.js +17 -0
- package/dist/node/src/community-web/comment/like_record/create.test.js +6 -0
- package/dist/node/src/community-web/comment/page.js +28 -0
- package/dist/node/src/community-web/comment/page.test.js +17 -0
- package/dist/node/src/community-web/comment/page_by_topic.js +32 -0
- package/dist/node/src/community-web/comment/page_by_topic.test.js +15 -0
- package/dist/node/src/community-web/comment/reply.js +21 -0
- package/dist/node/src/community-web/comment/reply.test.js +6 -0
- package/dist/node/src/community-web/config/detail.js +17 -0
- package/dist/node/src/community-web/config/detail.test.js +11 -0
- package/dist/node/src/community-web/creation/detail.js +18 -0
- package/dist/node/src/community-web/creation/detail.test.js +20 -0
- package/dist/node/src/community-web/creation/excellent/list.js +17 -0
- package/dist/node/src/community-web/creation/excellent/list.test.js +12 -0
- package/dist/node/src/community-web/creation/introduction/detail.js +17 -0
- package/dist/node/src/community-web/creation/introduction/detail.test.js +19 -0
- package/dist/node/src/community-web/creation/like/detail.js +17 -0
- package/dist/node/src/community-web/creation/like/detail.test.js +21 -0
- package/dist/node/src/community-web/creation/loading/tips.js +15 -0
- package/dist/node/src/community-web/creation/loading/tips.test.js +10 -0
- package/dist/node/src/community-web/creation/own/page.js +30 -0
- package/dist/node/src/community-web/creation/own/page.test.js +6 -0
- package/dist/node/src/community-web/creation/page.js +28 -0
- package/dist/node/src/community-web/creation/page.test.js +18 -0
- package/dist/node/src/community-web/creation/page_by_student.js +28 -0
- package/dist/node/src/community-web/creation/page_by_student.test.js +22 -0
- package/dist/node/src/community-web/creation/potential/list.js +17 -0
- package/dist/node/src/community-web/creation/potential/list.test.js +12 -0
- package/dist/node/src/community-web/creation/recommend.js +27 -0
- package/dist/node/src/community-web/creation/recommend.test.js +12 -0
- package/dist/node/src/community-web/creation/search/page.js +28 -0
- package/dist/node/src/community-web/creation/search/page.test.js +7 -0
- package/dist/node/src/community-web/creation/smart_contract/split_rule/create.js +18 -0
- package/dist/node/src/community-web/creation/smart_contract/split_rule/create.test.js +6 -0
- package/dist/node/src/community-web/creation/smart_contract/split_rule/detail.js +17 -0
- package/dist/node/src/community-web/creation/smart_contract/split_rule/detail.test.js +6 -0
- package/dist/node/src/community-web/creation/student/detail.js +17 -0
- package/dist/node/src/community-web/creation/student/detail.test.js +19 -0
- package/dist/node/src/community-web/creation/submit.js +16 -0
- package/dist/node/src/community-web/creation/submit.test.js +34 -0
- package/dist/node/src/community-web/creation/tag/list.js +16 -0
- package/dist/node/src/community-web/creation/tag/list.test.js +12 -0
- package/dist/node/src/community-web/creation/team_member/list.js +18 -0
- package/dist/node/src/community-web/creation/team_member/list.test.js +6 -0
- package/dist/node/src/community-web/creation/team_member/produce_ticket.js +17 -0
- package/dist/node/src/community-web/creation/team_member/produce_ticket.test.js +6 -0
- package/dist/node/src/community-web/creation/teamwork_log/page.js +42 -0
- package/dist/node/src/community-web/creation/teamwork_log/page.test.js +6 -0
- package/dist/node/src/community-web/creation/update.js +26 -0
- package/dist/node/src/community-web/creation/update.test.js +6 -0
- package/dist/node/src/community-web/creation_activity_stats/list.js +17 -0
- package/dist/node/src/community-web/creation_activity_stats/list.test.js +7 -0
- package/dist/node/src/community-web/creation_attribute/detail.js +28 -0
- package/dist/node/src/community-web/creation_attribute/detail.test.js +12 -0
- package/dist/node/src/community-web/creation_donated_record/ranking_list.js +26 -0
- package/dist/node/src/community-web/creation_donated_record/ranking_list.test.js +14 -0
- package/dist/node/src/community-web/creation_favorite/detail.js +17 -0
- package/dist/node/src/community-web/creation_favorite/detail.test.js +7 -0
- package/dist/node/src/community-web/creation_recommend_position/list.js +18 -0
- package/dist/node/src/community-web/creation_recommend_position/list.test.js +7 -0
- package/dist/node/src/community-web/creation_release/code_profiling/detail.js +18 -0
- package/dist/node/src/community-web/creation_release/code_profiling/detail.test.js +7 -0
- package/dist/node/src/community-web/creation_release/page.js +28 -0
- package/dist/node/src/community-web/creation_release/page.test.js +14 -0
- package/dist/node/src/community-web/creation_screenshot/page.js +24 -0
- package/dist/node/src/community-web/creation_screenshot/page.test.js +13 -0
- package/dist/node/src/community-web/creation_stats/view.js +18 -0
- package/dist/node/src/community-web/creation_stats/view.test.js +8 -0
- package/dist/node/src/community-web/currency/account/personal.js +15 -0
- package/dist/node/src/community-web/currency/account/personal.test.js +6 -0
- package/dist/node/src/community-web/emoji/all.js +15 -0
- package/dist/node/src/community-web/emoji/all.test.js +13 -0
- package/dist/node/src/community-web/emoji/category/list.js +15 -0
- package/dist/node/src/community-web/emoji/category/list.test.js +11 -0
- package/dist/node/src/community-web/emoji/page.js +27 -0
- package/dist/node/src/community-web/emoji/page.test.js +14 -0
- package/dist/node/src/community-web/event.js +17 -0
- package/dist/node/src/community-web/event.test.js +7 -0
- package/dist/node/src/community-web/hash_tag/detail.js +17 -0
- package/dist/node/src/community-web/hash_tag/hash_tag_detail.test.js +11 -0
- package/dist/node/src/community-web/hash_tag/managed/list.js +33 -0
- package/dist/node/src/community-web/hash_tag/managed/managed_list.test.js +12 -0
- package/dist/node/src/community-web/hash_tag/recommend/list.js +15 -0
- package/dist/node/src/community-web/hash_tag/recommend/list.test.js +6 -0
- package/dist/node/src/community-web/hash_tag_creation/hash_tag_creation_list_relation.test.js +6 -0
- package/dist/node/src/community-web/hash_tag_creation/hash_tag_creation_mine.test.js +6 -0
- package/dist/node/src/community-web/hash_tag_creation/list_relation.js +17 -0
- package/dist/node/src/community-web/hash_tag_creation/list_relation.test.js +7 -0
- package/dist/node/src/community-web/hash_tag_creation/mine.js +33 -0
- package/dist/node/src/community-web/hash_tag_favorite/detail.js +17 -0
- package/dist/node/src/community-web/hash_tag_favorite/hash_tag_favorite_detail.test.js +6 -0
- package/dist/node/src/community-web/health/check.js +16 -0
- package/dist/node/src/community-web/health/check.test.js +12 -0
- package/dist/node/src/community-web/historical_team_member/page.js +31 -0
- package/dist/node/src/community-web/historical_team_member/page.test.js +14 -0
- package/dist/node/src/community-web/index.js +193 -0
- package/dist/node/src/community-web/leaflets/item/list.js +17 -0
- package/dist/node/src/community-web/leaflets/item/list.test.js +7 -0
- package/dist/node/src/community-web/locked_user/detail.js +17 -0
- package/dist/node/src/community-web/locked_user/detail.test.js +8 -0
- package/dist/node/src/community-web/muted_user/detail.js +17 -0
- package/dist/node/src/community-web/muted_user/detail.test.js +8 -0
- package/dist/node/src/community-web/notification/page.js +27 -0
- package/dist/node/src/community-web/notification/page.test.js +6 -0
- package/dist/node/src/community-web/notification/stats/v2.js +17 -0
- package/dist/node/src/community-web/notification/stats/v2.test.js +6 -0
- package/dist/node/src/community-web/notify_message/notify_message.test.js +7 -0
- package/dist/node/src/community-web/notify_message/show.js +16 -0
- package/dist/node/src/community-web/post/detail.js +17 -0
- package/dist/node/src/community-web/post/post.test.js +11 -0
- package/dist/node/src/community-web/search/hot_words.js +17 -0
- package/dist/node/src/community-web/search/search.test.js +8 -0
- package/dist/node/src/community-web/short_url/create.js +19 -0
- package/dist/node/src/community-web/short_url/decompress.js +17 -0
- package/dist/node/src/community-web/short_url/decompress.test.js +6 -0
- package/dist/node/src/community-web/short_url/shortUrl.test.js +6 -0
- package/dist/node/src/community-web/student/block_record/block_record_list.test.js +6 -0
- package/dist/node/src/community-web/student/block_record/block_record_status.test.js +10 -0
- package/dist/node/src/community-web/student/block_record/detail.js +17 -0
- package/dist/node/src/community-web/student/block_record/detail.test.js +6 -0
- package/dist/node/src/community-web/student/block_record/list.js +25 -0
- package/dist/node/src/community-web/student/block_record/status.js +17 -0
- package/dist/node/src/community-web/student/following/page.js +28 -0
- package/dist/node/src/community-web/student/following/page.test.js +8 -0
- package/dist/node/src/community-web/students/creator_score.js +16 -0
- package/dist/node/src/community-web/students/creator_score.test.js +6 -0
- package/dist/node/src/community-web/students/last_active_at.js +17 -0
- package/dist/node/src/community-web/students/last_active_at.test.js +8 -0
- package/dist/node/src/community-web/students/list.js +17 -0
- package/dist/node/src/community-web/students/list.test.js +9 -0
- package/dist/node/src/community-web/students/list_sessions.js +25 -0
- package/dist/node/src/community-web/students/list_sessions.test.js +6 -0
- package/dist/node/src/community-web/students/profile.js +17 -0
- package/dist/node/src/community-web/students/profile.test.js +8 -0
- package/dist/node/src/community-web/students/reputation_score_log/page.js +25 -0
- package/dist/node/src/community-web/students/reputation_score_log/reputation_score_log.test.js +6 -0
- package/dist/node/src/community-web/students/self/detail.js +19 -0
- package/dist/node/src/community-web/students/self/self_detail.test.js +6 -0
- package/dist/node/src/community-web/students/stats.js +17 -0
- package/dist/node/src/community-web/students/stats.test.js +9 -0
- package/dist/node/src/community-web/students/update.js +35 -0
- package/dist/node/src/community-web/students/update.test.js +6 -0
- package/dist/node/src/community-web/study-community/cloud_variable/create.js +19 -0
- package/dist/node/src/community-web/study-community/cloud_variable/create.test.js +6 -0
- package/dist/node/src/community-web/study-community/comment/delete.js +17 -0
- package/dist/node/src/community-web/study-community/comment/delete.test.js +6 -0
- package/dist/node/src/community-web/study-community/comment/fold.js +17 -0
- package/dist/node/src/community-web/study-community/comment/fold.test.js +6 -0
- package/dist/node/src/community-web/study-community/comment/reset_weight.js +17 -0
- package/dist/node/src/community-web/study-community/comment/reset_weight.test.js +6 -0
- package/dist/node/src/community-web/study-community/comment/top.js +17 -0
- package/dist/node/src/community-web/study-community/comment/top.test.js +6 -0
- package/dist/node/src/community-web/study-community/member/detail.js +16 -0
- package/dist/node/src/community-web/study-community/member/member_detail.test.js +6 -0
- package/dist/node/src/community-web/study-community/spread_feed/unread/count.js +17 -0
- package/dist/node/src/community-web/study-community/spread_feed/unread/spread_feed_unread_count.test.js +7 -0
- package/dist/node/src/community-web/subject_area/page.js +26 -0
- package/dist/node/src/community-web/subject_area/page_by_channel.js +26 -0
- package/dist/node/src/community-web/subject_area/subject_area_page.test.js +7 -0
- package/dist/node/src/community-web/subject_area/subject_area_page_by_channel.test.js +7 -0
- package/dist/node/src/community-web/task/award.js +17 -0
- package/dist/node/src/community-web/task/mine.js +16 -0
- package/dist/node/src/community-web/task/task_award.test.js +7 -0
- package/dist/node/src/community-web/task/task_mine.test.js +6 -0
- package/dist/node/src/community-web/typical_project/page.js +29 -0
- package/dist/node/src/community-web/typical_project/page.test.js +14 -0
- package/dist/node/src/community-web/typical_project/student/unread_count.js +18 -0
- package/dist/node/src/community-web/typical_project/student/unread_count.test.js +6 -0
- package/dist/node/src/community-web/user-card/detail.js +17 -0
- package/dist/node/src/community-web/user-card/user_card_detail.test.js +8 -0
- package/dist/node/src/community-web/user_label/list.js +16 -0
- package/dist/node/src/community-web/user_label/user_label_list.test.js +7 -0
- package/dist/node/src/coverage.test.js +7 -0
- package/dist/node/src/gandi-main/bulletins/detail.js +16 -0
- package/dist/node/src/gandi-main/bulletins/detail.test.js +19 -0
- package/dist/node/src/gandi-main/bulletins/page.js +28 -0
- package/dist/node/src/gandi-main/bulletins/page.test.js +8 -0
- package/dist/node/src/gandi-main/index.js +11 -0
- package/dist/node/src/gandi-main/timestamp/current.js +13 -0
- package/dist/node/src/gandi-main/timestamp/current.test.js +8 -0
- package/dist/node/src/index.js +19 -0
- package/dist/node/src/queryPages.js +26 -0
- package/dist/node/src/sso/index.js +11 -0
- package/dist/node/src/sso/web/auth/auth.test.js +17 -0
- package/dist/node/src/sso/web/auth/login-by-password.js +31 -0
- package/dist/node/src/sso/web/auth/logout.js +15 -0
- package/dist/node/src/sso/web/auth/logout_by_session.js +16 -0
- package/dist/node/types/notification.js +10 -0
- package/dist/node/types/notificationContent.js +2 -0
- package/dist/types/community-web/api/v1/short_code/encode.d.ts +42 -0
- package/dist/types/community-web/approval/list.d.ts +27 -0
- package/dist/types/community-web/base/dateTime.d.ts +5 -0
- package/dist/types/community-web/campaign_resource/detail.d.ts +17 -0
- package/dist/types/community-web/check_in_record/detail.d.ts +14 -0
- package/dist/types/community-web/check_in_record/insert.d.ts +10 -0
- package/dist/types/community-web/cloud_asset/search.d.ts +44 -0
- package/dist/types/community-web/cloud_asset/user/privacy.d.ts +14 -0
- package/dist/types/community-web/comment/page.d.ts +19 -0
- package/dist/types/community-web/comment/page_by_topic.d.ts +19 -0
- package/dist/types/community-web/config/detail.d.ts +11 -0
- package/dist/types/community-web/creation/detail.d.ts +15 -0
- package/dist/types/community-web/creation/excellent/list.d.ts +12 -0
- package/dist/types/community-web/creation/introduction/detail.d.ts +13 -0
- package/dist/types/community-web/creation/like/detail.d.ts +13 -0
- package/dist/types/community-web/creation/loading/tips.d.ts +9 -0
- package/dist/types/community-web/creation/page.d.ts +16 -0
- package/dist/types/community-web/creation/page_by_student.d.ts +16 -0
- package/dist/types/community-web/creation/potential/list.d.ts +12 -0
- package/dist/types/community-web/creation/recommend.d.ts +15 -0
- package/dist/types/community-web/creation/search/page.d.ts +15 -0
- package/dist/types/community-web/creation/student/detail.d.ts +13 -0
- package/dist/types/community-web/creation/tag/list.d.ts +11 -0
- package/dist/types/community-web/index.d.ts +50 -0
- package/dist/types/community-web/short_url/create.d.ts +11 -0
- package/dist/types/index.d.ts +37 -0
- package/dist/types/queryPages.d.ts +9 -0
- package/dist/types/src/bfs-web/index.d.ts +4 -0
- package/dist/types/src/bfs-web/users/{oid}/extensions.d.ts +12 -0
- package/dist/types/src/community-web/api/v1/short_code/encode.d.ts +42 -0
- package/dist/types/src/community-web/approval/list.d.ts +27 -0
- package/dist/types/src/community-web/base/dateTime.d.ts +5 -0
- package/dist/types/src/community-web/campaign_resource/detail.d.ts +17 -0
- package/dist/types/src/community-web/ccw-main/status.d.ts +11 -0
- package/dist/types/src/community-web/check_in_record/detail.d.ts +17 -0
- package/dist/types/src/community-web/check_in_record/insert.d.ts +10 -0
- package/dist/types/src/community-web/cloud_asset/search.d.ts +44 -0
- package/dist/types/src/community-web/cloud_asset/user/privacy.d.ts +14 -0
- package/dist/types/src/community-web/comment/create.d.ts +40 -0
- package/dist/types/src/community-web/comment/like_record/create.d.ts +11 -0
- package/dist/types/src/community-web/comment/page.d.ts +19 -0
- package/dist/types/src/community-web/comment/page_by_topic.d.ts +19 -0
- package/dist/types/src/community-web/comment/reply.d.ts +27 -0
- package/dist/types/src/community-web/config/detail.d.ts +11 -0
- package/dist/types/src/community-web/creation/detail.d.ts +15 -0
- package/dist/types/src/community-web/creation/excellent/list.d.ts +12 -0
- package/dist/types/src/community-web/creation/introduction/detail.d.ts +13 -0
- package/dist/types/src/community-web/creation/like/detail.d.ts +13 -0
- package/dist/types/src/community-web/creation/loading/tips.d.ts +9 -0
- package/dist/types/src/community-web/creation/own/page.d.ts +17 -0
- package/dist/types/src/community-web/creation/page.d.ts +16 -0
- package/dist/types/src/community-web/creation/page_by_student.d.ts +16 -0
- package/dist/types/src/community-web/creation/potential/list.d.ts +12 -0
- package/dist/types/src/community-web/creation/recommend.d.ts +15 -0
- package/dist/types/src/community-web/creation/search/page.d.ts +17 -0
- package/dist/types/src/community-web/creation/smart_contract/split_rule/create.d.ts +25 -0
- package/dist/types/src/community-web/creation/smart_contract/split_rule/detail.d.ts +31 -0
- package/dist/types/src/community-web/creation/student/detail.d.ts +13 -0
- package/dist/types/src/community-web/creation/submit.d.ts +39 -0
- package/dist/types/src/community-web/creation/tag/list.d.ts +11 -0
- package/dist/types/src/community-web/creation/team_member/list.d.ts +15 -0
- package/dist/types/src/community-web/creation/team_member/produce_ticket.d.ts +12 -0
- package/dist/types/src/community-web/creation/teamwork_log/page.d.ts +42 -0
- package/dist/types/src/community-web/creation/update.d.ts +19 -0
- package/dist/types/src/community-web/creation_activity_stats/list.d.ts +20 -0
- package/dist/types/src/community-web/creation_attribute/detail.d.ts +34 -0
- package/dist/types/src/community-web/creation_donated_record/ranking_list.d.ts +19 -0
- package/dist/types/src/community-web/creation_favorite/detail.d.ts +13 -0
- package/dist/types/src/community-web/creation_recommend_position/list.d.ts +13 -0
- package/dist/types/src/community-web/creation_release/code_profiling/detail.d.ts +60 -0
- package/dist/types/src/community-web/creation_release/page.d.ts +16 -0
- package/dist/types/src/community-web/creation_screenshot/page.d.ts +15 -0
- package/dist/types/src/community-web/creation_stats/view.d.ts +14 -0
- package/dist/types/src/community-web/currency/account/personal.d.ts +12 -0
- package/dist/types/src/community-web/emoji/all.d.ts +27 -0
- package/dist/types/src/community-web/emoji/category/list.d.ts +16 -0
- package/dist/types/src/community-web/emoji/page.d.ts +17 -0
- package/dist/types/src/community-web/event.d.ts +11 -0
- package/dist/types/src/community-web/hash_tag/detail.d.ts +12 -0
- package/dist/types/src/community-web/hash_tag/managed/list.d.ts +18 -0
- package/dist/types/src/community-web/hash_tag/recommend/list.d.ts +8 -0
- package/dist/types/src/community-web/hash_tag_creation/list_relation.d.ts +13 -0
- package/dist/types/src/community-web/hash_tag_creation/mine.d.ts +18 -0
- package/dist/types/src/community-web/hash_tag_favorite/detail.d.ts +12 -0
- package/dist/types/src/community-web/health/check.d.ts +14 -0
- package/dist/types/src/community-web/historical_team_member/page.d.ts +17 -0
- package/dist/types/src/community-web/index.d.ts +190 -0
- package/dist/types/src/community-web/leaflets/item/list.d.ts +25 -0
- package/dist/types/src/community-web/locked_user/detail.d.ts +24 -0
- package/dist/types/src/community-web/muted_user/detail.d.ts +11 -0
- package/dist/types/src/community-web/notification/page.d.ts +15 -0
- package/dist/types/src/community-web/notification/stats/v2.d.ts +12 -0
- package/dist/types/src/community-web/notify_message/show.d.ts +17 -0
- package/dist/types/src/community-web/post/detail.d.ts +50 -0
- package/dist/types/src/community-web/search/hot_words.d.ts +11 -0
- package/dist/types/src/community-web/short_url/create.d.ts +11 -0
- package/dist/types/src/community-web/short_url/decompress.d.ts +11 -0
- package/dist/types/src/community-web/student/block_record/detail.d.ts +35 -0
- package/dist/types/src/community-web/student/block_record/list.d.ts +18 -0
- package/dist/types/src/community-web/student/block_record/status.d.ts +16 -0
- package/dist/types/src/community-web/student/following/page.d.ts +17 -0
- package/dist/types/src/community-web/students/creator_score.d.ts +9 -0
- package/dist/types/src/community-web/students/last_active_at.d.ts +14 -0
- package/dist/types/src/community-web/students/list.d.ts +13 -0
- package/dist/types/src/community-web/students/list_sessions.d.ts +12 -0
- package/dist/types/src/community-web/students/profile.d.ts +13 -0
- package/dist/types/src/community-web/students/reputation_score_log/page.d.ts +11 -0
- package/dist/types/src/community-web/students/self/detail.d.ts +18 -0
- package/dist/types/src/community-web/students/stats.d.ts +13 -0
- package/dist/types/src/community-web/students/update.d.ts +18 -0
- package/dist/types/src/community-web/study-community/cloud_variable/create.d.ts +15 -0
- package/dist/types/src/community-web/study-community/comment/delete.d.ts +11 -0
- package/dist/types/src/community-web/study-community/comment/fold.d.ts +11 -0
- package/dist/types/src/community-web/study-community/comment/reset_weight.d.ts +11 -0
- package/dist/types/src/community-web/study-community/comment/top.d.ts +14 -0
- package/dist/types/src/community-web/study-community/member/detail.d.ts +25 -0
- package/dist/types/src/community-web/study-community/spread_feed/unread/count.d.ts +12 -0
- package/dist/types/src/community-web/subject_area/page.d.ts +71 -0
- package/dist/types/src/community-web/subject_area/page_by_channel.d.ts +73 -0
- package/dist/types/src/community-web/task/award.d.ts +19 -0
- package/dist/types/src/community-web/task/mine.d.ts +29 -0
- package/dist/types/src/community-web/typical_project/page.d.ts +29 -0
- package/dist/types/src/community-web/typical_project/student/unread_count.d.ts +13 -0
- package/dist/types/src/community-web/user-card/detail.d.ts +43 -0
- package/dist/types/src/community-web/user_label/list.d.ts +11 -0
- package/dist/types/src/gandi-main/bulletins/detail.d.ts +16 -0
- package/dist/types/src/gandi-main/bulletins/page.d.ts +19 -0
- package/dist/types/src/gandi-main/index.d.ts +8 -0
- package/dist/types/src/gandi-main/timestamp/current.d.ts +7 -0
- package/dist/types/src/index.d.ts +119 -0
- package/dist/types/src/queryPages.d.ts +9 -0
- package/dist/types/src/sso/index.d.ts +8 -0
- package/dist/types/src/sso/web/auth/login-by-password.d.ts +50 -0
- package/dist/types/src/sso/web/auth/logout.d.ts +6 -0
- package/dist/types/src/sso/web/auth/logout_by_session.d.ts +7 -0
- package/dist/types/sso/index.d.ts +8 -0
- package/dist/types/sso/web/auth/login-by-password.d.ts +50 -0
- package/dist/types/sso/web/auth/logout.d.ts +6 -0
- package/dist/types/sso/web/auth/logout_by_session.d.ts +7 -0
- package/dist/types/types/notification.d.ts +66 -0
- package/dist/types/types/notificationContent.d.ts +126 -0
- package/package.json +6 -1
- package/AGENT.md +0 -271
- package/coverage/clover.xml +0 -605
- package/coverage/coverage-final.json +0 -49
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -671
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -210
- package/coverage/lcov.info +0 -977
- package/tsconfig.esm.json +0 -8
- package/tsconfig.json +0 -14
- package/tsconfig.node.json +0 -9
- package/tsconfig.types.json +0 -9
package/coverage/lcov.info
DELETED
|
@@ -1,977 +0,0 @@
|
|
|
1
|
-
TN:
|
|
2
|
-
SF:src\index.ts
|
|
3
|
-
FN:5,(anonymous_0)
|
|
4
|
-
FN:5,(anonymous_1)
|
|
5
|
-
FNF:2
|
|
6
|
-
FNH:0
|
|
7
|
-
FNDA:0,(anonymous_0)
|
|
8
|
-
FNDA:0,(anonymous_1)
|
|
9
|
-
DA:2,0
|
|
10
|
-
DA:3,0
|
|
11
|
-
DA:5,0
|
|
12
|
-
DA:7,0
|
|
13
|
-
LF:4
|
|
14
|
-
LH:0
|
|
15
|
-
BRF:0
|
|
16
|
-
BRH:0
|
|
17
|
-
end_of_record
|
|
18
|
-
TN:
|
|
19
|
-
SF:src\queryPages.ts
|
|
20
|
-
FN:10,queryPage
|
|
21
|
-
FN:15,(anonymous_1)
|
|
22
|
-
FNF:2
|
|
23
|
-
FNH:2
|
|
24
|
-
FNDA:11,queryPage
|
|
25
|
-
FNDA:44,(anonymous_1)
|
|
26
|
-
DA:10,11
|
|
27
|
-
DA:14,11
|
|
28
|
-
DA:15,11
|
|
29
|
-
DA:16,44
|
|
30
|
-
DA:17,1
|
|
31
|
-
DA:19,43
|
|
32
|
-
DA:21,11
|
|
33
|
-
DA:24,11
|
|
34
|
-
LF:8
|
|
35
|
-
LH:8
|
|
36
|
-
BRDA:16,0,0,1
|
|
37
|
-
BRDA:16,0,1,43
|
|
38
|
-
BRF:2
|
|
39
|
-
BRH:2
|
|
40
|
-
end_of_record
|
|
41
|
-
TN:
|
|
42
|
-
SF:src\community-web\event.ts
|
|
43
|
-
FN:17,sendEvent
|
|
44
|
-
FN:21,(anonymous_1)
|
|
45
|
-
FNF:2
|
|
46
|
-
FNH:1
|
|
47
|
-
FNDA:1,sendEvent
|
|
48
|
-
FNDA:0,(anonymous_1)
|
|
49
|
-
DA:1,1
|
|
50
|
-
DA:4,1
|
|
51
|
-
DA:17,1
|
|
52
|
-
DA:18,1
|
|
53
|
-
DA:19,1
|
|
54
|
-
DA:21,0
|
|
55
|
-
LF:6
|
|
56
|
-
LH:5
|
|
57
|
-
BRF:0
|
|
58
|
-
BRH:0
|
|
59
|
-
end_of_record
|
|
60
|
-
TN:
|
|
61
|
-
SF:src\community-web\index.ts
|
|
62
|
-
FNF:0
|
|
63
|
-
FNH:0
|
|
64
|
-
DA:1,0
|
|
65
|
-
DA:2,0
|
|
66
|
-
DA:3,0
|
|
67
|
-
DA:4,0
|
|
68
|
-
DA:5,0
|
|
69
|
-
DA:6,0
|
|
70
|
-
DA:7,0
|
|
71
|
-
DA:8,0
|
|
72
|
-
DA:9,0
|
|
73
|
-
DA:10,0
|
|
74
|
-
DA:11,0
|
|
75
|
-
DA:12,0
|
|
76
|
-
DA:13,0
|
|
77
|
-
DA:14,0
|
|
78
|
-
DA:15,0
|
|
79
|
-
DA:16,0
|
|
80
|
-
DA:17,0
|
|
81
|
-
DA:18,0
|
|
82
|
-
DA:19,0
|
|
83
|
-
DA:20,0
|
|
84
|
-
DA:21,0
|
|
85
|
-
DA:22,0
|
|
86
|
-
DA:23,0
|
|
87
|
-
DA:24,0
|
|
88
|
-
DA:25,0
|
|
89
|
-
DA:26,0
|
|
90
|
-
DA:27,0
|
|
91
|
-
DA:28,0
|
|
92
|
-
DA:29,0
|
|
93
|
-
DA:31,0
|
|
94
|
-
LF:30
|
|
95
|
-
LH:0
|
|
96
|
-
BRF:0
|
|
97
|
-
BRH:0
|
|
98
|
-
end_of_record
|
|
99
|
-
TN:
|
|
100
|
-
SF:src\community-web\api\v1\short_code\encode.ts
|
|
101
|
-
FN:46,encodeShortCode
|
|
102
|
-
FN:64,(anonymous_1)
|
|
103
|
-
FNF:2
|
|
104
|
-
FNH:2
|
|
105
|
-
FNDA:1,encodeShortCode
|
|
106
|
-
FNDA:1,(anonymous_1)
|
|
107
|
-
DA:1,1
|
|
108
|
-
DA:5,1
|
|
109
|
-
DA:46,1
|
|
110
|
-
DA:52,1
|
|
111
|
-
DA:62,1
|
|
112
|
-
DA:64,1
|
|
113
|
-
LF:6
|
|
114
|
-
LH:6
|
|
115
|
-
BRF:0
|
|
116
|
-
BRH:0
|
|
117
|
-
end_of_record
|
|
118
|
-
TN:
|
|
119
|
-
SF:src\community-web\approval\list.ts
|
|
120
|
-
FN:34,getApprovalTags
|
|
121
|
-
FN:44,(anonymous_2)
|
|
122
|
-
FNF:2
|
|
123
|
-
FNH:2
|
|
124
|
-
FNDA:1,getApprovalTags
|
|
125
|
-
FNDA:1,(anonymous_2)
|
|
126
|
-
DA:1,1
|
|
127
|
-
DA:27,1
|
|
128
|
-
DA:34,1
|
|
129
|
-
DA:38,1
|
|
130
|
-
DA:42,1
|
|
131
|
-
DA:44,1
|
|
132
|
-
LF:6
|
|
133
|
-
LH:6
|
|
134
|
-
BRF:0
|
|
135
|
-
BRH:0
|
|
136
|
-
end_of_record
|
|
137
|
-
TN:
|
|
138
|
-
SF:src\community-web\base\dateTime.ts
|
|
139
|
-
FN:9,getTime
|
|
140
|
-
FN:12,(anonymous_2)
|
|
141
|
-
FNF:2
|
|
142
|
-
FNH:2
|
|
143
|
-
FNDA:1,getTime
|
|
144
|
-
FNDA:1,(anonymous_2)
|
|
145
|
-
DA:1,1
|
|
146
|
-
DA:4,1
|
|
147
|
-
DA:9,1
|
|
148
|
-
DA:10,1
|
|
149
|
-
DA:12,1
|
|
150
|
-
LF:5
|
|
151
|
-
LH:5
|
|
152
|
-
BRF:0
|
|
153
|
-
BRH:0
|
|
154
|
-
end_of_record
|
|
155
|
-
TN:
|
|
156
|
-
SF:src\community-web\campaign_resource\detail.ts
|
|
157
|
-
FN:22,getCampaignResources
|
|
158
|
-
FN:27,(anonymous_1)
|
|
159
|
-
FNF:2
|
|
160
|
-
FNH:2
|
|
161
|
-
FNDA:2,getCampaignResources
|
|
162
|
-
FNDA:2,(anonymous_1)
|
|
163
|
-
DA:1,1
|
|
164
|
-
DA:4,1
|
|
165
|
-
DA:22,1
|
|
166
|
-
DA:25,2
|
|
167
|
-
DA:27,2
|
|
168
|
-
LF:5
|
|
169
|
-
LH:5
|
|
170
|
-
BRF:0
|
|
171
|
-
BRH:0
|
|
172
|
-
end_of_record
|
|
173
|
-
TN:
|
|
174
|
-
SF:src\community-web\check_in_record\detail.ts
|
|
175
|
-
FN:21,getCheckInRecords
|
|
176
|
-
FN:25,(anonymous_1)
|
|
177
|
-
FNF:2
|
|
178
|
-
FNH:1
|
|
179
|
-
FNDA:1,getCheckInRecords
|
|
180
|
-
FNDA:0,(anonymous_1)
|
|
181
|
-
DA:1,1
|
|
182
|
-
DA:4,1
|
|
183
|
-
DA:21,1
|
|
184
|
-
DA:22,1
|
|
185
|
-
DA:23,1
|
|
186
|
-
DA:25,0
|
|
187
|
-
LF:6
|
|
188
|
-
LH:5
|
|
189
|
-
BRF:0
|
|
190
|
-
BRH:0
|
|
191
|
-
end_of_record
|
|
192
|
-
TN:
|
|
193
|
-
SF:src\community-web\check_in_record\insert.ts
|
|
194
|
-
FN:16,insertCheckInRecord
|
|
195
|
-
FN:20,(anonymous_1)
|
|
196
|
-
FNF:2
|
|
197
|
-
FNH:1
|
|
198
|
-
FNDA:1,insertCheckInRecord
|
|
199
|
-
FNDA:0,(anonymous_1)
|
|
200
|
-
DA:1,1
|
|
201
|
-
DA:4,1
|
|
202
|
-
DA:16,1
|
|
203
|
-
DA:17,1
|
|
204
|
-
DA:18,1
|
|
205
|
-
DA:20,0
|
|
206
|
-
LF:6
|
|
207
|
-
LH:5
|
|
208
|
-
BRF:0
|
|
209
|
-
BRH:0
|
|
210
|
-
end_of_record
|
|
211
|
-
TN:
|
|
212
|
-
SF:src\community-web\cloud_asset\search.ts
|
|
213
|
-
FN:54,searchCloudAssets
|
|
214
|
-
FN:67,(anonymous_1)
|
|
215
|
-
FNF:2
|
|
216
|
-
FNH:1
|
|
217
|
-
FNDA:1,searchCloudAssets
|
|
218
|
-
FNDA:0,(anonymous_1)
|
|
219
|
-
DA:1,1
|
|
220
|
-
DA:2,1
|
|
221
|
-
DA:6,1
|
|
222
|
-
DA:8,1
|
|
223
|
-
DA:54,1
|
|
224
|
-
DA:59,1
|
|
225
|
-
DA:63,1
|
|
226
|
-
DA:64,1
|
|
227
|
-
DA:65,1
|
|
228
|
-
DA:67,0
|
|
229
|
-
LF:10
|
|
230
|
-
LH:9
|
|
231
|
-
BRDA:56,0,0,0
|
|
232
|
-
BRDA:57,1,0,1
|
|
233
|
-
BRF:2
|
|
234
|
-
BRH:1
|
|
235
|
-
end_of_record
|
|
236
|
-
TN:
|
|
237
|
-
SF:src\community-web\cloud_asset\user\privacy.ts
|
|
238
|
-
FN:20,getUserAssetStorageSize
|
|
239
|
-
FN:23,(anonymous_1)
|
|
240
|
-
FNF:2
|
|
241
|
-
FNH:1
|
|
242
|
-
FNDA:1,getUserAssetStorageSize
|
|
243
|
-
FNDA:0,(anonymous_1)
|
|
244
|
-
DA:1,1
|
|
245
|
-
DA:4,1
|
|
246
|
-
DA:20,1
|
|
247
|
-
DA:21,1
|
|
248
|
-
DA:23,0
|
|
249
|
-
LF:5
|
|
250
|
-
LH:4
|
|
251
|
-
BRF:0
|
|
252
|
-
BRH:0
|
|
253
|
-
end_of_record
|
|
254
|
-
TN:
|
|
255
|
-
SF:src\community-web\comment\page.ts
|
|
256
|
-
FN:29,getCommentReplies
|
|
257
|
-
FN:43,(anonymous_1)
|
|
258
|
-
FNF:2
|
|
259
|
-
FNH:2
|
|
260
|
-
FNDA:1,getCommentReplies
|
|
261
|
-
FNDA:1,(anonymous_1)
|
|
262
|
-
DA:1,1
|
|
263
|
-
DA:2,1
|
|
264
|
-
DA:7,1
|
|
265
|
-
DA:9,1
|
|
266
|
-
DA:29,1
|
|
267
|
-
DA:35,1
|
|
268
|
-
DA:39,1
|
|
269
|
-
DA:40,1
|
|
270
|
-
DA:41,1
|
|
271
|
-
DA:43,1
|
|
272
|
-
LF:10
|
|
273
|
-
LH:10
|
|
274
|
-
BRDA:32,0,0,0
|
|
275
|
-
BRDA:33,1,0,1
|
|
276
|
-
BRF:2
|
|
277
|
-
BRH:1
|
|
278
|
-
end_of_record
|
|
279
|
-
TN:
|
|
280
|
-
SF:src\community-web\comment\page_by_topic.ts
|
|
281
|
-
FN:29,getCommentsByTopic
|
|
282
|
-
FN:43,(anonymous_1)
|
|
283
|
-
FNF:2
|
|
284
|
-
FNH:2
|
|
285
|
-
FNDA:1,getCommentsByTopic
|
|
286
|
-
FNDA:1,(anonymous_1)
|
|
287
|
-
DA:1,1
|
|
288
|
-
DA:2,1
|
|
289
|
-
DA:7,1
|
|
290
|
-
DA:9,1
|
|
291
|
-
DA:29,1
|
|
292
|
-
DA:35,1
|
|
293
|
-
DA:39,1
|
|
294
|
-
DA:40,1
|
|
295
|
-
DA:41,1
|
|
296
|
-
DA:43,1
|
|
297
|
-
LF:10
|
|
298
|
-
LH:10
|
|
299
|
-
BRDA:33,0,0,1
|
|
300
|
-
BRF:1
|
|
301
|
-
BRH:1
|
|
302
|
-
end_of_record
|
|
303
|
-
TN:
|
|
304
|
-
SF:src\community-web\config\detail.ts
|
|
305
|
-
FN:16,getConfigDetail
|
|
306
|
-
FN:20,(anonymous_1)
|
|
307
|
-
FNF:2
|
|
308
|
-
FNH:0
|
|
309
|
-
FNDA:0,getConfigDetail
|
|
310
|
-
FNDA:0,(anonymous_1)
|
|
311
|
-
DA:1,0
|
|
312
|
-
DA:4,0
|
|
313
|
-
DA:16,0
|
|
314
|
-
DA:17,0
|
|
315
|
-
DA:18,0
|
|
316
|
-
DA:20,0
|
|
317
|
-
LF:6
|
|
318
|
-
LH:0
|
|
319
|
-
BRF:0
|
|
320
|
-
BRH:0
|
|
321
|
-
end_of_record
|
|
322
|
-
TN:
|
|
323
|
-
SF:src\community-web\creation\detail.ts
|
|
324
|
-
FN:19,getCreationDetail
|
|
325
|
-
FN:26,(anonymous_1)
|
|
326
|
-
FNF:2
|
|
327
|
-
FNH:2
|
|
328
|
-
FNDA:1,getCreationDetail
|
|
329
|
-
FNDA:1,(anonymous_1)
|
|
330
|
-
DA:1,1
|
|
331
|
-
DA:5,1
|
|
332
|
-
DA:19,1
|
|
333
|
-
DA:23,1
|
|
334
|
-
DA:24,1
|
|
335
|
-
DA:26,1
|
|
336
|
-
LF:6
|
|
337
|
-
LH:6
|
|
338
|
-
BRF:0
|
|
339
|
-
BRH:0
|
|
340
|
-
end_of_record
|
|
341
|
-
TN:
|
|
342
|
-
SF:src\community-web\creation\page.ts
|
|
343
|
-
FN:30,getRemixedCreationPage
|
|
344
|
-
FN:42,(anonymous_1)
|
|
345
|
-
FNF:2
|
|
346
|
-
FNH:2
|
|
347
|
-
FNDA:1,getRemixedCreationPage
|
|
348
|
-
FNDA:1,(anonymous_1)
|
|
349
|
-
DA:1,1
|
|
350
|
-
DA:5,1
|
|
351
|
-
DA:7,1
|
|
352
|
-
DA:14,1
|
|
353
|
-
DA:30,1
|
|
354
|
-
DA:34,1
|
|
355
|
-
DA:38,1
|
|
356
|
-
DA:39,1
|
|
357
|
-
DA:40,1
|
|
358
|
-
DA:42,1
|
|
359
|
-
LF:10
|
|
360
|
-
LH:10
|
|
361
|
-
BRDA:32,0,0,1
|
|
362
|
-
BRF:1
|
|
363
|
-
BRH:1
|
|
364
|
-
end_of_record
|
|
365
|
-
TN:
|
|
366
|
-
SF:src\community-web\creation\page_by_student.ts
|
|
367
|
-
FN:25,getCreationsByStudent
|
|
368
|
-
FN:37,(anonymous_1)
|
|
369
|
-
FNF:2
|
|
370
|
-
FNH:2
|
|
371
|
-
FNDA:1,getCreationsByStudent
|
|
372
|
-
FNDA:1,(anonymous_1)
|
|
373
|
-
DA:1,1
|
|
374
|
-
DA:5,1
|
|
375
|
-
DA:7,1
|
|
376
|
-
DA:9,1
|
|
377
|
-
DA:25,1
|
|
378
|
-
DA:29,1
|
|
379
|
-
DA:33,1
|
|
380
|
-
DA:34,1
|
|
381
|
-
DA:35,1
|
|
382
|
-
DA:37,1
|
|
383
|
-
LF:10
|
|
384
|
-
LH:10
|
|
385
|
-
BRDA:27,0,0,1
|
|
386
|
-
BRF:1
|
|
387
|
-
BRH:1
|
|
388
|
-
end_of_record
|
|
389
|
-
TN:
|
|
390
|
-
SF:src\community-web\creation\recommend.ts
|
|
391
|
-
FN:25,getRecommendCreations
|
|
392
|
-
FN:37,(anonymous_1)
|
|
393
|
-
FNF:2
|
|
394
|
-
FNH:2
|
|
395
|
-
FNDA:1,getRecommendCreations
|
|
396
|
-
FNDA:1,(anonymous_1)
|
|
397
|
-
DA:1,1
|
|
398
|
-
DA:5,1
|
|
399
|
-
DA:7,1
|
|
400
|
-
DA:9,1
|
|
401
|
-
DA:25,1
|
|
402
|
-
DA:29,1
|
|
403
|
-
DA:33,1
|
|
404
|
-
DA:34,1
|
|
405
|
-
DA:35,1
|
|
406
|
-
DA:37,1
|
|
407
|
-
LF:10
|
|
408
|
-
LH:10
|
|
409
|
-
BRDA:27,0,0,1
|
|
410
|
-
BRF:1
|
|
411
|
-
BRH:1
|
|
412
|
-
end_of_record
|
|
413
|
-
TN:
|
|
414
|
-
SF:src\community-web\creation\excellent\list.ts
|
|
415
|
-
FN:17,getExcellentCreations
|
|
416
|
-
FN:21,(anonymous_1)
|
|
417
|
-
FNF:2
|
|
418
|
-
FNH:2
|
|
419
|
-
FNDA:7,getExcellentCreations
|
|
420
|
-
FNDA:7,(anonymous_1)
|
|
421
|
-
DA:1,7
|
|
422
|
-
DA:5,7
|
|
423
|
-
DA:17,7
|
|
424
|
-
DA:18,7
|
|
425
|
-
DA:19,7
|
|
426
|
-
DA:21,7
|
|
427
|
-
LF:6
|
|
428
|
-
LH:6
|
|
429
|
-
BRF:0
|
|
430
|
-
BRH:0
|
|
431
|
-
end_of_record
|
|
432
|
-
TN:
|
|
433
|
-
SF:src\community-web\creation\introduction\detail.ts
|
|
434
|
-
FN:18,getCreationIntroduction
|
|
435
|
-
FN:24,(anonymous_1)
|
|
436
|
-
FNF:2
|
|
437
|
-
FNH:2
|
|
438
|
-
FNDA:1,getCreationIntroduction
|
|
439
|
-
FNDA:1,(anonymous_1)
|
|
440
|
-
DA:1,1
|
|
441
|
-
DA:5,1
|
|
442
|
-
DA:18,1
|
|
443
|
-
DA:21,1
|
|
444
|
-
DA:22,1
|
|
445
|
-
DA:24,1
|
|
446
|
-
LF:6
|
|
447
|
-
LH:6
|
|
448
|
-
BRF:0
|
|
449
|
-
BRH:0
|
|
450
|
-
end_of_record
|
|
451
|
-
TN:
|
|
452
|
-
SF:src\community-web\creation\like\detail.ts
|
|
453
|
-
FN:17,getLikeDetail
|
|
454
|
-
FN:21,(anonymous_1)
|
|
455
|
-
FNF:2
|
|
456
|
-
FNH:2
|
|
457
|
-
FNDA:1,getLikeDetail
|
|
458
|
-
FNDA:1,(anonymous_1)
|
|
459
|
-
DA:1,1
|
|
460
|
-
DA:5,1
|
|
461
|
-
DA:17,1
|
|
462
|
-
DA:18,1
|
|
463
|
-
DA:19,1
|
|
464
|
-
DA:21,1
|
|
465
|
-
LF:6
|
|
466
|
-
LH:6
|
|
467
|
-
BRF:0
|
|
468
|
-
BRH:0
|
|
469
|
-
end_of_record
|
|
470
|
-
TN:
|
|
471
|
-
SF:src\community-web\creation\loading\tips.ts
|
|
472
|
-
FN:14,getLoadingTips
|
|
473
|
-
FN:17,(anonymous_1)
|
|
474
|
-
FNF:2
|
|
475
|
-
FNH:2
|
|
476
|
-
FNDA:1,getLoadingTips
|
|
477
|
-
FNDA:1,(anonymous_1)
|
|
478
|
-
DA:1,1
|
|
479
|
-
DA:5,1
|
|
480
|
-
DA:14,1
|
|
481
|
-
DA:15,1
|
|
482
|
-
DA:17,1
|
|
483
|
-
LF:5
|
|
484
|
-
LH:5
|
|
485
|
-
BRF:0
|
|
486
|
-
BRH:0
|
|
487
|
-
end_of_record
|
|
488
|
-
TN:
|
|
489
|
-
SF:src\community-web\creation\potential\list.ts
|
|
490
|
-
FN:17,getPotentialCreations
|
|
491
|
-
FN:21,(anonymous_1)
|
|
492
|
-
FNF:2
|
|
493
|
-
FNH:2
|
|
494
|
-
FNDA:1,getPotentialCreations
|
|
495
|
-
FNDA:1,(anonymous_1)
|
|
496
|
-
DA:1,1
|
|
497
|
-
DA:5,1
|
|
498
|
-
DA:17,1
|
|
499
|
-
DA:18,1
|
|
500
|
-
DA:19,1
|
|
501
|
-
DA:21,1
|
|
502
|
-
LF:6
|
|
503
|
-
LH:6
|
|
504
|
-
BRF:0
|
|
505
|
-
BRH:0
|
|
506
|
-
end_of_record
|
|
507
|
-
TN:
|
|
508
|
-
SF:src\community-web\creation\search\page.ts
|
|
509
|
-
FN:25,searchCreationsByTag
|
|
510
|
-
FN:37,(anonymous_1)
|
|
511
|
-
FNF:2
|
|
512
|
-
FNH:2
|
|
513
|
-
FNDA:1,searchCreationsByTag
|
|
514
|
-
FNDA:1,(anonymous_1)
|
|
515
|
-
DA:1,1
|
|
516
|
-
DA:5,1
|
|
517
|
-
DA:7,1
|
|
518
|
-
DA:9,1
|
|
519
|
-
DA:25,1
|
|
520
|
-
DA:29,1
|
|
521
|
-
DA:33,1
|
|
522
|
-
DA:34,1
|
|
523
|
-
DA:35,1
|
|
524
|
-
DA:37,1
|
|
525
|
-
LF:10
|
|
526
|
-
LH:10
|
|
527
|
-
BRDA:27,0,0,1
|
|
528
|
-
BRF:1
|
|
529
|
-
BRH:1
|
|
530
|
-
end_of_record
|
|
531
|
-
TN:
|
|
532
|
-
SF:src\community-web\creation\student\detail.ts
|
|
533
|
-
FN:17,getCreationStudentDetail
|
|
534
|
-
FN:23,(anonymous_1)
|
|
535
|
-
FNF:2
|
|
536
|
-
FNH:2
|
|
537
|
-
FNDA:1,getCreationStudentDetail
|
|
538
|
-
FNDA:1,(anonymous_1)
|
|
539
|
-
DA:1,1
|
|
540
|
-
DA:5,1
|
|
541
|
-
DA:17,1
|
|
542
|
-
DA:20,1
|
|
543
|
-
DA:21,1
|
|
544
|
-
DA:23,1
|
|
545
|
-
LF:6
|
|
546
|
-
LH:6
|
|
547
|
-
BRF:0
|
|
548
|
-
BRH:0
|
|
549
|
-
end_of_record
|
|
550
|
-
TN:
|
|
551
|
-
SF:src\community-web\creation\tag\list.ts
|
|
552
|
-
FN:16,getCreationTags
|
|
553
|
-
FN:20,(anonymous_1)
|
|
554
|
-
FNF:2
|
|
555
|
-
FNH:2
|
|
556
|
-
FNDA:1,getCreationTags
|
|
557
|
-
FNDA:1,(anonymous_1)
|
|
558
|
-
DA:1,1
|
|
559
|
-
DA:5,1
|
|
560
|
-
DA:16,1
|
|
561
|
-
DA:17,1
|
|
562
|
-
DA:18,1
|
|
563
|
-
DA:20,1
|
|
564
|
-
LF:6
|
|
565
|
-
LH:6
|
|
566
|
-
BRF:0
|
|
567
|
-
BRH:0
|
|
568
|
-
end_of_record
|
|
569
|
-
TN:
|
|
570
|
-
SF:src\community-web\creation_donated_record\ranking_list.ts
|
|
571
|
-
FN:25,getDonatedRecordRanking
|
|
572
|
-
FN:37,(anonymous_1)
|
|
573
|
-
FNF:2
|
|
574
|
-
FNH:2
|
|
575
|
-
FNDA:1,getDonatedRecordRanking
|
|
576
|
-
FNDA:1,(anonymous_1)
|
|
577
|
-
DA:1,1
|
|
578
|
-
DA:2,1
|
|
579
|
-
DA:7,1
|
|
580
|
-
DA:25,1
|
|
581
|
-
DA:29,1
|
|
582
|
-
DA:33,1
|
|
583
|
-
DA:34,1
|
|
584
|
-
DA:35,1
|
|
585
|
-
DA:37,1
|
|
586
|
-
LF:9
|
|
587
|
-
LH:9
|
|
588
|
-
BRDA:27,0,0,0
|
|
589
|
-
BRF:1
|
|
590
|
-
BRH:0
|
|
591
|
-
end_of_record
|
|
592
|
-
TN:
|
|
593
|
-
SF:src\community-web\creation_favorite\detail.ts
|
|
594
|
-
FN:17,getCreationFavoriteDetail
|
|
595
|
-
FN:23,(anonymous_1)
|
|
596
|
-
FNF:2
|
|
597
|
-
FNH:1
|
|
598
|
-
FNDA:1,getCreationFavoriteDetail
|
|
599
|
-
FNDA:0,(anonymous_1)
|
|
600
|
-
DA:1,1
|
|
601
|
-
DA:5,1
|
|
602
|
-
DA:17,1
|
|
603
|
-
DA:20,1
|
|
604
|
-
DA:21,1
|
|
605
|
-
DA:23,0
|
|
606
|
-
LF:6
|
|
607
|
-
LH:5
|
|
608
|
-
BRF:0
|
|
609
|
-
BRH:0
|
|
610
|
-
end_of_record
|
|
611
|
-
TN:
|
|
612
|
-
SF:src\community-web\creation_recommend_position\list.ts
|
|
613
|
-
FN:17,getCreationRecommendPositionList
|
|
614
|
-
FN:23,(anonymous_1)
|
|
615
|
-
FNF:2
|
|
616
|
-
FNH:0
|
|
617
|
-
FNDA:0,getCreationRecommendPositionList
|
|
618
|
-
FNDA:0,(anonymous_1)
|
|
619
|
-
DA:1,0
|
|
620
|
-
DA:4,0
|
|
621
|
-
DA:17,0
|
|
622
|
-
DA:20,0
|
|
623
|
-
DA:21,0
|
|
624
|
-
DA:23,0
|
|
625
|
-
LF:6
|
|
626
|
-
LH:0
|
|
627
|
-
BRF:0
|
|
628
|
-
BRH:0
|
|
629
|
-
end_of_record
|
|
630
|
-
TN:
|
|
631
|
-
SF:src\community-web\creation_screenshot\page.ts
|
|
632
|
-
FN:20,getCreationScreenshotPage
|
|
633
|
-
FN:32,(anonymous_1)
|
|
634
|
-
FNF:2
|
|
635
|
-
FNH:2
|
|
636
|
-
FNDA:1,getCreationScreenshotPage
|
|
637
|
-
FNDA:1,(anonymous_1)
|
|
638
|
-
DA:1,1
|
|
639
|
-
DA:2,1
|
|
640
|
-
DA:7,1
|
|
641
|
-
DA:20,1
|
|
642
|
-
DA:24,1
|
|
643
|
-
DA:28,1
|
|
644
|
-
DA:29,1
|
|
645
|
-
DA:30,1
|
|
646
|
-
DA:32,1
|
|
647
|
-
LF:9
|
|
648
|
-
LH:9
|
|
649
|
-
BRDA:22,0,0,0
|
|
650
|
-
BRF:1
|
|
651
|
-
BRH:0
|
|
652
|
-
end_of_record
|
|
653
|
-
TN:
|
|
654
|
-
SF:src\community-web\creation_stats\view.ts
|
|
655
|
-
FN:18,viewCreationStats
|
|
656
|
-
FN:25,(anonymous_1)
|
|
657
|
-
FNF:2
|
|
658
|
-
FNH:2
|
|
659
|
-
FNDA:1,viewCreationStats
|
|
660
|
-
FNDA:1,(anonymous_1)
|
|
661
|
-
DA:1,1
|
|
662
|
-
DA:4,1
|
|
663
|
-
DA:18,1
|
|
664
|
-
DA:22,1
|
|
665
|
-
DA:23,1
|
|
666
|
-
DA:25,1
|
|
667
|
-
LF:6
|
|
668
|
-
LH:6
|
|
669
|
-
BRDA:20,0,0,1
|
|
670
|
-
BRF:1
|
|
671
|
-
BRH:1
|
|
672
|
-
end_of_record
|
|
673
|
-
TN:
|
|
674
|
-
SF:src\community-web\currency\account\personal.ts
|
|
675
|
-
FN:18,getPersonalCurrencyAccount
|
|
676
|
-
FN:21,(anonymous_1)
|
|
677
|
-
FNF:2
|
|
678
|
-
FNH:1
|
|
679
|
-
FNDA:1,getPersonalCurrencyAccount
|
|
680
|
-
FNDA:0,(anonymous_1)
|
|
681
|
-
DA:1,1
|
|
682
|
-
DA:4,1
|
|
683
|
-
DA:18,1
|
|
684
|
-
DA:19,1
|
|
685
|
-
DA:21,0
|
|
686
|
-
LF:5
|
|
687
|
-
LH:4
|
|
688
|
-
BRF:0
|
|
689
|
-
BRH:0
|
|
690
|
-
end_of_record
|
|
691
|
-
TN:
|
|
692
|
-
SF:src\community-web\emoji\all.ts
|
|
693
|
-
FN:33,getAllEmojis
|
|
694
|
-
FN:36,(anonymous_1)
|
|
695
|
-
FNF:2
|
|
696
|
-
FNH:2
|
|
697
|
-
FNDA:1,getAllEmojis
|
|
698
|
-
FNDA:1,(anonymous_1)
|
|
699
|
-
DA:1,1
|
|
700
|
-
DA:4,1
|
|
701
|
-
DA:33,1
|
|
702
|
-
DA:34,1
|
|
703
|
-
DA:36,1
|
|
704
|
-
LF:5
|
|
705
|
-
LH:5
|
|
706
|
-
BRF:0
|
|
707
|
-
BRH:0
|
|
708
|
-
end_of_record
|
|
709
|
-
TN:
|
|
710
|
-
SF:src\community-web\emoji\page.ts
|
|
711
|
-
FN:25,getEmojiPage
|
|
712
|
-
FN:38,(anonymous_1)
|
|
713
|
-
FNF:2
|
|
714
|
-
FNH:2
|
|
715
|
-
FNDA:1,getEmojiPage
|
|
716
|
-
FNDA:1,(anonymous_1)
|
|
717
|
-
DA:1,1
|
|
718
|
-
DA:4,1
|
|
719
|
-
DA:7,1
|
|
720
|
-
DA:25,1
|
|
721
|
-
DA:29,1
|
|
722
|
-
DA:30,1
|
|
723
|
-
DA:31,1
|
|
724
|
-
DA:36,1
|
|
725
|
-
DA:38,1
|
|
726
|
-
LF:9
|
|
727
|
-
LH:9
|
|
728
|
-
BRDA:26,0,0,0
|
|
729
|
-
BRDA:27,1,0,0
|
|
730
|
-
BRF:2
|
|
731
|
-
BRH:0
|
|
732
|
-
end_of_record
|
|
733
|
-
TN:
|
|
734
|
-
SF:src\community-web\emoji\category\list.ts
|
|
735
|
-
FN:22,getEmojiCategoryList
|
|
736
|
-
FN:25,(anonymous_1)
|
|
737
|
-
FNF:2
|
|
738
|
-
FNH:2
|
|
739
|
-
FNDA:1,getEmojiCategoryList
|
|
740
|
-
FNDA:1,(anonymous_1)
|
|
741
|
-
DA:1,1
|
|
742
|
-
DA:4,1
|
|
743
|
-
DA:22,1
|
|
744
|
-
DA:23,1
|
|
745
|
-
DA:25,1
|
|
746
|
-
LF:5
|
|
747
|
-
LH:5
|
|
748
|
-
BRF:0
|
|
749
|
-
BRH:0
|
|
750
|
-
end_of_record
|
|
751
|
-
TN:
|
|
752
|
-
SF:src\community-web\hash_tag_creation\list_relation.ts
|
|
753
|
-
FN:18,getHashTagCreationRelationList
|
|
754
|
-
FN:24,(anonymous_1)
|
|
755
|
-
FNF:2
|
|
756
|
-
FNH:1
|
|
757
|
-
FNDA:1,getHashTagCreationRelationList
|
|
758
|
-
FNDA:0,(anonymous_1)
|
|
759
|
-
DA:1,1
|
|
760
|
-
DA:4,1
|
|
761
|
-
DA:18,1
|
|
762
|
-
DA:21,1
|
|
763
|
-
DA:22,1
|
|
764
|
-
DA:24,0
|
|
765
|
-
LF:6
|
|
766
|
-
LH:5
|
|
767
|
-
BRF:0
|
|
768
|
-
BRH:0
|
|
769
|
-
end_of_record
|
|
770
|
-
TN:
|
|
771
|
-
SF:src\community-web\health\check.ts
|
|
772
|
-
FN:20,healthCheck
|
|
773
|
-
FN:23,(anonymous_1)
|
|
774
|
-
FNF:2
|
|
775
|
-
FNH:2
|
|
776
|
-
FNDA:1,healthCheck
|
|
777
|
-
FNDA:1,(anonymous_1)
|
|
778
|
-
DA:1,1
|
|
779
|
-
DA:4,1
|
|
780
|
-
DA:20,1
|
|
781
|
-
DA:21,1
|
|
782
|
-
DA:23,1
|
|
783
|
-
LF:5
|
|
784
|
-
LH:5
|
|
785
|
-
BRF:0
|
|
786
|
-
BRH:0
|
|
787
|
-
end_of_record
|
|
788
|
-
TN:
|
|
789
|
-
SF:src\community-web\leaflets\item\list.ts
|
|
790
|
-
FN:27,getLeafletsItemList
|
|
791
|
-
FN:33,(anonymous_1)
|
|
792
|
-
FNF:2
|
|
793
|
-
FNH:2
|
|
794
|
-
FNDA:1,getLeafletsItemList
|
|
795
|
-
FNDA:1,(anonymous_1)
|
|
796
|
-
DA:1,1
|
|
797
|
-
DA:4,1
|
|
798
|
-
DA:27,1
|
|
799
|
-
DA:30,1
|
|
800
|
-
DA:31,1
|
|
801
|
-
DA:33,1
|
|
802
|
-
LF:6
|
|
803
|
-
LH:6
|
|
804
|
-
BRF:0
|
|
805
|
-
BRH:0
|
|
806
|
-
end_of_record
|
|
807
|
-
TN:
|
|
808
|
-
SF:src\community-web\locked_user\detail.ts
|
|
809
|
-
FN:29,getLockedUserDetail
|
|
810
|
-
FN:35,(anonymous_1)
|
|
811
|
-
FNF:2
|
|
812
|
-
FNH:2
|
|
813
|
-
FNDA:1,getLockedUserDetail
|
|
814
|
-
FNDA:1,(anonymous_1)
|
|
815
|
-
DA:1,1
|
|
816
|
-
DA:4,1
|
|
817
|
-
DA:29,1
|
|
818
|
-
DA:32,1
|
|
819
|
-
DA:33,1
|
|
820
|
-
DA:35,1
|
|
821
|
-
LF:6
|
|
822
|
-
LH:6
|
|
823
|
-
BRF:0
|
|
824
|
-
BRH:0
|
|
825
|
-
end_of_record
|
|
826
|
-
TN:
|
|
827
|
-
SF:src\community-web\muted_user\detail.ts
|
|
828
|
-
FN:17,getMutedUserDetail
|
|
829
|
-
FN:21,(anonymous_1)
|
|
830
|
-
FNF:2
|
|
831
|
-
FNH:2
|
|
832
|
-
FNDA:1,getMutedUserDetail
|
|
833
|
-
FNDA:1,(anonymous_1)
|
|
834
|
-
DA:1,1
|
|
835
|
-
DA:4,1
|
|
836
|
-
DA:17,1
|
|
837
|
-
DA:18,1
|
|
838
|
-
DA:19,1
|
|
839
|
-
DA:21,1
|
|
840
|
-
LF:6
|
|
841
|
-
LH:6
|
|
842
|
-
BRF:0
|
|
843
|
-
BRH:0
|
|
844
|
-
end_of_record
|
|
845
|
-
TN:
|
|
846
|
-
SF:src\community-web\notification\page.ts
|
|
847
|
-
FN:103,getNotificationPage
|
|
848
|
-
FN:115,(anonymous_1)
|
|
849
|
-
FNF:2
|
|
850
|
-
FNH:1
|
|
851
|
-
FNDA:1,getNotificationPage
|
|
852
|
-
FNDA:0,(anonymous_1)
|
|
853
|
-
DA:1,1
|
|
854
|
-
DA:4,1
|
|
855
|
-
DA:6,1
|
|
856
|
-
DA:103,1
|
|
857
|
-
DA:107,1
|
|
858
|
-
DA:108,1
|
|
859
|
-
DA:109,1
|
|
860
|
-
DA:113,1
|
|
861
|
-
DA:115,0
|
|
862
|
-
LF:9
|
|
863
|
-
LH:8
|
|
864
|
-
BRDA:104,0,0,1
|
|
865
|
-
BRDA:105,1,0,1
|
|
866
|
-
BRF:2
|
|
867
|
-
BRH:2
|
|
868
|
-
end_of_record
|
|
869
|
-
TN:
|
|
870
|
-
SF:src\community-web\notification\stats\v2.ts
|
|
871
|
-
FN:28,getNotificationStats
|
|
872
|
-
FN:34,(anonymous_1)
|
|
873
|
-
FNF:2
|
|
874
|
-
FNH:1
|
|
875
|
-
FNDA:1,getNotificationStats
|
|
876
|
-
FNDA:0,(anonymous_1)
|
|
877
|
-
DA:1,1
|
|
878
|
-
DA:4,1
|
|
879
|
-
DA:28,1
|
|
880
|
-
DA:31,1
|
|
881
|
-
DA:32,1
|
|
882
|
-
DA:34,0
|
|
883
|
-
LF:6
|
|
884
|
-
LH:5
|
|
885
|
-
BRDA:29,0,0,1
|
|
886
|
-
BRF:1
|
|
887
|
-
BRH:1
|
|
888
|
-
end_of_record
|
|
889
|
-
TN:
|
|
890
|
-
SF:src\community-web\short_url\create.ts
|
|
891
|
-
FN:13,createShortUrl
|
|
892
|
-
FN:19,(anonymous_1)
|
|
893
|
-
FNF:2
|
|
894
|
-
FNH:2
|
|
895
|
-
FNDA:1,createShortUrl
|
|
896
|
-
FNDA:1,(anonymous_1)
|
|
897
|
-
DA:1,1
|
|
898
|
-
DA:4,1
|
|
899
|
-
DA:13,1
|
|
900
|
-
DA:14,1
|
|
901
|
-
DA:17,1
|
|
902
|
-
DA:19,1
|
|
903
|
-
LF:6
|
|
904
|
-
LH:6
|
|
905
|
-
BRF:0
|
|
906
|
-
BRH:0
|
|
907
|
-
end_of_record
|
|
908
|
-
TN:
|
|
909
|
-
SF:src\sso\index.ts
|
|
910
|
-
FNF:0
|
|
911
|
-
FNH:0
|
|
912
|
-
DA:1,0
|
|
913
|
-
DA:2,0
|
|
914
|
-
DA:3,0
|
|
915
|
-
DA:5,0
|
|
916
|
-
LF:4
|
|
917
|
-
LH:0
|
|
918
|
-
BRF:0
|
|
919
|
-
BRH:0
|
|
920
|
-
end_of_record
|
|
921
|
-
TN:
|
|
922
|
-
SF:src\sso\web\auth\login-by-password.ts
|
|
923
|
-
FN:56,loginByPassword
|
|
924
|
-
FN:71,(anonymous_1)
|
|
925
|
-
FNF:2
|
|
926
|
-
FNH:1
|
|
927
|
-
FNDA:1,loginByPassword
|
|
928
|
-
FNDA:0,(anonymous_1)
|
|
929
|
-
DA:1,1
|
|
930
|
-
DA:4,1
|
|
931
|
-
DA:56,1
|
|
932
|
-
DA:64,1
|
|
933
|
-
DA:71,0
|
|
934
|
-
DA:72,0
|
|
935
|
-
DA:73,0
|
|
936
|
-
LF:7
|
|
937
|
-
LH:4
|
|
938
|
-
BRDA:59,0,0,0
|
|
939
|
-
BRF:1
|
|
940
|
-
BRH:0
|
|
941
|
-
end_of_record
|
|
942
|
-
TN:
|
|
943
|
-
SF:src\sso\web\auth\logout.ts
|
|
944
|
-
FN:10,logout
|
|
945
|
-
FN:13,(anonymous_1)
|
|
946
|
-
FNF:2
|
|
947
|
-
FNH:1
|
|
948
|
-
FNDA:1,logout
|
|
949
|
-
FNDA:0,(anonymous_1)
|
|
950
|
-
DA:1,1
|
|
951
|
-
DA:4,1
|
|
952
|
-
DA:10,1
|
|
953
|
-
DA:11,1
|
|
954
|
-
DA:13,0
|
|
955
|
-
LF:5
|
|
956
|
-
LH:4
|
|
957
|
-
BRF:0
|
|
958
|
-
BRH:0
|
|
959
|
-
end_of_record
|
|
960
|
-
TN:
|
|
961
|
-
SF:src\sso\web\auth\logout_by_session.ts
|
|
962
|
-
FN:11,logoutBySession
|
|
963
|
-
FN:14,(anonymous_1)
|
|
964
|
-
FNF:2
|
|
965
|
-
FNH:1
|
|
966
|
-
FNDA:1,logoutBySession
|
|
967
|
-
FNDA:0,(anonymous_1)
|
|
968
|
-
DA:1,1
|
|
969
|
-
DA:4,1
|
|
970
|
-
DA:11,1
|
|
971
|
-
DA:12,1
|
|
972
|
-
DA:14,0
|
|
973
|
-
LF:5
|
|
974
|
-
LH:4
|
|
975
|
-
BRF:0
|
|
976
|
-
BRH:0
|
|
977
|
-
end_of_record
|