@lanmers/wecom-openclaw-plugin 1.0.12

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.
Files changed (59) hide show
  1. package/README.md +220 -0
  2. package/dist/index.cjs.js +3591 -0
  3. package/dist/index.cjs.js.map +1 -0
  4. package/dist/index.d.ts +11 -0
  5. package/dist/index.esm.js +3565 -0
  6. package/dist/index.esm.js.map +1 -0
  7. package/dist/src/channel.d.ts +3 -0
  8. package/dist/src/const.d.ts +64 -0
  9. package/dist/src/dm-policy.d.ts +29 -0
  10. package/dist/src/group-policy.d.ts +29 -0
  11. package/dist/src/interface.d.ts +154 -0
  12. package/dist/src/mcp/index.d.ts +6 -0
  13. package/dist/src/mcp/schema.d.ts +11 -0
  14. package/dist/src/mcp/tool.d.ts +55 -0
  15. package/dist/src/mcp/transport.d.ts +61 -0
  16. package/dist/src/mcp-config.d.ts +29 -0
  17. package/dist/src/media-handler.d.ts +36 -0
  18. package/dist/src/media-uploader.d.ts +131 -0
  19. package/dist/src/message-parser.d.ts +72 -0
  20. package/dist/src/message-sender.d.ts +23 -0
  21. package/dist/src/monitor.d.ts +27 -0
  22. package/dist/src/onboarding.d.ts +5 -0
  23. package/dist/src/openclaw-compat.d.ts +48 -0
  24. package/dist/src/reqid-store.d.ts +31 -0
  25. package/dist/src/runtime.d.ts +3 -0
  26. package/dist/src/state-manager.d.ts +76 -0
  27. package/dist/src/timeout.d.ts +20 -0
  28. package/dist/src/utils.d.ts +96 -0
  29. package/dist/src/version.d.ts +2 -0
  30. package/openclaw.plugin.json +14 -0
  31. package/package.json +73 -0
  32. package/skills/wecom-contact-lookup/SKILL.md +162 -0
  33. package/skills/wecom-doc/SKILL.md +363 -0
  34. package/skills/wecom-doc/references/doc-api.md +224 -0
  35. package/skills/wecom-doc-manager/SKILL.md +64 -0
  36. package/skills/wecom-doc-manager/references/api-create-doc.md +56 -0
  37. package/skills/wecom-doc-manager/references/api-edit-doc-content.md +68 -0
  38. package/skills/wecom-doc-manager/references/api-export-document.md +88 -0
  39. package/skills/wecom-edit-todo/SKILL.md +249 -0
  40. package/skills/wecom-get-todo-detail/SKILL.md +143 -0
  41. package/skills/wecom-get-todo-list/SKILL.md +127 -0
  42. package/skills/wecom-meeting-create/SKILL.md +158 -0
  43. package/skills/wecom-meeting-create/references/example-full.md +30 -0
  44. package/skills/wecom-meeting-create/references/example-reminder.md +46 -0
  45. package/skills/wecom-meeting-create/references/example-security.md +22 -0
  46. package/skills/wecom-meeting-manage/SKILL.md +136 -0
  47. package/skills/wecom-meeting-query/SKILL.md +330 -0
  48. package/skills/wecom-preflight/SKILL.md +141 -0
  49. package/skills/wecom-schedule/SKILL.md +159 -0
  50. package/skills/wecom-schedule/references/api-check-availability.md +56 -0
  51. package/skills/wecom-schedule/references/api-create-schedule.md +38 -0
  52. package/skills/wecom-schedule/references/api-get-schedule-detail.md +81 -0
  53. package/skills/wecom-schedule/references/api-update-schedule.md +30 -0
  54. package/skills/wecom-schedule/references/ref-reminders.md +24 -0
  55. package/skills/wecom-smartsheet-data/SKILL.md +71 -0
  56. package/skills/wecom-smartsheet-data/references/api-get-records.md +61 -0
  57. package/skills/wecom-smartsheet-data/references/cell-value-formats.md +120 -0
  58. package/skills/wecom-smartsheet-schema/SKILL.md +92 -0
  59. package/skills/wecom-smartsheet-schema/references/field-types.md +43 -0
@@ -0,0 +1,11 @@
1
+ import { OpenClawPluginApi } from 'openclaw/plugin-sdk';
2
+
3
+ declare const plugin: {
4
+ id: string;
5
+ name: string;
6
+ description: string;
7
+ configSchema: any;
8
+ register(api: OpenClawPluginApi): void;
9
+ };
10
+
11
+ export { plugin as default };