@danyow/lark-mcp 0.5.1
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 +32 -0
- package/dist/auth/handler/handler.js +117 -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 +135 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +5 -0
- package/dist/cli/login-handler.d.ts +16 -0
- package/dist/cli/login-handler.js +142 -0
- package/dist/cli.d.ts +4 -0
- package/dist/cli.js +122 -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 +40 -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 +49 -0
- package/dist/mcp-tool/constants.js +115 -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/builtin.d.ts +5 -0
- package/dist/mcp-tool/tools/en/builtin-tools/docx/builtin.js +219 -0
- package/dist/mcp-tool/tools/en/builtin-tools/drive/builtin.d.ts +4 -0
- package/dist/mcp-tool/tools/en/builtin-tools/drive/builtin.js +159 -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 +5 -0
- package/dist/mcp-tool/tools/en/builtin-tools/index.js +7 -0
- package/dist/mcp-tool/tools/en/gen-tools/index.d.ts +114 -0
- package/dist/mcp-tool/tools/en/gen-tools/index.js +129 -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_v2.d.ts +523 -0
- package/dist/mcp-tool/tools/en/gen-tools/zod/sheets_v2.js +231 -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/builtin.d.ts +5 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/docx/builtin.js +198 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/drive/builtin.d.ts +4 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/drive/builtin.js +159 -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 +5 -0
- package/dist/mcp-tool/tools/zh/builtin-tools/index.js +7 -0
- package/dist/mcp-tool/tools/zh/gen-tools/index.d.ts +114 -0
- package/dist/mcp-tool/tools/zh/gen-tools/index.js +129 -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_v2.d.ts +523 -0
- package/dist/mcp-tool/tools/zh/gen-tools/zod/sheets_v2.js +231 -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 +119 -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 +35 -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 +1527 -0
- package/docs/reference/tool-presets/tools-zh.md +1544 -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,260 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.cardkitV1Tools = exports.cardkitV1CardUpdate = exports.cardkitV1CardSettings = exports.cardkitV1CardIdConvert = exports.cardkitV1CardElementUpdate = exports.cardkitV1CardElementPatch = exports.cardkitV1CardElementDelete = exports.cardkitV1CardElementCreate = exports.cardkitV1CardElementContent = exports.cardkitV1CardCreate = exports.cardkitV1CardBatchUpdate = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.cardkitV1CardBatchUpdate = {
|
|
6
|
+
project: 'cardkit',
|
|
7
|
+
name: 'cardkit.v1.card.batchUpdate',
|
|
8
|
+
sdkName: 'cardkit.v1.card.batchUpdate',
|
|
9
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/batch_update',
|
|
10
|
+
httpMethod: 'POST',
|
|
11
|
+
description: '[Feishu/Lark]-Feishu Card-Card-Batch update card entity-Batch update card',
|
|
12
|
+
accessTokens: ['tenant'],
|
|
13
|
+
schema: {
|
|
14
|
+
data: zod_1.z.object({
|
|
15
|
+
uuid: zod_1.z
|
|
16
|
+
.string()
|
|
17
|
+
.describe('Idempotent ID, which can be passed in a unique UUID to ensure that the same batch of operations is performed only once')
|
|
18
|
+
.optional(),
|
|
19
|
+
sequence: zod_1.z
|
|
20
|
+
.number()
|
|
21
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
22
|
+
actions: zod_1.z
|
|
23
|
+
.string()
|
|
24
|
+
.describe("List of operations, optional values are:- 'partial_update_setting': Update card configuration, support updating card config and card_link fields. For parameter structure, please refer to [Update Card Configuration];- 'add_elements': Add components, support type, target_element_id, elements fields. The parameter structure can refer to the [New Component] interface request body;- delete_elements: Delete the component, support element_ids fields. The parameter value is the component ID array. The parameter structure can refer to [Delete Component];- 'partial_update_element': Update the properties of the component, support element_id and partial_element fields. The parameter structure can refer to the path parameters of the [Update Component Properties] interface element_id and request body partial_element fields;- update_element: full update component, support element_id and element fields. The parameter structure can refer to the path parameter element_id and request body element field of the [full update component] interface"),
|
|
25
|
+
}),
|
|
26
|
+
path: zod_1.z.object({ card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]') }),
|
|
27
|
+
},
|
|
28
|
+
};
|
|
29
|
+
exports.cardkitV1CardCreate = {
|
|
30
|
+
project: 'cardkit',
|
|
31
|
+
name: 'cardkit.v1.card.create',
|
|
32
|
+
sdkName: 'cardkit.v1.card.create',
|
|
33
|
+
path: '/open-apis/cardkit/v1/cards',
|
|
34
|
+
httpMethod: 'POST',
|
|
35
|
+
description: '[Feishu/Lark]-Feishu Card-Card-Create card entity-Create a card entity based on the card JSON code or the cardkit tool',
|
|
36
|
+
accessTokens: ['tenant'],
|
|
37
|
+
schema: {
|
|
38
|
+
data: zod_1.z.object({
|
|
39
|
+
type: zod_1.z
|
|
40
|
+
.string()
|
|
41
|
+
.describe('Card types. Optional values:- `card_json`: Cards constructed from card JSON code- `template`: Card templates built with the [card construction tool]'),
|
|
42
|
+
data: zod_1.z
|
|
43
|
+
.string()
|
|
44
|
+
.describe('Card data. It must be consistent with the type specified by `type`:- If `type` is `card_json`, then card JSON code should be passed here, and ensure it is escaped as a string. Only the [card JSON 2.0 structure] is supported, meaning you must declare `schema` as `2.0`.- If `type` is `template`, then card template data should be passed here, and ensure it is escaped as a string. Only the new version cards are supported. In the construction tool, there should be a "New Version" label next to the card name'),
|
|
45
|
+
}),
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
exports.cardkitV1CardElementContent = {
|
|
49
|
+
project: 'cardkit',
|
|
50
|
+
name: 'cardkit.v1.cardElement.content',
|
|
51
|
+
sdkName: 'cardkit.v1.cardElement.content',
|
|
52
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/elements/:element_id/content',
|
|
53
|
+
httpMethod: 'PUT',
|
|
54
|
+
description: '[Feishu/Lark]-Feishu Card-Element-Stream update text-Pass the full text content to a plain text element (tagged as `plain_text`) or a rich text component (tagged as `markdown`) in the card to achieve a "typewriter" effect for text output. Refer to [Streaming Updates for Cards] to understand the complete process of streaming text updates',
|
|
55
|
+
accessTokens: ['tenant'],
|
|
56
|
+
schema: {
|
|
57
|
+
data: zod_1.z.object({
|
|
58
|
+
uuid: zod_1.z
|
|
59
|
+
.string()
|
|
60
|
+
.describe('Idempotent IDs, which can be passed a unique uuid to ensure that the same batch of operations is performed only once')
|
|
61
|
+
.optional(),
|
|
62
|
+
content: zod_1.z
|
|
63
|
+
.string()
|
|
64
|
+
.describe('Updated text content.**Note**: If the content contains code blocks, you need to remove the spaces before and after the code blocks, as they may cause the code rendering to fail'),
|
|
65
|
+
sequence: zod_1.z
|
|
66
|
+
.number()
|
|
67
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
68
|
+
}),
|
|
69
|
+
path: zod_1.z.object({
|
|
70
|
+
card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]'),
|
|
71
|
+
element_id: zod_1.z
|
|
72
|
+
.string()
|
|
73
|
+
.describe('The ID of a plain text element or rich text component. This corresponds to the `element_id` attribute in the card JSON or the component ID attribute in the construction tool, which is customized by the developer. **Note**: For cards in the construction tool, only the component ID of a rich text component is supported here. This means only the content within rich text components supports streaming updates'),
|
|
74
|
+
}),
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
exports.cardkitV1CardElementCreate = {
|
|
78
|
+
project: 'cardkit',
|
|
79
|
+
name: 'cardkit.v1.cardElement.create',
|
|
80
|
+
sdkName: 'cardkit.v1.cardElement.create',
|
|
81
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/elements',
|
|
82
|
+
httpMethod: 'POST',
|
|
83
|
+
description: '[Feishu/Lark]-Feishu Card-Element-Insert element-Insert Element',
|
|
84
|
+
accessTokens: ['tenant'],
|
|
85
|
+
schema: {
|
|
86
|
+
data: zod_1.z.object({
|
|
87
|
+
type: zod_1.z
|
|
88
|
+
.enum(['insert_before', 'insert_after', 'append'])
|
|
89
|
+
.describe('How to add components Options:insert_before(Insert in front of the target component),insert_after(Insert after target component),append(Add at the end of a card or container component)'),
|
|
90
|
+
target_element_id: zod_1.z
|
|
91
|
+
.string()
|
|
92
|
+
.describe('The ID of the target component. When type is insert_before, insert_after, it is the target component used for positioning. When type is append, this field only supports container class components. It is the target component added at the end of the specified end. If it is not filled in, it is added at the end of the card body by default')
|
|
93
|
+
.optional(),
|
|
94
|
+
uuid: zod_1.z
|
|
95
|
+
.string()
|
|
96
|
+
.describe('Idempotent IDs, which can be passed a unique uuid to ensure that the same batch of operations is performed only once')
|
|
97
|
+
.optional(),
|
|
98
|
+
sequence: zod_1.z
|
|
99
|
+
.number()
|
|
100
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
101
|
+
elements: zod_1.z.string().describe('Component List'),
|
|
102
|
+
}),
|
|
103
|
+
path: zod_1.z.object({ card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]') }),
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
exports.cardkitV1CardElementDelete = {
|
|
107
|
+
project: 'cardkit',
|
|
108
|
+
name: 'cardkit.v1.cardElement.delete',
|
|
109
|
+
sdkName: 'cardkit.v1.cardElement.delete',
|
|
110
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/elements/:element_id',
|
|
111
|
+
httpMethod: 'DELETE',
|
|
112
|
+
description: '[Feishu/Lark]-Feishu Card-Element-Delete element-Delete Element',
|
|
113
|
+
accessTokens: ['tenant'],
|
|
114
|
+
schema: {
|
|
115
|
+
data: zod_1.z.object({
|
|
116
|
+
uuid: zod_1.z
|
|
117
|
+
.string()
|
|
118
|
+
.describe('Idempotent IDs, which can be passed a unique uuid to ensure that the same batch of operations is performed only once')
|
|
119
|
+
.optional(),
|
|
120
|
+
sequence: zod_1.z
|
|
121
|
+
.number()
|
|
122
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
123
|
+
}),
|
|
124
|
+
path: zod_1.z.object({
|
|
125
|
+
card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]'),
|
|
126
|
+
element_id: zod_1.z.string().describe('Component ID'),
|
|
127
|
+
}),
|
|
128
|
+
},
|
|
129
|
+
};
|
|
130
|
+
exports.cardkitV1CardElementPatch = {
|
|
131
|
+
project: 'cardkit',
|
|
132
|
+
name: 'cardkit.v1.cardElement.patch',
|
|
133
|
+
sdkName: 'cardkit.v1.cardElement.patch',
|
|
134
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/elements/:element_id',
|
|
135
|
+
httpMethod: 'PATCH',
|
|
136
|
+
description: '[Feishu/Lark]-Feishu Card-Element-Patch Update Element-Update Element Attribute',
|
|
137
|
+
accessTokens: ['tenant'],
|
|
138
|
+
schema: {
|
|
139
|
+
data: zod_1.z.object({
|
|
140
|
+
partial_element: zod_1.z
|
|
141
|
+
.string()
|
|
142
|
+
.describe('The configuration content of the component part to be changed will be updated after passing the id parameter to the original component. Modifying the tag parameter is not supported'),
|
|
143
|
+
uuid: zod_1.z
|
|
144
|
+
.string()
|
|
145
|
+
.describe('Idempotent IDs, which can be passed a unique uuid to ensure that the same batch of operations is performed only once')
|
|
146
|
+
.optional(),
|
|
147
|
+
sequence: zod_1.z
|
|
148
|
+
.number()
|
|
149
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
150
|
+
}),
|
|
151
|
+
path: zod_1.z.object({
|
|
152
|
+
card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]'),
|
|
153
|
+
element_id: zod_1.z.string().describe('Component ID'),
|
|
154
|
+
}),
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
exports.cardkitV1CardElementUpdate = {
|
|
158
|
+
project: 'cardkit',
|
|
159
|
+
name: 'cardkit.v1.cardElement.update',
|
|
160
|
+
sdkName: 'cardkit.v1.cardElement.update',
|
|
161
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/elements/:element_id',
|
|
162
|
+
httpMethod: 'PUT',
|
|
163
|
+
description: '[Feishu/Lark]-Feishu Card-Element-Update element-Update Element',
|
|
164
|
+
accessTokens: ['tenant'],
|
|
165
|
+
schema: {
|
|
166
|
+
data: zod_1.z.object({
|
|
167
|
+
uuid: zod_1.z
|
|
168
|
+
.string()
|
|
169
|
+
.describe('Idempotent IDs, which can be passed a unique uuid to ensure that the same batch of operations is performed only once')
|
|
170
|
+
.optional(),
|
|
171
|
+
element: zod_1.z.string().describe('new component'),
|
|
172
|
+
sequence: zod_1.z
|
|
173
|
+
.number()
|
|
174
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
175
|
+
}),
|
|
176
|
+
path: zod_1.z.object({
|
|
177
|
+
card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]'),
|
|
178
|
+
element_id: zod_1.z.string().describe('Component ID'),
|
|
179
|
+
}),
|
|
180
|
+
},
|
|
181
|
+
};
|
|
182
|
+
exports.cardkitV1CardIdConvert = {
|
|
183
|
+
project: 'cardkit',
|
|
184
|
+
name: 'cardkit.v1.card.idConvert',
|
|
185
|
+
sdkName: 'cardkit.v1.card.idConvert',
|
|
186
|
+
path: '/open-apis/cardkit/v1/cards/id_convert',
|
|
187
|
+
httpMethod: 'POST',
|
|
188
|
+
description: '[Feishu/Lark]-Deprecated Version (Not Recommended)-Convert ID-ID Convert',
|
|
189
|
+
accessTokens: ['tenant'],
|
|
190
|
+
schema: {
|
|
191
|
+
data: zod_1.z.object({ message_id: zod_1.z.string().describe('Message ID. Get via [Send Message]') }),
|
|
192
|
+
},
|
|
193
|
+
};
|
|
194
|
+
exports.cardkitV1CardSettings = {
|
|
195
|
+
project: 'cardkit',
|
|
196
|
+
name: 'cardkit.v1.card.settings',
|
|
197
|
+
sdkName: 'cardkit.v1.card.settings',
|
|
198
|
+
path: '/open-apis/cardkit/v1/cards/:card_id/settings',
|
|
199
|
+
httpMethod: 'PATCH',
|
|
200
|
+
description: '[Feishu/Lark]-Feishu Card-Card-Update card config-Updates the configuration of a given card entity, supporting updates to the config and card_link fields',
|
|
201
|
+
accessTokens: ['tenant'],
|
|
202
|
+
schema: {
|
|
203
|
+
data: zod_1.z.object({
|
|
204
|
+
settings: zod_1.z
|
|
205
|
+
.string()
|
|
206
|
+
.describe("Card configuration related fields, including'config 'and 'card_link' fields. The following example values are not escaped, please be careful to convert them to JSON serialized strings when using them. For detailed field descriptions, refer to [Card JSON 2.0 Structure]"),
|
|
207
|
+
uuid: zod_1.z
|
|
208
|
+
.string()
|
|
209
|
+
.describe('Idempotent ID, which can be passed in a unique UUID to ensure that the same batch of operations is performed only once')
|
|
210
|
+
.optional(),
|
|
211
|
+
sequence: zod_1.z
|
|
212
|
+
.number()
|
|
213
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
214
|
+
}),
|
|
215
|
+
path: zod_1.z.object({ card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]') }),
|
|
216
|
+
},
|
|
217
|
+
};
|
|
218
|
+
exports.cardkitV1CardUpdate = {
|
|
219
|
+
project: 'cardkit',
|
|
220
|
+
name: 'cardkit.v1.card.update',
|
|
221
|
+
sdkName: 'cardkit.v1.card.update',
|
|
222
|
+
path: '/open-apis/cardkit/v1/cards/:card_id',
|
|
223
|
+
httpMethod: 'PUT',
|
|
224
|
+
description: '[Feishu/Lark]-Feishu Card-Card-Update card entity-Update card entity',
|
|
225
|
+
accessTokens: ['tenant'],
|
|
226
|
+
schema: {
|
|
227
|
+
data: zod_1.z.object({
|
|
228
|
+
card: zod_1.z
|
|
229
|
+
.object({
|
|
230
|
+
type: zod_1.z
|
|
231
|
+
.literal('card_json')
|
|
232
|
+
.describe('Type of card data. Take the fixed value card_json. Options:card_json(Card JSON)'),
|
|
233
|
+
data: zod_1.z
|
|
234
|
+
.string()
|
|
235
|
+
.describe('The content of the card JSON data. Only card structures in schema 2.0 are supported. The following example values are not escaped. Please be careful to convert them to JSON serialized strings when using them'),
|
|
236
|
+
})
|
|
237
|
+
.describe('Updated card content'),
|
|
238
|
+
uuid: zod_1.z
|
|
239
|
+
.string()
|
|
240
|
+
.describe('Idempotent ID, which can be passed in a unique UUID to ensure that the same batch of operations is performed only once')
|
|
241
|
+
.optional(),
|
|
242
|
+
sequence: zod_1.z
|
|
243
|
+
.number()
|
|
244
|
+
.describe('The sequence number of the card operation when the card is in streaming update mode. It is used to ensure the chronological order of multiple updates.**Note**:Please ensure that the value of `sequence` is strictly increasing compared to the previous operation when manipulating the same card through the Card OpenAPI.**Data validation rules**: Positive integers within the int32 range (`1`~`2147483647`)'),
|
|
245
|
+
}),
|
|
246
|
+
path: zod_1.z.object({ card_id: zod_1.z.string().describe('Card entity ID. Get it by [Create Card Entity]') }),
|
|
247
|
+
},
|
|
248
|
+
};
|
|
249
|
+
exports.cardkitV1Tools = [
|
|
250
|
+
exports.cardkitV1CardBatchUpdate,
|
|
251
|
+
exports.cardkitV1CardCreate,
|
|
252
|
+
exports.cardkitV1CardElementContent,
|
|
253
|
+
exports.cardkitV1CardElementCreate,
|
|
254
|
+
exports.cardkitV1CardElementDelete,
|
|
255
|
+
exports.cardkitV1CardElementPatch,
|
|
256
|
+
exports.cardkitV1CardElementUpdate,
|
|
257
|
+
exports.cardkitV1CardIdConvert,
|
|
258
|
+
exports.cardkitV1CardSettings,
|
|
259
|
+
exports.cardkitV1CardUpdate,
|
|
260
|
+
];
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export type compensationV1ToolName = 'compensation.v1.archive.query' | 'compensation.v1.changeReason.list' | 'compensation.v1.indicator.list' | 'compensation.v1.itemCategory.list' | 'compensation.v1.item.list' | 'compensation.v1.plan.list';
|
|
3
|
+
export declare const compensationV1ArchiveQuery: {
|
|
4
|
+
project: string;
|
|
5
|
+
name: string;
|
|
6
|
+
sdkName: string;
|
|
7
|
+
path: string;
|
|
8
|
+
httpMethod: string;
|
|
9
|
+
description: string;
|
|
10
|
+
accessTokens: string[];
|
|
11
|
+
schema: {
|
|
12
|
+
data: z.ZodObject<{
|
|
13
|
+
user_id_list: z.ZodArray<z.ZodString, "many">;
|
|
14
|
+
tid_list: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15
|
+
effective_start_date: z.ZodOptional<z.ZodString>;
|
|
16
|
+
effective_end_date: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
user_id_list: string[];
|
|
19
|
+
tid_list?: string[] | undefined;
|
|
20
|
+
effective_start_date?: string | undefined;
|
|
21
|
+
effective_end_date?: string | undefined;
|
|
22
|
+
}, {
|
|
23
|
+
user_id_list: string[];
|
|
24
|
+
tid_list?: string[] | undefined;
|
|
25
|
+
effective_start_date?: string | undefined;
|
|
26
|
+
effective_end_date?: string | undefined;
|
|
27
|
+
}>;
|
|
28
|
+
params: z.ZodObject<{
|
|
29
|
+
page_size: z.ZodNumber;
|
|
30
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
31
|
+
user_id_type: z.ZodEnum<["open_id", "union_id", "user_id", "people_corehr_id"]>;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
page_size: number;
|
|
34
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
35
|
+
page_token?: string | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
page_size: number;
|
|
38
|
+
user_id_type: "user_id" | "union_id" | "open_id" | "people_corehr_id";
|
|
39
|
+
page_token?: string | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
useUAT: z.ZodOptional<z.ZodBoolean>;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export declare const compensationV1ChangeReasonList: {
|
|
45
|
+
project: string;
|
|
46
|
+
name: string;
|
|
47
|
+
sdkName: string;
|
|
48
|
+
path: string;
|
|
49
|
+
httpMethod: string;
|
|
50
|
+
description: string;
|
|
51
|
+
accessTokens: string[];
|
|
52
|
+
schema: {
|
|
53
|
+
params: z.ZodObject<{
|
|
54
|
+
page_size: z.ZodNumber;
|
|
55
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
page_size: number;
|
|
58
|
+
page_token?: string | undefined;
|
|
59
|
+
}, {
|
|
60
|
+
page_size: number;
|
|
61
|
+
page_token?: string | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
export declare const compensationV1IndicatorList: {
|
|
66
|
+
project: string;
|
|
67
|
+
name: string;
|
|
68
|
+
sdkName: string;
|
|
69
|
+
path: string;
|
|
70
|
+
httpMethod: string;
|
|
71
|
+
description: string;
|
|
72
|
+
accessTokens: string[];
|
|
73
|
+
schema: {
|
|
74
|
+
params: z.ZodObject<{
|
|
75
|
+
page_size: z.ZodNumber;
|
|
76
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
page_size: number;
|
|
79
|
+
page_token?: string | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
page_size: number;
|
|
82
|
+
page_token?: string | undefined;
|
|
83
|
+
}>;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
export declare const compensationV1ItemCategoryList: {
|
|
87
|
+
project: string;
|
|
88
|
+
name: string;
|
|
89
|
+
sdkName: string;
|
|
90
|
+
path: string;
|
|
91
|
+
httpMethod: string;
|
|
92
|
+
description: string;
|
|
93
|
+
accessTokens: string[];
|
|
94
|
+
schema: {
|
|
95
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
96
|
+
page_size: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
98
|
+
}, "strip", z.ZodTypeAny, {
|
|
99
|
+
page_size?: number | undefined;
|
|
100
|
+
page_token?: string | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
page_size?: number | undefined;
|
|
103
|
+
page_token?: string | undefined;
|
|
104
|
+
}>>;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
export declare const compensationV1ItemList: {
|
|
108
|
+
project: string;
|
|
109
|
+
name: string;
|
|
110
|
+
sdkName: string;
|
|
111
|
+
path: string;
|
|
112
|
+
httpMethod: string;
|
|
113
|
+
description: string;
|
|
114
|
+
accessTokens: string[];
|
|
115
|
+
schema: {
|
|
116
|
+
params: z.ZodObject<{
|
|
117
|
+
page_size: z.ZodNumber;
|
|
118
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
119
|
+
}, "strip", z.ZodTypeAny, {
|
|
120
|
+
page_size: number;
|
|
121
|
+
page_token?: string | undefined;
|
|
122
|
+
}, {
|
|
123
|
+
page_size: number;
|
|
124
|
+
page_token?: string | undefined;
|
|
125
|
+
}>;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
export declare const compensationV1PlanList: {
|
|
129
|
+
project: string;
|
|
130
|
+
name: string;
|
|
131
|
+
sdkName: string;
|
|
132
|
+
path: string;
|
|
133
|
+
httpMethod: string;
|
|
134
|
+
description: string;
|
|
135
|
+
accessTokens: string[];
|
|
136
|
+
schema: {
|
|
137
|
+
params: z.ZodObject<{
|
|
138
|
+
page_size: z.ZodNumber;
|
|
139
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
140
|
+
}, "strip", z.ZodTypeAny, {
|
|
141
|
+
page_size: number;
|
|
142
|
+
page_token?: string | undefined;
|
|
143
|
+
}, {
|
|
144
|
+
page_size: number;
|
|
145
|
+
page_token?: string | undefined;
|
|
146
|
+
}>;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
export declare const compensationV1Tools: ({
|
|
150
|
+
project: string;
|
|
151
|
+
name: string;
|
|
152
|
+
sdkName: string;
|
|
153
|
+
path: string;
|
|
154
|
+
httpMethod: string;
|
|
155
|
+
description: string;
|
|
156
|
+
accessTokens: string[];
|
|
157
|
+
schema: {
|
|
158
|
+
params: z.ZodObject<{
|
|
159
|
+
page_size: z.ZodNumber;
|
|
160
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
161
|
+
}, "strip", z.ZodTypeAny, {
|
|
162
|
+
page_size: number;
|
|
163
|
+
page_token?: string | undefined;
|
|
164
|
+
}, {
|
|
165
|
+
page_size: number;
|
|
166
|
+
page_token?: string | undefined;
|
|
167
|
+
}>;
|
|
168
|
+
};
|
|
169
|
+
} | {
|
|
170
|
+
project: string;
|
|
171
|
+
name: string;
|
|
172
|
+
sdkName: string;
|
|
173
|
+
path: string;
|
|
174
|
+
httpMethod: string;
|
|
175
|
+
description: string;
|
|
176
|
+
accessTokens: string[];
|
|
177
|
+
schema: {
|
|
178
|
+
params: z.ZodOptional<z.ZodObject<{
|
|
179
|
+
page_size: z.ZodOptional<z.ZodNumber>;
|
|
180
|
+
page_token: z.ZodOptional<z.ZodString>;
|
|
181
|
+
}, "strip", z.ZodTypeAny, {
|
|
182
|
+
page_size?: number | undefined;
|
|
183
|
+
page_token?: string | undefined;
|
|
184
|
+
}, {
|
|
185
|
+
page_size?: number | undefined;
|
|
186
|
+
page_token?: string | undefined;
|
|
187
|
+
}>>;
|
|
188
|
+
};
|
|
189
|
+
})[];
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.compensationV1Tools = exports.compensationV1PlanList = exports.compensationV1ItemList = exports.compensationV1ItemCategoryList = exports.compensationV1IndicatorList = exports.compensationV1ChangeReasonList = exports.compensationV1ArchiveQuery = void 0;
|
|
4
|
+
const zod_1 = require("zod");
|
|
5
|
+
exports.compensationV1ArchiveQuery = {
|
|
6
|
+
project: 'compensation',
|
|
7
|
+
name: 'compensation.v1.archive.query',
|
|
8
|
+
sdkName: 'compensation.v1.archive.query',
|
|
9
|
+
path: '/open-apis/compensation/v1/archives/query',
|
|
10
|
+
httpMethod: 'POST',
|
|
11
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation Profile-Batch query compensation profile-Batch query compensation profile',
|
|
12
|
+
accessTokens: ['tenant', 'user'],
|
|
13
|
+
schema: {
|
|
14
|
+
data: zod_1.z.object({
|
|
15
|
+
user_id_list: zod_1.z
|
|
16
|
+
.array(zod_1.z.string())
|
|
17
|
+
.describe('User ID list, the acquisition method can refer to the "user_id_type" field in the query parameters'),
|
|
18
|
+
tid_list: zod_1.z.array(zod_1.z.string()).describe('Archive Tid List').optional(),
|
|
19
|
+
effective_start_date: zod_1.z.string().describe('Effective start time').optional(),
|
|
20
|
+
effective_end_date: zod_1.z.string().describe('Effective end time').optional(),
|
|
21
|
+
}),
|
|
22
|
+
params: zod_1.z.object({
|
|
23
|
+
page_size: zod_1.z.number().describe('paging size'),
|
|
24
|
+
page_token: zod_1.z
|
|
25
|
+
.string()
|
|
26
|
+
.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')
|
|
27
|
+
.optional(),
|
|
28
|
+
user_id_type: zod_1.z.enum(['open_id', 'union_id', 'user_id', 'people_corehr_id']).describe('User ID type'),
|
|
29
|
+
}),
|
|
30
|
+
useUAT: zod_1.z.boolean().describe('Use user access token, otherwise use tenant access token').optional(),
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
exports.compensationV1ChangeReasonList = {
|
|
34
|
+
project: 'compensation',
|
|
35
|
+
name: 'compensation.v1.changeReason.list',
|
|
36
|
+
sdkName: 'compensation.v1.changeReason.list',
|
|
37
|
+
path: '/open-apis/compensation/v1/change_reasons',
|
|
38
|
+
httpMethod: 'GET',
|
|
39
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation setting and adjustment-Batch query reason for compensation setting and adjustment-Batch query reason for compensation setting and adjustment',
|
|
40
|
+
accessTokens: ['tenant'],
|
|
41
|
+
schema: {
|
|
42
|
+
params: zod_1.z.object({
|
|
43
|
+
page_size: zod_1.z.number().describe('paging size'),
|
|
44
|
+
page_token: zod_1.z
|
|
45
|
+
.string()
|
|
46
|
+
.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')
|
|
47
|
+
.optional(),
|
|
48
|
+
}),
|
|
49
|
+
},
|
|
50
|
+
};
|
|
51
|
+
exports.compensationV1IndicatorList = {
|
|
52
|
+
project: 'compensation',
|
|
53
|
+
name: 'compensation.v1.indicator.list',
|
|
54
|
+
sdkName: 'compensation.v1.indicator.list',
|
|
55
|
+
path: '/open-apis/compensation/v1/indicators',
|
|
56
|
+
httpMethod: 'GET',
|
|
57
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation component / metric-Batch query compensation metric-Batch query compensation metric',
|
|
58
|
+
accessTokens: ['tenant'],
|
|
59
|
+
schema: {
|
|
60
|
+
params: zod_1.z.object({
|
|
61
|
+
page_size: zod_1.z.number().describe('paging size'),
|
|
62
|
+
page_token: zod_1.z
|
|
63
|
+
.string()
|
|
64
|
+
.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')
|
|
65
|
+
.optional(),
|
|
66
|
+
}),
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
exports.compensationV1ItemCategoryList = {
|
|
70
|
+
project: 'compensation',
|
|
71
|
+
name: 'compensation.v1.itemCategory.list',
|
|
72
|
+
sdkName: 'compensation.v1.itemCategory.list',
|
|
73
|
+
path: '/open-apis/compensation/v1/item_categories',
|
|
74
|
+
httpMethod: 'GET',
|
|
75
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation component / metric-Batch query compensation component type-Batch query compensation component type',
|
|
76
|
+
accessTokens: ['tenant'],
|
|
77
|
+
schema: {
|
|
78
|
+
params: zod_1.z
|
|
79
|
+
.object({
|
|
80
|
+
page_size: zod_1.z.number().describe('paging size').optional(),
|
|
81
|
+
page_token: zod_1.z
|
|
82
|
+
.string()
|
|
83
|
+
.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')
|
|
84
|
+
.optional(),
|
|
85
|
+
})
|
|
86
|
+
.optional(),
|
|
87
|
+
},
|
|
88
|
+
};
|
|
89
|
+
exports.compensationV1ItemList = {
|
|
90
|
+
project: 'compensation',
|
|
91
|
+
name: 'compensation.v1.item.list',
|
|
92
|
+
sdkName: 'compensation.v1.item.list',
|
|
93
|
+
path: '/open-apis/compensation/v1/items',
|
|
94
|
+
httpMethod: 'GET',
|
|
95
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation component / metric-Batch query compensation component-Batch query compensation component',
|
|
96
|
+
accessTokens: ['tenant'],
|
|
97
|
+
schema: {
|
|
98
|
+
params: zod_1.z.object({
|
|
99
|
+
page_size: zod_1.z.number().describe('paging size'),
|
|
100
|
+
page_token: zod_1.z
|
|
101
|
+
.string()
|
|
102
|
+
.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')
|
|
103
|
+
.optional(),
|
|
104
|
+
}),
|
|
105
|
+
},
|
|
106
|
+
};
|
|
107
|
+
exports.compensationV1PlanList = {
|
|
108
|
+
project: 'compensation',
|
|
109
|
+
name: 'compensation.v1.plan.list',
|
|
110
|
+
sdkName: 'compensation.v1.plan.list',
|
|
111
|
+
path: '/open-apis/compensation/v1/plans',
|
|
112
|
+
httpMethod: 'GET',
|
|
113
|
+
description: '[Feishu/Lark]-Feishu People(Enterprise Edition)-Basic Compensation-Compensation Plan-Batch query compensation plan-- This interface will return all salary plan information, including salary plan ID, effective date, salary item/salary statistics indicator, etc',
|
|
114
|
+
accessTokens: ['tenant'],
|
|
115
|
+
schema: {
|
|
116
|
+
params: zod_1.z.object({
|
|
117
|
+
page_size: zod_1.z.number().describe('paging size'),
|
|
118
|
+
page_token: zod_1.z
|
|
119
|
+
.string()
|
|
120
|
+
.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')
|
|
121
|
+
.optional(),
|
|
122
|
+
}),
|
|
123
|
+
},
|
|
124
|
+
};
|
|
125
|
+
exports.compensationV1Tools = [
|
|
126
|
+
exports.compensationV1ArchiveQuery,
|
|
127
|
+
exports.compensationV1ChangeReasonList,
|
|
128
|
+
exports.compensationV1IndicatorList,
|
|
129
|
+
exports.compensationV1ItemCategoryList,
|
|
130
|
+
exports.compensationV1ItemList,
|
|
131
|
+
exports.compensationV1PlanList,
|
|
132
|
+
];
|