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,1103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"module": "invoice",
|
|
4
|
+
"skill": "weaver-e10-yepiaotong",
|
|
5
|
+
"generatedFrom": {
|
|
6
|
+
"sourceSkill": "weaver-e10-yepiaotong",
|
|
7
|
+
"version": "3.0.0",
|
|
8
|
+
"path": "weaver-e10-yepiaotong",
|
|
9
|
+
"kind": "workbuddy-document-skill",
|
|
10
|
+
"availability": "user-provided-source-directory"
|
|
11
|
+
},
|
|
12
|
+
"generatedAt": "2026-09-07T00:00:00.000Z",
|
|
13
|
+
"sourceSet": {
|
|
14
|
+
"aggregateSha256": "7783dba334e28afece69dfd90cda9586fd42bed06e33592b94c076827ee0d58b",
|
|
15
|
+
"sourceRoots": [
|
|
16
|
+
"weaver-e10-yepiaotong"
|
|
17
|
+
],
|
|
18
|
+
"detectionStrength": "strong"
|
|
19
|
+
},
|
|
20
|
+
"generatedTargets": {
|
|
21
|
+
"cli": [
|
|
22
|
+
"src/shortcuts/invoice",
|
|
23
|
+
"src/shortcuts/index.ts"
|
|
24
|
+
],
|
|
25
|
+
"skill": [
|
|
26
|
+
"skills/weaver-e10-yepiaotong"
|
|
27
|
+
],
|
|
28
|
+
"tests": [
|
|
29
|
+
"test/business/invoice-*.test.ts"
|
|
30
|
+
],
|
|
31
|
+
"docs": [
|
|
32
|
+
"docs/invoice.md",
|
|
33
|
+
"skill-template/domains/yepiaotong.md"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"sources": [
|
|
37
|
+
{
|
|
38
|
+
"path": "weaver-e10-yepiaotong/agents/openai.yaml",
|
|
39
|
+
"size": 412,
|
|
40
|
+
"sha256": "4a8c65ee3954b9d886d670f50e94067a6cc0071395286469eba33eb275020045"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"path": "weaver-e10-yepiaotong/references/catalog.md",
|
|
44
|
+
"size": 5238,
|
|
45
|
+
"sha256": "2ad236df16358d02b873e0ee5b187a5b16a19bae0e055bb9dc09c24b14b7aa37"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "weaver-e10-yepiaotong/references/get-token.md",
|
|
49
|
+
"size": 4109,
|
|
50
|
+
"sha256": "6998b4d7c961063ed2d8498bd9cbeea34e1991288827195de0b9db78e4c9423a"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"path": "weaver-e10-yepiaotong/references/invoice-add.md",
|
|
54
|
+
"size": 8734,
|
|
55
|
+
"sha256": "319b4abc0e96cf4f710931649c4f53e6fb12971e6e737d0362b675c0a3b7e778"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"path": "weaver-e10-yepiaotong/references/invoice-all-in-one.md",
|
|
59
|
+
"size": 4360,
|
|
60
|
+
"sha256": "422d5525e083c8365fddc58ae3a95ad2131e4725ef91c96a39c45b32c62b06cc"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"path": "weaver-e10-yepiaotong/references/invoice-browse-field-data.md",
|
|
64
|
+
"size": 7184,
|
|
65
|
+
"sha256": "a00aa63d683336148e8ad58d091bfc368dd6f9839c0acf5b251c8353b12b5da2"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"path": "weaver-e10-yepiaotong/references/invoice-delete.md",
|
|
69
|
+
"size": 3678,
|
|
70
|
+
"sha256": "e060c77a68546bc2bb3b377d9b15ac62f45850646b62dc81d357c1f8199fcd97"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"path": "weaver-e10-yepiaotong/references/invoice-detail.md",
|
|
74
|
+
"size": 6836,
|
|
75
|
+
"sha256": "dece6e2aba8c6e06b96a84da9ea40204bb19fb3c4e072a438021b835efd7914c"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"path": "weaver-e10-yepiaotong/references/invoice-download.md",
|
|
79
|
+
"size": 3195,
|
|
80
|
+
"sha256": "1c9ce0153761455df98455509bf64734ed30ab8d11b73bec39cd2ef4864f33d2"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"path": "weaver-e10-yepiaotong/references/invoice-enterprise-list.md",
|
|
84
|
+
"size": 8679,
|
|
85
|
+
"sha256": "0bd771a8398e48aec6cb674305648a671d4a87761e069941fe143b3105dfb29a"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"path": "weaver-e10-yepiaotong/references/invoice-file-upload.md",
|
|
89
|
+
"size": 4739,
|
|
90
|
+
"sha256": "88bfe9044f94d85843829042a1b638cd1806bd843b815cfea5f2bcbb25157304"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"path": "weaver-e10-yepiaotong/references/invoice-ocr.md",
|
|
94
|
+
"size": 7237,
|
|
95
|
+
"sha256": "bf320890aaefbb27d6ff79e5f5b8e6214dfba7459bdc6d59f43b934d4b3e7375"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"path": "weaver-e10-yepiaotong/references/invoice-personal-list.md",
|
|
99
|
+
"size": 8717,
|
|
100
|
+
"sha256": "5e59af3fb028f9f04c2241981998ff06616e95086aa9495bf2b239181969fbcd"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"path": "weaver-e10-yepiaotong/references/invoice-share.md",
|
|
104
|
+
"size": 4120,
|
|
105
|
+
"sha256": "fecfc421c0d0534d638dcc637d3f8d5c759833b5502dca7f747df79da73c474e"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"path": "weaver-e10-yepiaotong/references/invoice-tag.md",
|
|
109
|
+
"size": 3143,
|
|
110
|
+
"sha256": "81d70ebccc0b556d4579c0a1e401626ea45bb4539f675136e92f3dac5f4da742"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"path": "weaver-e10-yepiaotong/references/invoice-transfer.md",
|
|
114
|
+
"size": 3650,
|
|
115
|
+
"sha256": "3dbd79526196b823e28321dc2203412273e8b2142c05294be9e260de4afa81f6"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"path": "weaver-e10-yepiaotong/references/invoice-update.md",
|
|
119
|
+
"size": 12043,
|
|
120
|
+
"sha256": "9c40781ab22e45a4bbadb735d068016fe1bf13d4f81b298a7056939204ea8153"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"path": "weaver-e10-yepiaotong/references/invoice-validation.md",
|
|
124
|
+
"size": 5891,
|
|
125
|
+
"sha256": "b2ab851a36a1d29a99c4afbe384eafe7eca8459155034542ac802ae1b1226676"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"path": "weaver-e10-yepiaotong/references/issuing/api-reference.md",
|
|
129
|
+
"size": 7134,
|
|
130
|
+
"sha256": "0c63d193bedb8c974375f692171a9652eccba9c54c0501bd770aad969dda3d6a"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"path": "weaver-e10-yepiaotong/references/issuing/examples.md",
|
|
134
|
+
"size": 10317,
|
|
135
|
+
"sha256": "5bc7ce5563ce6b98c124983b7b310b4d2dc574d865553fe49150a8cb1a5a5133"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"path": "weaver-e10-yepiaotong/references/issuing/field-extraction-rules.md",
|
|
139
|
+
"size": 8113,
|
|
140
|
+
"sha256": "e7a9ef23629ae55d76f06911c07a0fe2825a99abefcbd27a7b2334668aae03bb"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"path": "weaver-e10-yepiaotong/references/issuing/workflow.md",
|
|
144
|
+
"size": 17498,
|
|
145
|
+
"sha256": "81bcd9ae4452bbfe42fe47b374576f47c303b65fc493a8dc0a62d4f2b0d2e600"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"path": "weaver-e10-yepiaotong/references/reim/api-reference.md",
|
|
149
|
+
"size": 44499,
|
|
150
|
+
"sha256": "a753b0dfd96cf6e204668242b18c43649d1fddd7b4613818bc423855fb71f857"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"path": "weaver-e10-yepiaotong/references/reim/examples.md",
|
|
154
|
+
"size": 27424,
|
|
155
|
+
"sha256": "4083a4f460faa2662ff8f41d8fe7a583906819fd6f101ac498dd1ad183c47959"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"path": "weaver-e10-yepiaotong/references/reim/expense-subject-rules.md",
|
|
159
|
+
"size": 2749,
|
|
160
|
+
"sha256": "d47c9a89147f5d1674fc95cbb220dfa4ef251712fec5610d4203166e193ff741"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"path": "weaver-e10-yepiaotong/references/reim/form-fill-rules.md",
|
|
164
|
+
"size": 24403,
|
|
165
|
+
"sha256": "faab50c84b6509bf8bc1875574b311ffad413ade2d88c7e3109e1e79ffe96bcc"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"path": "weaver-e10-yepiaotong/references/reim/matching-rules.md",
|
|
169
|
+
"size": 10003,
|
|
170
|
+
"sha256": "8a2897e61f0913cedd3603cd9f9df3d4e9018b3e4acf17f923d42d9ed6b0809a"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"path": "weaver-e10-yepiaotong/references/reim/workflow.md",
|
|
174
|
+
"size": 29335,
|
|
175
|
+
"sha256": "a3991b36db53cdb91da0218cba29ebc79fec836301080da3cd9bf7d38beeae99"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"path": "weaver-e10-yepiaotong/scripts/date_utils.py",
|
|
179
|
+
"size": 13719,
|
|
180
|
+
"sha256": "a42bd67c842d278104d7a748a336ddf06437e8f60ce910d8984e3ec68d91b4cf"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"path": "weaver-e10-yepiaotong/scripts/invoice_browse_field.py",
|
|
184
|
+
"size": 12277,
|
|
185
|
+
"sha256": "46edf88fa16994744a7bd4fa66f9e1ecd12c7e7947c68551f78df82ba20a38b5"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"path": "weaver-e10-yepiaotong/scripts/invoice_token_cache.mjs",
|
|
189
|
+
"size": 5648,
|
|
190
|
+
"sha256": "373f10eb5edd1fb435e8d8d1e2a542f6748bc143db89f8d4ab8680a2ad17ba8c"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"path": "weaver-e10-yepiaotong/scripts/invoice_token_cache.py",
|
|
194
|
+
"size": 8573,
|
|
195
|
+
"sha256": "7f9ccc49d89cb013cadaacf40c761835a1c0fd580198fff09dd54cfc73ae62fb"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"path": "weaver-e10-yepiaotong/scripts/parse_document.py",
|
|
199
|
+
"size": 4967,
|
|
200
|
+
"sha256": "d9d7af479a73b9c3058b54b10fd3fa2b7e2e29085b9da7b7268488b78228bc40"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"path": "weaver-e10-yepiaotong/SKILL.md",
|
|
204
|
+
"size": 9723,
|
|
205
|
+
"sha256": "fd77edfd7587d309e0b485444a519f0eba5b534a00e19795a16aeadaca73cc35"
|
|
206
|
+
}
|
|
207
|
+
],
|
|
208
|
+
"sourceChunks": [
|
|
209
|
+
{
|
|
210
|
+
"id": "invoice.list",
|
|
211
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-personal-list.md",
|
|
212
|
+
"anchor": "reference:invoice-personal-list.md",
|
|
213
|
+
"sha256": "5e59af3fb028f9f04c2241981998ff06616e95086aa9495bf2b239181969fbcd",
|
|
214
|
+
"mapsToOperations": [
|
|
215
|
+
"invoice.list"
|
|
216
|
+
],
|
|
217
|
+
"mapsToReferences": [
|
|
218
|
+
"references/invoice-personal-list.md"
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"id": "invoice.enterprise.list",
|
|
223
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-enterprise-list.md",
|
|
224
|
+
"anchor": "reference:invoice-enterprise-list.md",
|
|
225
|
+
"sha256": "0bd771a8398e48aec6cb674305648a671d4a87761e069941fe143b3105dfb29a",
|
|
226
|
+
"mapsToOperations": [
|
|
227
|
+
"invoice.enterprise.list"
|
|
228
|
+
],
|
|
229
|
+
"mapsToReferences": [
|
|
230
|
+
"references/invoice-enterprise-list.md"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"id": "invoice.get",
|
|
235
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-detail.md",
|
|
236
|
+
"anchor": "reference:invoice-detail.md",
|
|
237
|
+
"sha256": "dece6e2aba8c6e06b96a84da9ea40204bb19fb3c4e072a438021b835efd7914c",
|
|
238
|
+
"mapsToOperations": [
|
|
239
|
+
"invoice.get"
|
|
240
|
+
],
|
|
241
|
+
"mapsToReferences": [
|
|
242
|
+
"references/invoice-detail.md"
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "invoice.upload",
|
|
247
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-file-upload.md",
|
|
248
|
+
"anchor": "reference:invoice-file-upload.md",
|
|
249
|
+
"sha256": "88bfe9044f94d85843829042a1b638cd1806bd843b815cfea5f2bcbb25157304",
|
|
250
|
+
"mapsToOperations": [
|
|
251
|
+
"invoice.upload"
|
|
252
|
+
],
|
|
253
|
+
"mapsToReferences": [
|
|
254
|
+
"references/invoice-file-upload.md"
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"id": "invoice.ocr.preview",
|
|
259
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-ocr.md",
|
|
260
|
+
"anchor": "reference:invoice-ocr.md",
|
|
261
|
+
"sha256": "bf320890aaefbb27d6ff79e5f5b8e6214dfba7459bdc6d59f43b934d4b3e7375",
|
|
262
|
+
"mapsToOperations": [
|
|
263
|
+
"invoice.ocr.preview"
|
|
264
|
+
],
|
|
265
|
+
"mapsToReferences": [
|
|
266
|
+
"references/invoice-ocr-preview.md"
|
|
267
|
+
]
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"id": "invoice.validate.preview",
|
|
271
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-validation.md",
|
|
272
|
+
"anchor": "reference:invoice-validation.md",
|
|
273
|
+
"sha256": "b2ab851a36a1d29a99c4afbe384eafe7eca8459155034542ac802ae1b1226676",
|
|
274
|
+
"mapsToOperations": [
|
|
275
|
+
"invoice.validate.preview"
|
|
276
|
+
],
|
|
277
|
+
"mapsToReferences": [
|
|
278
|
+
"references/invoice-validation-preview.md"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "invoice.download",
|
|
283
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-download.md",
|
|
284
|
+
"anchor": "reference:invoice-download.md",
|
|
285
|
+
"sha256": "1c9ce0153761455df98455509bf64734ed30ab8d11b73bec39cd2ef4864f33d2",
|
|
286
|
+
"mapsToOperations": [
|
|
287
|
+
"invoice.download"
|
|
288
|
+
],
|
|
289
|
+
"mapsToReferences": [
|
|
290
|
+
"references/invoice-download.md"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "invoice.import",
|
|
295
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-all-in-one.md",
|
|
296
|
+
"anchor": "reference:invoice-all-in-one.md",
|
|
297
|
+
"sha256": "422d5525e083c8365fddc58ae3a95ad2131e4725ef91c96a39c45b32c62b06cc",
|
|
298
|
+
"mapsToOperations": [
|
|
299
|
+
"invoice.import.prepare",
|
|
300
|
+
"invoice.import.apply"
|
|
301
|
+
],
|
|
302
|
+
"mapsToReferences": [
|
|
303
|
+
"references/invoice-import.md"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"id": "invoice.add",
|
|
308
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-add.md",
|
|
309
|
+
"anchor": "reference:invoice-add.md",
|
|
310
|
+
"sha256": "319b4abc0e96cf4f710931649c4f53e6fb12971e6e737d0362b675c0a3b7e778",
|
|
311
|
+
"mapsToOperations": [
|
|
312
|
+
"invoice.add.prepare",
|
|
313
|
+
"invoice.add.apply"
|
|
314
|
+
],
|
|
315
|
+
"mapsToReferences": [
|
|
316
|
+
"references/invoice-add.md"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"id": "invoice.update",
|
|
321
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-update.md",
|
|
322
|
+
"anchor": "reference:invoice-update.md",
|
|
323
|
+
"sha256": "9c40781ab22e45a4bbadb735d068016fe1bf13d4f81b298a7056939204ea8153",
|
|
324
|
+
"mapsToOperations": [
|
|
325
|
+
"invoice.update.prepare",
|
|
326
|
+
"invoice.update.apply"
|
|
327
|
+
],
|
|
328
|
+
"mapsToReferences": [
|
|
329
|
+
"references/invoice-update.md"
|
|
330
|
+
]
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"id": "invoice.delete",
|
|
334
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-delete.md",
|
|
335
|
+
"anchor": "reference:invoice-delete.md",
|
|
336
|
+
"sha256": "e060c77a68546bc2bb3b377d9b15ac62f45850646b62dc81d357c1f8199fcd97",
|
|
337
|
+
"mapsToOperations": [
|
|
338
|
+
"invoice.delete.prepare",
|
|
339
|
+
"invoice.delete.apply"
|
|
340
|
+
],
|
|
341
|
+
"mapsToReferences": [
|
|
342
|
+
"references/invoice-delete.md"
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "invoice.disabled-capabilities",
|
|
347
|
+
"sourcePath": "skills/weaver-e10-yepiaotong/references/invoice-disabled-capabilities.md",
|
|
348
|
+
"anchor": "reference:invoice-disabled-capabilities.md",
|
|
349
|
+
"sha256": "66bd06761e6f9db14d3e22b462c12c061e2583ce96c5c1dd2bc58fc220c991ed",
|
|
350
|
+
"mapsToOperations": [],
|
|
351
|
+
"mapsToReferences": [
|
|
352
|
+
"references/invoice-disabled-capabilities.md"
|
|
353
|
+
]
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"id": "invoice.browse-field.data",
|
|
357
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-browse-field-data.md",
|
|
358
|
+
"anchor": "reference:invoice-browse-field-data.md",
|
|
359
|
+
"sha256": "a00aa63d683336148e8ad58d091bfc368dd6f9839c0acf5b251c8353b12b5da2",
|
|
360
|
+
"mapsToOperations": [
|
|
361
|
+
"invoice.browse-field.data"
|
|
362
|
+
],
|
|
363
|
+
"mapsToReferences": [
|
|
364
|
+
"references/invoice-browse-field-data.md"
|
|
365
|
+
]
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"id": "invoice.reim.helpers",
|
|
369
|
+
"sourcePath": "weaver-e10-yepiaotong/references/reim/api-reference.md",
|
|
370
|
+
"anchor": "reference:reim/api-reference.md",
|
|
371
|
+
"sha256": "a753b0dfd96cf6e204668242b18c43649d1fddd7b4613818bc423855fb71f857",
|
|
372
|
+
"mapsToOperations": [
|
|
373
|
+
"invoice.reim.file-ocr.preview",
|
|
374
|
+
"invoice.reim.requests.list",
|
|
375
|
+
"invoice.reim.workflow.resolve",
|
|
376
|
+
"invoice.reim.form.structure",
|
|
377
|
+
"invoice.reim.row-info",
|
|
378
|
+
"invoice.reim.employee-superiors",
|
|
379
|
+
"invoice.reim.field.search"
|
|
380
|
+
],
|
|
381
|
+
"mapsToReferences": [
|
|
382
|
+
"references/invoice-reim.md"
|
|
383
|
+
]
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"id": "invoice.reim.flow",
|
|
387
|
+
"sourcePath": "weaver-e10-yepiaotong/references/reim/workflow.md",
|
|
388
|
+
"anchor": "reference:reim/workflow.md",
|
|
389
|
+
"sha256": "a3991b36db53cdb91da0218cba29ebc79fec836301080da3cd9bf7d38beeae99",
|
|
390
|
+
"mapsToOperations": [
|
|
391
|
+
"invoice.reim.flow.create.prepare",
|
|
392
|
+
"invoice.reim.flow.create.apply",
|
|
393
|
+
"invoice.reim.flow.update.prepare",
|
|
394
|
+
"invoice.reim.flow.update.apply"
|
|
395
|
+
],
|
|
396
|
+
"mapsToReferences": [
|
|
397
|
+
"references/invoice-reim.md"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"id": "invoice.issuing.make",
|
|
402
|
+
"sourcePath": "weaver-e10-yepiaotong/references/issuing/workflow.md",
|
|
403
|
+
"anchor": "reference:issuing/workflow.md",
|
|
404
|
+
"sha256": "81bcd9ae4452bbfe42fe47b374576f47c303b65fc493a8dc0a62d4f2b0d2e600",
|
|
405
|
+
"mapsToOperations": [
|
|
406
|
+
"invoice.issuing.make.prepare",
|
|
407
|
+
"invoice.issuing.make.apply"
|
|
408
|
+
],
|
|
409
|
+
"mapsToReferences": [
|
|
410
|
+
"references/invoice-issuing.md"
|
|
411
|
+
]
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"id": "invoice.share",
|
|
415
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-share.md",
|
|
416
|
+
"anchor": "reference:invoice-share.md",
|
|
417
|
+
"sha256": "fecfc421c0d0534d638dcc637d3f8d5c759833b5502dca7f747df79da73c474e",
|
|
418
|
+
"mapsToOperations": [],
|
|
419
|
+
"mapsToReferences": [
|
|
420
|
+
"references/invoice-disabled-capabilities.md"
|
|
421
|
+
]
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"id": "invoice.transfer",
|
|
425
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-transfer.md",
|
|
426
|
+
"anchor": "reference:invoice-transfer.md",
|
|
427
|
+
"sha256": "3dbd79526196b823e28321dc2203412273e8b2142c05294be9e260de4afa81f6",
|
|
428
|
+
"mapsToOperations": [],
|
|
429
|
+
"mapsToReferences": [
|
|
430
|
+
"references/invoice-disabled-capabilities.md"
|
|
431
|
+
]
|
|
432
|
+
},
|
|
433
|
+
{
|
|
434
|
+
"id": "invoice.tag",
|
|
435
|
+
"sourcePath": "weaver-e10-yepiaotong/references/invoice-tag.md",
|
|
436
|
+
"anchor": "reference:invoice-tag.md",
|
|
437
|
+
"sha256": "81d70ebccc0b556d4579c0a1e401626ea45bb4539f675136e92f3dac5f4da742",
|
|
438
|
+
"mapsToOperations": [],
|
|
439
|
+
"mapsToReferences": [
|
|
440
|
+
"references/invoice-disabled-capabilities.md"
|
|
441
|
+
]
|
|
442
|
+
}
|
|
443
|
+
],
|
|
444
|
+
"operationImpact": {
|
|
445
|
+
"invoice.list": {
|
|
446
|
+
"sourceChunkIds": [
|
|
447
|
+
"invoice.list"
|
|
448
|
+
],
|
|
449
|
+
"schemaFields": [
|
|
450
|
+
"scope",
|
|
451
|
+
"start_pos",
|
|
452
|
+
"page_size",
|
|
453
|
+
"sreim",
|
|
454
|
+
"bill_type",
|
|
455
|
+
"filters"
|
|
456
|
+
],
|
|
457
|
+
"references": [
|
|
458
|
+
"references/invoice-personal-list.md"
|
|
459
|
+
],
|
|
460
|
+
"tests": [
|
|
461
|
+
"test/business/invoice-operations.test.ts",
|
|
462
|
+
"test/business/invoice-host.test.ts"
|
|
463
|
+
],
|
|
464
|
+
"risk": "read",
|
|
465
|
+
"requiresConfirmationChain": false
|
|
466
|
+
},
|
|
467
|
+
"invoice.enterprise.list": {
|
|
468
|
+
"sourceChunkIds": [
|
|
469
|
+
"invoice.enterprise.list"
|
|
470
|
+
],
|
|
471
|
+
"schemaFields": [
|
|
472
|
+
"start_pos",
|
|
473
|
+
"page_size",
|
|
474
|
+
"sreim",
|
|
475
|
+
"bill_type",
|
|
476
|
+
"filters"
|
|
477
|
+
],
|
|
478
|
+
"references": [
|
|
479
|
+
"references/invoice-enterprise-list.md"
|
|
480
|
+
],
|
|
481
|
+
"tests": [
|
|
482
|
+
"test/business/invoice-operations.test.ts",
|
|
483
|
+
"test/business/invoice-host.test.ts"
|
|
484
|
+
],
|
|
485
|
+
"risk": "read",
|
|
486
|
+
"requiresConfirmationChain": false
|
|
487
|
+
},
|
|
488
|
+
"invoice.get": {
|
|
489
|
+
"sourceChunkIds": [
|
|
490
|
+
"invoice.get"
|
|
491
|
+
],
|
|
492
|
+
"schemaFields": [
|
|
493
|
+
"fid",
|
|
494
|
+
"number",
|
|
495
|
+
"scope"
|
|
496
|
+
],
|
|
497
|
+
"references": [
|
|
498
|
+
"references/invoice-detail.md"
|
|
499
|
+
],
|
|
500
|
+
"tests": [
|
|
501
|
+
"test/business/invoice-operations.test.ts",
|
|
502
|
+
"test/business/invoice-host.test.ts"
|
|
503
|
+
],
|
|
504
|
+
"risk": "read",
|
|
505
|
+
"requiresConfirmationChain": false
|
|
506
|
+
},
|
|
507
|
+
"invoice.upload": {
|
|
508
|
+
"sourceChunkIds": [
|
|
509
|
+
"invoice.upload"
|
|
510
|
+
],
|
|
511
|
+
"schemaFields": [
|
|
512
|
+
"filePath",
|
|
513
|
+
"fileName"
|
|
514
|
+
],
|
|
515
|
+
"references": [
|
|
516
|
+
"references/invoice-file-upload.md"
|
|
517
|
+
],
|
|
518
|
+
"tests": [
|
|
519
|
+
"test/business/invoice-operations.test.ts",
|
|
520
|
+
"test/business/invoice-host.test.ts"
|
|
521
|
+
],
|
|
522
|
+
"risk": "read-with-upload",
|
|
523
|
+
"requiresConfirmationChain": false
|
|
524
|
+
},
|
|
525
|
+
"invoice.ocr.preview": {
|
|
526
|
+
"sourceChunkIds": [
|
|
527
|
+
"invoice.ocr.preview"
|
|
528
|
+
],
|
|
529
|
+
"schemaFields": [
|
|
530
|
+
"filePath",
|
|
531
|
+
"fileId",
|
|
532
|
+
"upload"
|
|
533
|
+
],
|
|
534
|
+
"references": [
|
|
535
|
+
"references/invoice-ocr-preview.md"
|
|
536
|
+
],
|
|
537
|
+
"tests": [
|
|
538
|
+
"test/business/invoice-operations.test.ts",
|
|
539
|
+
"test/business/invoice-host.test.ts"
|
|
540
|
+
],
|
|
541
|
+
"risk": "read-with-upload",
|
|
542
|
+
"requiresConfirmationChain": false
|
|
543
|
+
},
|
|
544
|
+
"invoice.validate.preview": {
|
|
545
|
+
"sourceChunkIds": [
|
|
546
|
+
"invoice.validate.preview"
|
|
547
|
+
],
|
|
548
|
+
"schemaFields": [
|
|
549
|
+
"fid",
|
|
550
|
+
"fileId",
|
|
551
|
+
"invoice"
|
|
552
|
+
],
|
|
553
|
+
"references": [
|
|
554
|
+
"references/invoice-validation-preview.md"
|
|
555
|
+
],
|
|
556
|
+
"tests": [
|
|
557
|
+
"test/business/invoice-operations.test.ts",
|
|
558
|
+
"test/business/invoice-host.test.ts"
|
|
559
|
+
],
|
|
560
|
+
"risk": "external-read",
|
|
561
|
+
"requiresConfirmationChain": false
|
|
562
|
+
},
|
|
563
|
+
"invoice.download": {
|
|
564
|
+
"sourceChunkIds": [
|
|
565
|
+
"invoice.download"
|
|
566
|
+
],
|
|
567
|
+
"schemaFields": [
|
|
568
|
+
"fid",
|
|
569
|
+
"fileId",
|
|
570
|
+
"outputDir",
|
|
571
|
+
"fileName"
|
|
572
|
+
],
|
|
573
|
+
"references": [
|
|
574
|
+
"references/invoice-download.md"
|
|
575
|
+
],
|
|
576
|
+
"tests": [
|
|
577
|
+
"test/business/invoice-operations.test.ts",
|
|
578
|
+
"test/business/invoice-host.test.ts"
|
|
579
|
+
],
|
|
580
|
+
"risk": "external-artifact",
|
|
581
|
+
"requiresConfirmationChain": false
|
|
582
|
+
},
|
|
583
|
+
"invoice.import.prepare": {
|
|
584
|
+
"sourceChunkIds": [
|
|
585
|
+
"invoice.import",
|
|
586
|
+
"invoice.upload",
|
|
587
|
+
"invoice.ocr.preview"
|
|
588
|
+
],
|
|
589
|
+
"schemaFields": [
|
|
590
|
+
"filePath",
|
|
591
|
+
"upload",
|
|
592
|
+
"validate",
|
|
593
|
+
"syncToOa"
|
|
594
|
+
],
|
|
595
|
+
"references": [
|
|
596
|
+
"references/invoice-import.md"
|
|
597
|
+
],
|
|
598
|
+
"tests": [
|
|
599
|
+
"test/business/invoice-operations.test.ts",
|
|
600
|
+
"test/business/invoice-host.test.ts"
|
|
601
|
+
],
|
|
602
|
+
"risk": "write-confirmed",
|
|
603
|
+
"requiresConfirmationChain": true
|
|
604
|
+
},
|
|
605
|
+
"invoice.import.apply": {
|
|
606
|
+
"sourceChunkIds": [
|
|
607
|
+
"invoice.import"
|
|
608
|
+
],
|
|
609
|
+
"schemaFields": [
|
|
610
|
+
"continuation",
|
|
611
|
+
"confirm"
|
|
612
|
+
],
|
|
613
|
+
"references": [
|
|
614
|
+
"references/invoice-import.md"
|
|
615
|
+
],
|
|
616
|
+
"tests": [
|
|
617
|
+
"test/business/invoice-operations.test.ts",
|
|
618
|
+
"test/business/invoice-host.test.ts"
|
|
619
|
+
],
|
|
620
|
+
"risk": "write-confirmed",
|
|
621
|
+
"requiresConfirmationChain": true
|
|
622
|
+
},
|
|
623
|
+
"invoice.add.prepare": {
|
|
624
|
+
"sourceChunkIds": [
|
|
625
|
+
"invoice.add"
|
|
626
|
+
],
|
|
627
|
+
"schemaFields": [
|
|
628
|
+
"info",
|
|
629
|
+
"scope"
|
|
630
|
+
],
|
|
631
|
+
"references": [
|
|
632
|
+
"references/invoice-add.md"
|
|
633
|
+
],
|
|
634
|
+
"tests": [
|
|
635
|
+
"test/business/invoice-operations.test.ts",
|
|
636
|
+
"test/business/invoice-host.test.ts"
|
|
637
|
+
],
|
|
638
|
+
"risk": "write-confirmed",
|
|
639
|
+
"requiresConfirmationChain": true
|
|
640
|
+
},
|
|
641
|
+
"invoice.add.apply": {
|
|
642
|
+
"sourceChunkIds": [
|
|
643
|
+
"invoice.add"
|
|
644
|
+
],
|
|
645
|
+
"schemaFields": [
|
|
646
|
+
"continuation",
|
|
647
|
+
"confirm"
|
|
648
|
+
],
|
|
649
|
+
"references": [
|
|
650
|
+
"references/invoice-add.md"
|
|
651
|
+
],
|
|
652
|
+
"tests": [
|
|
653
|
+
"test/business/invoice-operations.test.ts",
|
|
654
|
+
"test/business/invoice-host.test.ts"
|
|
655
|
+
],
|
|
656
|
+
"risk": "write-confirmed",
|
|
657
|
+
"requiresConfirmationChain": true
|
|
658
|
+
},
|
|
659
|
+
"invoice.update.prepare": {
|
|
660
|
+
"sourceChunkIds": [
|
|
661
|
+
"invoice.update",
|
|
662
|
+
"invoice.get"
|
|
663
|
+
],
|
|
664
|
+
"schemaFields": [
|
|
665
|
+
"fid",
|
|
666
|
+
"scope",
|
|
667
|
+
"changes"
|
|
668
|
+
],
|
|
669
|
+
"references": [
|
|
670
|
+
"references/invoice-update.md"
|
|
671
|
+
],
|
|
672
|
+
"tests": [
|
|
673
|
+
"test/business/invoice-operations.test.ts",
|
|
674
|
+
"test/business/invoice-host.test.ts"
|
|
675
|
+
],
|
|
676
|
+
"risk": "write-confirmed",
|
|
677
|
+
"requiresConfirmationChain": true
|
|
678
|
+
},
|
|
679
|
+
"invoice.update.apply": {
|
|
680
|
+
"sourceChunkIds": [
|
|
681
|
+
"invoice.update"
|
|
682
|
+
],
|
|
683
|
+
"schemaFields": [
|
|
684
|
+
"continuation",
|
|
685
|
+
"confirm"
|
|
686
|
+
],
|
|
687
|
+
"references": [
|
|
688
|
+
"references/invoice-update.md"
|
|
689
|
+
],
|
|
690
|
+
"tests": [
|
|
691
|
+
"test/business/invoice-operations.test.ts",
|
|
692
|
+
"test/business/invoice-host.test.ts"
|
|
693
|
+
],
|
|
694
|
+
"risk": "write-confirmed",
|
|
695
|
+
"requiresConfirmationChain": true
|
|
696
|
+
},
|
|
697
|
+
"invoice.delete.prepare": {
|
|
698
|
+
"sourceChunkIds": [
|
|
699
|
+
"invoice.delete",
|
|
700
|
+
"invoice.get"
|
|
701
|
+
],
|
|
702
|
+
"schemaFields": [
|
|
703
|
+
"fid",
|
|
704
|
+
"scope"
|
|
705
|
+
],
|
|
706
|
+
"references": [
|
|
707
|
+
"references/invoice-delete.md"
|
|
708
|
+
],
|
|
709
|
+
"tests": [
|
|
710
|
+
"test/business/invoice-operations.test.ts",
|
|
711
|
+
"test/business/invoice-host.test.ts"
|
|
712
|
+
],
|
|
713
|
+
"risk": "write-confirmed",
|
|
714
|
+
"requiresConfirmationChain": true
|
|
715
|
+
},
|
|
716
|
+
"invoice.delete.apply": {
|
|
717
|
+
"sourceChunkIds": [
|
|
718
|
+
"invoice.delete"
|
|
719
|
+
],
|
|
720
|
+
"schemaFields": [
|
|
721
|
+
"continuation",
|
|
722
|
+
"confirm"
|
|
723
|
+
],
|
|
724
|
+
"references": [
|
|
725
|
+
"references/invoice-delete.md"
|
|
726
|
+
],
|
|
727
|
+
"tests": [
|
|
728
|
+
"test/business/invoice-operations.test.ts",
|
|
729
|
+
"test/business/invoice-host.test.ts"
|
|
730
|
+
],
|
|
731
|
+
"risk": "write-confirmed",
|
|
732
|
+
"requiresConfirmationChain": true
|
|
733
|
+
},
|
|
734
|
+
"invoice.browse-field.data": {
|
|
735
|
+
"sourceChunkIds": [
|
|
736
|
+
"invoice.browse-field.data",
|
|
737
|
+
"invoice.get"
|
|
738
|
+
],
|
|
739
|
+
"schemaFields": [
|
|
740
|
+
"fid",
|
|
741
|
+
"fids",
|
|
742
|
+
"detail"
|
|
743
|
+
],
|
|
744
|
+
"references": [
|
|
745
|
+
"references/invoice-browse-field-data.md"
|
|
746
|
+
],
|
|
747
|
+
"tests": [
|
|
748
|
+
"test/business/invoice-operations.test.ts"
|
|
749
|
+
],
|
|
750
|
+
"risk": "read",
|
|
751
|
+
"requiresConfirmationChain": false
|
|
752
|
+
},
|
|
753
|
+
"invoice.reim.file-ocr.preview": {
|
|
754
|
+
"sourceChunkIds": [
|
|
755
|
+
"invoice.reim.helpers"
|
|
756
|
+
],
|
|
757
|
+
"schemaFields": [
|
|
758
|
+
"fileId",
|
|
759
|
+
"fileIds"
|
|
760
|
+
],
|
|
761
|
+
"references": [
|
|
762
|
+
"references/invoice-reim.md"
|
|
763
|
+
],
|
|
764
|
+
"tests": [
|
|
765
|
+
"test/business/invoice-operations.test.ts"
|
|
766
|
+
],
|
|
767
|
+
"risk": "read-with-upload",
|
|
768
|
+
"requiresConfirmationChain": false
|
|
769
|
+
},
|
|
770
|
+
"invoice.reim.requests.list": {
|
|
771
|
+
"sourceChunkIds": [
|
|
772
|
+
"invoice.reim.helpers"
|
|
773
|
+
],
|
|
774
|
+
"schemaFields": [
|
|
775
|
+
"pageNo",
|
|
776
|
+
"pageSize",
|
|
777
|
+
"requestname",
|
|
778
|
+
"cusCreateDateStart",
|
|
779
|
+
"cusCreateDateEnd"
|
|
780
|
+
],
|
|
781
|
+
"references": [
|
|
782
|
+
"references/invoice-reim.md"
|
|
783
|
+
],
|
|
784
|
+
"tests": [
|
|
785
|
+
"test/business/invoice-operations.test.ts"
|
|
786
|
+
],
|
|
787
|
+
"risk": "read",
|
|
788
|
+
"requiresConfirmationChain": false
|
|
789
|
+
},
|
|
790
|
+
"invoice.reim.workflow.resolve": {
|
|
791
|
+
"sourceChunkIds": [
|
|
792
|
+
"invoice.reim.helpers"
|
|
793
|
+
],
|
|
794
|
+
"schemaFields": [
|
|
795
|
+
"requestIds"
|
|
796
|
+
],
|
|
797
|
+
"references": [
|
|
798
|
+
"references/invoice-reim.md"
|
|
799
|
+
],
|
|
800
|
+
"tests": [
|
|
801
|
+
"test/business/invoice-operations.test.ts"
|
|
802
|
+
],
|
|
803
|
+
"risk": "read",
|
|
804
|
+
"requiresConfirmationChain": false
|
|
805
|
+
},
|
|
806
|
+
"invoice.reim.form.structure": {
|
|
807
|
+
"sourceChunkIds": [
|
|
808
|
+
"invoice.reim.helpers",
|
|
809
|
+
"invoice.reim.flow"
|
|
810
|
+
],
|
|
811
|
+
"schemaFields": [
|
|
812
|
+
"workflowId",
|
|
813
|
+
"nodeId"
|
|
814
|
+
],
|
|
815
|
+
"references": [
|
|
816
|
+
"references/invoice-reim.md"
|
|
817
|
+
],
|
|
818
|
+
"tests": [
|
|
819
|
+
"test/business/invoice-operations.test.ts"
|
|
820
|
+
],
|
|
821
|
+
"risk": "read",
|
|
822
|
+
"requiresConfirmationChain": false
|
|
823
|
+
},
|
|
824
|
+
"invoice.reim.row-info": {
|
|
825
|
+
"sourceChunkIds": [
|
|
826
|
+
"invoice.reim.helpers"
|
|
827
|
+
],
|
|
828
|
+
"schemaFields": [
|
|
829
|
+
"invoiceId",
|
|
830
|
+
"requestid",
|
|
831
|
+
"cdzt"
|
|
832
|
+
],
|
|
833
|
+
"references": [
|
|
834
|
+
"references/invoice-reim.md"
|
|
835
|
+
],
|
|
836
|
+
"tests": [
|
|
837
|
+
"test/business/invoice-operations.test.ts"
|
|
838
|
+
],
|
|
839
|
+
"risk": "read",
|
|
840
|
+
"requiresConfirmationChain": false
|
|
841
|
+
},
|
|
842
|
+
"invoice.reim.employee-superiors": {
|
|
843
|
+
"sourceChunkIds": [
|
|
844
|
+
"invoice.reim.helpers"
|
|
845
|
+
],
|
|
846
|
+
"schemaFields": [],
|
|
847
|
+
"references": [
|
|
848
|
+
"references/invoice-reim.md"
|
|
849
|
+
],
|
|
850
|
+
"tests": [
|
|
851
|
+
"test/business/invoice-operations.test.ts"
|
|
852
|
+
],
|
|
853
|
+
"risk": "read",
|
|
854
|
+
"requiresConfirmationChain": false
|
|
855
|
+
},
|
|
856
|
+
"invoice.reim.field.search": {
|
|
857
|
+
"sourceChunkIds": [
|
|
858
|
+
"invoice.reim.helpers"
|
|
859
|
+
],
|
|
860
|
+
"schemaFields": [
|
|
861
|
+
"keywords",
|
|
862
|
+
"fieldId",
|
|
863
|
+
"workflowId",
|
|
864
|
+
"nodeId"
|
|
865
|
+
],
|
|
866
|
+
"references": [
|
|
867
|
+
"references/invoice-reim.md"
|
|
868
|
+
],
|
|
869
|
+
"tests": [
|
|
870
|
+
"test/business/invoice-operations.test.ts"
|
|
871
|
+
],
|
|
872
|
+
"risk": "read",
|
|
873
|
+
"requiresConfirmationChain": false
|
|
874
|
+
},
|
|
875
|
+
"invoice.reim.flow.create.prepare": {
|
|
876
|
+
"sourceChunkIds": [
|
|
877
|
+
"invoice.reim.flow"
|
|
878
|
+
],
|
|
879
|
+
"schemaFields": [
|
|
880
|
+
"payload"
|
|
881
|
+
],
|
|
882
|
+
"references": [
|
|
883
|
+
"references/invoice-reim.md"
|
|
884
|
+
],
|
|
885
|
+
"tests": [
|
|
886
|
+
"test/business/invoice-operations.test.ts"
|
|
887
|
+
],
|
|
888
|
+
"risk": "write-confirmed",
|
|
889
|
+
"requiresConfirmationChain": true
|
|
890
|
+
},
|
|
891
|
+
"invoice.reim.flow.create.apply": {
|
|
892
|
+
"sourceChunkIds": [
|
|
893
|
+
"invoice.reim.flow"
|
|
894
|
+
],
|
|
895
|
+
"schemaFields": [
|
|
896
|
+
"continuation",
|
|
897
|
+
"confirm",
|
|
898
|
+
"payload"
|
|
899
|
+
],
|
|
900
|
+
"references": [
|
|
901
|
+
"references/invoice-reim.md"
|
|
902
|
+
],
|
|
903
|
+
"tests": [
|
|
904
|
+
"test/business/invoice-operations.test.ts"
|
|
905
|
+
],
|
|
906
|
+
"risk": "write-confirmed",
|
|
907
|
+
"requiresConfirmationChain": true
|
|
908
|
+
},
|
|
909
|
+
"invoice.reim.flow.update.prepare": {
|
|
910
|
+
"sourceChunkIds": [
|
|
911
|
+
"invoice.reim.flow"
|
|
912
|
+
],
|
|
913
|
+
"schemaFields": [
|
|
914
|
+
"payload"
|
|
915
|
+
],
|
|
916
|
+
"references": [
|
|
917
|
+
"references/invoice-reim.md"
|
|
918
|
+
],
|
|
919
|
+
"tests": [
|
|
920
|
+
"test/business/invoice-operations.test.ts"
|
|
921
|
+
],
|
|
922
|
+
"risk": "write-confirmed",
|
|
923
|
+
"requiresConfirmationChain": true
|
|
924
|
+
},
|
|
925
|
+
"invoice.reim.flow.update.apply": {
|
|
926
|
+
"sourceChunkIds": [
|
|
927
|
+
"invoice.reim.flow"
|
|
928
|
+
],
|
|
929
|
+
"schemaFields": [
|
|
930
|
+
"continuation",
|
|
931
|
+
"confirm",
|
|
932
|
+
"payload"
|
|
933
|
+
],
|
|
934
|
+
"references": [
|
|
935
|
+
"references/invoice-reim.md"
|
|
936
|
+
],
|
|
937
|
+
"tests": [
|
|
938
|
+
"test/business/invoice-operations.test.ts"
|
|
939
|
+
],
|
|
940
|
+
"risk": "write-confirmed",
|
|
941
|
+
"requiresConfirmationChain": true
|
|
942
|
+
},
|
|
943
|
+
"invoice.issuing.make.prepare": {
|
|
944
|
+
"sourceChunkIds": [
|
|
945
|
+
"invoice.issuing.make"
|
|
946
|
+
],
|
|
947
|
+
"schemaFields": [
|
|
948
|
+
"mode",
|
|
949
|
+
"payload"
|
|
950
|
+
],
|
|
951
|
+
"references": [
|
|
952
|
+
"references/invoice-issuing.md"
|
|
953
|
+
],
|
|
954
|
+
"tests": [
|
|
955
|
+
"test/business/invoice-operations.test.ts"
|
|
956
|
+
],
|
|
957
|
+
"risk": "write-confirmed",
|
|
958
|
+
"requiresConfirmationChain": true
|
|
959
|
+
},
|
|
960
|
+
"invoice.issuing.make.apply": {
|
|
961
|
+
"sourceChunkIds": [
|
|
962
|
+
"invoice.issuing.make"
|
|
963
|
+
],
|
|
964
|
+
"schemaFields": [
|
|
965
|
+
"continuation",
|
|
966
|
+
"confirm",
|
|
967
|
+
"payload"
|
|
968
|
+
],
|
|
969
|
+
"references": [
|
|
970
|
+
"references/invoice-issuing.md"
|
|
971
|
+
],
|
|
972
|
+
"tests": [
|
|
973
|
+
"test/business/invoice-operations.test.ts"
|
|
974
|
+
],
|
|
975
|
+
"risk": "write-confirmed",
|
|
976
|
+
"requiresConfirmationChain": true
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
"artifactBaseline": {
|
|
980
|
+
"aggregateSha256": "8325423256231f274c6b39c6d8cdf47ca1cabfa49daf5f68ec48c5bc67ac1028",
|
|
981
|
+
"files": [
|
|
982
|
+
{
|
|
983
|
+
"path": "docs/_catalog.md",
|
|
984
|
+
"role": "generated-doc",
|
|
985
|
+
"size": 1912,
|
|
986
|
+
"sha256": "a1f384c396343c41d53f5d133fe32eb3e7aa446f0740951b1c5a94eeed9b8ff1"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"path": "docs/agent-invoice.md",
|
|
990
|
+
"role": "generated-doc",
|
|
991
|
+
"size": 4219,
|
|
992
|
+
"sha256": "b49f619c869cd880b48ce61fa2f641fa6921170f53cfcd9790b74b0dbc262546"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"path": "docs/invoice.md",
|
|
996
|
+
"role": "generated-doc",
|
|
997
|
+
"size": 7832,
|
|
998
|
+
"sha256": "67d2f3c7a4cdf5df36532fdf58e65e268445e000453892d5ab9dfd1a682cdf5a"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"path": "skill-template/business-info.json",
|
|
1002
|
+
"role": "generated-routing",
|
|
1003
|
+
"size": 1825,
|
|
1004
|
+
"sha256": "b12a58cd168cd334083fa74a2aadbf8b0a078ace723972637f50a9c8ed8b7979"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"path": "skill-template/domains/yepiaotong.md",
|
|
1008
|
+
"role": "generated-routing",
|
|
1009
|
+
"size": 2073,
|
|
1010
|
+
"sha256": "145faeb0c630157db3140a0c097dc59deb9dd3dc2cc4010fa4b53c40f6fd97fa"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"path": "skills/weaver-e10-yepiaotong/SKILL.md",
|
|
1014
|
+
"role": "generated-skill-entry",
|
|
1015
|
+
"size": 18209,
|
|
1016
|
+
"sha256": "6845fec3dc0530efb09fa3ac51869db52e5c1fbaad8dbfe38bffe17279018d28"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"path": "skills/weaver-e10-yepiaotong/references/invoice-browse-field-data.md",
|
|
1020
|
+
"role": "generated-reference",
|
|
1021
|
+
"size": 1978,
|
|
1022
|
+
"sha256": "352725cd363a986d537353b7a8a75cba7fb0b7802db3f1b163a9457cee460c29"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"path": "skills/weaver-e10-yepiaotong/references/invoice-disabled-capabilities.md",
|
|
1026
|
+
"role": "generated-reference",
|
|
1027
|
+
"size": 1451,
|
|
1028
|
+
"sha256": "c397870be6c985ec75698279eeee668b76a1f790f1d0e2a74e0459dcc7236f05"
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"path": "skills/weaver-e10-yepiaotong/references/invoice-issuing.md",
|
|
1032
|
+
"role": "generated-reference",
|
|
1033
|
+
"size": 4741,
|
|
1034
|
+
"sha256": "a95936ba2f7232a744fcc3ba897e1374241b33cd8df8072ccbd92a7835c2d088"
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"path": "skills/weaver-e10-yepiaotong/references/invoice-reim.md",
|
|
1038
|
+
"role": "generated-reference",
|
|
1039
|
+
"size": 4875,
|
|
1040
|
+
"sha256": "32a479187ddf47912d1cac387a3da6dc8b6c57d11b75659099591f8658aedc1a"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"path": "src/shortcuts/invoice/host.ts",
|
|
1044
|
+
"role": "generated-cli",
|
|
1045
|
+
"size": 18076,
|
|
1046
|
+
"sha256": "4ec9dad05695a39e4c5a5515a5f54a53933106215778b2832a65b540d859c5b6"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"path": "src/shortcuts/invoice/manifest.ts",
|
|
1050
|
+
"role": "generated-cli",
|
|
1051
|
+
"size": 16024,
|
|
1052
|
+
"sha256": "61f15101a906fa7069b369d7fb286f1e4c731ad48c1a4f28c79b97a130536213"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"path": "src/shortcuts/invoice/operations/browse-field.ts",
|
|
1056
|
+
"role": "generated-cli",
|
|
1057
|
+
"size": 880,
|
|
1058
|
+
"sha256": "1bb597a3fa236716e86d7fa1ba87242135f895d031ec750d4dc5364ae9176e03"
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"path": "src/shortcuts/invoice/operations/issuing.ts",
|
|
1062
|
+
"role": "generated-cli",
|
|
1063
|
+
"size": 9442,
|
|
1064
|
+
"sha256": "79126500d97101c54ca678b35ea45551c32683216ad242faceaf36cd3ae6cbc6"
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"path": "src/shortcuts/invoice/operations/registry.ts",
|
|
1068
|
+
"role": "generated-cli",
|
|
1069
|
+
"size": 3574,
|
|
1070
|
+
"sha256": "cff25207df9ae8ce18f514d23e92110f076b31806349699fe8db6e348278a775"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"path": "src/shortcuts/invoice/operations/reim.ts",
|
|
1074
|
+
"role": "generated-cli",
|
|
1075
|
+
"size": 17433,
|
|
1076
|
+
"sha256": "866a724e1b7eeda541e0edfb7bf03572f9fb27cee15c82810b37dbb16a4b9805"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"path": "src/shortcuts/invoice/operations/shared.ts",
|
|
1080
|
+
"role": "generated-cli",
|
|
1081
|
+
"size": 36813,
|
|
1082
|
+
"sha256": "b8416b23723100d3434b875226a79288517d30b2ffbe7e9b6b15a9d4ad71c826"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"path": "test/business/invoice-operations.test.ts",
|
|
1086
|
+
"role": "generated-test",
|
|
1087
|
+
"size": 29689,
|
|
1088
|
+
"sha256": "88be42f00f41f3f242caf37360b197f3fa2bc3bd4c3f199bbb265a741b3f89e2"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"path": "test/skills/layout.test.ts",
|
|
1092
|
+
"role": "generated-test",
|
|
1093
|
+
"size": 20585,
|
|
1094
|
+
"sha256": "9831a1168567bcd31c15f4014e44c06c3f0f8573db8783e0191dc3e259f3460e"
|
|
1095
|
+
}
|
|
1096
|
+
]
|
|
1097
|
+
},
|
|
1098
|
+
"notes": [
|
|
1099
|
+
"本 manifest 已基于用户提供的 weaver-e10-yepiaotong 3.0.0 源目录建立强源资料基线。",
|
|
1100
|
+
"本次同步新增发票浏览按钮字段、报销自动填单与报销流程提交、智能开票与存台账能力,并记录 operation 影响索引。",
|
|
1101
|
+
"manifest 只记录路径、hash、影响映射和转换摘要,不保存 Cookie、Token、个人主目录绝对路径或大段源正文。"
|
|
1102
|
+
]
|
|
1103
|
+
}
|