openyida 2026.3.21-beta.1 → 2026.3.22

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 (144) hide show
  1. package/README.ar.md +2 -2
  2. package/README.de.md +2 -2
  3. package/README.es.md +2 -2
  4. package/README.fr.md +2 -2
  5. package/README.hi.md +2 -2
  6. package/README.ja.md +2 -2
  7. package/README.ko.md +2 -2
  8. package/README.md +42 -3
  9. package/README.pt-BR.md +2 -2
  10. package/README.vi.md +2 -2
  11. package/README.zh-CN.md +2 -2
  12. package/README.zh-HK.md +2 -2
  13. package/README.zh-TW.md +2 -2
  14. package/bin/yida.js +103 -147
  15. package/lib/{create-app.js → app/create-app.js} +63 -65
  16. package/lib/{create-form.js → app/create-form.js} +845 -861
  17. package/lib/app/create-page.js +138 -0
  18. package/lib/app/datasource-utils.js +326 -0
  19. package/lib/{export-app.js → app/export-app.js} +39 -39
  20. package/lib/{get-schema.js → app/get-schema.js} +19 -19
  21. package/lib/{import-app.js → app/import-app.js} +84 -85
  22. package/lib/{publish.js → app/publish.js} +179 -183
  23. package/lib/app/update-form-config.js +231 -0
  24. package/lib/{auth.js → auth/auth.js} +43 -43
  25. package/lib/{login.js → auth/login.js} +51 -51
  26. package/lib/{org.js → auth/org.js} +57 -61
  27. package/lib/{qr-login.js → auth/qr-login.js} +103 -103
  28. package/lib/cdn/cdn-config-cmd.js +250 -0
  29. package/lib/{cdn-config.js → cdn/cdn-config.js} +21 -21
  30. package/lib/{cdn-refresh.js → cdn/cdn-refresh.js} +1 -1
  31. package/lib/{cdn-upload.js → cdn/cdn-upload.js} +1 -1
  32. package/lib/connector/api.js +1 -1
  33. package/lib/{connector-create.js → connector/connector-create.js} +0 -1
  34. package/lib/{connector-delete.js → connector/connector-delete.js} +1 -1
  35. package/lib/{connector-test.js → connector/connector-test.js} +0 -1
  36. package/lib/{check-update.js → core/check-update.js} +13 -13
  37. package/lib/core/copy.js +357 -0
  38. package/lib/{doctor.js → core/doctor.js} +253 -253
  39. package/lib/{env.js → core/env.js} +56 -53
  40. package/lib/{i18n.js → core/i18n.js} +37 -37
  41. package/lib/core/locales/ar.js +868 -0
  42. package/lib/core/locales/de.js +868 -0
  43. package/lib/core/locales/en.js +873 -0
  44. package/lib/core/locales/es.js +868 -0
  45. package/lib/core/locales/fr.js +868 -0
  46. package/lib/core/locales/hi.js +868 -0
  47. package/lib/core/locales/ja.js +873 -0
  48. package/lib/core/locales/ko.js +868 -0
  49. package/lib/core/locales/pt.js +868 -0
  50. package/lib/core/locales/vi.js +868 -0
  51. package/lib/core/locales/zh-TW.js +868 -0
  52. package/lib/core/locales/zh.js +784 -0
  53. package/lib/core/query-data.js +159 -0
  54. package/lib/{utils.js → core/utils.js} +118 -111
  55. package/lib/data-management.js +362 -0
  56. package/lib/integration/integration-api.js +239 -0
  57. package/lib/integration/integration-create.js +393 -0
  58. package/lib/integration/integration-node-ids.js +81 -0
  59. package/lib/integration/integration-process-builder.js +291 -0
  60. package/lib/integration/integration-view-builder.js +311 -0
  61. package/lib/{get-page-config.js → page-config/get-page-config.js} +29 -30
  62. package/lib/page-config/save-share-config.js +254 -0
  63. package/lib/{verify-short-url.js → page-config/verify-short-url.js} +65 -71
  64. package/lib/{get-permission.js → permission/get-permission.js} +43 -45
  65. package/lib/{save-permission.js → permission/save-permission.js} +179 -145
  66. package/lib/process/configure-process.js +1034 -0
  67. package/lib/{create-process.js → process/create-process.js} +79 -82
  68. package/lib/report/append.js +325 -0
  69. package/lib/report/chart-builder.js +1742 -0
  70. package/lib/report/constants.js +137 -0
  71. package/lib/report/create-report.js +25 -0
  72. package/lib/report/http.js +35 -0
  73. package/lib/report/index.js +281 -0
  74. package/package.json +16 -4
  75. package/project/pages/src/demo-chip-insight.js +981 -0
  76. package/scripts/postinstall.js +80 -71
  77. package/scripts/sync-locales.js +288 -0
  78. package/scripts/update-contributors.js +152 -0
  79. package/scripts/validate-deps.js +171 -0
  80. package/scripts/validate-i18n.js +246 -0
  81. package/scripts/validate-structure.js +14 -4
  82. package/scripts/write_dashboard.py +498 -0
  83. package/yida-skills/SKILL.md +30 -95
  84. package/yida-skills/reference/connector-datasource.md +387 -0
  85. package/yida-skills/reference/query-condition-guide.md +4 -4
  86. package/yida-skills/reference/vc-yida-report-components-doc.md +615 -0
  87. package/yida-skills/reference/yida-api.md +79 -10
  88. package/yida-skills/skills/yida-chart/SKILL.md +1525 -0
  89. package/yida-skills/skills/yida-chart/examples/china-map.js +457 -0
  90. package/yida-skills/skills/yida-chart/examples/dashboard-bindform.js +524 -0
  91. package/yida-skills/skills/yida-chart/examples/line-trend.js +391 -0
  92. package/yida-skills/skills/yida-chart/examples/multi-bar-compare.js +331 -0
  93. package/yida-skills/skills/yida-chart/examples/radar-chart.js +430 -0
  94. package/yida-skills/skills/yida-chart/examples/scatter-bindform.js +400 -0
  95. package/yida-skills/skills/yida-chart/examples/stacked-area.js +357 -0
  96. package/yida-skills/skills/yida-connector/SKILL.md +45 -96
  97. package/yida-skills/skills/yida-create-page/SKILL.md +27 -5
  98. package/yida-skills/skills/yida-create-process/SKILL.md +8 -0
  99. package/yida-skills/skills/yida-create-report/SKILL.md +338 -0
  100. package/yida-skills/skills/yida-custom-page/SKILL.md +78 -250
  101. package/yida-skills/skills/yida-data-management/SKILL.md +301 -0
  102. package/yida-skills/skills/yida-data-management/reference/api-matrix.md +49 -0
  103. package/yida-skills/skills/yida-data-management/reference/data-format-guide.md +73 -0
  104. package/yida-skills/skills/yida-data-management/reference/verified-endpoints.md +62 -0
  105. package/yida-skills/skills/yida-integration/SKILL.md +561 -0
  106. package/yida-skills/skills/yida-ppt-slider/SKILL.md +441 -0
  107. package/yida-skills/skills/yida-process-rule/SKILL.md +154 -0
  108. package/yida-skills/skills/yida-report/SKILL.md +774 -0
  109. package/yida-skills/skills/yida-report/build-yida-report-schema.js +1284 -0
  110. package/lib/cdn-config-cmd.js +0 -252
  111. package/lib/configure-process.js +0 -884
  112. package/lib/copy.js +0 -335
  113. package/lib/create-page.js +0 -92
  114. package/lib/locales/ar.js +0 -378
  115. package/lib/locales/de.js +0 -378
  116. package/lib/locales/en.js +0 -839
  117. package/lib/locales/es.js +0 -378
  118. package/lib/locales/fr.js +0 -378
  119. package/lib/locales/hi.js +0 -378
  120. package/lib/locales/ja.js +0 -717
  121. package/lib/locales/ko.js +0 -381
  122. package/lib/locales/pt.js +0 -378
  123. package/lib/locales/vi.js +0 -378
  124. package/lib/locales/zh-TW.js +0 -385
  125. package/lib/locales/zh.js +0 -738
  126. package/lib/save-share-config.js +0 -260
  127. package/lib/update-form-config.js +0 -238
  128. package/project/pages/src/demo-qrcode-print.js +0 -2583
  129. package/project/prd/demo-qrcode-print.md +0 -42
  130. package/scripts/query-data.py +0 -400
  131. package/yida-skills/skills/yida-custom-page/examples/tabs-visibility-control.js +0 -152
  132. package/yida-skills/skills/yida-query-data/SKILL.md +0 -245
  133. /package/lib/{connector-add-action.js → connector/connector-add-action.js} +0 -0
  134. /package/lib/{connector-create-connection.js → connector/connector-create-connection.js} +0 -0
  135. /package/lib/{connector-delete-action.js → connector/connector-delete-action.js} +0 -0
  136. /package/lib/{connector-detail.js → connector/connector-detail.js} +0 -0
  137. /package/lib/{connector-gen-template.js → connector/connector-gen-template.js} +0 -0
  138. /package/lib/{connector-list-actions.js → connector/connector-list-actions.js} +0 -0
  139. /package/lib/{connector-list-connections.js → connector/connector-list-connections.js} +0 -0
  140. /package/lib/{connector-list.js → connector/connector-list.js} +0 -0
  141. /package/lib/{connector-parse-api.js → connector/connector-parse-api.js} +0 -0
  142. /package/lib/{connector-smart-create.js → connector/connector-smart-create.js} +0 -0
  143. /package/lib/{babel-transform → core/babel-transform}/index.js +0 -0
  144. /package/lib/{babel-transform → core/babel-transform}/jsx-utils.js +0 -0
package/README.ar.md CHANGED
@@ -162,7 +162,7 @@ npx clawhub@latest install nicky1108/yida-app
162
162
 
163
163
  شكراً لجميع من ساهموا في OpenYida! اقرأ [دليل المساهمة](./CONTRIBUTING.md) للمشاركة.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ npx clawhub@latest install nicky1108/yida-app
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.de.md CHANGED
@@ -162,7 +162,7 @@ Scannen Sie den QR-Code, um der OpenYida-Benutzergruppe auf DingTalk beizutreten
162
162
 
163
163
  Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfaden](./CONTRIBUTING.md).
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfad
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.es.md CHANGED
@@ -162,7 +162,7 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
162
162
 
163
163
  ¡Gracias a todos los que han contribuido a OpenYida! Lee la [Guía de contribución](./CONTRIBUTING.md) para participar.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.fr.md CHANGED
@@ -162,7 +162,7 @@ Scannez le QR code pour rejoindre le groupe d'utilisateurs OpenYida sur DingTalk
162
162
 
163
163
  Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribution](./CONTRIBUTING.md) pour participer.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribut
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.hi.md CHANGED
@@ -162,7 +162,7 @@ DingTalk पर OpenYida उपयोगकर्ता समूह में
162
162
 
163
163
  OpenYida में योगदान देने वाले सभी लोगों का धन्यवाद! [योगदान गाइड](./CONTRIBUTING.md) पढ़ें।
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ OpenYida में योगदान देने वाले सभी लो
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.ja.md CHANGED
@@ -162,7 +162,7 @@ DingTalkのQRコードをスキャンしてOpenYidaユーザーグループに
162
162
 
163
163
  OpenYidaに貢献してくださったすべての方に感謝します![コントリビュートガイド](./CONTRIBUTING.md)をお読みください。
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ OpenYidaに貢献してくださったすべての方に感謝します![コ
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.ko.md CHANGED
@@ -162,7 +162,7 @@ DingTalk QR 코드를 스캔하여 OpenYida 사용자 그룹에 참여하고 최
162
162
 
163
163
  OpenYida에 기여해주신 모든 분들께 감사드립니다! [기여 가이드](./CONTRIBUTING.md)를 읽고 함께 만들어가요.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ OpenYida에 기여해주신 모든 분들께 감사드립니다! [기여 가이
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.md CHANGED
@@ -77,19 +77,58 @@ Create a personal salary calculator app
77
77
  ## CLI Commands
78
78
 
79
79
  ```bash
80
+ # Environment & Auth
80
81
  openyida env # Detect current AI tool environment and login status
81
82
  openyida login # Log in to Yida (uses cache, falls back to QR code)
82
83
  openyida logout # Log out / switch account
83
84
  openyida copy # Initialize project working directory for current AI tool
85
+ openyida auth status # View current login status
86
+ openyida auth login # Perform login
87
+ openyida auth refresh # Refresh login session
88
+ openyida auth logout # Log out
89
+ openyida org list # List accessible organizations
90
+ openyida org switch # Switch organization (--corp-id <corpId>)
91
+ openyida doctor # Environment diagnostics & auto-fix (--fix, --report, etc.)
92
+
93
+ # App & Form Management
84
94
  openyida create-app # Create a Yida application
85
95
  openyida create-page # Create a custom display page
86
96
  openyida create-form # Create / update a form page
87
97
  openyida get-schema # Fetch form schema
88
98
  openyida publish # Compile and publish a custom page
99
+ openyida update-form-config # Update form configuration
100
+ openyida export # Export app (generate migration package)
101
+ openyida import # Import migration package, rebuild app
102
+
103
+ # Page Config & Sharing
89
104
  openyida verify-short-url # Verify if a short URL is accessible
90
105
  openyida save-share-config # Save public access / sharing config
91
106
  openyida get-page-config # Query page public access / sharing config
92
- openyida update-form-config # Update form configuration
107
+
108
+ # Data Management
109
+ openyida data # Unified data management (form/process/task/subform)
110
+ openyida query-data # Query form instance data
111
+
112
+ # Permissions & Process
113
+ openyida get-permission # Query form permission config
114
+ openyida save-permission # Save form permission config
115
+ openyida configure-process # Configure and publish a process
116
+ openyida create-process # Create a process form (integrated)
117
+
118
+ # Connector (HTTP)
119
+ openyida connector list # List HTTP connectors
120
+ openyida connector create # Create a connector
121
+ openyida connector detail # View connector details
122
+ openyida connector delete # Delete a connector
123
+ openyida connector add-action # Add an action to a connector
124
+ openyida connector test # Test a connector action
125
+ openyida connector smart-create # Smart create connector from curl command
126
+
127
+ # Report
128
+ openyida create-report # Create a Yida report with charts
129
+ openyida append-chart # Append chart(s) to an existing report
130
+
131
+ # CDN
93
132
  openyida cdn-config # Configure CDN image upload (Aliyun OSS + CDN)
94
133
  openyida cdn-upload # Upload images to CDN
95
134
  openyida cdn-refresh # Refresh CDN cache
@@ -162,7 +201,7 @@ Scan the QR code to join the OpenYida user group on DingTalk for the latest upda
162
201
 
163
202
  Thanks to everyone who has contributed to OpenYida! Read the [Contributing Guide](./CONTRIBUTING.md) to get involved.
164
203
 
165
- <p align="left">
204
+ <p align="left" id="contributors">
166
205
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
206
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
207
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -173,7 +212,7 @@ Thanks to everyone who has contributed to OpenYida! Read the [Contributing Guide
173
212
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
213
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
214
  <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
176
- <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a>
215
+ <a href="https://github.com/guchenglin111"><img src="https://avatars.githubusercontent.com/u/10860875?v=4&s=48" width="48" height="48" alt="guchenglin111" title="guchenglin111"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
177
216
  </p>
178
217
 
179
218
  ---
package/README.pt-BR.md CHANGED
@@ -162,7 +162,7 @@ Escaneie o QR code para entrar no grupo de usuários do OpenYida no DingTalk.
162
162
 
163
163
  Obrigado a todos que contribuíram para o OpenYida! Leia o [Guia de contribuição](./CONTRIBUTING.md) para participar.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ Obrigado a todos que contribuíram para o OpenYida! Leia o [Guia de contribuiç
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.vi.md CHANGED
@@ -162,7 +162,7 @@ Quét mã QR để tham gia nhóm người dùng OpenYida trên DingTalk.
162
162
 
163
163
  Cảm ơn tất cả những người đã đóng góp cho OpenYida! Đọc [Hướng dẫn đóng góp](./CONTRIBUTING.md) để tham gia.
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ Cảm ơn tất cả những người đã đóng góp cho OpenYida! Đọc [Hư
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.zh-CN.md CHANGED
@@ -162,7 +162,7 @@ npx clawhub@latest install nicky1108/yida-app
162
162
 
163
163
  感谢所有为 OpenYida 做出贡献的开发者!欢迎阅读 [贡献指南](./CONTRIBUTING.md) 参与共建。
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ npx clawhub@latest install nicky1108/yida-app
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.zh-HK.md CHANGED
@@ -162,7 +162,7 @@ npx clawhub@latest install nicky1108/yida-app
162
162
 
163
163
  多謝所有為 OpenYida 做出貢獻嘅開發者!歡迎閱讀 [貢獻指南](./CONTRIBUTING.md) 參與共建。
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ npx clawhub@latest install nicky1108/yida-app
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---
package/README.zh-TW.md CHANGED
@@ -162,7 +162,7 @@ npx clawhub@latest install nicky1108/yida-app
162
162
 
163
163
  感謝所有為 OpenYida 做出貢獻的開發者!歡迎閱讀 [貢獻指南](./CONTRIBUTING.md) 參與共建。
164
164
 
165
- <p align="left">
165
+ <p align="left" id="contributors">
166
166
  <a href="https://github.com/yize"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="九神" title="九神"/></a>
167
167
  <a href="https://github.com/alex-mm"><img src="https://avatars.githubusercontent.com/u/3302053?v=4&s=48" width="48" height="48" alt="天晟" title="天晟"/></a>
168
168
  <a href="https://github.com/nicky1108"><img src="https://avatars.githubusercontent.com/u/4279283?v=4&s=48" width="48" height="48" alt="nicky1108" title="nicky1108"/></a>
@@ -172,7 +172,7 @@ npx clawhub@latest install nicky1108/yida-app
172
172
  <a href="https://github.com/kangjiano"><img src="https://avatars.githubusercontent.com/u/54129385?v=4&s=48" width="48" height="48" alt="kangjiano" title="kangjiano"/></a>
173
173
  <a href="https://github.com/ElZe98"><img src="https://avatars.githubusercontent.com/u/35736727?v=4&s=48" width="48" height="48" alt="ElZe98" title="ElZe98"/></a>
174
174
  <a href="https://github.com/OAHyuhao"><img src="https://avatars.githubusercontent.com/u/99954323?v=4&s=48" width="48" height="48" alt="OAHyuhao" title="OAHyuhao"/></a>
175
- <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a>
175
+ <a href="https://github.com/xiaofu704"><img src="https://avatars.githubusercontent.com/u/209416122?v=4&s=48" width="48" height="48" alt="xiaofu704" title="xiaofu704"/></a> <a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/15044477?v=4&s=48" width="48" height="48" alt="liug0911" title="liug0911"/></a> <a href="https://github.com/sunliz-xiuli"><img src="https://avatars.githubusercontent.com/u/76982855?v=4&s=48" width="48" height="48" alt="sunliz-xiuli" title="sunliz-xiuli"/></a> <a href="https://github.com/M12REDX"><img src="https://avatars.githubusercontent.com/u/22703542?v=4&s=48" width="48" height="48" alt="M12REDX" title="M12REDX"/></a>
176
176
  </p>
177
177
 
178
178
  ---