weaver-work-cli 0.1.2 → 0.1.5
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 +176 -78
- package/dist/cmd/setup/index.js +5 -5
- package/dist/cmd/skills/index.js +1 -1
- package/dist/core/hooks.js +7 -0
- package/dist/index.js +0 -0
- package/dist/internal/e10/auth/commands.js +159 -54
- package/dist/internal/e10/auth/xiaoe.js +268 -0
- package/dist/internal/e10/context.js +16 -2
- package/dist/internal/e10/index.js +1 -0
- package/dist/internal/e10/request-runtime.js +345 -0
- package/dist/internal/skills/install.js +48 -6
- package/dist/internal/skills/reader.js +27 -0
- package/dist/shortcuts/archive/continuation.js +70 -0
- package/dist/shortcuts/archive/errors.js +53 -0
- package/dist/shortcuts/archive/host.js +197 -0
- package/dist/shortcuts/archive/index.js +363 -0
- package/dist/shortcuts/archive/manifest.js +45 -0
- package/dist/shortcuts/archive/operations/archive-info.js +55 -0
- package/dist/shortcuts/archive/operations/borrow-car.js +146 -0
- package/dist/shortcuts/archive/operations/borrow-list.js +200 -0
- package/dist/shortcuts/archive/operations/confirm.js +46 -0
- package/dist/shortcuts/archive/operations/download.js +238 -0
- package/dist/shortcuts/archive/operations/flow-url.js +240 -0
- package/dist/shortcuts/archive/operations/fonds.js +95 -0
- package/dist/shortcuts/archive/operations/getPageUrl.js +137 -0
- package/dist/shortcuts/archive/operations/registry.js +43 -0
- package/dist/shortcuts/archive/operations/search.js +88 -0
- package/dist/shortcuts/archive/operations/shared.js +120 -0
- package/dist/shortcuts/archive/operations/types.js +23 -0
- package/dist/shortcuts/archive/operations/upload.js +182 -0
- package/dist/shortcuts/archive/operations.js +13 -0
- package/dist/shortcuts/archive/render/search-format.js +276 -0
- package/dist/shortcuts/archive/render/search-view.js +125 -0
- package/dist/shortcuts/asset/continuation.js +70 -0
- package/dist/shortcuts/asset/errors.js +67 -0
- package/dist/shortcuts/asset/host.js +438 -0
- package/dist/shortcuts/asset/index.js +255 -0
- package/dist/shortcuts/asset/manifest.js +471 -0
- package/dist/shortcuts/asset/operations/query.js +249 -0
- package/dist/shortcuts/asset/operations/registry.js +85 -0
- package/dist/shortcuts/asset/operations/shared.js +100 -0
- package/dist/shortcuts/asset/operations/type-cache.js +49 -0
- package/dist/shortcuts/asset/operations/types.js +1 -0
- package/dist/shortcuts/asset/operations/viewlink.js +117 -0
- package/dist/shortcuts/asset/operations/write.js +435 -0
- package/dist/shortcuts/asset/operations.js +9 -0
- package/dist/shortcuts/calendar/continuation.js +70 -0
- package/dist/shortcuts/calendar/errors.js +53 -0
- package/dist/shortcuts/calendar/host.js +148 -0
- package/dist/shortcuts/calendar/index.js +125 -0
- package/dist/shortcuts/calendar/manifest.js +26 -0
- package/dist/shortcuts/calendar/operations/read.js +259 -0
- package/dist/shortcuts/calendar/operations/registry.js +31 -0
- package/dist/shortcuts/calendar/operations/shared.js +132 -0
- package/dist/shortcuts/calendar/operations/types.js +25 -0
- package/dist/shortcuts/calendar/operations/write.js +439 -0
- package/dist/shortcuts/calendar/operations.js +8 -0
- package/dist/shortcuts/ehr/continuation.js +70 -0
- package/dist/shortcuts/ehr/errors.js +53 -0
- package/dist/shortcuts/ehr/host.js +213 -0
- package/dist/shortcuts/ehr/index.js +205 -0
- package/dist/shortcuts/ehr/manifest.js +47 -0
- package/dist/shortcuts/ehr/operations/attend-read.js +373 -0
- package/dist/shortcuts/ehr/operations/attend-write.js +514 -0
- package/dist/shortcuts/ehr/operations/hr-contact.js +363 -0
- package/dist/shortcuts/ehr/operations/hr-ds.js +298 -0
- package/dist/shortcuts/ehr/operations/hr-report.js +386 -0
- package/dist/shortcuts/ehr/operations/recruit-write.js +1629 -0
- package/dist/shortcuts/ehr/operations/recruit.js +803 -0
- package/dist/shortcuts/ehr/operations/registry.js +43 -0
- package/dist/shortcuts/ehr/operations/salary.js +319 -0
- package/dist/shortcuts/ehr/operations/shared.js +246 -0
- package/dist/shortcuts/ehr/operations/types.js +25 -0
- package/dist/shortcuts/ehr/operations.js +25 -0
- package/dist/shortcuts/esb/continuation.js +70 -0
- package/dist/shortcuts/esb/errors.js +65 -0
- package/dist/shortcuts/esb/host.js +187 -0
- package/dist/shortcuts/esb/index.js +112 -0
- package/dist/shortcuts/esb/manifest.js +91 -0
- package/dist/shortcuts/esb/operations/input-format.js +31 -0
- package/dist/shortcuts/esb/operations/registry.js +48 -0
- package/dist/shortcuts/esb/operations/shared.js +152 -0
- package/dist/shortcuts/esb/operations/trigger.js +76 -0
- package/dist/shortcuts/esb/operations/types.js +21 -0
- package/dist/shortcuts/esb/operations.js +15 -0
- package/dist/shortcuts/fna/continuation.js +70 -0
- package/dist/shortcuts/fna/errors.js +59 -0
- package/dist/shortcuts/fna/host.js +146 -0
- package/dist/shortcuts/fna/index.js +111 -0
- package/dist/shortcuts/fna/manifest.js +41 -0
- package/dist/shortcuts/fna/operations/budget.js +124 -0
- package/dist/shortcuts/fna/operations/expense-center.js +148 -0
- package/dist/shortcuts/fna/operations/invoice-writeoff.js +212 -0
- package/dist/shortcuts/fna/operations/loan.js +195 -0
- package/dist/shortcuts/fna/operations/registry.js +35 -0
- package/dist/shortcuts/fna/operations/shared.js +210 -0
- package/dist/shortcuts/fna/operations/types.js +25 -0
- package/dist/shortcuts/fna/operations.js +19 -0
- package/dist/shortcuts/hrm/errors.js +38 -0
- package/dist/shortcuts/hrm/host.js +156 -0
- package/dist/shortcuts/hrm/index.js +111 -0
- package/dist/shortcuts/hrm/manifest.js +32 -0
- package/dist/shortcuts/hrm/operations/employee.js +338 -0
- package/dist/shortcuts/hrm/operations/org.js +110 -0
- package/dist/shortcuts/hrm/operations/position.js +176 -0
- package/dist/shortcuts/hrm/operations/registry.js +33 -0
- package/dist/shortcuts/hrm/operations/shared.js +143 -0
- package/dist/shortcuts/hrm/operations/types.js +23 -0
- package/dist/shortcuts/hrm/operations.js +19 -0
- package/dist/shortcuts/index.js +24 -0
- package/dist/shortcuts/invoice/host.js +99 -94
- package/dist/shortcuts/invoice/index.js +58 -59
- package/dist/shortcuts/invoice/manifest.js +200 -3
- package/dist/shortcuts/invoice/operations/browse-field.js +17 -0
- package/dist/shortcuts/invoice/operations/issuing.js +198 -0
- package/dist/shortcuts/invoice/operations/registry.js +17 -0
- package/dist/shortcuts/invoice/operations/reim.js +401 -0
- package/dist/shortcuts/invoice/operations/shared.js +247 -0
- package/dist/shortcuts/jiuchuanhui/cache.js +441 -0
- package/dist/shortcuts/jiuchuanhui/continuation.js +70 -0
- package/dist/shortcuts/jiuchuanhui/errors.js +59 -0
- package/dist/shortcuts/jiuchuanhui/host.js +159 -0
- package/dist/shortcuts/jiuchuanhui/index.js +109 -0
- package/dist/shortcuts/jiuchuanhui/manifest.js +469 -0
- package/dist/shortcuts/jiuchuanhui/operations/datajson.js +214 -0
- package/dist/shortcuts/jiuchuanhui/operations/esb.js +157 -0
- package/dist/shortcuts/jiuchuanhui/operations/generic.js +146 -0
- package/dist/shortcuts/jiuchuanhui/operations/registry.js +133 -0
- package/dist/shortcuts/jiuchuanhui/operations/shared.js +158 -0
- package/dist/shortcuts/jiuchuanhui/operations/types.js +1 -0
- package/dist/shortcuts/jiuchuanhui/operations.js +8 -0
- package/dist/shortcuts/mail/continuation.js +70 -0
- package/dist/shortcuts/mail/errors.js +53 -0
- package/dist/shortcuts/mail/host.js +182 -0
- package/dist/shortcuts/mail/index.js +519 -0
- package/dist/shortcuts/mail/manifest.js +38 -0
- package/dist/shortcuts/mail/operations/mail-blacklist.js +79 -0
- package/dist/shortcuts/mail/operations/mail-contacts.js +195 -0
- package/dist/shortcuts/mail/operations/mail-manage.js +335 -0
- package/dist/shortcuts/mail/operations/mail-read.js +508 -0
- package/dist/shortcuts/mail/operations/mail-send.js +474 -0
- package/dist/shortcuts/mail/operations/mail-sign.js +203 -0
- package/dist/shortcuts/mail/operations/mail-template.js +170 -0
- package/dist/shortcuts/mail/operations/registry.js +41 -0
- package/dist/shortcuts/mail/operations/shared.js +64 -0
- package/dist/shortcuts/mail/operations/types.js +27 -0
- package/dist/shortcuts/mail/operations.js +19 -0
- package/dist/shortcuts/meeting/continuation.js +70 -0
- package/dist/shortcuts/meeting/errors.js +63 -0
- package/dist/shortcuts/meeting/host.js +167 -0
- package/dist/shortcuts/meeting/index.js +123 -0
- package/dist/shortcuts/meeting/manifest.js +64 -0
- package/dist/shortcuts/meeting/operations/catalogs.js +58 -0
- package/dist/shortcuts/meeting/operations/change.js +242 -0
- package/dist/shortcuts/meeting/operations/conflicts.js +142 -0
- package/dist/shortcuts/meeting/operations/create.js +349 -0
- package/dist/shortcuts/meeting/operations/env.js +191 -0
- package/dist/shortcuts/meeting/operations/lifecycle.js +139 -0
- package/dist/shortcuts/meeting/operations/meetings.js +73 -0
- package/dist/shortcuts/meeting/operations/receipts.js +195 -0
- package/dist/shortcuts/meeting/operations/registry.js +47 -0
- package/dist/shortcuts/meeting/operations/rooms.js +132 -0
- package/dist/shortcuts/meeting/operations/shared.js +112 -0
- package/dist/shortcuts/meeting/operations/signs.js +41 -0
- package/dist/shortcuts/meeting/operations/types.js +25 -0
- package/dist/shortcuts/meeting/operations.js +19 -0
- package/dist/shortcuts/plan/continuation.js +70 -0
- package/dist/shortcuts/plan/errors.js +70 -0
- package/dist/shortcuts/plan/host.js +180 -0
- package/dist/shortcuts/plan/index.js +150 -0
- package/dist/shortcuts/plan/manifest.js +53 -0
- package/dist/shortcuts/plan/operations/link.js +256 -0
- package/dist/shortcuts/plan/operations/read.js +259 -0
- package/dist/shortcuts/plan/operations/registry.js +33 -0
- package/dist/shortcuts/plan/operations/shared.js +246 -0
- package/dist/shortcuts/plan/operations/types.js +49 -0
- package/dist/shortcuts/plan/operations/version.js +49 -0
- package/dist/shortcuts/plan/operations/write.js +710 -0
- package/dist/shortcuts/plan/operations.js +8 -0
- package/dist/shortcuts/yimiaoban/continuation.js +70 -0
- package/dist/shortcuts/yimiaoban/errors.js +61 -0
- package/dist/shortcuts/yimiaoban/host.js +469 -0
- package/dist/shortcuts/yimiaoban/index.js +271 -0
- package/dist/shortcuts/yimiaoban/manifest.js +28 -0
- package/dist/shortcuts/yimiaoban/operations/file-user.js +288 -0
- package/dist/shortcuts/yimiaoban/operations/group-read.js +477 -0
- package/dist/shortcuts/yimiaoban/operations/group-write.js +591 -0
- package/dist/shortcuts/yimiaoban/operations/msg-parse.js +429 -0
- package/dist/shortcuts/yimiaoban/operations/msg-sync.js +519 -0
- package/dist/shortcuts/yimiaoban/operations/msg-write.js +593 -0
- package/dist/shortcuts/yimiaoban/operations/person.js +102 -0
- package/dist/shortcuts/yimiaoban/operations/registry.js +38 -0
- package/dist/shortcuts/yimiaoban/operations/session.js +437 -0
- package/dist/shortcuts/yimiaoban/operations/shared.js +236 -0
- package/dist/shortcuts/yimiaoban/operations/types.js +27 -0
- package/dist/shortcuts/yimiaoban/operations/write-util.js +78 -0
- package/dist/shortcuts/yimiaoban/operations.js +8 -0
- package/docs/SKILL.md +11 -7
- package/docs/_catalog.md +28 -5
- package/docs/agent-invoice.md +19 -9
- package/docs/agent-skill-install.md +141 -22
- package/docs/calendar.md +87 -0
- package/docs/e10-auth.md +28 -9
- package/docs/ehr.md +186 -0
- package/docs/esb.md +64 -0
- package/docs/fna.md +72 -0
- package/docs/hrm.md +89 -0
- package/docs/invoice.md +61 -20
- package/docs/jiuchuanhui.md +131 -0
- package/docs/meeting.md +48 -0
- package/docs/operation-manual.md +443 -0
- package/docs/plan.md +82 -0
- package/docs/wenshuding.md +129 -0
- package/docs/yimiaoban.md +86 -0
- package/docs/ziguanjia.md +89 -0
- package/package.json +4 -4
- package/scripts/package-skill.mjs +127 -34
- package/scripts/postbuild.mjs +13 -0
- package/skill-template/business-info.json +16 -2
- package/skill-template/domains/calendar.md +15 -0
- package/skill-template/domains/esb.md +13 -0
- package/skill-template/domains/hrm.md +16 -0
- package/skill-template/domains/jiuchuanhui.md +23 -0
- package/skill-template/domains/jucailin.md +22 -0
- package/skill-template/domains/mail.md +21 -0
- package/skill-template/domains/meeting.md +3 -0
- package/skill-template/domains/plan.md +17 -0
- package/skill-template/domains/qiyecheng.md +17 -0
- package/skill-template/domains/shared.md +5 -3
- package/skill-template/domains/skill-maker.md +10 -0
- package/skill-template/domains/wenshuding.md +22 -0
- package/skill-template/domains/{invoice.md → yepiaotong.md} +4 -0
- package/skill-template/domains/yimiaoban.md +21 -0
- package/skill-template/domains/ziguanjia.md +21 -0
- package/skill-template/master-skill-template.md +12 -6
- package/skill-template/skill-template.md +26 -10
- package/skills/weaver-e10-calendar/SKILL.md +102 -0
- package/skills/weaver-e10-calendar/product.json +8 -0
- package/skills/weaver-e10-calendar/references/calendar-app-check.md +65 -0
- package/skills/weaver-e10-calendar/references/calendar-dict.md +55 -0
- package/skills/weaver-e10-calendar/references/calendar-query.md +70 -0
- package/skills/weaver-e10-calendar/references/calendar-write.md +97 -0
- package/skills/weaver-e10-calendar/references/source-manifest.json +54 -0
- package/skills/weaver-e10-esb/SKILL.md +103 -0
- package/skills/weaver-e10-esb/product.json +8 -0
- package/skills/weaver-e10-esb/references/input-format.md +52 -0
- package/skills/weaver-e10-esb/references/source-manifest.json +242 -0
- package/skills/weaver-e10-esb/references/trigger.md +99 -0
- package/skills/weaver-e10-hrm/SKILL.md +88 -0
- package/skills/weaver-e10-hrm/product.json +8 -0
- package/skills/weaver-e10-hrm/references/employee.md +109 -0
- package/skills/weaver-e10-hrm/references/org.md +95 -0
- package/skills/weaver-e10-hrm/references/position.md +95 -0
- package/skills/weaver-e10-hrm/references/source-manifest.json +121 -0
- package/skills/weaver-e10-jiuchuanhui/SKILL.md +175 -0
- package/skills/weaver-e10-jiuchuanhui/product.json +8 -0
- package/skills/weaver-e10-jiuchuanhui/references/cache.md +110 -0
- package/skills/weaver-e10-jiuchuanhui/references/clue.md +61 -0
- package/skills/weaver-e10-jiuchuanhui/references/contact-plan.md +56 -0
- package/skills/weaver-e10-jiuchuanhui/references/contact-records.md +48 -0
- package/skills/weaver-e10-jiuchuanhui/references/contact.md +56 -0
- package/skills/weaver-e10-jiuchuanhui/references/customer.md +69 -0
- package/skills/weaver-e10-jiuchuanhui/references/disabled-capabilities.md +24 -0
- package/skills/weaver-e10-jiuchuanhui/references/discovery-config.md +60 -0
- package/skills/weaver-e10-jiuchuanhui/references/general-helpers.md +59 -0
- package/skills/weaver-e10-jiuchuanhui/references/jiuchuanhui-entry.md +60 -0
- package/skills/weaver-e10-jiuchuanhui/references/sale.md +72 -0
- package/skills/weaver-e10-jiuchuanhui/references/source-manifest.json +2632 -0
- package/skills/weaver-e10-jucailin/SKILL.md +102 -0
- package/skills/weaver-e10-jucailin/product.json +8 -0
- package/skills/weaver-e10-jucailin/references/attend-read.md +73 -0
- package/skills/weaver-e10-jucailin/references/attend-write.md +82 -0
- package/skills/weaver-e10-jucailin/references/hr-contact.md +92 -0
- package/skills/weaver-e10-jucailin/references/hr-datasource.md +104 -0
- package/skills/weaver-e10-jucailin/references/hr-report.md +76 -0
- package/skills/weaver-e10-jucailin/references/recruit-read.md +76 -0
- package/skills/weaver-e10-jucailin/references/recruit-write.md +70 -0
- package/skills/weaver-e10-jucailin/references/safety-boundaries.md +35 -0
- package/skills/weaver-e10-jucailin/references/salary.md +110 -0
- package/skills/weaver-e10-jucailin/references/source-manifest.json +152 -0
- package/skills/weaver-e10-mail/SKILL.md +152 -0
- package/skills/weaver-e10-mail/product.json +8 -0
- package/skills/weaver-e10-mail/references/mail-agent-entry.md +47 -0
- package/skills/weaver-e10-mail/references/mail-attachment.md +30 -0
- package/skills/weaver-e10-mail/references/mail-blacklist.md +27 -0
- package/skills/weaver-e10-mail/references/mail-contacts.md +33 -0
- package/skills/weaver-e10-mail/references/mail-manage.md +44 -0
- package/skills/weaver-e10-mail/references/mail-read.md +76 -0
- package/skills/weaver-e10-mail/references/mail-send.md +43 -0
- package/skills/weaver-e10-mail/references/mail-sign.md +33 -0
- package/skills/weaver-e10-mail/references/mail-template.md +31 -0
- package/skills/weaver-e10-mail/references/safety-boundaries.md +32 -0
- package/skills/weaver-e10-meeting/SKILL.md +106 -0
- package/skills/weaver-e10-meeting/product.json +8 -0
- package/skills/weaver-e10-meeting/references/meeting-change.md +67 -0
- package/skills/weaver-e10-meeting/references/meeting-create.md +52 -0
- package/skills/weaver-e10-meeting/references/meeting-lifecycle.md +57 -0
- package/skills/weaver-e10-meeting/references/meeting-queries.md +61 -0
- package/skills/weaver-e10-meeting/references/meeting-receipts-signs.md +48 -0
- package/skills/weaver-e10-meeting/references/meeting-update.md +7 -0
- package/skills/weaver-e10-meeting/references/source-manifest.json +50 -0
- package/skills/weaver-e10-plan/SKILL.md +140 -0
- package/skills/weaver-e10-plan/product.json +8 -0
- package/skills/weaver-e10-plan/references/plan-collect-and-compose.md +123 -0
- package/skills/weaver-e10-plan/references/plan-overview-and-routing.md +138 -0
- package/skills/weaver-e10-plan/references/plan-report-query.md +154 -0
- package/skills/weaver-e10-plan/references/plan-report-remind.md +104 -0
- package/skills/weaver-e10-plan/references/plan-report-write.md +162 -0
- package/skills/weaver-e10-plan/references/source-manifest.json +858 -0
- package/skills/weaver-e10-qiyecheng/SKILL.md +119 -0
- package/skills/weaver-e10-qiyecheng/product.json +8 -0
- package/skills/weaver-e10-qiyecheng/references/budget.md +65 -0
- package/skills/weaver-e10-qiyecheng/references/catalog.md +56 -0
- package/skills/weaver-e10-qiyecheng/references/expense-center.md +51 -0
- package/skills/weaver-e10-qiyecheng/references/invoice-writeoff.md +57 -0
- package/skills/weaver-e10-qiyecheng/references/loan-management.md +59 -0
- package/skills/weaver-e10-qiyecheng/references/source-manifest.json +698 -0
- package/skills/weaver-e10-shared/SKILL.md +90 -0
- package/skills/weaver-e10-shared/references/e10-auth-and-session.md +127 -0
- package/skills/{weaver-work-cli-shared → weaver-e10-shared}/references/json-output-contract.md +34 -0
- package/skills/weaver-e10-shared/references/weaver-e10-installation.md +110 -0
- package/skills/weaver-e10-skill-maker/SKILL.md +78 -0
- package/skills/weaver-e10-skill-maker/product.json +8 -0
- package/skills/weaver-e10-skill-maker/references/business-skill-generation.md +124 -0
- package/skills/weaver-e10-skill-maker/references/detector-validation.md +101 -0
- package/skills/weaver-e10-skill-maker/references/module-cli-generation.md +230 -0
- package/skills/weaver-e10-skill-maker/references/post-generation-install.md +105 -0
- package/skills/weaver-e10-skill-maker/references/source-update-detection.md +261 -0
- package/skills/weaver-e10-skill-maker/references/weaver-skill-style.md +141 -0
- package/skills/weaver-e10-wenshuding/SKILL.md +158 -0
- package/skills/weaver-e10-wenshuding/product.json +8 -0
- package/skills/weaver-e10-wenshuding/references/archive-agent-entry.md +63 -0
- package/skills/weaver-e10-wenshuding/references/archive-borrow-car.md +52 -0
- package/skills/weaver-e10-wenshuding/references/archive-borrow-list.md +52 -0
- package/skills/weaver-e10-wenshuding/references/archive-disabled-capabilities.md +22 -0
- package/skills/weaver-e10-wenshuding/references/archive-download.md +48 -0
- package/skills/weaver-e10-wenshuding/references/archive-flow.md +46 -0
- package/skills/weaver-e10-wenshuding/references/archive-fonds.md +34 -0
- package/skills/weaver-e10-wenshuding/references/archive-info.md +33 -0
- package/skills/weaver-e10-wenshuding/references/archive-search.md +52 -0
- package/skills/weaver-e10-wenshuding/references/archive-upload.md +41 -0
- package/skills/weaver-e10-wenshuding/references/source-manifest.json +517 -0
- package/skills/weaver-e10-yepiaotong/SKILL.md +184 -0
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-add.md +1 -1
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-agent-entry.md +16 -9
- package/skills/weaver-e10-yepiaotong/references/invoice-browse-field-data.md +204 -0
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-delete.md +1 -1
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-detail.md +13 -5
- package/skills/weaver-e10-yepiaotong/references/invoice-disabled-capabilities.md +28 -0
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-download.md +9 -2
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-enterprise-list.md +12 -4
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-file-upload.md +9 -2
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-import.md +16 -7
- package/skills/weaver-e10-yepiaotong/references/invoice-issuing-examples.md +120 -0
- package/skills/weaver-e10-yepiaotong/references/invoice-issuing-field-rules.md +161 -0
- package/skills/weaver-e10-yepiaotong/references/invoice-issuing.md +99 -0
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-ocr-preview.md +12 -4
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-personal-list.md +12 -4
- package/skills/weaver-e10-yepiaotong/references/invoice-red.md +261 -0
- package/skills/weaver-e10-yepiaotong/references/invoice-reim.md +97 -0
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-update.md +1 -1
- package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/references/invoice-validation-preview.md +9 -2
- package/skills/weaver-e10-yepiaotong/references/reim-api-reference.md +1340 -0
- package/skills/weaver-e10-yepiaotong/references/reim-examples.md +845 -0
- package/skills/weaver-e10-yepiaotong/references/reim-expense-subject-rules.md +94 -0
- package/skills/weaver-e10-yepiaotong/references/reim-form-fill-rules.md +449 -0
- package/skills/weaver-e10-yepiaotong/references/reim-matching-rules.md +266 -0
- package/skills/weaver-e10-yepiaotong/references/reim-workflow.md +494 -0
- package/skills/weaver-e10-yepiaotong/references/source-manifest.json +1103 -0
- package/skills/weaver-e10-yimiaoban/SKILL.md +104 -0
- package/skills/weaver-e10-yimiaoban/product.json +8 -0
- package/skills/weaver-e10-yimiaoban/references/ding-write.md +68 -0
- package/skills/weaver-e10-yimiaoban/references/error-codes.md +85 -0
- package/skills/weaver-e10-yimiaoban/references/field-resolution.md +46 -0
- package/skills/weaver-e10-yimiaoban/references/file-user-i18n.md +54 -0
- package/skills/weaver-e10-yimiaoban/references/group-read.md +55 -0
- package/skills/weaver-e10-yimiaoban/references/group-write.md +72 -0
- package/skills/weaver-e10-yimiaoban/references/msg-read.md +59 -0
- package/skills/weaver-e10-yimiaoban/references/msg-write.md +64 -0
- package/skills/weaver-e10-yimiaoban/references/person.md +44 -0
- package/skills/weaver-e10-yimiaoban/references/safety-boundaries.md +61 -0
- package/skills/weaver-e10-yimiaoban/references/session-sysmsg.md +47 -0
- package/skills/weaver-e10-yimiaoban/references/source-manifest.json +485 -0
- package/skills/weaver-e10-ziguanjia/SKILL.md +163 -0
- package/skills/weaver-e10-ziguanjia/product.json +8 -0
- package/skills/weaver-e10-ziguanjia/references/source-manifest.json +147 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-agent-entry.md +65 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-create.md +45 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-depre.md +48 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-disabled-capabilities.md +22 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-purch.md +57 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-query.md +62 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-repair.md +83 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-resolve.md +49 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-return.md +70 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-update.md +45 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-use.md +60 -0
- package/skills/weaver-e10-ziguanjia/references/ziguanjia-viewlink.md +81 -0
- package/skills/weaver-work-cli-invoice/SKILL.md +0 -122
- package/skills/weaver-work-cli-invoice/references/invoice-disabled-capabilities.md +0 -26
- package/skills/weaver-work-cli-shared/SKILL.md +0 -63
- package/skills/weaver-work-cli-shared/references/e10-auth-and-session.md +0 -90
- package/skills/weaver-work-cli-shared/references/weaver-work-cli-installation.md +0 -73
- /package/skills/{weaver-work-cli-shared → weaver-e10-shared}/references/high-risk-write.md +0 -0
- /package/skills/{weaver-work-cli-invoice → weaver-e10-yepiaotong}/product.json +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# 人员解析
|
|
2
|
+
|
|
3
|
+
## 何时使用
|
|
4
|
+
|
|
5
|
+
发消息前确定接收人 uid/cid、把消息/群成员里的 uid 翻译成姓名、查某人的 uid 和部门。覆盖:
|
|
6
|
+
|
|
7
|
+
| operation | 用途 |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| `yimiaoban.person.resolve` | 按姓名/工号/手机/邮箱**模糊**查询在职员工 → uid/cid/部门 |
|
|
10
|
+
| `yimiaoban.person.resolveByIds` | 按 uid 批量解析 → 姓名/部门/岗位/cid(一次最多 100,超出自动分批) |
|
|
11
|
+
|
|
12
|
+
## 输入要点
|
|
13
|
+
|
|
14
|
+
- `person.resolve` 的 `name` 是模糊关键字,**多人命中必须列出候选让用户选**,不得自动取第一条。
|
|
15
|
+
- `person.resolveByIds` 入参字段是 **`ids`**(uid 列表,不要写成 `uids`);uid 是 uint64,必须按字符串传;一次最多 100,超出自会分批(CLI 保证)。
|
|
16
|
+
- 消歧展示、未匹配处理、上下文传递契约见 [`field-resolution.md`](field-resolution.md)。
|
|
17
|
+
|
|
18
|
+
## 命令
|
|
19
|
+
|
|
20
|
+
Windows PowerShell:
|
|
21
|
+
|
|
22
|
+
```powershell
|
|
23
|
+
weaver-work-cli --json yimiaoban run yimiaoban.person.resolve --input-json '{"name":"初四十九"}'
|
|
24
|
+
weaver-work-cli --json yimiaoban run yimiaoban.person.resolveByIds --input-json '{"ids":["100234","100235"]}'
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
macOS/Linux(bash/zsh):
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
weaver-work-cli --json yimiaoban run yimiaoban.person.resolve --input-json '{"name":"初四十九"}'
|
|
31
|
+
weaver-work-cli --json yimiaoban run yimiaoban.person.resolveByIds --input-json '{"ids":["100234","100235"]}'
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## 注意
|
|
35
|
+
|
|
36
|
+
- **人名解析一律走 hrm**(`/api/hrm/common/getEmployeeByIds`),禁止使用 IM 群成员接口返回的 `name` 字段展示姓名,也不得本地拼表。
|
|
37
|
+
- 返回的 uid/cid 直接用于发消息/拉单聊(作为 `fromUid`/`toUid` 等)。
|
|
38
|
+
- 模糊命中多人时按 `person.resolve` 返回列表向用户确认;重名场景以用户指定的工号/部门为准确认。
|
|
39
|
+
- **未匹配(`total=0`)直接告知用户姓名可能有误并停止**,禁止翻历史会话/相似名模糊搜索去猜人。
|
|
40
|
+
|
|
41
|
+
## 失败处理
|
|
42
|
+
|
|
43
|
+
- 无命中:`data.employees` 为空,告知用户换关键字(可尝试工号/手机号)。
|
|
44
|
+
- 只读操作,安全;认证失败参照共享规则。
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# 易秒办红线与边界
|
|
2
|
+
|
|
3
|
+
本文件汇总易秒办业务域**不可违反**的红线,供写操作/消息展示前自查。写协议(prepare→apply、continuation、停止条件)见 [`msg-write.md`](msg-write.md)、[`ding-write.md`](ding-write.md)、[`group-write.md`](group-write.md);共享层通用规则见 `weaver-work-cli-shared`。
|
|
4
|
+
|
|
5
|
+
## 红线(违规 = 必须停下说明,不绕过)
|
|
6
|
+
|
|
7
|
+
1. **请求体禁止操作人字段**:任何 operation 的输入都不接受 `user`/`sender`/`creator`/`operator` 等操作人字段;操作者由会话 `eteamsid` 识别。不要在入参里补这些字段,CLI 会直接拒绝(`forbidden_keys`)。
|
|
8
|
+
2. **人名一律走 hrm**:姓名解析(消息发送者、群成员、阅读人、@提及)只认 `yimiaoban.person.resolve`/`resolveByIds`(底层 `/api/hrm/common/getEmployeeByIds`)或消息行里的 hrm 姓名;**禁止用 IM 群成员接口返回的 `name` 字段**展示姓名,禁止本地猜测/拼表。
|
|
9
|
+
3. **uid/cid/群 id 非 0、按字符串传输**:uint64 必须字符串化;`0`、空串直接拒绝。
|
|
10
|
+
4. **不本地过滤、不隐式全量**:搜索/筛选一律服务端完成(`mask`/`cond`/`type` 等);拉历史/会话/系统消息默认单页,需要更多用返回锚点显式请求,**未经用户确认不得自动循环翻页拉全部**。
|
|
11
|
+
5. **时间范围查询转 id 区间**:单聊/群聊历史不支持服务端时间过滤,CLI 把 `from/to` 换算为消息 id 区间分页;跨天/全量拉取必须先与用户确认范围。
|
|
12
|
+
6. **消息展示完整不截断**:拉到的 `content` 完整展示,无论多长;不得自行截断/省略/改写正文。渲染表格时转义 `|`、保留换行提示(⏎)、媒体显示为 `[图片]/[视频]/[文件]名称` 且预览/下载链接保持可点击,必达消息保留 `[必达]` 前缀。
|
|
13
|
+
7. **写操作只认 CLI 签发的 continuation**:不手工拼、不复用、不跨操作;prepare 后 10 分钟有效;`apply` 不自动重试。
|
|
14
|
+
8. **禁止发送空白消息**:`txt` 为空或全空白(空格/换行)不算内容,CLI 直接返回 `content_required`,需提示用户提供非空内容。
|
|
15
|
+
9. **超时即失败**:普通请求超过 15 秒即视为失败(上传 15/60 秒),不再重试,向用户说明失败原因;禁止无限重试或静默换接口。
|
|
16
|
+
10. **未匹配不猜测**:人员/群未匹配(`total=0`/空)时直接告知「未找到『XX』,请确认名称是否正确」并停止。🔴 禁止翻历史会话、拉会话列表、按相似名/部分名模糊搜索去猜人,也不要推荐"可能的人"。
|
|
17
|
+
11. **禁止拉全量获取数量**:不允许通过逐页拉全量统计消息总数/会话总数等;触发此类需求(如"一共有多少条消息")直接回复「无法统计总数,功能暂时不支持」,不提供逐页全量变通。数量只基于当页返回(如当页 `total=N`)。
|
|
18
|
+
12. **数据对不上不得自行猜测**:接口返回与预期不符(返回 0 条/条数不符/字段缺失)时,按下面模板先给证据再让用户选方向;禁止自作主张换参数反复探测、换同类型接口或编造数据。
|
|
19
|
+
|
|
20
|
+
## 写链停止条件
|
|
21
|
+
|
|
22
|
+
遇到以下任一情况立即停止写流程,先向用户说明再做只读回查,不静默重试:
|
|
23
|
+
|
|
24
|
+
- 返回 `partial` / `write_uncertain`(结果未知)。
|
|
25
|
+
- 网络中断 / 超时(可安全重试的只有 prepare 这类纯只读准备)。
|
|
26
|
+
- `apply` 已发出但响应丢失。
|
|
27
|
+
- 回查手段:单聊/群聊用 `msg.sync.single`/`msg.sync.group`(`latest:true`)看是否已发出;群状态用 `group.info`/`group.users`;必达可用系统消息或群置顶辅助确认。
|
|
28
|
+
|
|
29
|
+
## 已知禁用边界
|
|
30
|
+
|
|
31
|
+
- 不实现"已读回执的主动标记/已处理系统消息"这类状态回写(CLI 未暴露,避免伪装处理)。
|
|
32
|
+
- 不支持删除/清空消息、编辑已发消息:只能撤回**本人**消息(`msg.withdraw`,有时限)。
|
|
33
|
+
- 不支持建非普通群(部门群/全员群/事项群等):`group.create` 只建普通群(type=0)。
|
|
34
|
+
- 不支持统计消息总数/会话总数(见红线 11),也不做消息统计分析/报表。
|
|
35
|
+
- 不支持定时推送、机器人托管、自动回复;跨平台 IM(企业微信/钉钉/邮件)请改用对应技能,不代为调用。
|
|
36
|
+
- 不支持"按接口未支持的字段做本地过滤"(免打扰/未读/发送人等):接口不支持就如实告知,引导改用原生参数(`flag`/`deal`/`type` 等)。
|
|
37
|
+
- 移动端打卡、定位、设备凭证等与本域无关,不在此列。
|
|
38
|
+
- `schema` 之外的接口路径一律不可直接调用;禁止 Agent 绕过 CLI 拼 `/api/em/msg/executeIm/...` 等原始请求。
|
|
39
|
+
|
|
40
|
+
## 数据对不上提问模板(配合红线 12)
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
已确认事实:<接口返回码、条数、关键字段>(如「querySysMsgInfo group=110 返回 code=0,0 条」)
|
|
44
|
+
差异:接口返回 <X>,会话/预期显示 <Y>(如「会话列表显示未读 58 条」)
|
|
45
|
+
可能方向(需你选择,我不替你决定):A <方向1> B <方向2> C <方向3>
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## 常见错误码速查
|
|
49
|
+
|
|
50
|
+
| 码/type | 含义 | 处理 |
|
|
51
|
+
| --- | --- | --- |
|
|
52
|
+
| `1303` | 无聊天记录 | 按成功空列表(看 `emptyReason`),不报错 |
|
|
53
|
+
| `1209` / 群不存在 | 群不可读/已解散 | 告知用户 |
|
|
54
|
+
| `forbidden_keys` | 传了操作人字段 | 去掉后重试(说明红线) |
|
|
55
|
+
| `context_mismatch` / `continuation_expired` | 会话/租户或超时变化 | 重新 prepare |
|
|
56
|
+
| `target_changed` | prepare 后目标/内容指纹变化 | 重新 prepare |
|
|
57
|
+
| `members_resolve_failed` | 成员 hrm 解析失败 | 列失败项,问是否 `removeFailed:true` |
|
|
58
|
+
| `source_not_found` / `source_invalid` / `unread_empty` | 转必达源消息缺失/无未读人员 | 说明后由用户决定是否改发全员 |
|
|
59
|
+
| `content_required` / `content_conflict` | 内容为空或同时传了 img+file | 补非空内容/一次只发一种媒体 |
|
|
60
|
+
| `output_exists` / `output_parent_missing` | `file.download` 目标已存在/父目录不存在 | 换路径或先建目录,不覆盖既有文件 |
|
|
61
|
+
| 其他码(群 12xx / 消息 15xx / 数据 13xx) | — | 对照 [`error-codes.md`](error-codes.md) 解释并告知用户 |
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# 会话列表与系统消息
|
|
2
|
+
|
|
3
|
+
## 何时使用
|
|
4
|
+
|
|
5
|
+
用户要"看我的会话/最近聊天"(单聊、群聊、系统消息入口);查"系统消息/流程待办通知/审批提醒"等 IM 系统消息。
|
|
6
|
+
|
|
7
|
+
| operation | 用途 |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| `yimiaoban.session.list` | 拉当前用户会话列表(单聊/群聊/系统消息,名称与副标题已解析) |
|
|
10
|
+
| `yimiaoban.sysmsg.groupSearch` | 按名称搜系统消息分组/类型配置(供 query 使用) |
|
|
11
|
+
| `yimiaoban.sysmsg.typeSync` | 按 gids/tids 拉系统消息分组/类型配置 |
|
|
12
|
+
| `yimiaoban.sysmsg.query` | 拉系统消息(流程/任务/公文等),支持阅读维度/处理状态/时间范围/单页倒序 |
|
|
13
|
+
|
|
14
|
+
## 输入要点
|
|
15
|
+
|
|
16
|
+
- `session.list`:`num` 默认 20 上限 50;`flag` 0 up+down / 1 up / 2 down(默认 2,从最新拉);`msgid` 锚点实现翻页(取上页边界消息 id);`type` 只过滤该 session_type;`around` 表示锚点附近上下各半。
|
|
17
|
+
- 会话返回带 `sessionTypeName`(单聊/群聊/系统消息)、`name`(单聊=对方姓名、群聊=群名、系统=分组名)、`unread`(来自 `unread_count`)、`unreadLabel`(免打扰会话显示 `N(免打扰)`)、`time`(会话更新时间)、`subtitle`(发送者:最近消息内容)、`lastMsgid`(下一页锚点 `nextMsgid`)。
|
|
18
|
+
- `sysmsg.groupSearch` 用名称找分组/类型(流程/待办/公告等),返回 gid/tid 供 `typeSync` 与 `query`。
|
|
19
|
+
- `sysmsg.query`:**必填 `group`(系统分组 id,来自 `groupSearch`/会话列表)**,可选 `type`(消息类型 id)、`flag`(0 不分已读未读/1 已读/2 未读)、`deal`(0 全部/1 未处理/2 已处理)、`num`(默认 20、上限 50)、时间范围 `from`/`to`/`latest`、显式 `start`/`end`。系统消息"已读/处理"类状态更新在需要时由 Agent 引导用户到易秒办处理,CLI 不伪装处理。
|
|
20
|
+
|
|
21
|
+
## 命令
|
|
22
|
+
|
|
23
|
+
Windows PowerShell:
|
|
24
|
+
|
|
25
|
+
```powershell
|
|
26
|
+
weaver-work-cli --json yimiaoban run yimiaoban.session.list --input-json '{"num":20}'
|
|
27
|
+
weaver-work-cli --json yimiaoban run yimiaoban.sysmsg.query --input-json '{"group":110,"num":20,"flag":2}'
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
macOS/Linux(bash/zsh):
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
weaver-work-cli --json yimiaoban run yimiaoban.session.list --input-json '{"num":20}'
|
|
34
|
+
weaver-work-cli --json yimiaoban run yimiaoban.sysmsg.query --input-json '{"group":110,"num":20,"flag":2}'
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## 输出处理
|
|
38
|
+
|
|
39
|
+
- 会话列表渲染:单聊/群聊显示名称(走 hrm/群信息),系统消息显示分组名;副标题按类型给最近消息预览,媒体会话显示 `[图片]xxx.png`/`[文件]xxx.pdf` 形式,必达消息保留 `[必达]` 前缀。
|
|
40
|
+
- 列表结果大时按共享规则汇总(只给关键列 + 总数),不要整表倾倒;按需翻页。
|
|
41
|
+
- `sysmsg.query` 返回 `dealMode`:`true` 表示该分组以**处理状态**为准(`statusLabel` = 已处理/未处理),`false` 表示以**阅读状态**为准(已读/未读);`title` 为系统消息标题(如流程标题),展示时标题一行、内容一行。
|
|
42
|
+
|
|
43
|
+
## 失败处理
|
|
44
|
+
|
|
45
|
+
- `sysmsg.*` 的分组/类型 id 必须来自 `groupSearch`/`typeSync` 返回,禁止编造 gid/tid。
|
|
46
|
+
- 会话/系统消息为空:返回空列表,正常。
|
|
47
|
+
- 认证/上下文错误参照共享规则。
|
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"skill": "weaver-e10-yimiaoban",
|
|
4
|
+
"generatedFrom": {
|
|
5
|
+
"sourceSkill": "weaver-e10-yimiaoban",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"path": "installed-agent-skill: weaver-e10-yimiaoban",
|
|
8
|
+
"kind": "existing-agent-skill"
|
|
9
|
+
},
|
|
10
|
+
"generatedAt": "2026-09-08",
|
|
11
|
+
"scope": {
|
|
12
|
+
"included": [
|
|
13
|
+
"person",
|
|
14
|
+
"msg",
|
|
15
|
+
"ding",
|
|
16
|
+
"group",
|
|
17
|
+
"session",
|
|
18
|
+
"sysmsg",
|
|
19
|
+
"file",
|
|
20
|
+
"user",
|
|
21
|
+
"i18n"
|
|
22
|
+
],
|
|
23
|
+
"excluded": [],
|
|
24
|
+
"excludedReason": ""
|
|
25
|
+
},
|
|
26
|
+
"notes": [
|
|
27
|
+
"源 skill weaver-e10-yimiaoban 1.0.0 的 46 个脚本已逐一对齐为 weaver-work-cli yimiaoban 的 operation(含 write prepare/apply 与 file.download)。",
|
|
28
|
+
"本清单记录源资料指纹;源资料更新时按 source-update-detection 流程复核 CLI 行为,成员/媒体/会话字段口径以源脚本为准。"
|
|
29
|
+
],
|
|
30
|
+
"sourceFiles": [
|
|
31
|
+
{
|
|
32
|
+
"path": "weaver-e10-yimiaoban/README.md",
|
|
33
|
+
"size": 8048,
|
|
34
|
+
"sha256": "dc12d66a533d8c81f00f548e13e15c26d5c7aab87dac005641076f5b27ea15c9"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"path": "weaver-e10-yimiaoban/references/catalog.md",
|
|
38
|
+
"size": 3037,
|
|
39
|
+
"sha256": "9f57bddda0661a8339f9df550330cb88fb65b04c88c3a2dbcc7a050d9900230f"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "weaver-e10-yimiaoban/references/error-codes.md",
|
|
43
|
+
"size": 4302,
|
|
44
|
+
"sha256": "dc6dd50385f9f7396e7da8e1442e22617db2dc8987cb34dcf27850b18257ec94"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"path": "weaver-e10-yimiaoban/references/field-resolution.md",
|
|
48
|
+
"size": 2517,
|
|
49
|
+
"sha256": "2a4cdd1112a9e795684a666c1b9e18f60c1138f1e6bda3f4ca2f519a4c3f0173"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"path": "weaver-e10-yimiaoban/references/im-checkGroupExist.md",
|
|
53
|
+
"size": 1158,
|
|
54
|
+
"sha256": "003199e538cd52ab0ce50ca811738099400b219d5affc8a62714c32b500655c2"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "weaver-e10-yimiaoban/references/im-checkGroupUserExist.md",
|
|
58
|
+
"size": 1595,
|
|
59
|
+
"sha256": "1cba65c5d93fd290d0bc28eb79a11546c2c2121495c0be96fcd4d78b1ea51c5b"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"path": "weaver-e10-yimiaoban/references/im-destroyGroup.md",
|
|
63
|
+
"size": 1146,
|
|
64
|
+
"sha256": "a06bb2753f7db9994a792a5e6f14d460e1a415873932eda7a4d41c63b7c69611"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"path": "weaver-e10-yimiaoban/references/im-exitGroup.md",
|
|
68
|
+
"size": 1206,
|
|
69
|
+
"sha256": "f32f2729f15210586a43cd64a3df0d1ce9db6586eca6b16508c61e8c98a0a1d0"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"path": "weaver-e10-yimiaoban/references/im-file-upload.md",
|
|
73
|
+
"size": 5163,
|
|
74
|
+
"sha256": "8127b57a480f9dc74fa85438611c9b96a33f5acf2bea2867c9abac9d0d0f3a02"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"path": "weaver-e10-yimiaoban/references/im-getGroupAdminBatch.md",
|
|
78
|
+
"size": 1334,
|
|
79
|
+
"sha256": "372b3498947ade92604ae148b740a9b0de0f19d402411ae982c576963ff20e91"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"path": "weaver-e10-yimiaoban/references/im-getGroupAnnounce.md",
|
|
83
|
+
"size": 1635,
|
|
84
|
+
"sha256": "49e281278eab8900d30074f02092971469045617eceb5ecd12804b6f7fca94e1"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"path": "weaver-e10-yimiaoban/references/im-getGroupAnnounceList.md",
|
|
88
|
+
"size": 1708,
|
|
89
|
+
"sha256": "3f199388b01770c47cecb576ca9c1a311b176ed06ed772e5a794fd0d6266f8c5"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"path": "weaver-e10-yimiaoban/references/im-getGroupMsgReadStatus.md",
|
|
93
|
+
"size": 2180,
|
|
94
|
+
"sha256": "8c82c594fcd596a7454db543ef883fc41b2bfd089783fba2179a1bdb2cc123ea"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"path": "weaver-e10-yimiaoban/references/im-getGroupUsers.md",
|
|
98
|
+
"size": 3113,
|
|
99
|
+
"sha256": "c1b5751a6a0ba25f15c19ac68be1203f36e4d184759b9ddee80d554e89c78047"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"path": "weaver-e10-yimiaoban/references/im-getSessionContext.md",
|
|
103
|
+
"size": 11033,
|
|
104
|
+
"sha256": "0753c8fbf4278b0703e103fd885ed0c56091b69c5257f25a6b2a42137fbc3b69"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"path": "weaver-e10-yimiaoban/references/im-getSingleMsgReadStatus.md",
|
|
108
|
+
"size": 1902,
|
|
109
|
+
"sha256": "bdc04cdf2bf588378a7685cb5d414233858401bff7c0a4cf7cd39aee8116d6de"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"path": "weaver-e10-yimiaoban/references/im-group-onoff-bits.md",
|
|
113
|
+
"size": 4308,
|
|
114
|
+
"sha256": "fbf13d3f612c3102df61bbf2739c932875cb87091b878471d861034250336fc0"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "weaver-e10-yimiaoban/references/im-groupCreate.md",
|
|
118
|
+
"size": 3378,
|
|
119
|
+
"sha256": "5bf93616b3c11e991c4d056b8983da4223f2d85ff03bd5f15cbd977c271ce770"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"path": "weaver-e10-yimiaoban/references/im-i18nLabel.md",
|
|
123
|
+
"size": 4295,
|
|
124
|
+
"sha256": "96db3e089cb905f77b44633ed05273d4ece1ca18e71beeedfa3927fc15815ed6"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"path": "weaver-e10-yimiaoban/references/im-img-preview.md",
|
|
128
|
+
"size": 7358,
|
|
129
|
+
"sha256": "6135843b0e260d55a6c41e300555c1bcf3d81b8713af1ffa93668cc5ed24581c"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"path": "weaver-e10-yimiaoban/references/im-inviteGroupUsers.md",
|
|
133
|
+
"size": 1564,
|
|
134
|
+
"sha256": "3e1731415117abe4591a85093ec3d93acf58d76a046915e399cfae18f50d07f5"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"path": "weaver-e10-yimiaoban/references/im-joinGroup.md",
|
|
138
|
+
"size": 3436,
|
|
139
|
+
"sha256": "0be0c7bb7e8abc4db49e7e20d44219d4a94d718208b1313e0d262a9286368abb"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"path": "weaver-e10-yimiaoban/references/im-kickGroupUsers.md",
|
|
143
|
+
"size": 1469,
|
|
144
|
+
"sha256": "0f0ef8da2e350ec3f38a60dd95920378481a3157a374a9e3ac5b7093cda67d84"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"path": "weaver-e10-yimiaoban/references/im-modGroupAnnounce.md",
|
|
148
|
+
"size": 2375,
|
|
149
|
+
"sha256": "471f646426c3e1372d077fe68d5900b82bf8c42118ee1c517bd7162b918f3082"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"path": "weaver-e10-yimiaoban/references/im-modGroupInfo.md",
|
|
153
|
+
"size": 5531,
|
|
154
|
+
"sha256": "f0a8afb01927a8ba83ae83a791091e691073eee960730f4aa90f1f8955e7838d"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"path": "weaver-e10-yimiaoban/references/im-modifyGroupInfo.md",
|
|
158
|
+
"size": 4812,
|
|
159
|
+
"sha256": "45300dff0add5f950c1f9f28fa771062b89cb103170cf8a8acc805f25805636d"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"path": "weaver-e10-yimiaoban/references/im-msg-kind-mkind.md",
|
|
163
|
+
"size": 3652,
|
|
164
|
+
"sha256": "4d7ebe3f3fc9c4a16875350b632c8e8ba71b80c47a3bab183438902f22fe742b"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"path": "weaver-e10-yimiaoban/references/im-queryGroupInfo.md",
|
|
168
|
+
"size": 3810,
|
|
169
|
+
"sha256": "b69d8d9e6819f72be481e515196b529ebb15430e282751d5dcd22086c8f8e5cb"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"path": "weaver-e10-yimiaoban/references/im-querySysMsgInfo.md",
|
|
173
|
+
"size": 8461,
|
|
174
|
+
"sha256": "00663a9df23db1d386cf1fda17e4d99991ab4343d1df97c10e7c08c0baca46f4"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"path": "weaver-e10-yimiaoban/references/im-resolveUserByIds.md",
|
|
178
|
+
"size": 4899,
|
|
179
|
+
"sha256": "73810b611d0d7287118d796381bb19583fc418d8a44013e82999adb480c08d89"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"path": "weaver-e10-yimiaoban/references/im-resolveUserCidUid.md",
|
|
183
|
+
"size": 3969,
|
|
184
|
+
"sha256": "e653cc8882c8eec1e174bedeb72a31eb2a46ec3e62d91b6baf8d44d16f1b7f3f"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"path": "weaver-e10-yimiaoban/references/im-searchGroup.md",
|
|
188
|
+
"size": 10943,
|
|
189
|
+
"sha256": "1bfd35cb98911cd8e2cfc2afc29ce92d35f4055bc93a77bf74eb2f9fdca728be"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"path": "weaver-e10-yimiaoban/references/im-searchSysMsgGroup.md",
|
|
193
|
+
"size": 3479,
|
|
194
|
+
"sha256": "04b97f4f8e34300952202159a2d9743d8543e7db0c41139ff2d105f92c55f9e3"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"path": "weaver-e10-yimiaoban/references/im-sendDing.md",
|
|
198
|
+
"size": 6720,
|
|
199
|
+
"sha256": "a6ae6857843ef27fac80646db702d1ed0a09a3cf67632828a0c975b36320a3df"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"path": "weaver-e10-yimiaoban/references/im-sendGroupMsg.md",
|
|
203
|
+
"size": 5585,
|
|
204
|
+
"sha256": "53e0e7c3198a04026465af9e0b61c2e1bcdce597051966e244059f19c84f88ba"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"path": "weaver-e10-yimiaoban/references/im-sendSingleMsg.md",
|
|
208
|
+
"size": 5286,
|
|
209
|
+
"sha256": "662a8dc1120293313f021a17249ee03a1e3068ad9db8a7937d7c8757951a8cbc"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"path": "weaver-e10-yimiaoban/references/im-setGroupTopMsg.md",
|
|
213
|
+
"size": 2219,
|
|
214
|
+
"sha256": "6b0a8a81251def44da66386925a542d3da6bcafcf7b6324da012596d0ed038cd"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"path": "weaver-e10-yimiaoban/references/im-syncGroupMsg.md",
|
|
218
|
+
"size": 8137,
|
|
219
|
+
"sha256": "c2056482b5145e90319dffca9f886a0f63a3c338228635f9bfd841760955a963"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"path": "weaver-e10-yimiaoban/references/im-syncGroupReadStatus.md",
|
|
223
|
+
"size": 2503,
|
|
224
|
+
"sha256": "12f1642ea8ab9160267234bd056ec3a5ea0837d8a0ff5eb587f7efe44112192b"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"path": "weaver-e10-yimiaoban/references/im-syncGroupTopMsg.md",
|
|
228
|
+
"size": 2495,
|
|
229
|
+
"sha256": "3ae1815e530572ed93f73efc35d305bab0e101cccd5de1c97a9f52a83663fd31"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"path": "weaver-e10-yimiaoban/references/im-syncGroupType.md",
|
|
233
|
+
"size": 3415,
|
|
234
|
+
"sha256": "59122cb6c8027f6a4824ebb2073b1b60c05285ba2c697c1e36c8e4d85e1b1998"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"path": "weaver-e10-yimiaoban/references/im-syncSingleMsg.md",
|
|
238
|
+
"size": 6941,
|
|
239
|
+
"sha256": "85098b24b65b0effe53ee9fb58bfcf5fa2f0c35f0921c6c89b01bffd04394296"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"path": "weaver-e10-yimiaoban/references/im-syncUserState.md",
|
|
243
|
+
"size": 2978,
|
|
244
|
+
"sha256": "e0a7b6bdfb80c8a7a0144cd766a2165dd13a1b3e79908a83de9732c193867ee3"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"path": "weaver-e10-yimiaoban/references/im-sysmsg-fields.md",
|
|
248
|
+
"size": 7050,
|
|
249
|
+
"sha256": "81d8a95e052b816be8a64e342d53ee28714f9e185abd285d20eab29ca939a4bb"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"path": "weaver-e10-yimiaoban/references/im-withdrawMsg.md",
|
|
253
|
+
"size": 4135,
|
|
254
|
+
"sha256": "601b501dbaa079741d74689e3c525ac0af89a2524b09fbd1db1e2a7c9768b1b6"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"path": "weaver-e10-yimiaoban/scripts/checkGroupExist.js",
|
|
258
|
+
"size": 2432,
|
|
259
|
+
"sha256": "e882b9fcc22808f2e575273ea86bd999c0b08eab667dea4d3e927746f392c5e5"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"path": "weaver-e10-yimiaoban/scripts/checkGroupUserExist.js",
|
|
263
|
+
"size": 2832,
|
|
264
|
+
"sha256": "ad0834fabaaafea1c46cf6d68bd76aba0ee4dc7c8b69563cfe01ecedcc2c9239"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"path": "weaver-e10-yimiaoban/scripts/common.js",
|
|
268
|
+
"size": 57747,
|
|
269
|
+
"sha256": "54896bfbc4c39d09af60904bce09ac12496f368136eee42665a2b3f85c2d920c"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"path": "weaver-e10-yimiaoban/scripts/destroyGroup.js",
|
|
273
|
+
"size": 1055,
|
|
274
|
+
"sha256": "b689ca632926dc08585e09a388eec9f6725e4ffd785e4f3e45dcf276a8cabdb2"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"path": "weaver-e10-yimiaoban/scripts/exitGroup.js",
|
|
278
|
+
"size": 1040,
|
|
279
|
+
"sha256": "fb03f3e8a2329eef3fea8d1854d9f458ee107a48c384bbd8f4f27161d8c3798e"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"path": "weaver-e10-yimiaoban/scripts/getGroupAdminBatch.js",
|
|
283
|
+
"size": 3415,
|
|
284
|
+
"sha256": "ef91db6493262a715f076fffc1cad5ef8a118a44f7f4cb4924d03a84b41ca5bf"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"path": "weaver-e10-yimiaoban/scripts/getGroupAnnounce.js",
|
|
288
|
+
"size": 3026,
|
|
289
|
+
"sha256": "12a2fd1bb06702b32c85863a99a65b02708a5040420dc702f029968949705d61"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"path": "weaver-e10-yimiaoban/scripts/getGroupAnnounceList.js",
|
|
293
|
+
"size": 3799,
|
|
294
|
+
"sha256": "d2f6d676571f811863d705b1d1e0af3ee70fa49801331ea73aea5fc1ecf4f168"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"path": "weaver-e10-yimiaoban/scripts/getGroupMsgReadStatus.js",
|
|
298
|
+
"size": 3243,
|
|
299
|
+
"sha256": "cd4fc4e79d433e221b6d12ba4bcfed3fefd88056668425425d6db6493b8e8ebf"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"path": "weaver-e10-yimiaoban/scripts/getGroupUsers.js",
|
|
303
|
+
"size": 4500,
|
|
304
|
+
"sha256": "0e10b9643624ab328d0086d1a51b2e5f993c1728a511839e168935458c54c785"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"path": "weaver-e10-yimiaoban/scripts/getSessionContext.js",
|
|
308
|
+
"size": 16784,
|
|
309
|
+
"sha256": "c0174ae4a9355aa6d69a8cb31ff0ec256fb21a2ba6958c0cceda16480a6c913e"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"path": "weaver-e10-yimiaoban/scripts/getSingleMsgReadStatus.js",
|
|
313
|
+
"size": 3620,
|
|
314
|
+
"sha256": "7d22292e4c1fe573a3618180f7f3a74db47ff6bebd9658e1c4f5547bb6b506a9"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"path": "weaver-e10-yimiaoban/scripts/groupCreate.js",
|
|
318
|
+
"size": 6861,
|
|
319
|
+
"sha256": "c62128c82e90d6b3d438ae6323bdb4ca5cca38f7280e3b445fca324de0d7aade"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"path": "weaver-e10-yimiaoban/scripts/i18nLabel.js",
|
|
323
|
+
"size": 1690,
|
|
324
|
+
"sha256": "08ba2262f2c2cf8cc8997b023ec57c439b1bd81168f1fb71068a5fb7a644cbbe"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"path": "weaver-e10-yimiaoban/scripts/inviteGroupUsers.js",
|
|
328
|
+
"size": 2451,
|
|
329
|
+
"sha256": "714e9d7c0ee638fab43056a306ba856352ed49b13239f81674dda1ac767f9f3b"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"path": "weaver-e10-yimiaoban/scripts/joinGroup.js",
|
|
333
|
+
"size": 2617,
|
|
334
|
+
"sha256": "10a91f5739854d5889e4b2f18dc1abc9e37af3f70e882bbb1f1fba1c29a040fa"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"path": "weaver-e10-yimiaoban/scripts/kickGroupUsers.js",
|
|
338
|
+
"size": 2438,
|
|
339
|
+
"sha256": "93eba17a1fc6c44e71dc5f2d67667e452ef908704a401d55b88922ced8833fbf"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"path": "weaver-e10-yimiaoban/scripts/modGroupAnnounce.js",
|
|
343
|
+
"size": 3209,
|
|
344
|
+
"sha256": "a5c45509f024b6514eacfcd4d88e5657c9814522009d116026953e33f19b21b5"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"path": "weaver-e10-yimiaoban/scripts/modGroupInfo.js",
|
|
348
|
+
"size": 7054,
|
|
349
|
+
"sha256": "cb9f5c7e4b084218ba53f4e9338b1d532061ccb24fe1f834a36e06665f0f00e1"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"path": "weaver-e10-yimiaoban/scripts/modifyGroupInfo.js",
|
|
353
|
+
"size": 5637,
|
|
354
|
+
"sha256": "18f4dc141f143fd3afc8f682deee4e3cf9935967c57b4572e483286f54bc68af"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"path": "weaver-e10-yimiaoban/scripts/msgParser.js",
|
|
358
|
+
"size": 20587,
|
|
359
|
+
"sha256": "58da3562e0b970cc18fb19044bb04727647ca624d532723104f92ed7eb38fe33"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"path": "weaver-e10-yimiaoban/scripts/previewImg.js",
|
|
363
|
+
"size": 3326,
|
|
364
|
+
"sha256": "265bdddcd303bc287c5818759005484b414cdc6591837518c98a594eada9db11"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"path": "weaver-e10-yimiaoban/scripts/previewVideo.js",
|
|
368
|
+
"size": 3004,
|
|
369
|
+
"sha256": "9650a14ed8ce1039f1926aebb9d29d8d2b0b678bf9873940a7dd44a03dadc81c"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"path": "weaver-e10-yimiaoban/scripts/queryGroupInfo.js",
|
|
373
|
+
"size": 3512,
|
|
374
|
+
"sha256": "5c61c04e6e8f8c62d0b38912f047e06d22d767a7b33cd85b1e3b427ee68c9e3b"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"path": "weaver-e10-yimiaoban/scripts/querySysMsgInfo.js",
|
|
378
|
+
"size": 13100,
|
|
379
|
+
"sha256": "91cc1a0d5d74bf1c80edeea3fae8e8dd4d8a2428699d490291b8799612646ef9"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"path": "weaver-e10-yimiaoban/scripts/resolveUser.js",
|
|
383
|
+
"size": 2910,
|
|
384
|
+
"sha256": "b70c5b4305322f380e7862d6ab5e5f3e85634f18b0fb02c7968fb0b34e11b864"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"path": "weaver-e10-yimiaoban/scripts/resolveUserByIds.js",
|
|
388
|
+
"size": 2413,
|
|
389
|
+
"sha256": "b65833046750bf74bcb170d956089aa34e71737a0ba723d5c06d8ed15395a93e"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"path": "weaver-e10-yimiaoban/scripts/searchGroup.js",
|
|
393
|
+
"size": 5273,
|
|
394
|
+
"sha256": "6e3117fcf9cce992ddc3420b517b6fafe547213eb7be0e3871a3897416682b1f"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"path": "weaver-e10-yimiaoban/scripts/searchSysMsgGroup.js",
|
|
398
|
+
"size": 2891,
|
|
399
|
+
"sha256": "20bd15f816b6c88661bf135910040edc0eb4827dc7ec25843815f0c8f065c75e"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"path": "weaver-e10-yimiaoban/scripts/sendDing.js",
|
|
403
|
+
"size": 15798,
|
|
404
|
+
"sha256": "f7d868e34339b4be8bbcd977d5b03bd538b72619178c0c4df7efede4ed6ceb96"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"path": "weaver-e10-yimiaoban/scripts/sendGroupMsg.js",
|
|
408
|
+
"size": 2124,
|
|
409
|
+
"sha256": "d7771961eaf2add459f144e2972157e3ec528ae016804a96df654f3c2ebb5323"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"path": "weaver-e10-yimiaoban/scripts/sendSingleMsg.js",
|
|
413
|
+
"size": 2599,
|
|
414
|
+
"sha256": "74346911b4291d3c0d063e9d45eae72bacf43c9ace2016c58013404f31328ed5"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"path": "weaver-e10-yimiaoban/scripts/setGroupTopMsg.js",
|
|
418
|
+
"size": 2240,
|
|
419
|
+
"sha256": "bf5daca1407bf8e79578555385180b9dc9c64fbbd19b3ae9605bcfa465cd6bb1"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"path": "weaver-e10-yimiaoban/scripts/syncGroupMsg.js",
|
|
423
|
+
"size": 15084,
|
|
424
|
+
"sha256": "5ac29fb66e1c0a12c12ff12a00bef4c6535b36464fb34c8dc406d091caf72c88"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"path": "weaver-e10-yimiaoban/scripts/syncGroupReadStatus.js",
|
|
428
|
+
"size": 3745,
|
|
429
|
+
"sha256": "46935fbaf6b81d4bf841d80f9a36f4c68646f174d257b48904228b505d12c7cc"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"path": "weaver-e10-yimiaoban/scripts/syncGroupTopMsg.js",
|
|
433
|
+
"size": 5180,
|
|
434
|
+
"sha256": "40fece3eb4afe3e82f0716f42deb7833ade87d82bea99de7202273c92d4b6862"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"path": "weaver-e10-yimiaoban/scripts/syncGroupType.js",
|
|
438
|
+
"size": 2707,
|
|
439
|
+
"sha256": "d76467148a115ada4082641685380f980db346b61486405a3c515e01074bcd8d"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"path": "weaver-e10-yimiaoban/scripts/syncSingleMsg.js",
|
|
443
|
+
"size": 13866,
|
|
444
|
+
"sha256": "c0d4df0742197a7b3316783c2a398d05532dd7dd056ab00814d4d62fcfb90cbc"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"path": "weaver-e10-yimiaoban/scripts/syncUserState.js",
|
|
448
|
+
"size": 5003,
|
|
449
|
+
"sha256": "1888c97c8102a4b2d6bbe129032641e10e1c776af5737cbac01b6fdd7e3cbeb1"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"path": "weaver-e10-yimiaoban/scripts/uploadFile.js",
|
|
453
|
+
"size": 1795,
|
|
454
|
+
"sha256": "aba89c689fd054d75d5e3ccb7cf95fe0c97af49a88ab0ef99f5262700d5036fc"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"path": "weaver-e10-yimiaoban/scripts/withdrawMsg.js",
|
|
458
|
+
"size": 7513,
|
|
459
|
+
"sha256": "ffb62287863b73c39944d90f6ff1dc092af81df6ee22c701c920007abd8b8248"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"path": "weaver-e10-yimiaoban/SKILL.md",
|
|
463
|
+
"size": 63233,
|
|
464
|
+
"sha256": "80a730c1ba9e421425cc7c9fc6311b96989751a51de6e98c610fad1c28650f13"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"path": "contracts/group-domain.md",
|
|
468
|
+
"size": 30033,
|
|
469
|
+
"sha256": "ffc8a5bcf080549b5e86830fcce6e48189f17dfef6b4375dbbf4df6d05e79df7",
|
|
470
|
+
"role": "derived-contract"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"path": "contracts/msg-domain.md",
|
|
474
|
+
"size": 30934,
|
|
475
|
+
"sha256": "62eda1c610b16f4fd26fc4d6ccc463ce8669dbc7540fcaf41e0a37a92291add6",
|
|
476
|
+
"role": "derived-contract"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"path": "contracts/session-person-file-domain.md",
|
|
480
|
+
"size": 31089,
|
|
481
|
+
"sha256": "8116d713d58fb898b32bc2ca98928d133ad52de8c85351716b5f3fb6c3f86a60",
|
|
482
|
+
"role": "derived-contract"
|
|
483
|
+
}
|
|
484
|
+
]
|
|
485
|
+
}
|