@liselvins/lark-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +62 -0
- package/LICENSE +9 -0
- package/README.md +215 -0
- package/README_ZH.md +212 -0
- package/dist/auth/config.d.ts +12 -0
- package/dist/auth/config.js +15 -0
- package/dist/auth/handler/handler-local.d.ts +21 -0
- package/dist/auth/handler/handler-local.js +123 -0
- package/dist/auth/handler/handler.d.ts +38 -0
- package/dist/auth/handler/handler.js +123 -0
- package/dist/auth/handler/index.d.ts +2 -0
- package/dist/auth/handler/index.js +18 -0
- package/dist/auth/index.d.ts +4 -0
- package/dist/auth/index.js +20 -0
- package/dist/auth/provider/index.d.ts +3 -0
- package/dist/auth/provider/index.js +19 -0
- package/dist/auth/provider/oauth.d.ts +18 -0
- package/dist/auth/provider/oauth.js +147 -0
- package/dist/auth/provider/oidc.d.ts +18 -0
- package/dist/auth/provider/oidc.js +172 -0
- package/dist/auth/provider/types.d.ts +8 -0
- package/dist/auth/provider/types.js +2 -0
- package/dist/auth/store.d.ts +39 -0
- package/dist/auth/store.js +213 -0
- package/dist/auth/types.d.ts +13 -0
- package/dist/auth/types.js +2 -0
- package/dist/auth/utils/encryption.d.ts +7 -0
- package/dist/auth/utils/encryption.js +40 -0
- package/dist/auth/utils/index.d.ts +3 -0
- package/dist/auth/utils/index.js +19 -0
- package/dist/auth/utils/is-token-valid.d.ts +7 -0
- package/dist/auth/utils/is-token-valid.js +28 -0
- package/dist/auth/utils/pkce.d.ts +6 -0
- package/dist/auth/utils/pkce.js +20 -0
- package/dist/auth/utils/storage-manager.d.ts +17 -0
- package/dist/auth/utils/storage-manager.js +159 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +5 -0
- package/dist/cli/login-handler.d.ts +19 -0
- package/dist/cli/login-handler.js +288 -0
- package/dist/cli.d.ts +4 -0
- package/dist/cli.js +124 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +19 -0
- package/dist/mcp-server/index.d.ts +2 -0
- package/dist/mcp-server/index.js +18 -0
- package/dist/mcp-server/shared/index.d.ts +2 -0
- package/dist/mcp-server/shared/index.js +18 -0
- package/dist/mcp-server/shared/init.d.ts +10 -0
- package/dist/mcp-server/shared/init.js +121 -0
- package/dist/mcp-server/shared/types.d.ts +44 -0
- package/dist/mcp-server/shared/types.js +10 -0
- package/dist/mcp-server/transport/index.d.ts +3 -0
- package/dist/mcp-server/transport/index.js +19 -0
- package/dist/mcp-server/transport/sse.d.ts +2 -0
- package/dist/mcp-server/transport/sse.js +75 -0
- package/dist/mcp-server/transport/stdio.d.ts +2 -0
- package/dist/mcp-server/transport/stdio.js +36 -0
- package/dist/mcp-server/transport/streamable.d.ts +2 -0
- package/dist/mcp-server/transport/streamable.js +86 -0
- package/dist/mcp-server/transport/utils.d.ts +16 -0
- package/dist/mcp-server/transport/utils.js +34 -0
- package/dist/mcp-tool/constants.d.ts +54 -0
- package/dist/mcp-tool/constants.js +141 -0
- package/dist/mcp-tool/document-tool/index.d.ts +1 -0
- package/dist/mcp-tool/document-tool/index.js +17 -0
- package/dist/mcp-tool/document-tool/recall/index.d.ts +2 -0
- package/dist/mcp-tool/document-tool/recall/index.js +39 -0
- package/dist/mcp-tool/document-tool/recall/request.d.ts +2 -0
- package/dist/mcp-tool/document-tool/recall/request.js +25 -0
- package/dist/mcp-tool/document-tool/recall/type.d.ts +19 -0
- package/dist/mcp-tool/document-tool/recall/type.js +2 -0
- package/dist/mcp-tool/index.d.ts +5 -0
- package/dist/mcp-tool/index.js +21 -0
- package/dist/mcp-tool/mcp-tool.d.ts +52 -0
- package/dist/mcp-tool/mcp-tool.js +198 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/block-factory.d.ts +99 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/block-factory.js +266 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/block-tools.d.ts +10 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/block-tools.js +686 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/builtin.d.ts +6 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/builtin.js +220 -0
- package/dist/mcp-tool/tools/en/builtin-tools/im/buildin.d.ts +4 -0
- package/dist/mcp-tool/tools/en/builtin-tools/im/buildin.js +63 -0
- package/dist/mcp-tool/tools/en/builtin-tools/index.d.ts +4 -0
- package/dist/mcp-tool/tools/en/builtin-tools/index.js +6 -0
- package/dist/mcp-tool/tools/en/gen-tools/index.d.ts +113 -0
- package/dist/mcp-tool/tools/en/gen-tools/index.js +127 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/acs_v1.d.ts +562 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/acs_v1.js +264 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/admin_v1.d.ts +912 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/admin_v1.js +449 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/aily_v1.d.ts +1213 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/aily_v1.js +560 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/apaas_v1.d.ts +2530 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/apaas_v1.js +949 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/application_v5.d.ts +80 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/application_v5.js +53 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/application_v6.d.ts +1008 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/application_v6.js +775 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/approval_v4.d.ts +3928 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/approval_v4.js +1602 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/attendance_v1.d.ts +6043 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/attendance_v1.js +1857 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/auth_v3.d.ts +151 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/auth_v3.js +71 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/authen_v1.d.ts +26 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/authen_v1.js +17 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/baike_v1.d.ts +2174 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/baike_v1.js +594 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/base_v2.d.ts +755 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/base_v2.js +234 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/bitable_v1.d.ts +3541 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/bitable_v1.js +1786 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/board_v1.d.ts +40 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/board_v1.js +18 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/calendar_v4.d.ts +2075 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/calendar_v4.js +1594 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/cardkit_v1.d.ts +528 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/cardkit_v1.js +260 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/compensation_v1.d.ts +189 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/compensation_v1.js +132 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/contact_v3.d.ts +4274 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/contact_v3.js +2583 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/corehr_v1.d.ts +16873 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/corehr_v1.js +5045 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/corehr_v2.d.ts +29387 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/corehr_v2.js +7787 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/directory_v1.d.ts +4274 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/directory_v1.js +1367 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/docs_v1.d.ts +58 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/docs_v1.js +28 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/docx_v1.d.ts +93466 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/docx_v1.js +14350 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/drive_v1.d.ts +3251 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/drive_v1.js +1422 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/drive_v2.d.ts +174 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/drive_v2.js +117 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/ehr_v1.d.ts +86 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/ehr_v1.js +48 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/event_v1.d.ts +44 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/event_v1.js +17 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/helpdesk_v1.d.ts +733 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/helpdesk_v1.js +285 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/hire_v1.d.ts +10076 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/hire_v1.js +6065 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/hire_v2.d.ts +158 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/hire_v2.js +61 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/human_authentication_v1.d.ts +70 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/human_authentication_v1.js +27 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/im_v1.d.ts +3043 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/im_v1.js +1869 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/im_v2.d.ts +2176 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/im_v2.js +460 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/lingo_v1.d.ts +2301 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/lingo_v1.js +669 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mail_v1.d.ts +2462 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mail_v1.js +1655 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mdm_v1.d.ts +104 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mdm_v1.js +45 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mdm_v3.d.ts +329 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/mdm_v3.js +78 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/minutes_v1.d.ts +92 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/minutes_v1.js +62 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/moments_v1.d.ts +52 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/moments_v1.js +24 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/okr_v1.d.ts +1628 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/okr_v1.js +434 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/optical_char_recognition_v1.d.ts +38 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/optical_char_recognition_v1.js +17 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/passport_v1.d.ts +131 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/passport_v1.js +59 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/payroll_v1.d.ts +333 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/payroll_v1.js +176 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/performance_v1.d.ts +309 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/performance_v1.js +178 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/performance_v2.d.ts +1177 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/performance_v2.js +559 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/personal_settings_v1.d.ts +640 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/personal_settings_v1.js +303 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/report_v1.d.ts +192 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/report_v1.js +71 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/search_v2.d.ts +1695 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/search_v2.js +446 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/security_and_compliance_v1.d.ts +68 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/security_and_compliance_v1.js +32 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/sheets_v3.d.ts +979 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/sheets_v3.js +721 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/speech_to_text_v1.d.ts +225 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/speech_to_text_v1.js +65 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/task_v1.d.ts +1161 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/task_v1.js +672 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/task_v2.d.ts +6051 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/task_v2.js +1970 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/tenant_v2.d.ts +31 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/tenant_v2.js +24 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/translation_v1.d.ts +80 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/translation_v1.js +37 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/trust_party_v1.d.ts +182 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/trust_party_v1.js +141 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/vc_v1.d.ts +5725 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/vc_v1.js +1751 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/verification_v1.d.ts +21 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/verification_v1.js +14 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/wiki_v1.d.ts +72 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/wiki_v1.js +19 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/wiki_v2.d.ts +843 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/wiki_v2.js +381 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/workplace_v1.d.ts +116 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/workplace_v1.js +77 -0
- package/dist/mcp-tool/tools/index.d.ts +104 -0
- package/dist/mcp-tool/tools/index.js +9 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/block-factory.d.ts +1 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/block-factory.js +18 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/block-tools.d.ts +4 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/block-tools.js +18 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/builtin.d.ts +6 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/builtin.js +199 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/im/buildin.d.ts +4 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/im/buildin.js +63 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/index.d.ts +4 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/index.js +6 -0
- package/dist/mcp-tool/tools/zh/gen-tools/index.d.ts +113 -0
- package/dist/mcp-tool/tools/zh/gen-tools/index.js +127 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/acs_v1.d.ts +562 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/acs_v1.js +277 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/admin_v1.d.ts +912 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/admin_v1.js +430 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/aily_v1.d.ts +1213 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/aily_v1.js +541 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/apaas_v1.d.ts +2530 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/apaas_v1.js +885 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/application_v5.d.ts +80 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/application_v5.js +59 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/application_v6.d.ts +1007 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/application_v6.js +721 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/approval_v4.d.ts +3928 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/approval_v4.js +1532 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/attendance_v1.d.ts +6043 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/attendance_v1.js +1620 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/auth_v3.d.ts +151 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/auth_v3.js +87 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/authen_v1.d.ts +26 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/authen_v1.js +17 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/baike_v1.d.ts +2174 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/baike_v1.js +574 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/base_v2.d.ts +755 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/base_v2.js +270 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/bitable_v1.d.ts +3541 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/bitable_v1.js +1864 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/board_v1.d.ts +40 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/board_v1.js +18 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/calendar_v4.d.ts +2075 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/calendar_v4.js +1533 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/cardkit_v1.d.ts +528 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/cardkit_v1.js +248 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/compensation_v1.d.ts +189 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/compensation_v1.js +130 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/contact_v3.d.ts +4274 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/contact_v3.js +2394 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/corehr_v1.d.ts +16957 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/corehr_v1.js +4753 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/corehr_v2.d.ts +29869 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/corehr_v2.js +7902 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/directory_v1.d.ts +4324 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/directory_v1.js +1340 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/docs_v1.d.ts +58 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/docs_v1.js +26 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/docx_v1.d.ts +116719 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/docx_v1.js +14949 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/drive_v1.d.ts +3251 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/drive_v1.js +1395 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/drive_v2.d.ts +174 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/drive_v2.js +115 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/ehr_v1.d.ts +86 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/ehr_v1.js +48 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/event_v1.d.ts +44 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/event_v1.js +25 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/helpdesk_v1.d.ts +733 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/helpdesk_v1.js +279 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/hire_v1.d.ts +10085 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/hire_v1.js +5787 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/hire_v2.d.ts +158 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/hire_v2.js +64 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/human_authentication_v1.d.ts +70 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/human_authentication_v1.js +27 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/im_v1.d.ts +3043 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/im_v1.js +1812 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/im_v2.d.ts +2176 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/im_v2.js +454 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/lingo_v1.d.ts +2301 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/lingo_v1.js +650 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mail_v1.d.ts +2465 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mail_v1.js +1467 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mdm_v1.d.ts +104 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mdm_v1.js +45 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mdm_v3.d.ts +329 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/mdm_v3.js +76 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/minutes_v1.d.ts +92 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/minutes_v1.js +62 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/moments_v1.d.ts +52 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/moments_v1.js +20 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/okr_v1.d.ts +1664 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/okr_v1.js +455 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/optical_char_recognition_v1.d.ts +38 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/optical_char_recognition_v1.js +17 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/passport_v1.d.ts +131 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/passport_v1.js +53 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/payroll_v1.d.ts +609 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/payroll_v1.js +321 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/performance_v1.d.ts +309 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/performance_v1.js +165 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/performance_v2.d.ts +1177 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/performance_v2.js +525 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/personal_settings_v1.d.ts +640 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/personal_settings_v1.js +295 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/report_v1.d.ts +194 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/report_v1.js +72 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/search_v2.d.ts +1695 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/search_v2.js +556 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/security_and_compliance_v1.d.ts +68 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/security_and_compliance_v1.js +32 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/sheets_v3.d.ts +979 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/sheets_v3.js +821 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/speech_to_text_v1.d.ts +225 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/speech_to_text_v1.js +65 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/task_v1.d.ts +1161 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/task_v1.js +647 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/task_v2.d.ts +6077 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/task_v2.js +1894 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/tenant_v2.d.ts +31 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/tenant_v2.js +24 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/translation_v1.d.ts +80 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/translation_v1.js +37 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/trust_party_v1.d.ts +182 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/trust_party_v1.js +137 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/vc_v1.d.ts +5725 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/vc_v1.js +1640 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/verification_v1.d.ts +21 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/verification_v1.js +14 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/wiki_v1.d.ts +72 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/wiki_v1.js +34 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/wiki_v2.d.ts +843 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/wiki_v2.js +376 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/workplace_v1.d.ts +116 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/workplace_v1.js +77 -0
- package/dist/mcp-tool/types/index.d.ts +53 -0
- package/dist/mcp-tool/types/index.js +9 -0
- package/dist/mcp-tool/utils/case-transf.d.ts +2 -0
- package/dist/mcp-tool/utils/case-transf.js +15 -0
- package/dist/mcp-tool/utils/filter-tools.d.ts +2 -0
- package/dist/mcp-tool/utils/filter-tools.js +27 -0
- package/dist/mcp-tool/utils/get-should-use-uat.d.ts +2 -0
- package/dist/mcp-tool/utils/get-should-use-uat.js +18 -0
- package/dist/mcp-tool/utils/handler.d.ts +2 -0
- package/dist/mcp-tool/utils/handler.js +92 -0
- package/dist/mcp-tool/utils/index.d.ts +4 -0
- package/dist/mcp-tool/utils/index.js +20 -0
- package/dist/utils/clean-env-args.d.ts +1 -0
- package/dist/utils/clean-env-args.js +12 -0
- package/dist/utils/constants.d.ts +18 -0
- package/dist/utils/constants.js +36 -0
- package/dist/utils/http-instance.d.ts +2 -0
- package/dist/utils/http-instance.js +21 -0
- package/dist/utils/logger.d.ts +22 -0
- package/dist/utils/logger.js +97 -0
- package/dist/utils/noop.d.ts +1 -0
- package/dist/utils/noop.js +6 -0
- package/dist/utils/parser-string-array.d.ts +1 -0
- package/dist/utils/parser-string-array.js +13 -0
- package/dist/utils/safe-json-parse.d.ts +1 -0
- package/dist/utils/safe-json-parse.js +14 -0
- package/dist/utils/version.d.ts +1 -0
- package/dist/utils/version.js +52 -0
- package/docs/recall-mcp/README.md +137 -0
- package/docs/recall-mcp/README_ZH.md +137 -0
- package/docs/reference/cli/cli-zh.md +92 -0
- package/docs/reference/cli/cli.md +92 -0
- package/docs/reference/tool-presets/presets-zh.md +120 -0
- package/docs/reference/tool-presets/presets.md +120 -0
- package/docs/reference/tool-presets/tools-en.md +1516 -0
- package/docs/reference/tool-presets/tools-zh.md +1533 -0
- package/docs/troubleshooting/faq-zh.md +67 -0
- package/docs/troubleshooting/faq.md +67 -0
- package/docs/usage/configuration/configuration-zh.md +344 -0
- package/docs/usage/configuration/configuration.md +344 -0
- package/docs/usage/docker/docker-zh.md +101 -0
- package/docs/usage/docker/docker.md +106 -0
- package/package.json +65 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.performanceV2Tools = exports.performanceV2UserGroupUserRelWrite = exports.performanceV2RevieweeQuery = exports.performanceV2ReviewTemplateQuery = exports.performanceV2ReviewDataQuery = exports.performanceV2QuestionQuery = exports.performanceV2MetricTemplateQuery = exports.performanceV2MetricTagList = exports.performanceV2MetricLibQuery = exports.performanceV2MetricFieldQuery = exports.performanceV2MetricDetailQuery = exports.performanceV2MetricDetailImport = exports.performanceV2IndicatorQuery = exports.performanceV2AdditionalInformationsBatchDelete = exports.performanceV2AdditionalInformationQuery = exports.performanceV2AdditionalInformationImport = exports.performanceV2ActivityQuery = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.performanceV2ActivityQuery = {
|
|
6
|
+
project: 'performance',
|
|
7
|
+
name: 'performance.v2.activity.query',
|
|
8
|
+
sdkName: 'performance.v2.activity.query',
|
|
9
|
+
path: '/open-apis/performance/v2/activity/query',
|
|
10
|
+
httpMethod: 'POST',
|
|
11
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Projects-Get information about the project-Obtain project information, such as project name, project model, etc',
|
|
12
|
+
accessTokens: ['tenant'],
|
|
13
|
+
schema: {
|
|
14
|
+
data: zod_1.z
|
|
15
|
+
.object({
|
|
16
|
+
semester_ids: zod_1.z
|
|
17
|
+
.array(zod_1.z.string())
|
|
18
|
+
.describe('List of evaluation period IDs, get the project ID of the specified evaluation period, semester_id can be obtained by [[Get Period]. If "activity_ids" is passed at the same time, it is preferentially queried with "activity_ids". When "semester_ids" and "activity_ids" are not passed, empty data is returned')
|
|
19
|
+
.optional(),
|
|
20
|
+
activity_ids: zod_1.z
|
|
21
|
+
.array(zod_1.z.string())
|
|
22
|
+
.describe('Item ID list. If "semester_ids" is passed at the same time, the query is preferentially "activity_ids". When "semester_ids" and "activity_ids" are not passed, empty data is returned')
|
|
23
|
+
.optional(),
|
|
24
|
+
})
|
|
25
|
+
.optional(),
|
|
26
|
+
params: zod_1.z
|
|
27
|
+
.object({ user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id']).describe('User ID type').optional() })
|
|
28
|
+
.optional(),
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
exports.performanceV2AdditionalInformationImport = {
|
|
32
|
+
project: 'performance',
|
|
33
|
+
name: 'performance.v2.additionalInformation.import',
|
|
34
|
+
sdkName: 'performance.v2.additionalInformation.import',
|
|
35
|
+
path: '/open-apis/performance/v2/additional_informations/import',
|
|
36
|
+
httpMethod: 'POST',
|
|
37
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Supplementary Information-Batch Import Supplementary Information-Supplementary information of the reviewees can be imported in batches for review reference (including both new additions and updates)',
|
|
38
|
+
accessTokens: ['tenant'],
|
|
39
|
+
schema: {
|
|
40
|
+
data: zod_1.z.object({
|
|
41
|
+
semester_id: zod_1.z
|
|
42
|
+
.string()
|
|
43
|
+
.describe('The evaluation period ID can be obtained through the [Get Period List] interface'),
|
|
44
|
+
additional_informations: zod_1.z
|
|
45
|
+
.array(zod_1.z.object({
|
|
46
|
+
item_id: zod_1.z
|
|
47
|
+
.string()
|
|
48
|
+
.describe('Supplementary Information ID< br >** Note **: If the supplementary information ID already in the system is passed in, the corresponding supplementary message data will be updated')
|
|
49
|
+
.optional(),
|
|
50
|
+
external_id: zod_1.z
|
|
51
|
+
.string()
|
|
52
|
+
.describe('The external system supplementary information ID is used for data mapping between systems.< br >** Note **: If an external system supplementary information ID is passed in, the corresponding supplementary message data will be updated')
|
|
53
|
+
.optional(),
|
|
54
|
+
reviewee_user_id: zod_1.z
|
|
55
|
+
.string()
|
|
56
|
+
.describe("The list of evaluee IDs, consistent with the type of imported parameter user_id_type, can be obtained through the [Get evaluee information] interface< br >** Note **: If the parameter combination of reviewee_user_id ',' item ',' time ',' detailed_description 'already has a supplementary message with the same content in the system, the corresponding supplementary message data will be updated"),
|
|
57
|
+
item: zod_1.z
|
|
58
|
+
.string()
|
|
59
|
+
.describe("matters< br >** Note **: If the parameter combination of reviewee_user_id ',' item ',' time ',' detailed_description 'already has a supplementary message with the same content in the system, the corresponding supplementary message data will be updated"),
|
|
60
|
+
time: zod_1.z
|
|
61
|
+
.string()
|
|
62
|
+
.describe("time< br >** Description **: Text content, unformatted verification< br >** Note **: If the parameter combination of reviewee_user_id ',' item ',' time ',' detailed_description 'already has a supplementary message with the same content in the system, the corresponding supplementary message data will be updated"),
|
|
63
|
+
detailed_description: zod_1.z
|
|
64
|
+
.string()
|
|
65
|
+
.describe("specific description< br >** Note **: If the parameter combination of reviewee_user_id ',' item ',' time ',' detailed_description 'already has a supplementary message with the same content in the system, the corresponding supplementary message data will be updated"),
|
|
66
|
+
}))
|
|
67
|
+
.describe('Supplementary information list')
|
|
68
|
+
.optional(),
|
|
69
|
+
import_record_name: zod_1.z
|
|
70
|
+
.string()
|
|
71
|
+
.describe('Supplementary information import record name, which can be viewed by administrators in the import record of Supplementary Information Management.< br >**Default**: "API Import"')
|
|
72
|
+
.optional(),
|
|
73
|
+
}),
|
|
74
|
+
params: zod_1.z.object({
|
|
75
|
+
client_token: zod_1.z
|
|
76
|
+
.string()
|
|
77
|
+
.describe('According to whether the client_token is consistent to determine whether it is the same request, multiple calls to the same request will be intercepted'),
|
|
78
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
79
|
+
}),
|
|
80
|
+
},
|
|
81
|
+
};
|
|
82
|
+
exports.performanceV2AdditionalInformationQuery = {
|
|
83
|
+
project: 'performance',
|
|
84
|
+
name: 'performance.v2.additionalInformation.query',
|
|
85
|
+
sdkName: 'performance.v2.additionalInformation.query',
|
|
86
|
+
path: '/open-apis/performance/v2/additional_informations/query',
|
|
87
|
+
httpMethod: 'POST',
|
|
88
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Supplementary Information-Batch Query Supplementary Information-Supplementary information of the reviewees can be queried in batches',
|
|
89
|
+
accessTokens: ['tenant'],
|
|
90
|
+
schema: {
|
|
91
|
+
data: zod_1.z.object({
|
|
92
|
+
semester_id: zod_1.z
|
|
93
|
+
.string()
|
|
94
|
+
.describe('List of review cycle IDs. semester_id can be obtained through the [Obtain cycle] API'),
|
|
95
|
+
item_ids: zod_1.z
|
|
96
|
+
.array(zod_1.z.string())
|
|
97
|
+
.describe('List of item IDs. Obtain information of the specified item ID. When "item_ids", "external_ids", and "reviewee_user_ids" in the following request parameters are all empty, all supplementary information for the review cycle will be returned. If multiple request parameters are populated in a single request, only the first parameter with a value will be recognized in the order of [item_ids > external_ids > reviewee_user_ids]')
|
|
98
|
+
.optional(),
|
|
99
|
+
external_ids: zod_1.z
|
|
100
|
+
.array(zod_1.z.string())
|
|
101
|
+
.describe('List of external system\'s item IDs. Obtain the corresponding Feishu performance item IDs. This parameter is ineffective when the "item_ids" parameter is populated')
|
|
102
|
+
.optional(),
|
|
103
|
+
reviewee_user_ids: zod_1.z
|
|
104
|
+
.array(zod_1.z.string())
|
|
105
|
+
.describe('A list of reviewee IDs. Obtain the item information of the reviewee in the cycle. This parameter is ineffective when the "item_ids" or "external_ids" parameters are populated')
|
|
106
|
+
.optional(),
|
|
107
|
+
}),
|
|
108
|
+
params: zod_1.z
|
|
109
|
+
.object({
|
|
110
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
111
|
+
page_token: zod_1.z
|
|
112
|
+
.string()
|
|
113
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
114
|
+
.optional(),
|
|
115
|
+
page_size: zod_1.z.number().optional(),
|
|
116
|
+
})
|
|
117
|
+
.optional(),
|
|
118
|
+
},
|
|
119
|
+
};
|
|
120
|
+
exports.performanceV2AdditionalInformationsBatchDelete = {
|
|
121
|
+
project: 'performance',
|
|
122
|
+
name: 'performance.v2.additionalInformationsBatch.delete',
|
|
123
|
+
sdkName: 'performance.v2.additionalInformationsBatch.delete',
|
|
124
|
+
path: '/open-apis/performance/v2/additional_informations/batch',
|
|
125
|
+
httpMethod: 'DELETE',
|
|
126
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Supplementary Information-Batch Delete Supplementary Information-Supplementary information of the reviewees can be deleted in batches',
|
|
127
|
+
accessTokens: ['tenant'],
|
|
128
|
+
schema: {
|
|
129
|
+
data: zod_1.z.object({
|
|
130
|
+
semester_id: zod_1.z
|
|
131
|
+
.string()
|
|
132
|
+
.describe('The evaluation period ID can be obtained through the [Get Period List] interface'),
|
|
133
|
+
additional_informations: zod_1.z
|
|
134
|
+
.array(zod_1.z.string())
|
|
135
|
+
.describe('The list of supplementary information IDs can be obtained through the [Batch Query Supplementary Information] interface'),
|
|
136
|
+
}),
|
|
137
|
+
params: zod_1.z
|
|
138
|
+
.object({ user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id']).describe('User ID type').optional() })
|
|
139
|
+
.optional(),
|
|
140
|
+
},
|
|
141
|
+
};
|
|
142
|
+
exports.performanceV2IndicatorQuery = {
|
|
143
|
+
project: 'performance',
|
|
144
|
+
name: 'performance.v2.indicator.query',
|
|
145
|
+
sdkName: 'performance.v2.indicator.query',
|
|
146
|
+
path: '/open-apis/performance/v2/indicators/query',
|
|
147
|
+
httpMethod: 'POST',
|
|
148
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Review templates and questions-Get the evaluation question configuration-Get scoring queations',
|
|
149
|
+
accessTokens: ['tenant'],
|
|
150
|
+
schema: {
|
|
151
|
+
data: zod_1.z
|
|
152
|
+
.object({
|
|
153
|
+
indicator_ids: zod_1.z
|
|
154
|
+
.array(zod_1.z.string())
|
|
155
|
+
.describe('Evaluation item ID list, get the configuration data of the specified evaluation item')
|
|
156
|
+
.optional(),
|
|
157
|
+
})
|
|
158
|
+
.optional(),
|
|
159
|
+
params: zod_1.z
|
|
160
|
+
.object({
|
|
161
|
+
page_token: zod_1.z
|
|
162
|
+
.string()
|
|
163
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
164
|
+
.optional(),
|
|
165
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
166
|
+
})
|
|
167
|
+
.optional(),
|
|
168
|
+
},
|
|
169
|
+
};
|
|
170
|
+
exports.performanceV2MetricDetailImport = {
|
|
171
|
+
project: 'performance',
|
|
172
|
+
name: 'performance.v2.metricDetail.import',
|
|
173
|
+
sdkName: 'performance.v2.metricDetail.import',
|
|
174
|
+
path: '/open-apis/performance/v2/metric_details/import',
|
|
175
|
+
httpMethod: 'POST',
|
|
176
|
+
description: '[Feishu/Lark]-Performance-Metric data-Batch entry of key metrics details of the person being evaluated for the specified period-Batch entry of key metrics details of the person being evaluated in the specified period',
|
|
177
|
+
accessTokens: ['tenant'],
|
|
178
|
+
schema: {
|
|
179
|
+
data: zod_1.z.object({
|
|
180
|
+
semester_id: zod_1.z.string().describe('Period ID, which can be obtained through the [Get Period] interface'),
|
|
181
|
+
import_record_name: zod_1.z
|
|
182
|
+
.string()
|
|
183
|
+
.describe('Data source input person, you can view the record name on the input record page')
|
|
184
|
+
.optional(),
|
|
185
|
+
imported_metrics: zod_1.z
|
|
186
|
+
.array(zod_1.z.object({
|
|
187
|
+
reviewee_user_id: zod_1.z.string().describe('Assessor ID, the same type as imported parameter user_id_type'),
|
|
188
|
+
metric_id: zod_1.z
|
|
189
|
+
.string()
|
|
190
|
+
.describe('The indicator ID can be obtained through the [Get indicator library information] interface'),
|
|
191
|
+
fields: zod_1.z
|
|
192
|
+
.array(zod_1.z.object({
|
|
193
|
+
field_id: zod_1.z
|
|
194
|
+
.string()
|
|
195
|
+
.describe('The indicator field ID can be obtained through the [Get indicator field list] interface'),
|
|
196
|
+
field_value: zod_1.z.string().describe('field value').optional(),
|
|
197
|
+
field_value_person: zod_1.z
|
|
198
|
+
.string()
|
|
199
|
+
.describe('Field value, required when the field is personnel information, the same type as imported parameter user_id_type')
|
|
200
|
+
.optional(),
|
|
201
|
+
}))
|
|
202
|
+
.describe('Metric field information'),
|
|
203
|
+
}))
|
|
204
|
+
.describe('indicator breakdown'),
|
|
205
|
+
}),
|
|
206
|
+
params: zod_1.z.object({
|
|
207
|
+
client_token: zod_1.z
|
|
208
|
+
.string()
|
|
209
|
+
.describe('Determine whether the same request is based on whether the client_token are consistent'),
|
|
210
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
211
|
+
}),
|
|
212
|
+
},
|
|
213
|
+
};
|
|
214
|
+
exports.performanceV2MetricDetailQuery = {
|
|
215
|
+
project: 'performance',
|
|
216
|
+
name: 'performance.v2.metricDetail.query',
|
|
217
|
+
sdkName: 'performance.v2.metricDetail.query',
|
|
218
|
+
path: '/open-apis/performance/v2/metric_details/query',
|
|
219
|
+
httpMethod: 'POST',
|
|
220
|
+
description: '[Feishu/Lark]-Performance-Metric data-Batch acquisition of key metric details of the person being evaluated for the specified period-Batch acquisition of key metric details of the person being evaluated in the specified period',
|
|
221
|
+
accessTokens: ['tenant'],
|
|
222
|
+
schema: {
|
|
223
|
+
data: zod_1.z.object({
|
|
224
|
+
semester_id: zod_1.z
|
|
225
|
+
.string()
|
|
226
|
+
.describe('Cycle ID, only 1 cycle is allowed to be queried at a time, semester_id can be obtained through the [[Get Cycle]] interface'),
|
|
227
|
+
reviewee_user_ids: zod_1.z
|
|
228
|
+
.array(zod_1.z.string())
|
|
229
|
+
.describe('List of assessee IDs. If not passed on, return key metric details of all participating assessees for the period'),
|
|
230
|
+
}),
|
|
231
|
+
params: zod_1.z
|
|
232
|
+
.object({
|
|
233
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
234
|
+
})
|
|
235
|
+
.optional(),
|
|
236
|
+
},
|
|
237
|
+
};
|
|
238
|
+
exports.performanceV2MetricFieldQuery = {
|
|
239
|
+
project: 'performance',
|
|
240
|
+
name: 'performance.v2.metricField.query',
|
|
241
|
+
sdkName: 'performance.v2.metricField.query',
|
|
242
|
+
path: '/open-apis/performance/v2/metric_fields/query',
|
|
243
|
+
httpMethod: 'POST',
|
|
244
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Metric-Get indicator field information-Get the field base information of the indicator',
|
|
245
|
+
accessTokens: ['tenant'],
|
|
246
|
+
schema: {
|
|
247
|
+
data: zod_1.z
|
|
248
|
+
.object({
|
|
249
|
+
field_ids: zod_1.z
|
|
250
|
+
.array(zod_1.z.string())
|
|
251
|
+
.describe('The field ID of the indicator, if it is not passed, all field information will be obtained by default')
|
|
252
|
+
.optional(),
|
|
253
|
+
})
|
|
254
|
+
.optional(),
|
|
255
|
+
},
|
|
256
|
+
};
|
|
257
|
+
exports.performanceV2MetricLibQuery = {
|
|
258
|
+
project: 'performance',
|
|
259
|
+
name: 'performance.v2.metricLib.query',
|
|
260
|
+
sdkName: 'performance.v2.metricLib.query',
|
|
261
|
+
path: '/open-apis/performance/v2/metric_libs/query',
|
|
262
|
+
httpMethod: 'POST',
|
|
263
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Metric-Get indicator library information-Get information on the indicator library',
|
|
264
|
+
accessTokens: ['tenant'],
|
|
265
|
+
schema: {
|
|
266
|
+
data: zod_1.z
|
|
267
|
+
.object({
|
|
268
|
+
is_active: zod_1.z.boolean().describe('Whether the status is enabled, not specified to get all states').optional(),
|
|
269
|
+
tag_ids: zod_1.z
|
|
270
|
+
.array(zod_1.z.string())
|
|
271
|
+
.describe('The label ID to which the indicator belongs can be obtained through the [[Get indicator label information] ] interface, and all labels are not specified')
|
|
272
|
+
.optional(),
|
|
273
|
+
type_ids: zod_1.z
|
|
274
|
+
.array(zod_1.z.string())
|
|
275
|
+
.describe('The indicator type ID to which it belongs, not specified Get all types')
|
|
276
|
+
.optional(),
|
|
277
|
+
range_of_availability: zod_1.z
|
|
278
|
+
.enum(['admins_and_reviewees', 'only_admins'])
|
|
279
|
+
.describe('Available ranges, not specified Get all ranges Options:admins_and_reviewees(Allow administrators to issue and evaluates to choose),only_admins(Only administrators are allowed to issue)')
|
|
280
|
+
.optional(),
|
|
281
|
+
scoring_setting_type: zod_1.z
|
|
282
|
+
.enum(['score_manually', 'score_by_formula'])
|
|
283
|
+
.describe('Rating setting type, do not specify Get all types Options:score_manually(manual grading),score_by_formula(formula scoring)')
|
|
284
|
+
.optional(),
|
|
285
|
+
})
|
|
286
|
+
.optional(),
|
|
287
|
+
params: zod_1.z
|
|
288
|
+
.object({
|
|
289
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
290
|
+
page_token: zod_1.z
|
|
291
|
+
.string()
|
|
292
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
293
|
+
.optional(),
|
|
294
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
295
|
+
})
|
|
296
|
+
.optional(),
|
|
297
|
+
},
|
|
298
|
+
};
|
|
299
|
+
exports.performanceV2MetricTagList = {
|
|
300
|
+
project: 'performance',
|
|
301
|
+
name: 'performance.v2.metricTag.list',
|
|
302
|
+
sdkName: 'performance.v2.metricTag.list',
|
|
303
|
+
path: '/open-apis/performance/v2/metric_tags',
|
|
304
|
+
httpMethod: 'GET',
|
|
305
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Metric-Get metric tag information-Get metric tag information. Such as the name of the metric tag, the create time of metric tag',
|
|
306
|
+
accessTokens: ['tenant'],
|
|
307
|
+
schema: {
|
|
308
|
+
params: zod_1.z
|
|
309
|
+
.object({
|
|
310
|
+
page_size: zod_1.z.number().describe('paging size**Default value**: 20').optional(),
|
|
311
|
+
page_token: zod_1.z
|
|
312
|
+
.string()
|
|
313
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
314
|
+
.optional(),
|
|
315
|
+
tag_ids: zod_1.z
|
|
316
|
+
.array(zod_1.z.string())
|
|
317
|
+
.describe('List of indicator label IDs, no longer paginated when using this parameter')
|
|
318
|
+
.optional(),
|
|
319
|
+
})
|
|
320
|
+
.optional(),
|
|
321
|
+
},
|
|
322
|
+
};
|
|
323
|
+
exports.performanceV2MetricTemplateQuery = {
|
|
324
|
+
project: 'performance',
|
|
325
|
+
name: 'performance.v2.metricTemplate.query',
|
|
326
|
+
sdkName: 'performance.v2.metricTemplate.query',
|
|
327
|
+
path: '/open-apis/performance/v2/metric_templates/query',
|
|
328
|
+
httpMethod: 'POST',
|
|
329
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Metric-Get indicator template information-Get information on the indicator template',
|
|
330
|
+
accessTokens: ['tenant'],
|
|
331
|
+
schema: {
|
|
332
|
+
data: zod_1.z
|
|
333
|
+
.object({
|
|
334
|
+
metrics_template_ids: zod_1.z
|
|
335
|
+
.array(zod_1.z.string())
|
|
336
|
+
.describe("The list of indicator template IDs, metrics_template_id can be obtained through the url of the background configuration details page of the indicator template, or through the return value of this interface. If you don't fill it in, all indicator templates will be returned by default")
|
|
337
|
+
.optional(),
|
|
338
|
+
status: zod_1.z
|
|
339
|
+
.enum(['to_be_configured', 'to_be_activated', 'enabled', 'disabled'])
|
|
340
|
+
.describe('state Options:to_be_configured(Configuration to be completed),to_be_activated(To be enabled),enabled(Enabled),disabled(Deactivated)')
|
|
341
|
+
.optional(),
|
|
342
|
+
})
|
|
343
|
+
.optional(),
|
|
344
|
+
params: zod_1.z
|
|
345
|
+
.object({
|
|
346
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
347
|
+
page_token: zod_1.z
|
|
348
|
+
.string()
|
|
349
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
350
|
+
.optional(),
|
|
351
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
352
|
+
})
|
|
353
|
+
.optional(),
|
|
354
|
+
},
|
|
355
|
+
};
|
|
356
|
+
exports.performanceV2QuestionQuery = {
|
|
357
|
+
project: 'performance',
|
|
358
|
+
name: 'performance.v2.question.query',
|
|
359
|
+
sdkName: 'performance.v2.question.query',
|
|
360
|
+
path: '/open-apis/performance/v2/questions/query',
|
|
361
|
+
httpMethod: 'POST',
|
|
362
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Review templates and questions-Get evaluation template configuration-Get tag-based questions',
|
|
363
|
+
accessTokens: ['tenant'],
|
|
364
|
+
schema: {
|
|
365
|
+
data: zod_1.z
|
|
366
|
+
.object({
|
|
367
|
+
tag_based_question_ids: zod_1.z
|
|
368
|
+
.array(zod_1.z.string())
|
|
369
|
+
.describe('Tag fill in question ID list, get the configuration data of the specified tag fill in question. If not passed, return all')
|
|
370
|
+
.optional(),
|
|
371
|
+
})
|
|
372
|
+
.optional(),
|
|
373
|
+
params: zod_1.z
|
|
374
|
+
.object({
|
|
375
|
+
page_token: zod_1.z
|
|
376
|
+
.string()
|
|
377
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
378
|
+
.optional(),
|
|
379
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
380
|
+
})
|
|
381
|
+
.optional(),
|
|
382
|
+
},
|
|
383
|
+
};
|
|
384
|
+
exports.performanceV2ReviewDataQuery = {
|
|
385
|
+
project: 'performance',
|
|
386
|
+
name: 'performance.v2.reviewData.query',
|
|
387
|
+
sdkName: 'performance.v2.reviewData.query',
|
|
388
|
+
path: '/open-apis/performance/v2/review_datas/query',
|
|
389
|
+
httpMethod: 'POST',
|
|
390
|
+
description: '[Feishu/Lark]-Performance-Review data-Acquire detailed performance data-Get performance details (excluding calibration)',
|
|
391
|
+
accessTokens: ['tenant'],
|
|
392
|
+
schema: {
|
|
393
|
+
data: zod_1.z.object({
|
|
394
|
+
semester_ids: zod_1.z
|
|
395
|
+
.array(zod_1.z.string())
|
|
396
|
+
.describe('Evaluation period ID list, semester_id can be obtained through [Acquisition Period]'),
|
|
397
|
+
reviewee_user_ids: zod_1.z.array(zod_1.z.string()).describe('List of assessee IDs'),
|
|
398
|
+
stage_types: zod_1.z
|
|
399
|
+
.array(zod_1.z
|
|
400
|
+
.enum([
|
|
401
|
+
'summarize_key_outputs',
|
|
402
|
+
'review',
|
|
403
|
+
'communication_and_open_result',
|
|
404
|
+
'view_result',
|
|
405
|
+
'reconsideration',
|
|
406
|
+
'leader_review',
|
|
407
|
+
])
|
|
408
|
+
.describe('Options:summarize_key_outputs(Work summary link),review(evaluation link),communication_and_open_result(Result communication link),view_result(Performance results viewing session),reconsideration(Result review session),leader_review(Final evaluation process (specifically the final performance result data))'))
|
|
409
|
+
.describe('link type')
|
|
410
|
+
.optional(),
|
|
411
|
+
review_stage_roles: zod_1.z
|
|
412
|
+
.array(zod_1.z
|
|
413
|
+
.enum([
|
|
414
|
+
'reviewee',
|
|
415
|
+
'invited_reviewer',
|
|
416
|
+
'solid_line_leader',
|
|
417
|
+
'dotted_line_leader',
|
|
418
|
+
'secondary_solid_line_leader',
|
|
419
|
+
'direct_project_leader',
|
|
420
|
+
'custom_review_role',
|
|
421
|
+
'metric_reviewer',
|
|
422
|
+
])
|
|
423
|
+
.describe('Options:reviewee(Assessor),invited_reviewer(360 ° evaluator),solid_line_leader(Solid-line manager),dotted_line_leader(Dotted-line manager),secondary_solid_line_leader(Second solid-line manager),direct_project_leader(Cooperation project direct manager),custom_review_role(Custom evaluation roles),metric_reviewer(Index evaluator)'))
|
|
424
|
+
.describe('The executor role of the evaluation link, which includes all the executor roles by default. When there is an evaluation link in the passed link type, the evaluation link data of the specified executor role is returned')
|
|
425
|
+
.optional(),
|
|
426
|
+
stage_ids: zod_1.z
|
|
427
|
+
.array(zod_1.z.string())
|
|
428
|
+
.describe('Link ID. If the link ID and link type are passed at the same time, the performance data corresponding to the link ID will be returned first')
|
|
429
|
+
.optional(),
|
|
430
|
+
need_leader_review_data_source: zod_1.z
|
|
431
|
+
.boolean()
|
|
432
|
+
.describe('When the link type of the performance data to be obtained includes the final evaluation link, you can specify whether to return the specific link source of the performance final evaluation data. If not, it will not be returned by default')
|
|
433
|
+
.optional(),
|
|
434
|
+
updated_later_than: zod_1.z
|
|
435
|
+
.string()
|
|
436
|
+
.describe('The link update time is later than that, a timestamp accurate to milliseconds, and the link data with content submitted after this time can be screened out')
|
|
437
|
+
.optional(),
|
|
438
|
+
stage_progresses: zod_1.z
|
|
439
|
+
.array(zod_1.z.number())
|
|
440
|
+
.describe("Link status, all states are included by default if not passed. Each type of link has the following link status:View performance results link statusThe optional values are:- '0': Opened, performance results have been opened, no reconsideration has been initiated and no confirmation of results is required- '1': To be confirmed, the performance result has been opened but the evaluator has not confirmed the result, and the deadline for confirmation has not yet been reached- '2': Closed, performance results have been opened but the evaluator has not confirmed the results, and the deadline for confirmation has arrived- '3': Confirmed, performance results have been opened, and the assessed person has confirmed the results- '4': Reconsideration has been initiated, the performance results have been opened, and the person being evaluated has initiated a reconsiderationFinal evaluation link/result communication link status (all states are included by default if not transmitted)Performance results review link statusThe optional values are:- '1': To be completed, task not completed- '2': Expired, the deadline for the task has been reached, and the task has not been completed- '3': Completed, task completedOther link types other than the aboveThe optional values are:- '0': did not start, the start time of the task has not been reached- '1': To be completed, the start time of the task has arrived but the deadline has not been reached, and the task has not been completed- '2': Expired, the deadline for the task has been reached, and the task has not been completed- '3': Completed, task completed")
|
|
441
|
+
.optional(),
|
|
442
|
+
}),
|
|
443
|
+
params: zod_1.z
|
|
444
|
+
.object({
|
|
445
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
446
|
+
})
|
|
447
|
+
.optional(),
|
|
448
|
+
},
|
|
449
|
+
};
|
|
450
|
+
exports.performanceV2ReviewTemplateQuery = {
|
|
451
|
+
project: 'performance',
|
|
452
|
+
name: 'performance.v2.reviewTemplate.query',
|
|
453
|
+
sdkName: 'performance.v2.reviewTemplate.query',
|
|
454
|
+
path: '/open-apis/performance/v2/review_templates/query',
|
|
455
|
+
httpMethod: 'POST',
|
|
456
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Review templates and questions-Get label fill in question configuration-Get review templates',
|
|
457
|
+
accessTokens: ['tenant'],
|
|
458
|
+
schema: {
|
|
459
|
+
data: zod_1.z
|
|
460
|
+
.object({
|
|
461
|
+
review_template_ids: zod_1.z
|
|
462
|
+
.array(zod_1.z.string())
|
|
463
|
+
.describe('Evaluation template ID list, get the configuration data of the specified evaluation template. If not passed, return all')
|
|
464
|
+
.optional(),
|
|
465
|
+
})
|
|
466
|
+
.optional(),
|
|
467
|
+
params: zod_1.z
|
|
468
|
+
.object({
|
|
469
|
+
page_token: zod_1.z
|
|
470
|
+
.string()
|
|
471
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
472
|
+
.optional(),
|
|
473
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
474
|
+
})
|
|
475
|
+
.optional(),
|
|
476
|
+
},
|
|
477
|
+
};
|
|
478
|
+
exports.performanceV2RevieweeQuery = {
|
|
479
|
+
project: 'performance',
|
|
480
|
+
name: 'performance.v2.reviewee.query',
|
|
481
|
+
sdkName: 'performance.v2.reviewee.query',
|
|
482
|
+
path: '/open-apis/performance/v2/reviewees/query',
|
|
483
|
+
httpMethod: 'POST',
|
|
484
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Reviewee Information-Obtain information of reviewees-Obtain information of individuals selected for projects (including uninitiated projects) during the performance cycle',
|
|
485
|
+
accessTokens: ['tenant'],
|
|
486
|
+
schema: {
|
|
487
|
+
data: zod_1.z.object({
|
|
488
|
+
semester_id: zod_1.z
|
|
489
|
+
.string()
|
|
490
|
+
.describe('Cycle ID, only 1 cycle is allowed to be queried at a time, semester_id can be obtained through the [[Get Cycle]] interface'),
|
|
491
|
+
user_ids: zod_1.z
|
|
492
|
+
.array(zod_1.z.string())
|
|
493
|
+
.describe('User ID, the type needs to be consistent with the user_id_type in the query parameters. If not specified, it will by default return the information of all reviewees in this semester')
|
|
494
|
+
.optional(),
|
|
495
|
+
activity_ids: zod_1.z
|
|
496
|
+
.array(zod_1.z.string())
|
|
497
|
+
.describe('The project ID list can be obtained through [get the project list]Interface to obtain and query the information of the evaluated person under the specified project')
|
|
498
|
+
.optional(),
|
|
499
|
+
}),
|
|
500
|
+
params: zod_1.z
|
|
501
|
+
.object({
|
|
502
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
503
|
+
page_token: zod_1.z
|
|
504
|
+
.string()
|
|
505
|
+
.describe('Page identifier. It is not filled in the first request, indicating traversal from the beginning when there will be more groups, the new page_token will be returned at the same time, and the next traversal can use the page_token to get more groups')
|
|
506
|
+
.optional(),
|
|
507
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
508
|
+
})
|
|
509
|
+
.optional(),
|
|
510
|
+
},
|
|
511
|
+
};
|
|
512
|
+
exports.performanceV2UserGroupUserRelWrite = {
|
|
513
|
+
project: 'performance',
|
|
514
|
+
name: 'performance.v2.userGroupUserRel.write',
|
|
515
|
+
sdkName: 'performance.v2.userGroupUserRel.write',
|
|
516
|
+
path: '/open-apis/performance/v2/user_group_user_rels/write',
|
|
517
|
+
httpMethod: 'POST',
|
|
518
|
+
description: '[Feishu/Lark]-Performance-Admin configuration-Cycles and projects-Individual Group-Write member scope of individual group-Write member scope of individual group',
|
|
519
|
+
accessTokens: ['tenant'],
|
|
520
|
+
schema: {
|
|
521
|
+
data: zod_1.z
|
|
522
|
+
.object({
|
|
523
|
+
group_id: zod_1.z.string().describe('Individual group ID').optional(),
|
|
524
|
+
scope_visible_setting: zod_1.z
|
|
525
|
+
.number()
|
|
526
|
+
.describe('Individual group visibility configuration for list of individuals Options:0(not_limit No restrictions),1(backend_admin_not_visible Not visible to back-end admins)')
|
|
527
|
+
.optional(),
|
|
528
|
+
user_ids: zod_1.z
|
|
529
|
+
.array(zod_1.z.string())
|
|
530
|
+
.describe('List of individuals. The ID type is consistent with the value of the query parameter user_id_type')
|
|
531
|
+
.optional(),
|
|
532
|
+
})
|
|
533
|
+
.optional(),
|
|
534
|
+
params: zod_1.z.object({
|
|
535
|
+
client_token: zod_1.z
|
|
536
|
+
.string()
|
|
537
|
+
.describe('Determine whether the same request is based on whether the client_token are consistent'),
|
|
538
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_admin_id']).describe('User ID type').optional(),
|
|
539
|
+
}),
|
|
540
|
+
},
|
|
541
|
+
};
|
|
542
|
+
exports.performanceV2Tools = [
|
|
543
|
+
exports.performanceV2ActivityQuery,
|
|
544
|
+
exports.performanceV2AdditionalInformationImport,
|
|
545
|
+
exports.performanceV2AdditionalInformationQuery,
|
|
546
|
+
exports.performanceV2AdditionalInformationsBatchDelete,
|
|
547
|
+
exports.performanceV2IndicatorQuery,
|
|
548
|
+
exports.performanceV2MetricDetailImport,
|
|
549
|
+
exports.performanceV2MetricDetailQuery,
|
|
550
|
+
exports.performanceV2MetricFieldQuery,
|
|
551
|
+
exports.performanceV2MetricLibQuery,
|
|
552
|
+
exports.performanceV2MetricTagList,
|
|
553
|
+
exports.performanceV2MetricTemplateQuery,
|
|
554
|
+
exports.performanceV2QuestionQuery,
|
|
555
|
+
exports.performanceV2ReviewDataQuery,
|
|
556
|
+
exports.performanceV2ReviewTemplateQuery,
|
|
557
|
+
exports.performanceV2RevieweeQuery,
|
|
558
|
+
exports.performanceV2UserGroupUserRelWrite,
|
|
559
|
+
];
|