openyida 2026.3.24 → 2026.3.28-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/README.ar.md +41 -57
- package/README.de.md +41 -57
- package/README.es.md +41 -57
- package/README.fr.md +41 -57
- package/README.hi.md +41 -57
- package/README.ja.md +41 -57
- package/README.ko.md +41 -57
- package/README.md +40 -67
- package/README.pt-BR.md +41 -57
- package/README.vi.md +41 -57
- package/README.zh-CN.md +41 -57
- package/README.zh-HK.md +41 -57
- package/README.zh-TW.md +41 -57
- package/bin/yida.js +175 -25
- package/lib/app/create-app.js +176 -191
- package/lib/app/create-form.js +2239 -2047
- package/lib/app/create-page.js +85 -140
- package/lib/app/export-app.js +181 -171
- package/lib/app/get-schema.js +152 -50
- package/lib/app/import-app.js +324 -287
- package/lib/app/publish.js +677 -564
- package/lib/app/update-form-config.js +219 -221
- package/lib/auth/auth.js +207 -151
- package/lib/auth/login.js +251 -215
- package/lib/auth/org.js +320 -229
- package/lib/auth/qr-login.js +547 -424
- package/lib/cdn/cdn-config-cmd.js +197 -177
- package/lib/cdn/cdn-config.js +128 -104
- package/lib/cdn/cdn-refresh.js +224 -195
- package/lib/cdn/cdn-upload.js +262 -221
- package/lib/connector/action-generator.js +235 -207
- package/lib/connector/api.js +298 -186
- package/lib/connector/connector-add-action.js +179 -160
- package/lib/connector/connector-create-connection.js +129 -101
- package/lib/connector/connector-create.js +260 -246
- package/lib/connector/connector-delete-action.js +87 -67
- package/lib/connector/connector-delete.js +42 -33
- package/lib/connector/connector-detail.js +73 -62
- package/lib/connector/connector-gen-template.js +29 -27
- package/lib/connector/connector-list-actions.js +59 -48
- package/lib/connector/connector-list-connections.js +52 -39
- package/lib/connector/connector-list.js +79 -73
- package/lib/connector/connector-parse-api.js +179 -169
- package/lib/connector/connector-smart-create.js +169 -148
- package/lib/connector/connector-test.js +189 -157
- package/lib/connector/curl-parser.js +95 -76
- package/lib/connector/desc-generator.js +29 -24
- package/lib/connector/doc-parser.js +470 -419
- package/lib/connector/response-parser.js +112 -87
- package/lib/conversation/collector.js +363 -0
- package/lib/conversation/export-conversation.js +146 -0
- package/lib/conversation/formatter.js +316 -0
- package/lib/core/babel-transform/index.js +203 -230
- package/lib/core/babel-transform/jsx-utils.js +83 -107
- package/lib/core/check-update.js +45 -77
- package/lib/core/copy.js +288 -310
- package/lib/core/doctor.js +1317 -1127
- package/lib/core/env.js +140 -156
- package/lib/core/i18n.js +116 -98
- package/lib/core/locales/ar.js +425 -827
- package/lib/core/locales/de.js +425 -827
- package/lib/core/locales/en.js +879 -773
- package/lib/core/locales/es.js +425 -827
- package/lib/core/locales/fr.js +425 -827
- package/lib/core/locales/hi.js +425 -827
- package/lib/core/locales/ja.js +736 -804
- package/lib/core/locales/ko.js +428 -827
- package/lib/core/locales/pt.js +425 -827
- package/lib/core/locales/vi.js +425 -827
- package/lib/core/locales/zh-TW.js +770 -812
- package/lib/core/locales/zh.js +841 -706
- package/lib/core/query-data.js +311 -412
- package/lib/core/task-center.js +213 -0
- package/lib/core/utils.js +384 -282
- package/lib/dws/dws-wrapper.js +260 -0
- package/lib/flash-note/flash-to-prd.js +306 -0
- package/lib/integration/integration-api.js +190 -115
- package/lib/integration/integration-create.js +356 -312
- package/lib/integration/integration-node-ids.js +40 -34
- package/lib/integration/integration-process-builder.js +228 -204
- package/lib/integration/integration-view-builder.js +260 -239
- package/lib/page-config/get-page-config.js +90 -77
- package/lib/page-config/save-share-config.js +236 -203
- package/lib/page-config/verify-short-url.js +238 -198
- package/lib/permission/get-permission.js +184 -173
- package/lib/permission/save-permission.js +527 -444
- package/lib/process/configure-process.js +954 -881
- package/lib/process/create-process.js +264 -275
- package/lib/report/append.js +307 -222
- package/lib/report/chart-builder.js +1778 -1457
- package/lib/report/constants.js +34 -97
- package/lib/report/create-report.js +9 -10
- package/lib/report/http.js +25 -24
- package/lib/report/index.js +418 -192
- package/package.json +5 -25
- package/project/pages/src/demo-chip-insight.js +3 -3
- package/project/pages/src/demo-crm-batch-entry.js +805 -0
- package/project/pages/src/demo-crm-dashboard.js +677 -0
- package/project/pages/src/demo-future-vision-2026.js +4 -4
- package/project/pages/src/demo-salary-calculator.js +39 -10
- package/project/prd/demo-crm.md +463 -0
- package/scripts/demo-dws.sh +106 -0
- package/scripts/postinstall.js +44 -18
- package/scripts/validate-structure.js +4 -17
- package/yida-skills/SKILL.md +96 -129
- package/yida-skills/references/formula-functions.md +312 -0
- package/yida-skills/references/report-field-config-guide.md +294 -0
- package/yida-skills/skills/large-file-write/SKILL.md +88 -0
- package/yida-skills/skills/large-file-write/scripts/write.js +157 -0
- package/yida-skills/skills/yida-app/SKILL.md +196 -218
- package/yida-skills/skills/yida-chart/SKILL.md +2 -2
- package/yida-skills/skills/yida-chart/reference/echarts-bindding-guide.md +255 -0
- package/yida-skills/skills/yida-chart/reference/echarts-code-template.md +426 -0
- package/yida-skills/skills/yida-chart/reference/echarts-design-spec.md +178 -0
- package/yida-skills/skills/yida-chatbot/SKILL.md +237 -0
- package/yida-skills/skills/yida-connector/SKILL.md +46 -465
- package/yida-skills/skills/yida-connector/references/connector-action-format.md +178 -0
- package/yida-skills/skills/yida-create-app/SKILL.md +8 -124
- package/yida-skills/skills/yida-create-form-page/SKILL.md +62 -640
- package/yida-skills/skills/yida-create-form-page/references/form-field-properties.md +369 -0
- package/yida-skills/skills/yida-create-page/SKILL.md +7 -108
- package/yida-skills/skills/yida-create-process/SKILL.md +22 -181
- package/yida-skills/skills/yida-custom-page/SKILL.md +200 -616
- package/yida-skills/skills/yida-custom-page/examples/design-tokens.js +218 -0
- package/yida-skills/skills/yida-custom-page/{yida-assets-guide.md → references/assets-guide.md} +8 -6
- package/yida-skills/skills/yida-custom-page/references/coding-guide.md +397 -0
- package/yida-skills/skills/yida-custom-page/references/design-system.md +303 -0
- package/yida-skills/skills/yida-data-management/SKILL.md +60 -250
- package/yida-skills/skills/yida-data-management/references/data-format-guide.md +130 -0
- package/yida-skills/skills/yida-data-management/{reference → references}/verified-endpoints.md +3 -3
- package/yida-skills/skills/yida-density/examples/density-switch-page.js +177 -0
- package/yida-skills/skills/yida-export-conversation/SKILL.md +74 -0
- package/yida-skills/skills/yida-flash-note-to-prd/SKILL.md +538 -0
- package/yida-skills/skills/yida-flash-note-to-prd/build-flash-note-prompt.js +885 -0
- package/yida-skills/skills/yida-form-permission/SKILL.md +25 -172
- package/yida-skills/skills/yida-formula/SKILL.md +428 -0
- package/yida-skills/skills/yida-get-schema/SKILL.md +9 -71
- package/yida-skills/skills/yida-integration/SKILL.md +16 -0
- package/yida-skills/skills/yida-login/SKILL.md +19 -181
- package/yida-skills/skills/yida-logout/SKILL.md +5 -49
- package/yida-skills/skills/yida-page-config/SKILL.md +21 -237
- package/yida-skills/skills/yida-process-rule/references/process-ai-rules.md +170 -0
- package/yida-skills/skills/yida-publish-page/SKILL.md +21 -109
- package/yida-skills/skills/yida-report/SKILL.md +5 -16
- package/yida-skills/skills/yida-table-form/examples/table-form-batch-submit.js +431 -0
- package/lib/app/compile.d.ts +0 -17
- package/lib/app/compile.d.ts.map +0 -1
- package/lib/app/compile.js +0 -76
- package/lib/app/compile.js.map +0 -1
- package/lib/app/create-app.d.ts +0 -7
- package/lib/app/create-app.d.ts.map +0 -1
- package/lib/app/create-app.js.map +0 -1
- package/lib/app/create-form.d.ts +0 -59
- package/lib/app/create-form.d.ts.map +0 -1
- package/lib/app/create-form.js.map +0 -1
- package/lib/app/create-page.d.ts +0 -11
- package/lib/app/create-page.d.ts.map +0 -1
- package/lib/app/create-page.js.map +0 -1
- package/lib/app/datasource-utils.d.ts +0 -50
- package/lib/app/datasource-utils.d.ts.map +0 -1
- package/lib/app/datasource-utils.js +0 -313
- package/lib/app/datasource-utils.js.map +0 -1
- package/lib/app/export-app.d.ts +0 -9
- package/lib/app/export-app.d.ts.map +0 -1
- package/lib/app/export-app.js.map +0 -1
- package/lib/app/get-schema.d.ts +0 -7
- package/lib/app/get-schema.d.ts.map +0 -1
- package/lib/app/get-schema.js.map +0 -1
- package/lib/app/import-app.d.ts +0 -9
- package/lib/app/import-app.d.ts.map +0 -1
- package/lib/app/import-app.js.map +0 -1
- package/lib/app/publish.d.ts +0 -26
- package/lib/app/publish.d.ts.map +0 -1
- package/lib/app/publish.js.map +0 -1
- package/lib/app/update-form-config.d.ts +0 -2
- package/lib/app/update-form-config.d.ts.map +0 -1
- package/lib/app/update-form-config.js.map +0 -1
- package/lib/auth/auth.d.ts +0 -57
- package/lib/auth/auth.d.ts.map +0 -1
- package/lib/auth/auth.js.map +0 -1
- package/lib/auth/login.d.ts +0 -30
- package/lib/auth/login.d.ts.map +0 -1
- package/lib/auth/login.js.map +0 -1
- package/lib/auth/org.d.ts +0 -46
- package/lib/auth/org.d.ts.map +0 -1
- package/lib/auth/org.js.map +0 -1
- package/lib/auth/qr-login.d.ts +0 -22
- package/lib/auth/qr-login.d.ts.map +0 -1
- package/lib/auth/qr-login.js.map +0 -1
- package/lib/cdn/cdn-config-cmd.d.ts +0 -36
- package/lib/cdn/cdn-config-cmd.d.ts.map +0 -1
- package/lib/cdn/cdn-config-cmd.js.map +0 -1
- package/lib/cdn/cdn-config.d.ts +0 -81
- package/lib/cdn/cdn-config.d.ts.map +0 -1
- package/lib/cdn/cdn-config.js.map +0 -1
- package/lib/cdn/cdn-refresh.d.ts +0 -69
- package/lib/cdn/cdn-refresh.d.ts.map +0 -1
- package/lib/cdn/cdn-refresh.js.map +0 -1
- package/lib/cdn/cdn-upload.d.ts +0 -56
- package/lib/cdn/cdn-upload.d.ts.map +0 -1
- package/lib/cdn/cdn-upload.js.map +0 -1
- package/lib/connector/action-generator.d.ts +0 -39
- package/lib/connector/action-generator.d.ts.map +0 -1
- package/lib/connector/action-generator.js.map +0 -1
- package/lib/connector/api.d.ts +0 -124
- package/lib/connector/api.d.ts.map +0 -1
- package/lib/connector/api.js.map +0 -1
- package/lib/connector/connector-add-action.d.ts +0 -14
- package/lib/connector/connector-add-action.d.ts.map +0 -1
- package/lib/connector/connector-add-action.js.map +0 -1
- package/lib/connector/connector-create-connection.d.ts +0 -16
- package/lib/connector/connector-create-connection.d.ts.map +0 -1
- package/lib/connector/connector-create-connection.js.map +0 -1
- package/lib/connector/connector-create.d.ts +0 -24
- package/lib/connector/connector-create.d.ts.map +0 -1
- package/lib/connector/connector-create.js.map +0 -1
- package/lib/connector/connector-delete-action.d.ts +0 -11
- package/lib/connector/connector-delete-action.d.ts.map +0 -1
- package/lib/connector/connector-delete-action.js.map +0 -1
- package/lib/connector/connector-delete.d.ts +0 -8
- package/lib/connector/connector-delete.d.ts.map +0 -1
- package/lib/connector/connector-delete.js.map +0 -1
- package/lib/connector/connector-detail.d.ts +0 -8
- package/lib/connector/connector-detail.d.ts.map +0 -1
- package/lib/connector/connector-detail.js.map +0 -1
- package/lib/connector/connector-gen-template.d.ts +0 -8
- package/lib/connector/connector-gen-template.d.ts.map +0 -1
- package/lib/connector/connector-gen-template.js.map +0 -1
- package/lib/connector/connector-list-actions.d.ts +0 -8
- package/lib/connector/connector-list-actions.d.ts.map +0 -1
- package/lib/connector/connector-list-actions.js.map +0 -1
- package/lib/connector/connector-list-connections.d.ts +0 -8
- package/lib/connector/connector-list-connections.d.ts.map +0 -1
- package/lib/connector/connector-list-connections.js.map +0 -1
- package/lib/connector/connector-list.d.ts +0 -13
- package/lib/connector/connector-list.d.ts.map +0 -1
- package/lib/connector/connector-list.js.map +0 -1
- package/lib/connector/connector-parse-api.d.ts +0 -14
- package/lib/connector/connector-parse-api.d.ts.map +0 -1
- package/lib/connector/connector-parse-api.js.map +0 -1
- package/lib/connector/connector-smart-create.d.ts +0 -13
- package/lib/connector/connector-smart-create.d.ts.map +0 -1
- package/lib/connector/connector-smart-create.js.map +0 -1
- package/lib/connector/connector-test.d.ts +0 -8
- package/lib/connector/connector-test.d.ts.map +0 -1
- package/lib/connector/connector-test.js.map +0 -1
- package/lib/connector/curl-parser.d.ts +0 -35
- package/lib/connector/curl-parser.d.ts.map +0 -1
- package/lib/connector/curl-parser.js.map +0 -1
- package/lib/connector/desc-generator.d.ts +0 -23
- package/lib/connector/desc-generator.d.ts.map +0 -1
- package/lib/connector/desc-generator.js.map +0 -1
- package/lib/connector/doc-parser.d.ts +0 -101
- package/lib/connector/doc-parser.d.ts.map +0 -1
- package/lib/connector/doc-parser.js.map +0 -1
- package/lib/connector/response-parser.d.ts +0 -40
- package/lib/connector/response-parser.d.ts.map +0 -1
- package/lib/connector/response-parser.js.map +0 -1
- package/lib/core/check-update.d.ts +0 -20
- package/lib/core/check-update.d.ts.map +0 -1
- package/lib/core/check-update.js.map +0 -1
- package/lib/core/copy.d.ts +0 -32
- package/lib/core/copy.d.ts.map +0 -1
- package/lib/core/copy.js.map +0 -1
- package/lib/core/doctor.d.ts +0 -289
- package/lib/core/doctor.d.ts.map +0 -1
- package/lib/core/doctor.js.map +0 -1
- package/lib/core/env.d.ts +0 -20
- package/lib/core/env.d.ts.map +0 -1
- package/lib/core/env.js.map +0 -1
- package/lib/core/i18n.d.ts +0 -41
- package/lib/core/i18n.d.ts.map +0 -1
- package/lib/core/i18n.js.map +0 -1
- package/lib/core/locales/ar.d.ts +0 -625
- package/lib/core/locales/ar.d.ts.map +0 -1
- package/lib/core/locales/ar.js.map +0 -1
- package/lib/core/locales/de.d.ts +0 -625
- package/lib/core/locales/de.d.ts.map +0 -1
- package/lib/core/locales/de.js.map +0 -1
- package/lib/core/locales/en.d.ts +0 -626
- package/lib/core/locales/en.d.ts.map +0 -1
- package/lib/core/locales/en.js.map +0 -1
- package/lib/core/locales/es.d.ts +0 -625
- package/lib/core/locales/es.d.ts.map +0 -1
- package/lib/core/locales/es.js.map +0 -1
- package/lib/core/locales/fr.d.ts +0 -625
- package/lib/core/locales/fr.d.ts.map +0 -1
- package/lib/core/locales/fr.js.map +0 -1
- package/lib/core/locales/hi.d.ts +0 -625
- package/lib/core/locales/hi.d.ts.map +0 -1
- package/lib/core/locales/hi.js.map +0 -1
- package/lib/core/locales/ja.d.ts +0 -625
- package/lib/core/locales/ja.d.ts.map +0 -1
- package/lib/core/locales/ja.js.map +0 -1
- package/lib/core/locales/ko.d.ts +0 -625
- package/lib/core/locales/ko.d.ts.map +0 -1
- package/lib/core/locales/ko.js.map +0 -1
- package/lib/core/locales/pt.d.ts +0 -625
- package/lib/core/locales/pt.d.ts.map +0 -1
- package/lib/core/locales/pt.js.map +0 -1
- package/lib/core/locales/vi.d.ts +0 -625
- package/lib/core/locales/vi.d.ts.map +0 -1
- package/lib/core/locales/vi.js.map +0 -1
- package/lib/core/locales/zh-TW.d.ts +0 -625
- package/lib/core/locales/zh-TW.d.ts.map +0 -1
- package/lib/core/locales/zh-TW.js.map +0 -1
- package/lib/core/locales/zh.d.ts +0 -645
- package/lib/core/locales/zh.d.ts.map +0 -1
- package/lib/core/locales/zh.js.map +0 -1
- package/lib/core/query-data.d.ts +0 -13
- package/lib/core/query-data.d.ts.map +0 -1
- package/lib/core/query-data.js.map +0 -1
- package/lib/core/utils.d.ts +0 -66
- package/lib/core/utils.d.ts.map +0 -1
- package/lib/core/utils.js.map +0 -1
- package/lib/integration/integration-api.d.ts +0 -67
- package/lib/integration/integration-api.d.ts.map +0 -1
- package/lib/integration/integration-api.js.map +0 -1
- package/lib/integration/integration-create.d.ts +0 -3
- package/lib/integration/integration-create.d.ts.map +0 -1
- package/lib/integration/integration-create.js.map +0 -1
- package/lib/integration/integration-node-ids.d.ts +0 -31
- package/lib/integration/integration-node-ids.d.ts.map +0 -1
- package/lib/integration/integration-node-ids.js.map +0 -1
- package/lib/integration/integration-process-builder.d.ts +0 -61
- package/lib/integration/integration-process-builder.d.ts.map +0 -1
- package/lib/integration/integration-process-builder.js.map +0 -1
- package/lib/integration/integration-view-builder.d.ts +0 -45
- package/lib/integration/integration-view-builder.d.ts.map +0 -1
- package/lib/integration/integration-view-builder.js.map +0 -1
- package/lib/page-config/get-page-config.d.ts +0 -7
- package/lib/page-config/get-page-config.d.ts.map +0 -1
- package/lib/page-config/get-page-config.js.map +0 -1
- package/lib/page-config/save-share-config.d.ts +0 -7
- package/lib/page-config/save-share-config.d.ts.map +0 -1
- package/lib/page-config/save-share-config.js.map +0 -1
- package/lib/page-config/verify-short-url.d.ts +0 -20
- package/lib/page-config/verify-short-url.d.ts.map +0 -1
- package/lib/page-config/verify-short-url.js.map +0 -1
- package/lib/permission/get-permission.d.ts +0 -7
- package/lib/permission/get-permission.d.ts.map +0 -1
- package/lib/permission/get-permission.js.map +0 -1
- package/lib/permission/save-permission.d.ts +0 -7
- package/lib/permission/save-permission.d.ts.map +0 -1
- package/lib/permission/save-permission.js.map +0 -1
- package/lib/process/configure-process.d.ts +0 -16
- package/lib/process/configure-process.d.ts.map +0 -1
- package/lib/process/configure-process.js.map +0 -1
- package/lib/process/create-process.d.ts +0 -14
- package/lib/process/create-process.d.ts.map +0 -1
- package/lib/process/create-process.js.map +0 -1
- package/lib/report/append.d.ts +0 -3
- package/lib/report/append.d.ts.map +0 -1
- package/lib/report/append.js.map +0 -1
- package/lib/report/chart-builder.d.ts +0 -92
- package/lib/report/chart-builder.d.ts.map +0 -1
- package/lib/report/chart-builder.js.map +0 -1
- package/lib/report/constants.d.ts +0 -40
- package/lib/report/constants.d.ts.map +0 -1
- package/lib/report/constants.js.map +0 -1
- package/lib/report/create-report.d.ts +0 -15
- package/lib/report/create-report.d.ts.map +0 -1
- package/lib/report/create-report.js.map +0 -1
- package/lib/report/http.d.ts +0 -10
- package/lib/report/http.d.ts.map +0 -1
- package/lib/report/http.js.map +0 -1
- package/lib/report/index.d.ts +0 -3
- package/lib/report/index.d.ts.map +0 -1
- package/lib/report/index.js.map +0 -1
- package/lib/types/index.d.ts +0 -91
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/index.js +0 -8
- package/lib/types/index.js.map +0 -1
- package/scripts/sync-locales.js +0 -288
- package/scripts/update-contributors.js +0 -152
- package/scripts/validate-deps.js +0 -171
- package/scripts/validate-i18n.js +0 -246
- package/yida-skills/reference/connector-datasource.md +0 -387
- package/yida-skills/reference/vc-yida-report-components-doc.md +0 -615
- package/yida-skills/skills/yida-create-report/SKILL.md +0 -340
- package/yida-skills/skills/yida-custom-page/jsx-compile-checklist.md +0 -113
- package/yida-skills/skills/yida-data-management/reference/data-format-guide.md +0 -73
- package/yida-skills/skills/yida-report/build-yida-report-schema.js +0 -1284
- /package/yida-skills/{reference → references}/model-api.md +0 -0
- /package/yida-skills/{reference → references}/query-condition-guide.md +0 -0
- /package/yida-skills/{reference → references}/yida-api.md +0 -0
- /package/yida-skills/{reference → skills/yida-create-form-page/references}/association-form-field.md +0 -0
- /package/yida-skills/{reference → skills/yida-create-form-page/references}/employee-field.md +0 -0
- /package/yida-skills/{reference → skills/yida-create-form-page/references}/serial-number-field.md +0 -0
- /package/yida-skills/skills/yida-data-management/{reference → references}/api-matrix.md +0 -0
package/README.ar.md
CHANGED
|
@@ -77,61 +77,41 @@ npm install -g openyida
|
|
|
77
77
|
## أوامر CLI
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
#
|
|
81
|
-
openyida
|
|
82
|
-
openyida
|
|
83
|
-
openyida
|
|
84
|
-
openyida
|
|
85
|
-
openyida
|
|
86
|
-
openyida
|
|
87
|
-
openyida
|
|
88
|
-
openyida
|
|
89
|
-
openyida
|
|
90
|
-
openyida
|
|
91
|
-
openyida
|
|
92
|
-
|
|
93
|
-
#
|
|
94
|
-
openyida
|
|
95
|
-
openyida
|
|
96
|
-
openyida
|
|
97
|
-
openyida
|
|
98
|
-
openyida
|
|
99
|
-
openyida
|
|
100
|
-
openyida
|
|
101
|
-
openyida
|
|
102
|
-
|
|
103
|
-
#
|
|
104
|
-
openyida
|
|
105
|
-
openyida
|
|
106
|
-
openyida
|
|
107
|
-
|
|
108
|
-
#
|
|
109
|
-
openyida data
|
|
110
|
-
openyida
|
|
111
|
-
|
|
112
|
-
#
|
|
113
|
-
openyida
|
|
114
|
-
openyida
|
|
115
|
-
openyida configure-process # تكوين ونشر العملية
|
|
116
|
-
openyida create-process # إنشاء نموذج العملية
|
|
117
|
-
|
|
118
|
-
# الموصل (HTTP)
|
|
119
|
-
openyida connector list # سرد الموصلات HTTP
|
|
120
|
-
openyida connector create # إنشاء موصل
|
|
121
|
-
openyida connector detail # عرض تفاصيل الموصل
|
|
122
|
-
openyida connector delete # حذف الموصل
|
|
123
|
-
openyida connector add-action # إضافة إجراء إلى الموصل
|
|
124
|
-
openyida connector test # اختبار إجراء الموصل
|
|
125
|
-
openyida connector smart-create # إنشاء ذكي من أمر curl
|
|
126
|
-
|
|
127
|
-
# التقرير
|
|
128
|
-
openyida create-report # إنشاء تقرير Yida مع الرسوم البيانية
|
|
129
|
-
openyida append-chart # إضافة رسوم بيانية إلى التقرير
|
|
130
|
-
|
|
131
|
-
# CDN
|
|
132
|
-
openyida cdn-config # إعداد رفع الصور إلى CDN
|
|
133
|
-
openyida cdn-upload # رفع الصور إلى CDN
|
|
134
|
-
openyida cdn-refresh # تحديث ذاكرة CDN المؤقتة
|
|
80
|
+
openyida append-chart # إضافة رسم بياني إلى تقرير موجود
|
|
81
|
+
openyida auth # إدارة حالة تسجيل الدخول (status/login/refresh/logout)
|
|
82
|
+
openyida cdn-config # إعداد رفع الصور إلى CDN (Aliyun OSS + CDN)
|
|
83
|
+
openyida cdn-refresh # تحديث ذاكرة CDN المؤقتة
|
|
84
|
+
openyida cdn-upload # رفع الصور إلى CDN
|
|
85
|
+
openyida configure-process # تكوين ونشر قواعد العملية
|
|
86
|
+
openyida connector # إدارة موصل HTTP
|
|
87
|
+
openyida copy # تهيئة دليل project لأداة الذكاء الاصطناعي الحالية
|
|
88
|
+
openyida create-app # إنشاء تطبيق Yida
|
|
89
|
+
openyida create-form # إنشاء / تحديث صفحة نموذج
|
|
90
|
+
openyida create-page # إنشاء صفحة عرض مخصصة
|
|
91
|
+
openyida create-process # إنشاء نموذج عملية (متكامل)
|
|
92
|
+
openyida create-report # إنشاء تقرير Yida
|
|
93
|
+
openyida data # إدارة البيانات الموحدة (نموذج/عملية/مهمة/نموذج فرعي)
|
|
94
|
+
openyida doctor # تشخيص البيئة والإصلاح التلقائي
|
|
95
|
+
openyida dws <command> [args] # DingTalk CLI(جهات الاتصال/التقويم/المهام/الموافقة، إلخ)
|
|
96
|
+
openyida env # اكتشاف بيئة أداة الذكاء الاصطناعي الحالية وحالة تسجيل الدخول
|
|
97
|
+
openyida export # تصدير حزمة ترحيل التطبيق
|
|
98
|
+
openyida export-conversation [format] # تصدير سجل محادثة AI
|
|
99
|
+
openyida flash-to-prd <appType> [options] # تحويل الملاحظة السريعة إلى PRD(يدعم التعرف على الاجتماعات)
|
|
100
|
+
openyida get-page-config # الاستعلام عن إعدادات الوصول العام / المشاركة لصفحة
|
|
101
|
+
openyida get-permission # الاستعلام عن إعدادات أذونات النموذج
|
|
102
|
+
openyida get-schema # جلب مخطط النموذج
|
|
103
|
+
openyida import # استيراد حزمة الترحيل لإعادة بناء التطبيق
|
|
104
|
+
openyida integration create <appType> [options] # إنشاء التكامل وتدفق الأتمتة
|
|
105
|
+
openyida login # تسجيل الدخول إلى Yida(الذاكرة المؤقتة أولاً، وإلا رمز QR)
|
|
106
|
+
openyida logout # تسجيل الخروج / تبديل الحساب
|
|
107
|
+
openyida org # إدارة المنظمة (list/switch)
|
|
108
|
+
openyida publish # تجميع ونشر صفحة مخصصة
|
|
109
|
+
openyida query-data # الاستعلام عن بيانات نموذج النماذج
|
|
110
|
+
openyida save-permission # حفظ إعدادات أذونات النموذج
|
|
111
|
+
openyida save-share-config # حفظ إعدادات الوصول العام / المشاركة
|
|
112
|
+
openyida task-center [filter] # مركز المهام العالمي(المهام/المنشأة/المعالجة/نسخة/إرسال)
|
|
113
|
+
openyida update-form-config # تحديث إعدادات النموذج
|
|
114
|
+
openyida verify-short-url # التحقق من إمكانية الوصول إلى رابط مختصر
|
|
135
115
|
```
|
|
136
116
|
|
|
137
117
|
---
|
|
@@ -201,7 +181,7 @@ npx clawhub@latest install nicky1108/yida-app
|
|
|
201
181
|
|
|
202
182
|
شكراً لجميع من ساهموا في OpenYida! اقرأ [دليل المساهمة](./CONTRIBUTING.md) للمشاركة.
|
|
203
183
|
|
|
204
|
-
<p align="left"
|
|
184
|
+
<p align="left">
|
|
205
185
|
<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>
|
|
206
186
|
<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>
|
|
207
187
|
<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>
|
|
@@ -211,7 +191,11 @@ npx clawhub@latest install nicky1108/yida-app
|
|
|
211
191
|
<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>
|
|
212
192
|
<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>
|
|
213
193
|
<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>
|
|
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>
|
|
194
|
+
<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>
|
|
195
|
+
<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>
|
|
196
|
+
<a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
|
|
197
|
+
<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>
|
|
198
|
+
<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>
|
|
215
199
|
</p>
|
|
216
200
|
|
|
217
201
|
---
|
package/README.de.md
CHANGED
|
@@ -77,61 +77,41 @@ Erstelle eine persönliche Gehaltsrechner-App
|
|
|
77
77
|
## CLI-Befehle
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
#
|
|
81
|
-
openyida
|
|
82
|
-
openyida
|
|
83
|
-
openyida
|
|
84
|
-
openyida
|
|
85
|
-
openyida
|
|
86
|
-
openyida
|
|
87
|
-
openyida
|
|
88
|
-
openyida
|
|
89
|
-
openyida
|
|
90
|
-
openyida
|
|
91
|
-
openyida
|
|
92
|
-
|
|
93
|
-
#
|
|
94
|
-
openyida
|
|
95
|
-
openyida
|
|
96
|
-
openyida
|
|
97
|
-
openyida
|
|
98
|
-
openyida
|
|
99
|
-
openyida
|
|
100
|
-
openyida
|
|
101
|
-
openyida
|
|
102
|
-
|
|
103
|
-
#
|
|
104
|
-
openyida
|
|
105
|
-
openyida
|
|
106
|
-
openyida
|
|
107
|
-
|
|
108
|
-
#
|
|
109
|
-
openyida data
|
|
110
|
-
openyida
|
|
111
|
-
|
|
112
|
-
#
|
|
113
|
-
openyida
|
|
114
|
-
openyida
|
|
115
|
-
openyida configure-process # Prozess konfigurieren und veröffentlichen
|
|
116
|
-
openyida create-process # Prozessformular erstellen
|
|
117
|
-
|
|
118
|
-
# Konnektor (HTTP)
|
|
119
|
-
openyida connector list # HTTP-Konnektoren auflisten
|
|
120
|
-
openyida connector create # Konnektor erstellen
|
|
121
|
-
openyida connector detail # Konnektordetails anzeigen
|
|
122
|
-
openyida connector delete # Konnektor löschen
|
|
123
|
-
openyida connector add-action # Konnektoraktion hinzufügen
|
|
124
|
-
openyida connector test # Konnektoraktion testen
|
|
125
|
-
openyida connector smart-create # Intelligent aus curl-Befehl erstellen
|
|
126
|
-
|
|
127
|
-
# Bericht
|
|
128
|
-
openyida create-report # Yida-Bericht mit Diagrammen erstellen
|
|
129
|
-
openyida append-chart # Diagramme an Bericht anhängen
|
|
130
|
-
|
|
131
|
-
# CDN
|
|
132
|
-
openyida cdn-config # CDN-Bild-Upload konfigurieren
|
|
133
|
-
openyida cdn-upload # Bilder zum CDN hochladen
|
|
134
|
-
openyida cdn-refresh # CDN-Cache aktualisieren
|
|
80
|
+
openyida append-chart # Diagramm zu bestehendem Bericht hinzufügen
|
|
81
|
+
openyida auth # Login-Status verwalten (status/login/refresh/logout)
|
|
82
|
+
openyida cdn-config # CDN-Bild-Upload konfigurieren (Aliyun OSS + CDN)
|
|
83
|
+
openyida cdn-refresh # CDN-Cache aktualisieren
|
|
84
|
+
openyida cdn-upload # Bilder zum CDN hochladen
|
|
85
|
+
openyida configure-process # Prozessregeln konfigurieren und veröffentlichen
|
|
86
|
+
openyida connector # HTTP-Connector-Verwaltung
|
|
87
|
+
openyida copy # Project-Verzeichnis für aktuelles KI-Tool initialisieren
|
|
88
|
+
openyida create-app # Yida-App erstellen
|
|
89
|
+
openyida create-form # Formularseite erstellen / aktualisieren
|
|
90
|
+
openyida create-page # Benutzerdefinierte Anzeigeseite erstellen
|
|
91
|
+
openyida create-process # Prozessformular erstellen (integriert)
|
|
92
|
+
openyida create-report # Yida-Bericht erstellen
|
|
93
|
+
openyida data # Einheitliche Datenverwaltung (Formular/Prozess/Aufgabe/Unterformular)
|
|
94
|
+
openyida doctor # Umgebungsdiagnose und automatische Reparatur
|
|
95
|
+
openyida dws <command> [args] # DingTalk CLI(Kontakte/Kalender/ToDo/Genehmigung usw.)
|
|
96
|
+
openyida env # Aktuelle KI-Tool-Umgebung und Login-Status erkennen
|
|
97
|
+
openyida export # App-Migrationspaket exportieren
|
|
98
|
+
openyida export-conversation [format] # AI-Konversationsverlauf exportieren
|
|
99
|
+
openyida flash-to-prd <appType> [options] # Flash-Notiz zu PRD(unterstützt Meeting-Erkennung)
|
|
100
|
+
openyida get-page-config # Öffentlichen Zugang / Freigabe-Konfiguration einer Seite abfragen
|
|
101
|
+
openyida get-permission # Formular-Berechtigungskonfiguration abfragen
|
|
102
|
+
openyida get-schema # Formular-Schema abrufen
|
|
103
|
+
openyida import # Migrationspaket importieren und App neu erstellen
|
|
104
|
+
openyida integration create <appType> [options] # Integration & Automatisierungsflow erstellen
|
|
105
|
+
openyida login # Bei Yida anmelden(Cache bevorzugt, sonst QR-Code)
|
|
106
|
+
openyida logout # Abmelden / Konto wechseln
|
|
107
|
+
openyida org # Organisationsverwaltung (list/switch)
|
|
108
|
+
openyida publish # Benutzerdefinierte Seite kompilieren und veröffentlichen
|
|
109
|
+
openyida query-data # Formularinstanzdaten abfragen
|
|
110
|
+
openyida save-permission # Formular-Berechtigungskonfiguration speichern
|
|
111
|
+
openyida save-share-config # Öffentlichen Zugang / Freigabe-Konfiguration speichern
|
|
112
|
+
openyida task-center [filter] # Globales Aufgabencenter(ToDo/Erstellt/Verarbeitet/CC/Übermittelt)
|
|
113
|
+
openyida update-form-config # Formularkonfiguration aktualisieren
|
|
114
|
+
openyida verify-short-url # Prüfen ob eine Kurz-URL erreichbar ist
|
|
135
115
|
```
|
|
136
116
|
|
|
137
117
|
---
|
|
@@ -201,7 +181,7 @@ Scannen Sie den QR-Code, um der OpenYida-Benutzergruppe auf DingTalk beizutreten
|
|
|
201
181
|
|
|
202
182
|
Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfaden](./CONTRIBUTING.md).
|
|
203
183
|
|
|
204
|
-
<p align="left"
|
|
184
|
+
<p align="left">
|
|
205
185
|
<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>
|
|
206
186
|
<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>
|
|
207
187
|
<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>
|
|
@@ -211,7 +191,11 @@ Danke an alle, die zu OpenYida beigetragen haben! Lesen Sie den [Beitragsleitfad
|
|
|
211
191
|
<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>
|
|
212
192
|
<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>
|
|
213
193
|
<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>
|
|
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>
|
|
194
|
+
<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>
|
|
195
|
+
<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>
|
|
196
|
+
<a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
|
|
197
|
+
<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>
|
|
198
|
+
<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>
|
|
215
199
|
</p>
|
|
216
200
|
|
|
217
201
|
---
|
package/README.es.md
CHANGED
|
@@ -77,61 +77,41 @@ Crea una aplicación de calculadora de salario personal
|
|
|
77
77
|
## Comandos CLI
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
#
|
|
81
|
-
openyida
|
|
82
|
-
openyida
|
|
83
|
-
openyida
|
|
84
|
-
openyida
|
|
85
|
-
openyida
|
|
86
|
-
openyida
|
|
87
|
-
openyida
|
|
88
|
-
openyida
|
|
89
|
-
openyida
|
|
90
|
-
openyida
|
|
91
|
-
openyida
|
|
92
|
-
|
|
93
|
-
#
|
|
94
|
-
openyida
|
|
95
|
-
openyida
|
|
96
|
-
openyida
|
|
97
|
-
openyida
|
|
98
|
-
openyida
|
|
99
|
-
openyida
|
|
100
|
-
openyida
|
|
101
|
-
openyida
|
|
102
|
-
|
|
103
|
-
#
|
|
104
|
-
openyida
|
|
105
|
-
openyida
|
|
106
|
-
openyida
|
|
107
|
-
|
|
108
|
-
#
|
|
109
|
-
openyida data
|
|
110
|
-
openyida
|
|
111
|
-
|
|
112
|
-
#
|
|
113
|
-
openyida
|
|
114
|
-
openyida
|
|
115
|
-
openyida configure-process # Configurar y publicar proceso
|
|
116
|
-
openyida create-process # Crear formulario de proceso
|
|
117
|
-
|
|
118
|
-
# Conector (HTTP)
|
|
119
|
-
openyida connector list # Listar conectores HTTP
|
|
120
|
-
openyida connector create # Crear conector
|
|
121
|
-
openyida connector detail # Ver detalles del conector
|
|
122
|
-
openyida connector delete # Eliminar conector
|
|
123
|
-
openyida connector add-action # Añadir acción al conector
|
|
124
|
-
openyida connector test # Probar acción de conector
|
|
125
|
-
openyida connector smart-create # Crear inteligentemente desde comando curl
|
|
126
|
-
|
|
127
|
-
# Informe
|
|
128
|
-
openyida create-report # Crear informe Yida con gráficos
|
|
129
|
-
openyida append-chart # Añadir gráficos al informe
|
|
130
|
-
|
|
131
|
-
# CDN
|
|
132
|
-
openyida cdn-config # Configurar subida de imágenes CDN
|
|
133
|
-
openyida cdn-upload # Subir imágenes al CDN
|
|
134
|
-
openyida cdn-refresh # Actualizar caché del CDN
|
|
80
|
+
openyida append-chart # Agregar gráfico a un informe existente
|
|
81
|
+
openyida auth # Gestión del estado de login (status/login/refresh/logout)
|
|
82
|
+
openyida cdn-config # Configurar carga de imágenes CDN (Aliyun OSS + CDN)
|
|
83
|
+
openyida cdn-refresh # Actualizar caché del CDN
|
|
84
|
+
openyida cdn-upload # Subir imágenes al CDN
|
|
85
|
+
openyida configure-process # Configurar y publicar reglas de proceso
|
|
86
|
+
openyida connector # Gestión de conectores HTTP
|
|
87
|
+
openyida copy # Inicializar directorio project para la herramienta IA actual
|
|
88
|
+
openyida create-app # Crear una aplicación Yida
|
|
89
|
+
openyida create-form # Crear / actualizar una página de formulario
|
|
90
|
+
openyida create-page # Crear una página de visualización personalizada
|
|
91
|
+
openyida create-process # Crear un formulario de proceso (integrado)
|
|
92
|
+
openyida create-report # Crear un informe Yida
|
|
93
|
+
openyida data # Gestión de datos unificada (formulario/proceso/tarea/subformulario)
|
|
94
|
+
openyida doctor # Diagnóstico de entorno y reparación automática
|
|
95
|
+
openyida dws <command> [args] # DingTalk CLI(Contactos/Calendario/Tareas/Aprobación, etc.)
|
|
96
|
+
openyida env # Detectar el entorno de herramienta IA actual y estado de login
|
|
97
|
+
openyida export # Exportar paquete de migración de aplicación
|
|
98
|
+
openyida export-conversation [format] # Exportar historial de conversación AI
|
|
99
|
+
openyida flash-to-prd <appType> [options] # Nota flash a PRD(admite reconocimiento de reuniones)
|
|
100
|
+
openyida get-page-config # Consultar configuración de acceso público / compartir de una página
|
|
101
|
+
openyida get-permission # Consultar configuración de permisos del formulario
|
|
102
|
+
openyida get-schema # Obtener el esquema del formulario
|
|
103
|
+
openyida import # Importar paquete de migración para reconstruir aplicación
|
|
104
|
+
openyida integration create <appType> [options] # Crear integración y flujo de automatización
|
|
105
|
+
openyida login # Iniciar sesión en Yida(caché primero, si no QR code)
|
|
106
|
+
openyida logout # Cerrar sesión / cambiar cuenta
|
|
107
|
+
openyida org # Gestión de organización (list/switch)
|
|
108
|
+
openyida publish # Compilar y publicar una página personalizada
|
|
109
|
+
openyida query-data # Consultar datos de instancia de formulario
|
|
110
|
+
openyida save-permission # Guardar configuración de permisos del formulario
|
|
111
|
+
openyida save-share-config # Guardar configuración de acceso público / compartir
|
|
112
|
+
openyida task-center [filter] # Centro de tareas global(Tareas/Creadas/Procesadas/CC/Enviadas)
|
|
113
|
+
openyida update-form-config # Actualizar configuración del formulario
|
|
114
|
+
openyida verify-short-url # Verificar si una URL corta es accesible
|
|
135
115
|
```
|
|
136
116
|
|
|
137
117
|
---
|
|
@@ -201,7 +181,7 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
|
|
|
201
181
|
|
|
202
182
|
¡Gracias a todos los que han contribuido a OpenYida! Lee la [Guía de contribución](./CONTRIBUTING.md) para participar.
|
|
203
183
|
|
|
204
|
-
<p align="left"
|
|
184
|
+
<p align="left">
|
|
205
185
|
<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>
|
|
206
186
|
<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>
|
|
207
187
|
<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>
|
|
@@ -211,7 +191,11 @@ Escanea el código QR para unirte al grupo de usuarios de OpenYida en DingTalk.
|
|
|
211
191
|
<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>
|
|
212
192
|
<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>
|
|
213
193
|
<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>
|
|
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>
|
|
194
|
+
<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>
|
|
195
|
+
<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>
|
|
196
|
+
<a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
|
|
197
|
+
<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>
|
|
198
|
+
<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>
|
|
215
199
|
</p>
|
|
216
200
|
|
|
217
201
|
---
|
package/README.fr.md
CHANGED
|
@@ -77,61 +77,41 @@ Crée une application de calcul de salaire personnel
|
|
|
77
77
|
## Commandes CLI
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
#
|
|
81
|
-
openyida
|
|
82
|
-
openyida
|
|
83
|
-
openyida
|
|
84
|
-
openyida
|
|
85
|
-
openyida
|
|
86
|
-
openyida
|
|
87
|
-
openyida
|
|
88
|
-
openyida
|
|
89
|
-
openyida
|
|
90
|
-
openyida
|
|
91
|
-
openyida
|
|
92
|
-
|
|
93
|
-
#
|
|
94
|
-
openyida
|
|
95
|
-
openyida
|
|
96
|
-
openyida
|
|
97
|
-
openyida
|
|
98
|
-
openyida
|
|
99
|
-
openyida
|
|
100
|
-
openyida
|
|
101
|
-
openyida
|
|
102
|
-
|
|
103
|
-
#
|
|
104
|
-
openyida
|
|
105
|
-
openyida
|
|
106
|
-
openyida
|
|
107
|
-
|
|
108
|
-
#
|
|
109
|
-
openyida data
|
|
110
|
-
openyida
|
|
111
|
-
|
|
112
|
-
#
|
|
113
|
-
openyida
|
|
114
|
-
openyida
|
|
115
|
-
openyida configure-process # Configurer et publier un processus
|
|
116
|
-
openyida create-process # Créer un formulaire de processus
|
|
117
|
-
|
|
118
|
-
# Connecteur (HTTP)
|
|
119
|
-
openyida connector list # Lister les connecteurs HTTP
|
|
120
|
-
openyida connector create # Créer un connecteur
|
|
121
|
-
openyida connector detail # Afficher les détails du connecteur
|
|
122
|
-
openyida connector delete # Supprimer un connecteur
|
|
123
|
-
openyida connector add-action # Ajouter une action au connecteur
|
|
124
|
-
openyida connector test # Tester une action de connecteur
|
|
125
|
-
openyida connector smart-create # Créer intelligemment depuis une commande curl
|
|
126
|
-
|
|
127
|
-
# Rapport
|
|
128
|
-
openyida create-report # Créer un rapport Yida avec graphiques
|
|
129
|
-
openyida append-chart # Ajouter des graphiques au rapport
|
|
130
|
-
|
|
131
|
-
# CDN
|
|
132
|
-
openyida cdn-config # Configurer l'upload d'images CDN
|
|
133
|
-
openyida cdn-upload # Uploader des images vers le CDN
|
|
134
|
-
openyida cdn-refresh # Rafraîchir le cache CDN
|
|
80
|
+
openyida append-chart # Ajouter un graphique à un rapport existant
|
|
81
|
+
openyida auth # Gestion du statut de connexion (status/login/refresh/logout)
|
|
82
|
+
openyida cdn-config # Configurer l'upload d'images CDN (Aliyun OSS + CDN)
|
|
83
|
+
openyida cdn-refresh # Rafraîchir le cache CDN
|
|
84
|
+
openyida cdn-upload # Uploader des images vers le CDN
|
|
85
|
+
openyida configure-process # Configurer et publier les règles de processus
|
|
86
|
+
openyida connector # Gestion des connecteurs HTTP
|
|
87
|
+
openyida copy # Initialiser le répertoire project pour l'outil IA actuel
|
|
88
|
+
openyida create-app # Créer une application Yida
|
|
89
|
+
openyida create-form # Créer / mettre à jour une page de formulaire
|
|
90
|
+
openyida create-page # Créer une page d'affichage personnalisée
|
|
91
|
+
openyida create-process # Créer un formulaire de processus (intégré)
|
|
92
|
+
openyida create-report # Créer un rapport Yida
|
|
93
|
+
openyida data # Gestion unifiée des données (formulaire/processus/tâche/sous-formulaire)
|
|
94
|
+
openyida doctor # Diagnostic d'environnement et réparation automatique
|
|
95
|
+
openyida dws <command> [args] # DingTalk CLI(Contacts/Calendrier/ToDo/Approbation, etc.)
|
|
96
|
+
openyida env # Détecter l'environnement IA actuel et le statut de connexion
|
|
97
|
+
openyida export # Exporter le package de migration d'application
|
|
98
|
+
openyida export-conversation [format] # Exporter l'historique de conversation AI
|
|
99
|
+
openyida flash-to-prd <appType> [options] # Note flash vers PRD(supporte la reconnaissance de réunions)
|
|
100
|
+
openyida get-page-config # Consulter la config d'accès public / partage d'une page
|
|
101
|
+
openyida get-permission # Consulter la configuration des permissions du formulaire
|
|
102
|
+
openyida get-schema # Récupérer le schéma de formulaire
|
|
103
|
+
openyida import # Importer le package de migration pour reconstruire l'application
|
|
104
|
+
openyida integration create <appType> [options] # Créer intégration et flux d'automatisation
|
|
105
|
+
openyida login # Se connecter à Yida(cache en priorité, sinon QR code)
|
|
106
|
+
openyida logout # Se déconnecter / changer de compte
|
|
107
|
+
openyida org # Gestion des organisations (list/switch)
|
|
108
|
+
openyida publish # Compiler et publier une page personnalisée
|
|
109
|
+
openyida query-data # Consulter les données d'instance de formulaire
|
|
110
|
+
openyida save-permission # Sauvegarder la configuration des permissions du formulaire
|
|
111
|
+
openyida save-share-config # Sauvegarder la config d'accès public / partage
|
|
112
|
+
openyida task-center [filter] # Centre de tâches global(ToDo/Créées/Traitées/CC/Soumises)
|
|
113
|
+
openyida update-form-config # Mettre à jour la configuration du formulaire
|
|
114
|
+
openyida verify-short-url # Vérifier si une URL courte est accessible
|
|
135
115
|
```
|
|
136
116
|
|
|
137
117
|
---
|
|
@@ -201,7 +181,7 @@ Scannez le QR code pour rejoindre le groupe d'utilisateurs OpenYida sur DingTalk
|
|
|
201
181
|
|
|
202
182
|
Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribution](./CONTRIBUTING.md) pour participer.
|
|
203
183
|
|
|
204
|
-
<p align="left"
|
|
184
|
+
<p align="left">
|
|
205
185
|
<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>
|
|
206
186
|
<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>
|
|
207
187
|
<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>
|
|
@@ -211,7 +191,11 @@ Merci à tous ceux qui ont contribué à OpenYida ! Lisez le [Guide de contribut
|
|
|
211
191
|
<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>
|
|
212
192
|
<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>
|
|
213
193
|
<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>
|
|
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>
|
|
194
|
+
<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>
|
|
195
|
+
<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>
|
|
196
|
+
<a href="https://github.com/liug0911"><img src="https://avatars.githubusercontent.com/u/1578814?v=4&s=48" width="48" height="48" alt="LIUG" title="LIUG"/></a>
|
|
197
|
+
<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>
|
|
198
|
+
<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>
|
|
215
199
|
</p>
|
|
216
200
|
|
|
217
201
|
---
|