@bgx4k3p/huly-mcp-server 2.2.3 → 2.2.5
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.md +186 -56
- package/node_modules/@hcengineering/account-client/lib/__tests__/utils.test.js +249 -0
- package/node_modules/@hcengineering/account-client/lib/__tests__/utils.test.js.map +7 -0
- package/node_modules/@hcengineering/account-client/lib/client.js +88 -3
- package/node_modules/@hcengineering/account-client/lib/client.js.map +2 -2
- package/node_modules/@hcengineering/account-client/lib/types.js.map +2 -2
- package/node_modules/@hcengineering/account-client/lib/utils.js +50 -0
- package/node_modules/@hcengineering/account-client/lib/utils.js.map +2 -2
- package/node_modules/@hcengineering/account-client/package.json +22 -19
- package/node_modules/@hcengineering/account-client/src/__tests__/utils.test.ts +304 -0
- package/node_modules/@hcengineering/account-client/src/client.ts +127 -6
- package/node_modules/@hcengineering/account-client/src/types.ts +7 -0
- package/node_modules/@hcengineering/account-client/src/utils.ts +65 -1
- package/node_modules/@hcengineering/analytics/lib/index.js +1 -1
- package/node_modules/@hcengineering/analytics/lib/index.js.map +2 -2
- package/node_modules/@hcengineering/analytics/package.json +19 -16
- package/node_modules/@hcengineering/analytics/src/index.ts +2 -1
- package/node_modules/@hcengineering/api-client/lib/client.js +9 -4
- package/node_modules/@hcengineering/api-client/lib/client.js.map +2 -2
- package/node_modules/@hcengineering/api-client/lib/rest/adapter.js +64 -0
- package/node_modules/@hcengineering/api-client/lib/rest/adapter.js.map +7 -0
- package/node_modules/@hcengineering/api-client/lib/rest/index.js +2 -0
- package/node_modules/@hcengineering/api-client/lib/rest/index.js.map +2 -2
- package/node_modules/@hcengineering/api-client/lib/socket/node.js +5 -1
- package/node_modules/@hcengineering/api-client/lib/socket/node.js.map +2 -2
- package/node_modules/@hcengineering/api-client/package.json +28 -25
- package/node_modules/@hcengineering/api-client/src/client.ts +10 -1
- package/node_modules/@hcengineering/api-client/src/rest/adapter.ts +96 -0
- package/node_modules/@hcengineering/api-client/src/rest/index.ts +1 -0
- package/node_modules/@hcengineering/api-client/src/socket/node.ts +6 -1
- package/node_modules/@hcengineering/chunter/lib/index.js.map +2 -2
- package/node_modules/@hcengineering/chunter/package.json +13 -10
- package/node_modules/@hcengineering/client/package.json +21 -18
- package/node_modules/@hcengineering/client-resources/package.json +24 -21
- package/node_modules/@hcengineering/collaborator-client/package.json +21 -18
- package/node_modules/@hcengineering/contact/lib/__tests__/workspaceMemberStatusUtils.test.js +38 -0
- package/node_modules/@hcengineering/contact/lib/__tests__/workspaceMemberStatusUtils.test.js.map +7 -0
- package/node_modules/@hcengineering/contact/lib/index.js +13 -4
- package/node_modules/@hcengineering/contact/lib/index.js.map +2 -2
- package/node_modules/@hcengineering/contact/lib/types.js.map +1 -1
- package/node_modules/@hcengineering/contact/lib/utils.js +132 -108
- package/node_modules/@hcengineering/contact/lib/utils.js.map +3 -3
- package/node_modules/@hcengineering/contact/lib/workspaceMemberStatusUtils.js +79 -0
- package/node_modules/@hcengineering/contact/lib/workspaceMemberStatusUtils.js.map +7 -0
- package/node_modules/@hcengineering/contact/package.json +12 -9
- package/node_modules/@hcengineering/core/CHANGELOG.md +9 -1
- package/node_modules/@hcengineering/core/lang/cs.json +6 -1
- package/node_modules/@hcengineering/core/lang/de.json +6 -1
- package/node_modules/@hcengineering/core/lang/en.json +6 -1
- package/node_modules/@hcengineering/core/lang/es.json +6 -1
- package/node_modules/@hcengineering/core/lang/fr.json +6 -1
- package/node_modules/@hcengineering/core/lang/it.json +6 -1
- package/node_modules/@hcengineering/core/lang/ja.json +6 -1
- package/node_modules/@hcengineering/core/lang/pt-br.json +70 -0
- package/node_modules/@hcengineering/core/lang/pt.json +6 -1
- package/node_modules/@hcengineering/core/lang/ru.json +6 -1
- package/node_modules/@hcengineering/core/lang/tr.json +6 -1
- package/node_modules/@hcengineering/core/lang/zh.json +6 -1
- package/node_modules/@hcengineering/core/lib/__tests__/autoJoinRoles.test.js +13 -0
- package/node_modules/@hcengineering/core/lib/__tests__/autoJoinRoles.test.js.map +7 -0
- package/node_modules/@hcengineering/core/lib/__tests__/memdb.test.js +133 -0
- package/node_modules/@hcengineering/core/lib/__tests__/memdb.test.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/__tests__/minmodel.js +25 -0
- package/node_modules/@hcengineering/core/lib/__tests__/minmodel.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/__tests__/query.test.js +43 -0
- package/node_modules/@hcengineering/core/lib/__tests__/query.test.js.map +7 -0
- package/node_modules/@hcengineering/core/lib/autoJoinRoles.js +36 -0
- package/node_modules/@hcengineering/core/lib/autoJoinRoles.js.map +7 -0
- package/node_modules/@hcengineering/core/lib/classes.js +5 -0
- package/node_modules/@hcengineering/core/lib/classes.js.map +3 -3
- package/node_modules/@hcengineering/core/lib/clone.js +13 -2
- package/node_modules/@hcengineering/core/lib/clone.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/component.js +14 -3
- package/node_modules/@hcengineering/core/lib/component.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/index.js +2 -0
- package/node_modules/@hcengineering/core/lib/index.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/memdb.js +6 -2
- package/node_modules/@hcengineering/core/lib/memdb.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/operations.js +11 -0
- package/node_modules/@hcengineering/core/lib/operations.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/predicate.js +3 -0
- package/node_modules/@hcengineering/core/lib/predicate.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/storage.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/tx.js +3 -1
- package/node_modules/@hcengineering/core/lib/tx.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/utils.js +1 -1
- package/node_modules/@hcengineering/core/lib/utils.js.map +2 -2
- package/node_modules/@hcengineering/core/lib/versioning.js +17 -0
- package/node_modules/@hcengineering/core/lib/versioning.js.map +7 -0
- package/node_modules/@hcengineering/core/package.json +22 -19
- package/node_modules/@hcengineering/core/src/__tests__/autoJoinRoles.test.ts +27 -0
- package/node_modules/@hcengineering/core/src/__tests__/memdb.test.ts +150 -1
- package/node_modules/@hcengineering/core/src/__tests__/minmodel.ts +29 -1
- package/node_modules/@hcengineering/core/src/__tests__/query.test.ts +66 -0
- package/node_modules/@hcengineering/core/src/autoJoinRoles.ts +33 -0
- package/node_modules/@hcengineering/core/src/classes.ts +61 -1
- package/node_modules/@hcengineering/core/src/clone.ts +13 -2
- package/node_modules/@hcengineering/core/src/component.ts +25 -9
- package/node_modules/@hcengineering/core/src/index.ts +2 -0
- package/node_modules/@hcengineering/core/src/memdb.ts +7 -3
- package/node_modules/@hcengineering/core/src/operations.ts +11 -0
- package/node_modules/@hcengineering/core/src/predicate.ts +3 -0
- package/node_modules/@hcengineering/core/src/storage.ts +6 -3
- package/node_modules/@hcengineering/core/src/tx.ts +4 -1
- package/node_modules/@hcengineering/core/src/utils.ts +1 -1
- package/node_modules/@hcengineering/core/src/versioning.ts +13 -0
- package/node_modules/@hcengineering/measurements/lib/__tests__/performance.test.js +3 -3
- package/node_modules/@hcengineering/measurements/lib/__tests__/performance.test.js.map +2 -2
- package/node_modules/@hcengineering/measurements/package.json +17 -14
- package/node_modules/@hcengineering/measurements/src/__tests__/performance.test.ts +3 -3
- package/node_modules/@hcengineering/platform/lang/pt-br.json +31 -0
- package/node_modules/@hcengineering/platform/lib/__tests__/i18n.test.js +100 -0
- package/node_modules/@hcengineering/platform/lib/__tests__/i18n.test.js.map +2 -2
- package/node_modules/@hcengineering/platform/lib/__tests__/status.test.js +78 -0
- package/node_modules/@hcengineering/platform/lib/__tests__/status.test.js.map +7 -0
- package/node_modules/@hcengineering/platform/lib/i18n.js +78 -69
- package/node_modules/@hcengineering/platform/lib/i18n.js.map +3 -3
- package/node_modules/@hcengineering/platform/lib/status.js +25 -0
- package/node_modules/@hcengineering/platform/lib/status.js.map +2 -2
- package/node_modules/@hcengineering/platform/package.json +18 -15
- package/node_modules/@hcengineering/platform/src/__tests__/i18n.test.ts +114 -2
- package/node_modules/@hcengineering/platform/src/__tests__/status.test.ts +77 -0
- package/node_modules/@hcengineering/platform/src/i18n.ts +99 -71
- package/node_modules/@hcengineering/platform/src/status.ts +30 -0
- package/node_modules/@hcengineering/rank/package.json +19 -16
- package/node_modules/@hcengineering/rpc/package.json +21 -18
- package/node_modules/@hcengineering/tags/package.json +12 -9
- package/node_modules/@hcengineering/task/package.json +14 -11
- package/node_modules/@hcengineering/text/lib/markup/__tests__/utils.test.js +25 -0
- package/node_modules/@hcengineering/text/lib/markup/__tests__/utils.test.js.map +2 -2
- package/node_modules/@hcengineering/text/lib/tiptapExtensions.js +6 -0
- package/node_modules/@hcengineering/text/lib/tiptapExtensions.js.map +2 -2
- package/node_modules/@hcengineering/text/package.json +23 -18
- package/node_modules/@hcengineering/text/src/markup/__tests__/utils.test.ts +27 -0
- package/node_modules/@hcengineering/text/src/tiptapExtensions.ts +3 -0
- package/node_modules/@hcengineering/text-core/lib/markup/model.js +1 -0
- package/node_modules/@hcengineering/text-core/lib/markup/model.js.map +2 -2
- package/node_modules/@hcengineering/text-core/package.json +20 -17
- package/node_modules/@hcengineering/text-core/src/markup/model.ts +2 -1
- package/node_modules/@hcengineering/text-html/package.json +19 -16
- package/node_modules/@hcengineering/text-markdown/lib/serializer.js +14 -0
- package/node_modules/@hcengineering/text-markdown/lib/serializer.js.map +2 -2
- package/node_modules/@hcengineering/text-markdown/package.json +20 -17
- package/node_modules/@hcengineering/text-markdown/src/serializer.ts +14 -0
- package/node_modules/@hcengineering/tracker/lib/index.js +1 -0
- package/node_modules/@hcengineering/tracker/lib/index.js.map +2 -2
- package/node_modules/@hcengineering/tracker/package.json +16 -13
- package/node_modules/@tiptap/core/dist/commands/focus.d.ts.map +1 -1
- package/node_modules/@tiptap/core/dist/index.cjs +19 -2
- package/node_modules/@tiptap/core/dist/index.cjs.map +1 -1
- package/node_modules/@tiptap/core/dist/index.js +19 -3
- package/node_modules/@tiptap/core/dist/index.js.map +1 -1
- package/node_modules/@tiptap/core/dist/index.umd.js +19 -2
- package/node_modules/@tiptap/core/dist/index.umd.js.map +1 -1
- package/node_modules/@tiptap/core/dist/utilities/index.d.ts +1 -0
- package/node_modules/@tiptap/core/dist/utilities/index.d.ts.map +1 -1
- package/node_modules/@tiptap/core/dist/utilities/isSafari.d.ts +10 -0
- package/node_modules/@tiptap/core/dist/utilities/isSafari.d.ts.map +1 -0
- package/node_modules/@tiptap/core/package.json +2 -2
- package/node_modules/@tiptap/core/src/commands/focus.ts +7 -2
- package/node_modules/@tiptap/core/src/utilities/index.ts +1 -0
- package/node_modules/@tiptap/core/src/utilities/isSafari.ts +11 -0
- package/node_modules/@tiptap/extension-blockquote/package.json +2 -2
- package/node_modules/@tiptap/extension-bold/package.json +2 -2
- package/node_modules/@tiptap/extension-bullet-list/package.json +2 -2
- package/node_modules/@tiptap/extension-code/package.json +2 -2
- package/node_modules/@tiptap/extension-code-block/package.json +3 -3
- package/node_modules/@tiptap/extension-document/package.json +2 -2
- package/node_modules/@tiptap/extension-dropcursor/package.json +3 -3
- package/node_modules/@tiptap/extension-gapcursor/package.json +3 -3
- package/node_modules/@tiptap/extension-hard-break/package.json +2 -2
- package/node_modules/@tiptap/extension-heading/package.json +2 -2
- package/node_modules/@tiptap/extension-highlight/package.json +2 -2
- package/node_modules/@tiptap/extension-history/package.json +3 -3
- package/node_modules/@tiptap/extension-horizontal-rule/package.json +3 -3
- package/node_modules/@tiptap/extension-italic/package.json +2 -2
- package/node_modules/@tiptap/extension-link/package.json +3 -3
- package/node_modules/@tiptap/extension-list-item/package.json +2 -2
- package/node_modules/@tiptap/extension-mention/package.json +4 -4
- package/node_modules/@tiptap/extension-ordered-list/package.json +2 -2
- package/node_modules/@tiptap/extension-paragraph/package.json +2 -2
- package/node_modules/@tiptap/extension-strike/package.json +2 -2
- package/node_modules/@tiptap/extension-subscript/README.md +14 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.cjs +61 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.cjs.map +1 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.d.ts +4 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.d.ts.map +1 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.js +56 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.js.map +1 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.umd.js +65 -0
- package/node_modules/@tiptap/extension-subscript/dist/index.umd.js.map +1 -0
- package/node_modules/@tiptap/extension-subscript/dist/subscript.d.ts +36 -0
- package/node_modules/@tiptap/extension-subscript/dist/subscript.d.ts.map +1 -0
- package/node_modules/@tiptap/extension-subscript/package.json +49 -0
- package/node_modules/@tiptap/extension-subscript/src/index.ts +5 -0
- package/node_modules/@tiptap/extension-subscript/src/subscript.ts +91 -0
- package/node_modules/@tiptap/extension-superscript/README.md +14 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.cjs +61 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.cjs.map +1 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.d.ts +4 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.d.ts.map +1 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.js +56 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.js.map +1 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.umd.js +65 -0
- package/node_modules/@tiptap/extension-superscript/dist/index.umd.js.map +1 -0
- package/node_modules/@tiptap/extension-superscript/dist/superscript.d.ts +36 -0
- package/node_modules/@tiptap/extension-superscript/dist/superscript.d.ts.map +1 -0
- package/node_modules/@tiptap/extension-superscript/package.json +49 -0
- package/node_modules/@tiptap/extension-superscript/src/index.ts +5 -0
- package/node_modules/@tiptap/extension-superscript/src/superscript.ts +91 -0
- package/node_modules/@tiptap/extension-table/package.json +3 -3
- package/node_modules/@tiptap/extension-table-cell/package.json +2 -2
- package/node_modules/@tiptap/extension-table-header/package.json +2 -2
- package/node_modules/@tiptap/extension-table-row/package.json +2 -2
- package/node_modules/@tiptap/extension-task-item/package.json +3 -3
- package/node_modules/@tiptap/extension-task-list/package.json +2 -2
- package/node_modules/@tiptap/extension-text/package.json +2 -2
- package/node_modules/@tiptap/extension-typography/package.json +2 -2
- package/node_modules/@tiptap/extension-underline/package.json +2 -2
- package/node_modules/@tiptap/html/package.json +3 -3
- package/node_modules/@tiptap/pm/package.json +1 -1
- package/node_modules/@tiptap/starter-kit/node_modules/@tiptap/extension-text-style/package.json +2 -2
- package/node_modules/@tiptap/starter-kit/package.json +22 -22
- package/node_modules/@tiptap/suggestion/package.json +3 -3
- package/node_modules/linkify-it/build/index.cjs.js +99 -94
- package/node_modules/linkify-it/index.mjs +99 -94
- package/node_modules/linkify-it/package.json +11 -1
- package/node_modules/linkifyjs/README.md +4 -2
- package/node_modules/linkifyjs/dist/linkify.cjs +8 -11
- package/node_modules/linkifyjs/dist/linkify.d.cts +14 -14
- package/node_modules/linkifyjs/dist/linkify.d.mts +14 -14
- package/node_modules/linkifyjs/dist/linkify.js +8 -11
- package/node_modules/linkifyjs/dist/linkify.min.js +1 -1
- package/node_modules/linkifyjs/dist/linkify.mjs +8 -11
- package/node_modules/linkifyjs/package.json +1 -1
- package/node_modules/markdown-it/README.md +13 -17
- package/node_modules/markdown-it/dist/index.cjs.js +111 -31
- package/node_modules/markdown-it/dist/markdown-it.js +117 -31
- package/node_modules/markdown-it/dist/markdown-it.min.js +2 -2
- package/node_modules/markdown-it/lib/common/utils.mjs +30 -1
- package/node_modules/markdown-it/lib/index.mjs +1 -1
- package/node_modules/markdown-it/lib/rules_block/heading.mjs +2 -2
- package/node_modules/markdown-it/lib/rules_block/html_block.mjs +12 -1
- package/node_modules/markdown-it/lib/rules_block/lheading.mjs +4 -1
- package/node_modules/markdown-it/lib/rules_block/paragraph.mjs +3 -1
- package/node_modules/markdown-it/lib/rules_core/smartquotes.mjs +37 -21
- package/node_modules/markdown-it/lib/rules_inline/entity.mjs +2 -2
- package/node_modules/markdown-it/lib/rules_inline/state_inline.mjs +37 -6
- package/node_modules/markdown-it/package.json +14 -3
- package/node_modules/msgpackr/README.md +1 -3
- package/node_modules/msgpackr/benchmark.md +26 -16
- package/node_modules/msgpackr/dist/index-no-eval.cjs +35 -16
- package/node_modules/msgpackr/dist/index-no-eval.cjs.map +1 -1
- package/node_modules/msgpackr/dist/index-no-eval.min.js +1 -1
- package/node_modules/msgpackr/dist/index-no-eval.min.js.map +1 -1
- package/node_modules/msgpackr/dist/index.js +35 -16
- package/node_modules/msgpackr/dist/index.js.map +1 -1
- package/node_modules/msgpackr/dist/index.min.js +1 -1
- package/node_modules/msgpackr/dist/index.min.js.map +1 -1
- package/node_modules/msgpackr/dist/node.cjs +50 -26
- package/node_modules/msgpackr/dist/node.cjs.map +1 -1
- package/node_modules/msgpackr/dist/test.js +44 -16
- package/node_modules/msgpackr/dist/test.js.map +1 -1
- package/node_modules/msgpackr/dist/unpack-no-eval.cjs +35 -16
- package/node_modules/msgpackr/dist/unpack-no-eval.cjs.map +1 -1
- package/node_modules/msgpackr/index.d.cts +2 -0
- package/node_modules/msgpackr/index.d.ts +2 -0
- package/node_modules/msgpackr/package.json +1 -1
- package/node_modules/msgpackr/stream.js +15 -10
- package/node_modules/msgpackr/unpack.js +35 -16
- package/node_modules/prosemirror-changeset/CHANGELOG.md +12 -0
- package/node_modules/prosemirror-changeset/README.md +31 -2
- package/node_modules/prosemirror-changeset/dist/index.cjs +17 -2
- package/node_modules/prosemirror-changeset/dist/index.d.cts +32 -2
- package/node_modules/prosemirror-changeset/dist/index.d.ts +32 -2
- package/node_modules/prosemirror-changeset/dist/index.js +18 -3
- package/node_modules/prosemirror-changeset/package.json +2 -2
- package/node_modules/prosemirror-changeset/src/README.md +4 -2
- package/node_modules/prosemirror-changeset/src/change.ts +18 -0
- package/node_modules/prosemirror-changeset/src/changeset.ts +10 -4
- package/node_modules/prosemirror-changeset/src/simplify.ts +1 -1
- package/node_modules/prosemirror-changeset/test/test-simplify.ts +3 -0
- package/node_modules/prosemirror-gapcursor/CHANGELOG.md +6 -0
- package/node_modules/prosemirror-gapcursor/dist/index.cjs +1 -1
- package/node_modules/prosemirror-gapcursor/dist/index.js +1 -1
- package/node_modules/prosemirror-gapcursor/package.json +3 -2
- package/node_modules/prosemirror-gapcursor/src/gapcursor.ts +1 -1
- package/node_modules/prosemirror-markdown/CHANGELOG.md +12 -0
- package/node_modules/prosemirror-markdown/dist/index.cjs +11 -1
- package/node_modules/prosemirror-markdown/dist/index.js +14 -2
- package/node_modules/prosemirror-markdown/package.json +1 -1
- package/node_modules/prosemirror-markdown/src/to_markdown.ts +12 -3
- package/node_modules/prosemirror-menu/CHANGELOG.md +18 -0
- package/node_modules/prosemirror-menu/CONTRIBUTING.md +22 -18
- package/node_modules/prosemirror-menu/README.md +69 -29
- package/node_modules/prosemirror-menu/dist/index.cjs +232 -48
- package/node_modules/prosemirror-menu/dist/index.d.cts +29 -14
- package/node_modules/prosemirror-menu/dist/index.d.ts +29 -14
- package/node_modules/prosemirror-menu/dist/index.js +229 -36
- package/node_modules/prosemirror-menu/package.json +2 -2
- package/node_modules/prosemirror-menu/src/README.md +30 -1
- package/node_modules/prosemirror-menu/src/icons.ts +3 -2
- package/node_modules/prosemirror-menu/src/menu.ts +193 -40
- package/node_modules/prosemirror-menu/src/menubar.ts +50 -5
- package/node_modules/prosemirror-menu/style/menu.css +28 -7
- package/node_modules/prosemirror-model/CHANGELOG.md +20 -0
- package/node_modules/prosemirror-model/CONTRIBUTING.md +19 -19
- package/node_modules/prosemirror-model/README.md +3 -3
- package/node_modules/prosemirror-model/dist/index.cjs +13 -10
- package/node_modules/prosemirror-model/dist/index.d.cts +25 -21
- package/node_modules/prosemirror-model/dist/index.d.ts +25 -21
- package/node_modules/prosemirror-model/dist/index.js +19 -23
- package/node_modules/prosemirror-model/package.json +2 -2
- package/node_modules/prosemirror-model/src/fragment.ts +1 -1
- package/node_modules/prosemirror-model/src/from_dom.ts +4 -1
- package/node_modules/prosemirror-model/src/node.ts +5 -4
- package/node_modules/prosemirror-model/src/replace.ts +6 -15
- package/node_modules/prosemirror-model/src/schema.ts +1 -1
- package/node_modules/prosemirror-model/src/to_dom.ts +24 -20
- package/node_modules/prosemirror-transform/CHANGELOG.md +16 -0
- package/node_modules/prosemirror-transform/dist/index.cjs +38 -4
- package/node_modules/prosemirror-transform/dist/index.d.cts +19 -0
- package/node_modules/prosemirror-transform/dist/index.d.ts +19 -0
- package/node_modules/prosemirror-transform/dist/index.js +52 -1
- package/node_modules/prosemirror-transform/package.json +1 -1
- package/node_modules/prosemirror-transform/src/replace.ts +16 -0
- package/node_modules/prosemirror-transform/src/replace_step.ts +10 -1
- package/node_modules/prosemirror-transform/src/transform.ts +21 -2
- package/node_modules/prosemirror-view/CHANGELOG.md +34 -2
- package/node_modules/prosemirror-view/CONTRIBUTING.md +19 -19
- package/node_modules/prosemirror-view/README.md +3 -3
- package/node_modules/prosemirror-view/dist/index.cjs +96 -40
- package/node_modules/prosemirror-view/dist/index.d.cts +2 -2
- package/node_modules/prosemirror-view/dist/index.d.ts +2 -2
- package/node_modules/prosemirror-view/dist/index.js +90 -39
- package/node_modules/prosemirror-view/package.json +2 -2
- package/node_modules/prosemirror-view/src/domchange.ts +1 -1
- package/node_modules/prosemirror-view/src/domobserver.ts +59 -16
- package/node_modules/prosemirror-view/src/index.ts +4 -4
- package/node_modules/prosemirror-view/src/input.ts +9 -6
- package/node_modules/prosemirror-view/src/viewdesc.ts +26 -22
- package/node_modules/prosemirror-view/style/prosemirror.css +1 -1
- package/package.json +5 -4
- package/src/client.mjs +2 -2
- package/src/config.mjs +1 -0
- package/src/helpers.mjs +2 -2
- package/src/index.mjs +31 -1
- package/src/initCodex.mjs +281 -0
- package/src/mcp.mjs +11 -1
- package/src/mcpShared.mjs +95 -5
- package/node_modules/@hcengineering/account-client/types/client.d.ts +0 -140
- package/node_modules/@hcengineering/account-client/types/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/account-client/types/index.d.ts +0 -4
- package/node_modules/@hcengineering/account-client/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/account-client/types/types.d.ts +0 -177
- package/node_modules/@hcengineering/account-client/types/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/account-client/types/utils.d.ts +0 -5
- package/node_modules/@hcengineering/account-client/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/analytics/types/index.d.ts +0 -25
- package/node_modules/@hcengineering/analytics/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/__tests__/config.test.d.ts +0 -2
- package/node_modules/@hcengineering/api-client/types/__tests__/config.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/__tests__/markup-client.test.d.ts +0 -2
- package/node_modules/@hcengineering/api-client/types/__tests__/markup-client.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/__tests__/markup-types.test.d.ts +0 -2
- package/node_modules/@hcengineering/api-client/types/__tests__/markup-types.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/__tests__/rest-utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/api-client/types/__tests__/rest-utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/__tests__/utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/api-client/types/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/client.d.ts +0 -6
- package/node_modules/@hcengineering/api-client/types/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/config.d.ts +0 -8
- package/node_modules/@hcengineering/api-client/types/config.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/index.d.ts +0 -9
- package/node_modules/@hcengineering/api-client/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/markup/client.d.ts +0 -5
- package/node_modules/@hcengineering/api-client/types/markup/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/markup/index.d.ts +0 -3
- package/node_modules/@hcengineering/api-client/types/markup/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/markup/types.d.ts +0 -41
- package/node_modules/@hcengineering/api-client/types/markup/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/rest/index.d.ts +0 -4
- package/node_modules/@hcengineering/api-client/types/rest/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/rest/rest.d.ts +0 -39
- package/node_modules/@hcengineering/api-client/types/rest/rest.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/rest/tx.d.ts +0 -3
- package/node_modules/@hcengineering/api-client/types/rest/tx.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/rest/types.d.ts +0 -16
- package/node_modules/@hcengineering/api-client/types/rest/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/rest/utils.d.ts +0 -3
- package/node_modules/@hcengineering/api-client/types/rest/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/socket/browser.d.ts +0 -4
- package/node_modules/@hcengineering/api-client/types/socket/browser.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/socket/index.d.ts +0 -3
- package/node_modules/@hcengineering/api-client/types/socket/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/socket/node.d.ts +0 -4
- package/node_modules/@hcengineering/api-client/types/socket/node.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/storage/client.d.ts +0 -21
- package/node_modules/@hcengineering/api-client/types/storage/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/storage/error.d.ts +0 -10
- package/node_modules/@hcengineering/api-client/types/storage/error.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/storage/index.d.ts +0 -4
- package/node_modules/@hcengineering/api-client/types/storage/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/storage/types.d.ts +0 -10
- package/node_modules/@hcengineering/api-client/types/storage/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/types.d.ts +0 -101
- package/node_modules/@hcengineering/api-client/types/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/api-client/types/utils.d.ts +0 -12
- package/node_modules/@hcengineering/api-client/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/chunter/types/analytics.d.ts +0 -5
- package/node_modules/@hcengineering/chunter/types/analytics.d.ts.map +0 -1
- package/node_modules/@hcengineering/chunter/types/index.d.ts +0 -211
- package/node_modules/@hcengineering/chunter/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/chunter/types/utils.d.ts +0 -7
- package/node_modules/@hcengineering/chunter/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/client/types/__tests__/client.test.d.ts +0 -2
- package/node_modules/@hcengineering/client/types/__tests__/client.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/client/types/index.d.ts +0 -69
- package/node_modules/@hcengineering/client/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/client-resources/types/__tests__/connection.test.d.ts +0 -2
- package/node_modules/@hcengineering/client-resources/types/__tests__/connection.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/client-resources/types/__tests__/integration.test.d.ts +0 -45
- package/node_modules/@hcengineering/client-resources/types/__tests__/integration.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/client-resources/types/connection.d.ts +0 -7
- package/node_modules/@hcengineering/client-resources/types/connection.d.ts.map +0 -1
- package/node_modules/@hcengineering/client-resources/types/index.d.ts +0 -11
- package/node_modules/@hcengineering/client-resources/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/collaborator-client/types/__tests__/utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/collaborator-client/types/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/collaborator-client/types/client.d.ts +0 -34
- package/node_modules/@hcengineering/collaborator-client/types/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/collaborator-client/types/index.d.ts +0 -3
- package/node_modules/@hcengineering/collaborator-client/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/collaborator-client/types/utils.d.ts +0 -9
- package/node_modules/@hcengineering/collaborator-client/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/__tests__/cache.test.d.ts +0 -2
- package/node_modules/@hcengineering/contact/types/__tests__/cache.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/analytics.d.ts +0 -6
- package/node_modules/@hcengineering/contact/types/analytics.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/avatar.d.ts +0 -12
- package/node_modules/@hcengineering/contact/types/avatar.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/cache.d.ts +0 -49
- package/node_modules/@hcengineering/contact/types/cache.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/index.d.ts +0 -367
- package/node_modules/@hcengineering/contact/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/types.d.ts +0 -25
- package/node_modules/@hcengineering/contact/types/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/contact/types/utils.d.ts +0 -110
- package/node_modules/@hcengineering/contact/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/client.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/client.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/clone.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/clone.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/collaboration.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/collaboration.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/collaborators.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/collaborators.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/common.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/common.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/connection.d.ts +0 -4
- package/node_modules/@hcengineering/core/types/__tests__/connection.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/contexts.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/contexts.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/hierarchy.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/hierarchy.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/lang.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/lang.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/limiter-edge-cases.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/limiter-edge-cases.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/limits.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/limits.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/memdb.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/memdb.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/minmodel.d.ts +0 -50
- package/node_modules/@hcengineering/core/types/__tests__/minmodel.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/objvalue.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/objvalue.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/operator-bugs.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/operator-bugs.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/operator.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/operator.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/rate-limiter.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/rate-limiter.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/time.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/time.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/__tests__/utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/core/types/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/backup.d.ts +0 -26
- package/node_modules/@hcengineering/core/types/backup.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/benchmark.d.ts +0 -19
- package/node_modules/@hcengineering/core/types/benchmark.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/classes.d.ts +0 -716
- package/node_modules/@hcengineering/core/types/classes.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/client.d.ts +0 -69
- package/node_modules/@hcengineering/core/types/client.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/clone.d.ts +0 -3
- package/node_modules/@hcengineering/core/types/clone.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/collaboration.d.ts +0 -16
- package/node_modules/@hcengineering/core/types/collaboration.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/collaborators.d.ts +0 -3
- package/node_modules/@hcengineering/core/types/collaborators.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/common.d.ts +0 -4
- package/node_modules/@hcengineering/core/types/common.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/component.d.ts +0 -229
- package/node_modules/@hcengineering/core/types/component.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/hierarchy.d.ts +0 -84
- package/node_modules/@hcengineering/core/types/hierarchy.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/index.d.ts +0 -25
- package/node_modules/@hcengineering/core/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/memdb.d.ts +0 -60
- package/node_modules/@hcengineering/core/types/memdb.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/objvalue.d.ts +0 -10
- package/node_modules/@hcengineering/core/types/objvalue.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/operations.d.ts +0 -87
- package/node_modules/@hcengineering/core/types/operations.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/operator.d.ts +0 -16
- package/node_modules/@hcengineering/core/types/operator.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/predicate.d.ts +0 -6
- package/node_modules/@hcengineering/core/types/predicate.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/proxy.d.ts +0 -21
- package/node_modules/@hcengineering/core/types/proxy.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/query.d.ts +0 -21
- package/node_modules/@hcengineering/core/types/query.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/server.d.ts +0 -82
- package/node_modules/@hcengineering/core/types/server.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/status.d.ts +0 -30
- package/node_modules/@hcengineering/core/types/status.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/storage.d.ts +0 -233
- package/node_modules/@hcengineering/core/types/storage.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/time.d.ts +0 -8
- package/node_modules/@hcengineering/core/types/time.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/tx.d.ts +0 -261
- package/node_modules/@hcengineering/core/types/tx.d.ts.map +0 -1
- package/node_modules/@hcengineering/core/types/utils.d.ts +0 -207
- package/node_modules/@hcengineering/core/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/__tests__/context.test.d.ts +0 -2
- package/node_modules/@hcengineering/measurements/types/__tests__/context.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/__tests__/index.test.d.ts +0 -2
- package/node_modules/@hcengineering/measurements/types/__tests__/index.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/__tests__/metrics.test.d.ts +0 -2
- package/node_modules/@hcengineering/measurements/types/__tests__/metrics.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/__tests__/performance.test.d.ts +0 -2
- package/node_modules/@hcengineering/measurements/types/__tests__/performance.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/context.d.ts +0 -64
- package/node_modules/@hcengineering/measurements/types/context.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/index.d.ts +0 -12
- package/node_modules/@hcengineering/measurements/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/metrics.d.ts +0 -34
- package/node_modules/@hcengineering/measurements/types/metrics.d.ts.map +0 -1
- package/node_modules/@hcengineering/measurements/types/types.d.ts +0 -88
- package/node_modules/@hcengineering/measurements/types/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/__tests__/i18n.test.d.ts +0 -2
- package/node_modules/@hcengineering/platform/types/__tests__/i18n.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/__tests__/ident.test.d.ts +0 -2
- package/node_modules/@hcengineering/platform/types/__tests__/ident.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/__tests__/plugin.d.ts +0 -7
- package/node_modules/@hcengineering/platform/types/__tests__/plugin.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/__tests__/resource.test.d.ts +0 -2
- package/node_modules/@hcengineering/platform/types/__tests__/resource.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/event.d.ts +0 -39
- package/node_modules/@hcengineering/platform/types/event.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/i18n.d.ts +0 -28
- package/node_modules/@hcengineering/platform/types/i18n.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/ident.d.ts +0 -14
- package/node_modules/@hcengineering/platform/types/ident.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/index.d.ts +0 -19
- package/node_modules/@hcengineering/platform/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/metadata.d.ts +0 -38
- package/node_modules/@hcengineering/platform/types/metadata.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/platform.d.ts +0 -218
- package/node_modules/@hcengineering/platform/types/platform.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/resource.d.ts +0 -49
- package/node_modules/@hcengineering/platform/types/resource.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/status.d.ts +0 -60
- package/node_modules/@hcengineering/platform/types/status.d.ts.map +0 -1
- package/node_modules/@hcengineering/platform/types/testUtils.d.ts +0 -8
- package/node_modules/@hcengineering/platform/types/testUtils.d.ts.map +0 -1
- package/node_modules/@hcengineering/rank/types/__tests__/utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/rank/types/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/rank/types/index.d.ts +0 -3
- package/node_modules/@hcengineering/rank/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/rank/types/types.d.ts +0 -2
- package/node_modules/@hcengineering/rank/types/types.d.ts.map +0 -1
- package/node_modules/@hcengineering/rank/types/utils.d.ts +0 -6
- package/node_modules/@hcengineering/rank/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/rpc/types/index.d.ts +0 -3
- package/node_modules/@hcengineering/rpc/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/rpc/types/rpc.d.ts +0 -96
- package/node_modules/@hcengineering/rpc/types/rpc.d.ts.map +0 -1
- package/node_modules/@hcengineering/rpc/types/sliding.d.ts +0 -11
- package/node_modules/@hcengineering/rpc/types/sliding.d.ts.map +0 -1
- package/node_modules/@hcengineering/rpc/types/test/rateLimit.spec.d.ts +0 -2
- package/node_modules/@hcengineering/rpc/types/test/rateLimit.spec.d.ts.map +0 -1
- package/node_modules/@hcengineering/tags/types/analytics.d.ts +0 -5
- package/node_modules/@hcengineering/tags/types/analytics.d.ts.map +0 -1
- package/node_modules/@hcengineering/tags/types/index.d.ts +0 -105
- package/node_modules/@hcengineering/tags/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/task/types/index.d.ts +0 -227
- package/node_modules/@hcengineering/task/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/task/types/utils.d.ts +0 -61
- package/node_modules/@hcengineering/task/types/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/extensions.d.ts +0 -53
- package/node_modules/@hcengineering/text/types/extensions.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/index.d.ts +0 -13
- package/node_modules/@hcengineering/text/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/kit.d.ts +0 -12
- package/node_modules/@hcengineering/text/types/kit.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/kits/common-kit.d.ts +0 -72
- package/node_modules/@hcengineering/text/types/kits/common-kit.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/kits/server-kit.d.ts +0 -106
- package/node_modules/@hcengineering/text/types/kits/server-kit.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/marks/code.d.ts +0 -8
- package/node_modules/@hcengineering/text/types/marks/code.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/marks/colors.d.ts +0 -21
- package/node_modules/@hcengineering/text/types/marks/colors.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/marks/inlineComment.d.ts +0 -5
- package/node_modules/@hcengineering/text/types/marks/inlineComment.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/marks/noteBase.d.ts +0 -23
- package/node_modules/@hcengineering/text/types/marks/noteBase.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/marks/qmsInlineCommentMark.d.ts +0 -6
- package/node_modules/@hcengineering/text/types/marks/qmsInlineCommentMark.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/markup/__tests__/dsl.test.d.ts +0 -2
- package/node_modules/@hcengineering/text/types/markup/__tests__/dsl.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/markup/__tests__/utils.test.d.ts +0 -5
- package/node_modules/@hcengineering/text/types/markup/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/markup/utils.d.ts +0 -19
- package/node_modules/@hcengineering/text/types/markup/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/codeblock.d.ts +0 -12
- package/node_modules/@hcengineering/text/types/nodes/codeblock.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/comment.d.ts +0 -6
- package/node_modules/@hcengineering/text/types/nodes/comment.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/embed.d.ts +0 -3
- package/node_modules/@hcengineering/text/types/nodes/embed.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/emoji.d.ts +0 -17
- package/node_modules/@hcengineering/text/types/nodes/emoji.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/file.d.ts +0 -13
- package/node_modules/@hcengineering/text/types/nodes/file.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/image.d.ts +0 -52
- package/node_modules/@hcengineering/text/types/nodes/image.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/index.d.ts +0 -11
- package/node_modules/@hcengineering/text/types/nodes/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/markdown.d.ts +0 -3
- package/node_modules/@hcengineering/text/types/nodes/markdown.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/mermaid.d.ts +0 -4
- package/node_modules/@hcengineering/text/types/nodes/mermaid.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/reference.d.ts +0 -18
- package/node_modules/@hcengineering/text/types/nodes/reference.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/todo.d.ts +0 -3
- package/node_modules/@hcengineering/text/types/nodes/todo.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/nodes/utils.d.ts +0 -6
- package/node_modules/@hcengineering/text/types/nodes/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/text/types/tiptapExtensions.d.ts +0 -28
- package/node_modules/@hcengineering/text/types/tiptapExtensions.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/index.d.ts +0 -6
- package/node_modules/@hcengineering/text-core/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/__tests__/traverse.test.d.ts +0 -2
- package/node_modules/@hcengineering/text-core/types/markup/__tests__/traverse.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/__tests__/utils.test.d.ts +0 -2
- package/node_modules/@hcengineering/text-core/types/markup/__tests__/utils.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/dsl.d.ts +0 -25
- package/node_modules/@hcengineering/text-core/types/markup/dsl.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/model.d.ts +0 -74
- package/node_modules/@hcengineering/text-core/types/markup/model.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/reference.d.ts +0 -15
- package/node_modules/@hcengineering/text-core/types/markup/reference.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/traverse.d.ts +0 -6
- package/node_modules/@hcengineering/text-core/types/markup/traverse.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-core/types/markup/utils.d.ts +0 -25
- package/node_modules/@hcengineering/text-core/types/markup/utils.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-html/types/__tests__/html.test.d.ts +0 -2
- package/node_modules/@hcengineering/text-html/types/__tests__/html.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-html/types/index.d.ts +0 -6
- package/node_modules/@hcengineering/text-html/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-html/types/parser.d.ts +0 -10
- package/node_modules/@hcengineering/text-html/types/parser.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-html/types/serializer.d.ts +0 -9
- package/node_modules/@hcengineering/text-html/types/serializer.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/__tests__/markdown.test.d.ts +0 -9
- package/node_modules/@hcengineering/text-markdown/types/__tests__/markdown.test.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/compare.d.ts +0 -10
- package/node_modules/@hcengineering/text-markdown/types/compare.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/index.d.ts +0 -14
- package/node_modules/@hcengineering/text-markdown/types/index.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/marks.d.ts +0 -8
- package/node_modules/@hcengineering/text-markdown/types/marks.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/node.d.ts +0 -4
- package/node_modules/@hcengineering/text-markdown/types/node.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/parser.d.ts +0 -50
- package/node_modules/@hcengineering/text-markdown/types/parser.d.ts.map +0 -1
- package/node_modules/@hcengineering/text-markdown/types/serializer.d.ts +0 -102
- package/node_modules/@hcengineering/text-markdown/types/serializer.d.ts.map +0 -1
- package/node_modules/@hcengineering/tracker/types/analytics.d.ts +0 -24
- package/node_modules/@hcengineering/tracker/types/analytics.d.ts.map +0 -1
- package/node_modules/@hcengineering/tracker/types/index.d.ts +0 -431
- package/node_modules/@hcengineering/tracker/types/index.d.ts.map +0 -1
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { type Data, type Ref, TxOperations } from '@hcengineering/core';
|
|
2
|
-
import type { ColorDefinition } from '@hcengineering/ui';
|
|
3
|
-
import { AvatarInfo, AvatarProvider } from '.';
|
|
4
|
-
export interface AvatarUrlInfo {
|
|
5
|
-
url: string | undefined;
|
|
6
|
-
srcSet: string | undefined;
|
|
7
|
-
color?: ColorDefinition;
|
|
8
|
-
}
|
|
9
|
-
export declare function getAvatarProvider(client: TxOperations, providerId: Ref<AvatarProvider>): Promise<AvatarProvider | undefined>;
|
|
10
|
-
export declare function getAvatarUrlInfo(client: TxOperations, avatar?: Data<AvatarInfo>, width?: number, name?: string | null): Promise<AvatarUrlInfo>;
|
|
11
|
-
export declare function getAvatarDisplayName(name: string | null | undefined): string;
|
|
12
|
-
//# sourceMappingURL=avatar.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../src/avatar.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,KAAK,IAAI,EAAE,KAAK,GAAG,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AACvE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAExD,OAAgB,EAAE,UAAU,EAAE,cAAc,EAAkD,MAAM,GAAG,CAAA;AAEvG,MAAM,WAAW,aAAa;IAC5B,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;IACvB,MAAM,EAAE,MAAM,GAAG,SAAS,CAAA;IAC1B,KAAK,CAAC,EAAE,eAAe,CAAA;CACxB;AAID,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,YAAY,EACpB,UAAU,EAAE,GAAG,CAAC,cAAc,CAAC,GAC9B,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAYrC;AAED,wBAAsB,gBAAgB,CACpC,MAAM,EAAE,YAAY,EACpB,MAAM,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,EACzB,KAAK,CAAC,EAAE,MAAM,EACd,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GACnB,OAAO,CAAC,aAAa,CAAC,CAuBxB;AAED,wBAAgB,oBAAoB,CAAE,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAU7E"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { PersonId, Ref, Tx, WithLookup } from '@hcengineering/core';
|
|
2
|
-
import { Person, SocialIdentity } from '.';
|
|
3
|
-
export interface Change {
|
|
4
|
-
personRef: Ref<Person>;
|
|
5
|
-
personIds: PersonId[];
|
|
6
|
-
}
|
|
7
|
-
export default class ContactCache {
|
|
8
|
-
private static _instance;
|
|
9
|
-
/**
|
|
10
|
-
* [PersonId (socialId _id) => Ref<Person>] cache
|
|
11
|
-
*/
|
|
12
|
-
private readonly _personIdsByPersonRef;
|
|
13
|
-
/**
|
|
14
|
-
* [PersonId (socialId _id) => Ref<Person>] cache
|
|
15
|
-
*/
|
|
16
|
-
private readonly _personRefByPersonId;
|
|
17
|
-
/**
|
|
18
|
-
* [PersonId (socialId _id) => Person] cache
|
|
19
|
-
*/
|
|
20
|
-
private readonly _personByPersonId;
|
|
21
|
-
/**
|
|
22
|
-
* [Ref<Person> => Person] cache
|
|
23
|
-
*/
|
|
24
|
-
private readonly _personByRef;
|
|
25
|
-
/**
|
|
26
|
-
* [PersonId (socialId _id) => SocialIdentity] cache
|
|
27
|
-
*/
|
|
28
|
-
private readonly _socialIdByPersonId;
|
|
29
|
-
private readonly _changeListeners;
|
|
30
|
-
private constructor();
|
|
31
|
-
static get instance(): ContactCache;
|
|
32
|
-
get personRefByPersonId(): ReadonlyMap<PersonId, Ref<Person> | null>;
|
|
33
|
-
get personByPersonId(): ReadonlyMap<PersonId, Readonly<Person> | null>;
|
|
34
|
-
get personByRef(): ReadonlyMap<Ref<Person>, Readonly<Person> | null>;
|
|
35
|
-
get socialIdByPersonId(): ReadonlyMap<PersonId, Readonly<SocialIdentity> | null>;
|
|
36
|
-
private addPersonIdToPersonRef;
|
|
37
|
-
fillCachesForPersonId(personId: PersonId, socialId: WithLookup<SocialIdentity> | null | undefined): void;
|
|
38
|
-
fillCachesForPersonRef(personRef: Ref<Person>, person: WithLookup<Person> | null | undefined): void;
|
|
39
|
-
private shouldHandleCreateTx;
|
|
40
|
-
private shouldHandleUpdateOrMixinTx;
|
|
41
|
-
handleTx: (txes: Tx[]) => void;
|
|
42
|
-
private handleCreatePersonTx;
|
|
43
|
-
private handleCreateSocialIdentityTx;
|
|
44
|
-
private handleUpdateOrMixinPersonTx;
|
|
45
|
-
addChangeListener(listener: (change: Change) => void | Promise<void>): void;
|
|
46
|
-
removeChangeListener(listener: (change: Change) => void | Promise<void>): void;
|
|
47
|
-
private broadcastChange;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=cache.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cache.d.ts","sourceRoot":"","sources":["../src/cache.ts"],"names":[],"mappings":"AAeA,OAAa,EAEX,QAAQ,EACR,GAAG,EACH,EAAE,EAMF,UAAU,EACX,MAAM,qBAAqB,CAAA;AAE5B,OAAgB,EAAE,MAAM,EAAE,cAAc,EAAqB,MAAM,GAAG,CAAA;AAsBtE,MAAM,WAAW,MAAM;IACrB,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IACtB,SAAS,EAAE,QAAQ,EAAE,CAAA;CACtB;AAED,MAAM,CAAC,OAAO,OAAO,YAAY;IAC/B,OAAO,CAAC,MAAM,CAAC,SAAS,CAAc;IAEtC;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAwC;IAE9E;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAA0C;IAE/E;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAqC;IAEvE;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwC;IAErE;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAA6C;IAEjF,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAsD;IAEvF,OAAO;IAIP,WAAkB,QAAQ,IAAK,YAAY,CAM1C;IAED,IAAW,mBAAmB,IAAK,WAAW,CAAC,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAE3E;IAED,IAAW,gBAAgB,IAAK,WAAW,CAAC,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAK7E;IAED,IAAW,WAAW,IAAK,WAAW,CAAC,GAAG,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAE3E;IAED,IAAW,kBAAkB,IAAK,WAAW,CAAC,QAAQ,EAAE,QAAQ,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAEvF;IAED,OAAO,CAAC,sBAAsB;IAIvB,qBAAqB,CAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,UAAU,CAAC,cAAc,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI;IAsBzG,sBAAsB,CAAE,SAAS,EAAE,GAAG,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,CAAC,GAAG,IAAI,GAAG,SAAS,GAAG,IAAI;IAU3G,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,2BAA2B;IAI5B,QAAQ,GAAI,MAAM,EAAE,EAAE,KAAG,IAAI,CAYnC;IAED,OAAO,CAAC,oBAAoB;IAkB5B,OAAO,CAAC,4BAA4B;IAiBpC,OAAO,CAAC,2BAA2B;IAoB5B,iBAAiB,CAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;IAI5E,oBAAoB,CAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI;IAOtF,OAAO,CAAC,eAAe;CAKxB"}
|
|
@@ -1,367 +0,0 @@
|
|
|
1
|
-
import { AttachedDoc, Class, Collection, Doc, PersonId, Ref, SocialId, Space, Timestamp, UXObject, type BasePerson, type Blob, type MarkupBlobRef, type Data, type WithLookup, AccountUuid, type SocialIdType } from '@hcengineering/core';
|
|
2
|
-
import type { Asset, Metadata, Plugin, Resource } from '@hcengineering/platform';
|
|
3
|
-
import { IntlString } from '@hcengineering/platform';
|
|
4
|
-
import { TemplateField, TemplateFieldCategory } from '@hcengineering/templates';
|
|
5
|
-
import type { AnyComponent, ColorDefinition, ResolvedLocation, Location, ComponentExtensionId } from '@hcengineering/ui';
|
|
6
|
-
import { Action, FilterMode, Viewlet } from '@hcengineering/view';
|
|
7
|
-
import type { Readable } from 'svelte/store';
|
|
8
|
-
import { Card, MasterTag, Role } from '@hcengineering/card';
|
|
9
|
-
import { Preference } from '@hcengineering/preference';
|
|
10
|
-
import { PermissionsStore } from './types';
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export interface ChannelProvider extends Doc, UXObject {
|
|
15
|
-
placeholder: IntlString;
|
|
16
|
-
presenter?: AnyComponent;
|
|
17
|
-
action?: Ref<Action>;
|
|
18
|
-
integrationType?: Ref<Doc>;
|
|
19
|
-
}
|
|
20
|
-
export interface SocialIdentityProvider extends Doc, UXObject {
|
|
21
|
-
type: SocialIdType;
|
|
22
|
-
creator?: AnyComponent;
|
|
23
|
-
}
|
|
24
|
-
export interface SocialIdentity extends SocialId, AttachedDoc {
|
|
25
|
-
_id: Ref<this> & PersonId;
|
|
26
|
-
attachedTo: Ref<Person>;
|
|
27
|
-
attachedToClass: Ref<Class<Person>>;
|
|
28
|
-
}
|
|
29
|
-
export type SocialIdentityRef = SocialIdentity['_id'];
|
|
30
|
-
/**
|
|
31
|
-
* @public
|
|
32
|
-
*/
|
|
33
|
-
export interface Channel extends AttachedDoc {
|
|
34
|
-
provider: Ref<ChannelProvider>;
|
|
35
|
-
value: string;
|
|
36
|
-
items?: number;
|
|
37
|
-
lastMessage?: Timestamp;
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export interface ChannelItem extends AttachedDoc {
|
|
43
|
-
attachedTo: Ref<Channel>;
|
|
44
|
-
attachedToClass: Ref<Class<Channel>>;
|
|
45
|
-
incoming: boolean;
|
|
46
|
-
sendOn: Timestamp;
|
|
47
|
-
attachments?: number;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export declare enum AvatarType {
|
|
53
|
-
COLOR = "color",
|
|
54
|
-
IMAGE = "image",
|
|
55
|
-
GRAVATAR = "gravatar",
|
|
56
|
-
EXTERNAL = "external"
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* @public
|
|
60
|
-
*/
|
|
61
|
-
export type GetAvatarUrl = (uri: Data<WithLookup<AvatarInfo>>, name: string, width?: number) => Promise<{
|
|
62
|
-
url?: string;
|
|
63
|
-
srcSet?: string;
|
|
64
|
-
color: ColorDefinition;
|
|
65
|
-
}>;
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
*/
|
|
69
|
-
export interface AvatarProvider extends Doc {
|
|
70
|
-
type: AvatarType;
|
|
71
|
-
getUrl: Resource<GetAvatarUrl>;
|
|
72
|
-
}
|
|
73
|
-
export interface AvatarInfo extends Doc {
|
|
74
|
-
avatarType: AvatarType;
|
|
75
|
-
avatar?: Ref<Blob> | null;
|
|
76
|
-
avatarProps?: {
|
|
77
|
-
color?: string;
|
|
78
|
-
url?: string;
|
|
79
|
-
};
|
|
80
|
-
}
|
|
81
|
-
/**
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
export interface Contact extends Doc, AvatarInfo {
|
|
85
|
-
name: string;
|
|
86
|
-
attachments?: number;
|
|
87
|
-
comments?: number;
|
|
88
|
-
channels?: number;
|
|
89
|
-
city?: string;
|
|
90
|
-
}
|
|
91
|
-
/**
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
export interface Person extends Contact, BasePerson {
|
|
95
|
-
birthday?: Timestamp | null;
|
|
96
|
-
socialIds?: Collection<SocialIdentity>;
|
|
97
|
-
profile?: Ref<Card>;
|
|
98
|
-
}
|
|
99
|
-
export interface UserRole extends Doc {
|
|
100
|
-
user: Ref<Employee>;
|
|
101
|
-
role: Ref<Role>;
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
export interface Member extends AttachedDoc {
|
|
107
|
-
contact: Ref<Contact>;
|
|
108
|
-
}
|
|
109
|
-
/**
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
export interface Organization extends Contact {
|
|
113
|
-
members: number;
|
|
114
|
-
description: MarkupBlobRef | null;
|
|
115
|
-
}
|
|
116
|
-
/**
|
|
117
|
-
* @public
|
|
118
|
-
*/
|
|
119
|
-
export interface Status extends AttachedDoc {
|
|
120
|
-
attachedTo: Ref<Employee>;
|
|
121
|
-
attachedToClass: Ref<Class<Employee>>;
|
|
122
|
-
name: string;
|
|
123
|
-
dueDate: Timestamp;
|
|
124
|
-
}
|
|
125
|
-
/**
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export interface Employee extends Person {
|
|
129
|
-
active: boolean;
|
|
130
|
-
role?: 'USER' | 'GUEST';
|
|
131
|
-
statuses?: number;
|
|
132
|
-
position?: string | null;
|
|
133
|
-
personUuid?: AccountUuid;
|
|
134
|
-
}
|
|
135
|
-
/**
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
export interface ContactsTab extends Doc {
|
|
139
|
-
label: IntlString;
|
|
140
|
-
component: AnyComponent;
|
|
141
|
-
index: number;
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* @public
|
|
145
|
-
*/
|
|
146
|
-
export declare const contactId: Plugin;
|
|
147
|
-
export interface PersonSpace extends Space {
|
|
148
|
-
person: Ref<Person>;
|
|
149
|
-
}
|
|
150
|
-
export interface Translation extends Preference {
|
|
151
|
-
attachedTo: Ref<Employee>;
|
|
152
|
-
enabled: boolean;
|
|
153
|
-
translateTo?: string;
|
|
154
|
-
dontTranslate: string[];
|
|
155
|
-
}
|
|
156
|
-
/**
|
|
157
|
-
* @public
|
|
158
|
-
*/
|
|
159
|
-
export declare const contactPlugin: {
|
|
160
|
-
class: {
|
|
161
|
-
AvatarProvider: Ref<Class<AvatarProvider>>;
|
|
162
|
-
ChannelProvider: Ref<Class<ChannelProvider>>;
|
|
163
|
-
SocialIdentityProvider: Ref<Class<SocialIdentityProvider>>;
|
|
164
|
-
Channel: Ref<Class<Channel>>;
|
|
165
|
-
Contact: Ref<Class<Contact>>;
|
|
166
|
-
Person: Ref<Class<Person>>;
|
|
167
|
-
Member: Ref<Class<Member>>;
|
|
168
|
-
Organization: Ref<Class<Organization>>;
|
|
169
|
-
Status: Ref<Class<Status>>;
|
|
170
|
-
ContactsTab: Ref<Class<ContactsTab>>;
|
|
171
|
-
PersonSpace: Ref<Class<PersonSpace>>;
|
|
172
|
-
SocialIdentity: Ref<Class<SocialIdentity>>;
|
|
173
|
-
UserProfile: Ref<MasterTag>;
|
|
174
|
-
UserRole: Ref<Class<UserRole>>;
|
|
175
|
-
Translation: Ref<Class<Translation>>;
|
|
176
|
-
};
|
|
177
|
-
mixin: {
|
|
178
|
-
Employee: Ref<Class<Employee>>;
|
|
179
|
-
};
|
|
180
|
-
component: {
|
|
181
|
-
SocialEditor: AnyComponent;
|
|
182
|
-
CreateOrganization: AnyComponent;
|
|
183
|
-
CreatePerson: AnyComponent;
|
|
184
|
-
ChannelsPresenter: AnyComponent;
|
|
185
|
-
MembersPresenter: AnyComponent;
|
|
186
|
-
Avatar: AnyComponent;
|
|
187
|
-
AvatarRef: AnyComponent;
|
|
188
|
-
UserBoxList: AnyComponent;
|
|
189
|
-
ChannelPresenter: AnyComponent;
|
|
190
|
-
SpaceMembers: AnyComponent;
|
|
191
|
-
DeleteConfirmationPopup: AnyComponent;
|
|
192
|
-
PersonIdArrayEditor: AnyComponent;
|
|
193
|
-
AccountArrayEditor: AnyComponent;
|
|
194
|
-
PersonIcon: AnyComponent;
|
|
195
|
-
EditOrganizationPanel: AnyComponent;
|
|
196
|
-
CollaborationUserAvatar: AnyComponent;
|
|
197
|
-
CreateGuest: AnyComponent;
|
|
198
|
-
SpaceMembersEditor: AnyComponent;
|
|
199
|
-
ContactNamePresenter: AnyComponent;
|
|
200
|
-
PersonFilterValuePresenter: AnyComponent;
|
|
201
|
-
PersonIdFilter: AnyComponent;
|
|
202
|
-
AssigneePopup: AnyComponent;
|
|
203
|
-
EmployeePresenter: AnyComponent;
|
|
204
|
-
};
|
|
205
|
-
channelProvider: {
|
|
206
|
-
Email: Ref<ChannelProvider>;
|
|
207
|
-
Phone: Ref<ChannelProvider>;
|
|
208
|
-
LinkedIn: Ref<ChannelProvider>;
|
|
209
|
-
Twitter: Ref<ChannelProvider>;
|
|
210
|
-
Telegram: Ref<ChannelProvider>;
|
|
211
|
-
GitHub: Ref<ChannelProvider>;
|
|
212
|
-
Facebook: Ref<ChannelProvider>;
|
|
213
|
-
Homepage: Ref<ChannelProvider>;
|
|
214
|
-
Whatsapp: Ref<ChannelProvider>;
|
|
215
|
-
Skype: Ref<ChannelProvider>;
|
|
216
|
-
Profile: Ref<ChannelProvider>;
|
|
217
|
-
Viber: Ref<ChannelProvider>;
|
|
218
|
-
};
|
|
219
|
-
socialIdentityProvider: {
|
|
220
|
-
Huly: Ref<SocialIdentityProvider>;
|
|
221
|
-
Email: Ref<SocialIdentityProvider>;
|
|
222
|
-
Phone: Ref<SocialIdentityProvider>;
|
|
223
|
-
Google: Ref<SocialIdentityProvider>;
|
|
224
|
-
GitHub: Ref<SocialIdentityProvider>;
|
|
225
|
-
Telegram: Ref<SocialIdentityProvider>;
|
|
226
|
-
};
|
|
227
|
-
avatarProvider: {
|
|
228
|
-
Color: Ref<AvatarProvider>;
|
|
229
|
-
Image: Ref<AvatarProvider>;
|
|
230
|
-
Gravatar: Ref<AvatarProvider>;
|
|
231
|
-
};
|
|
232
|
-
function: {
|
|
233
|
-
GetColorUrl: Resource<GetAvatarUrl>;
|
|
234
|
-
GetFileUrl: Resource<GetAvatarUrl>;
|
|
235
|
-
GetGravatarUrl: Resource<GetAvatarUrl>;
|
|
236
|
-
GetExternalUrl: Resource<GetAvatarUrl>;
|
|
237
|
-
};
|
|
238
|
-
icon: {
|
|
239
|
-
ContactApplication: Asset;
|
|
240
|
-
Phone: Asset;
|
|
241
|
-
Email: Asset;
|
|
242
|
-
Huly: Asset;
|
|
243
|
-
Discord: Asset;
|
|
244
|
-
Facebook: Asset;
|
|
245
|
-
Instagram: Asset;
|
|
246
|
-
LinkedIn: Asset;
|
|
247
|
-
Telegram: Asset;
|
|
248
|
-
Google: Asset;
|
|
249
|
-
Twitter: Asset;
|
|
250
|
-
VK: Asset;
|
|
251
|
-
WhatsApp: Asset;
|
|
252
|
-
Skype: Asset;
|
|
253
|
-
Youtube: Asset;
|
|
254
|
-
GitHub: Asset;
|
|
255
|
-
Edit: Asset;
|
|
256
|
-
Person: Asset;
|
|
257
|
-
Persona: Asset;
|
|
258
|
-
Company: Asset;
|
|
259
|
-
SocialEdit: Asset;
|
|
260
|
-
Homepage: Asset;
|
|
261
|
-
Whatsapp: Asset;
|
|
262
|
-
ComponentMembers: Asset;
|
|
263
|
-
Profile: Asset;
|
|
264
|
-
KickUser: Asset;
|
|
265
|
-
Contacts: Asset;
|
|
266
|
-
Viber: Asset;
|
|
267
|
-
Clock: Asset;
|
|
268
|
-
Chat: Asset;
|
|
269
|
-
User: Asset;
|
|
270
|
-
};
|
|
271
|
-
image: {
|
|
272
|
-
ProfileBackground: Asset;
|
|
273
|
-
ProfileBackgroundLight: Asset;
|
|
274
|
-
};
|
|
275
|
-
space: {
|
|
276
|
-
Contacts: Ref<Space>;
|
|
277
|
-
};
|
|
278
|
-
app: {
|
|
279
|
-
Contacts: Ref<Doc>;
|
|
280
|
-
};
|
|
281
|
-
metadata: {
|
|
282
|
-
LastNameFirst: Metadata<boolean>;
|
|
283
|
-
};
|
|
284
|
-
string: {
|
|
285
|
-
PersonAlreadyExists: IntlString;
|
|
286
|
-
Person: IntlString;
|
|
287
|
-
Employee: IntlString;
|
|
288
|
-
CreateOrganization: IntlString;
|
|
289
|
-
UseImage: IntlString;
|
|
290
|
-
UseGravatar: IntlString;
|
|
291
|
-
UseColor: IntlString;
|
|
292
|
-
PersonFirstNamePlaceholder: IntlString;
|
|
293
|
-
PersonLastNamePlaceholder: IntlString;
|
|
294
|
-
NumberMembers: IntlString;
|
|
295
|
-
Position: IntlString;
|
|
296
|
-
For: IntlString;
|
|
297
|
-
SelectUsers: IntlString;
|
|
298
|
-
AddGuest: IntlString;
|
|
299
|
-
Members: IntlString;
|
|
300
|
-
Contacts: IntlString;
|
|
301
|
-
Employees: IntlString;
|
|
302
|
-
Persons: IntlString;
|
|
303
|
-
ViewProfile: IntlString;
|
|
304
|
-
SocialId: IntlString;
|
|
305
|
-
SocialIds: IntlString;
|
|
306
|
-
Type: IntlString;
|
|
307
|
-
Confirmed: IntlString;
|
|
308
|
-
UserProfile: IntlString;
|
|
309
|
-
DeactivatedAccount: IntlString;
|
|
310
|
-
LocalTime: IntlString;
|
|
311
|
-
Everyone: IntlString;
|
|
312
|
-
Here: IntlString;
|
|
313
|
-
EveryoneDescription: IntlString;
|
|
314
|
-
HereDescription: IntlString;
|
|
315
|
-
Guest: IntlString;
|
|
316
|
-
Deleted: IntlString;
|
|
317
|
-
Email: IntlString;
|
|
318
|
-
};
|
|
319
|
-
viewlet: {
|
|
320
|
-
TableMember: Ref<Viewlet>;
|
|
321
|
-
TablePerson: Ref<Viewlet>;
|
|
322
|
-
TableEmployee: Ref<Viewlet>;
|
|
323
|
-
TableOrganization: Ref<Viewlet>;
|
|
324
|
-
TableUserProfile: Ref<Viewlet>;
|
|
325
|
-
};
|
|
326
|
-
filter: {
|
|
327
|
-
FilterChannelIn: Ref<FilterMode>;
|
|
328
|
-
FilterChannelNin: Ref<FilterMode>;
|
|
329
|
-
FilterChannelHasMessages: Ref<FilterMode>;
|
|
330
|
-
FilterChannelHasNewMessages: Ref<FilterMode>;
|
|
331
|
-
};
|
|
332
|
-
resolver: {
|
|
333
|
-
Location: Resource<(loc: Location) => Promise<ResolvedLocation | undefined>>;
|
|
334
|
-
};
|
|
335
|
-
templateFieldCategory: {
|
|
336
|
-
CurrentEmployee: Ref<TemplateFieldCategory>;
|
|
337
|
-
Contact: Ref<TemplateFieldCategory>;
|
|
338
|
-
};
|
|
339
|
-
templateField: {
|
|
340
|
-
CurrentEmployeeName: Ref<TemplateField>;
|
|
341
|
-
CurrentEmployeePosition: Ref<TemplateField>;
|
|
342
|
-
CurrentEmployeeEmail: Ref<TemplateField>;
|
|
343
|
-
ContactName: Ref<TemplateField>;
|
|
344
|
-
ContactFirstName: Ref<TemplateField>;
|
|
345
|
-
ContactLastName: Ref<TemplateField>;
|
|
346
|
-
};
|
|
347
|
-
ids: {
|
|
348
|
-
MentionCommonNotificationType: Ref<Doc>;
|
|
349
|
-
};
|
|
350
|
-
mention: {
|
|
351
|
-
Everyone: Ref<Employee>;
|
|
352
|
-
Here: Ref<Employee>;
|
|
353
|
-
};
|
|
354
|
-
extension: {
|
|
355
|
-
EmployeePopupActions: ComponentExtensionId;
|
|
356
|
-
PersonAchievementsPresenter: ComponentExtensionId;
|
|
357
|
-
};
|
|
358
|
-
store: {
|
|
359
|
-
Permissions: Resource<Readable<PermissionsStore>>;
|
|
360
|
-
};
|
|
361
|
-
};
|
|
362
|
-
export default contactPlugin;
|
|
363
|
-
export * from './types';
|
|
364
|
-
export * from './utils';
|
|
365
|
-
export * from './analytics';
|
|
366
|
-
export * from './avatar';
|
|
367
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAgBA,OAAO,EACL,WAAW,EACX,KAAK,EACL,UAAU,EACV,GAAG,EACH,QAAQ,EACR,GAAG,EACH,QAAQ,EACR,KAAK,EACL,SAAS,EACT,QAAQ,EACR,KAAK,UAAU,EACf,KAAK,IAAI,EACT,KAAK,aAAa,EAClB,KAAK,IAAI,EACT,KAAK,UAAU,EACf,WAAW,EACX,KAAK,YAAY,EAClB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AAChF,OAAO,EAAE,UAAU,EAAU,MAAM,yBAAyB,CAAA;AAC5D,OAAO,EAAE,aAAa,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAA;AAC/E,OAAO,KAAK,EAAE,YAAY,EAAE,eAAe,EAAE,gBAAgB,EAAE,QAAQ,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAA;AACxH,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAA;AAC5C,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,qBAAqB,CAAA;AAC3D,OAAO,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAA;AAEtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE1C;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,GAAG,EAAE,QAAQ;IAEpD,WAAW,EAAE,UAAU,CAAA;IAGvB,SAAS,CAAC,EAAE,YAAY,CAAA;IAGxB,MAAM,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IAGpB,eAAe,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,CAAA;CAC3B;AAED,MAAM,WAAW,sBAAuB,SAAQ,GAAG,EAAE,QAAQ;IAC3D,IAAI,EAAE,YAAY,CAAA;IAClB,OAAO,CAAC,EAAE,YAAY,CAAA;CACvB;AAED,MAAM,WAAW,cAAe,SAAQ,QAAQ,EAAE,WAAW;IAC3D,GAAG,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,QAAQ,CAAA;IACzB,UAAU,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;IACvB,eAAe,EAAE,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAA;CACpC;AAED,MAAM,MAAM,iBAAiB,GAAG,cAAc,CAAC,KAAK,CAAC,CAAA;AAErD;;GAEG;AACH,MAAM,WAAW,OAAQ,SAAQ,WAAW;IAC1C,QAAQ,EAAE,GAAG,CAAC,eAAe,CAAC,CAAA;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,SAAS,CAAA;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,WAAY,SAAQ,WAAW;IAC9C,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;IACxB,eAAe,EAAE,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAA;IACpC,QAAQ,EAAE,OAAO,CAAA;IACjB,MAAM,EAAE,SAAS,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAED;;GAEG;AACH,oBAAY,UAAU;IACpB,KAAK,UAAU;IACf,KAAK,UAAU;IACf,QAAQ,aAAa;IAErB,QAAQ,aAAa;CACtB;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,CACzB,GAAG,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC,EACjC,IAAI,EAAE,MAAM,EACZ,KAAK,CAAC,EAAE,MAAM,KACX,OAAO,CAAC;IAAE,GAAG,CAAC,EAAE,MAAM,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,eAAe,CAAA;CAAE,CAAC,CAAA;AAEvE;;GAEG;AACH,MAAM,WAAW,cAAe,SAAQ,GAAG;IACzC,IAAI,EAAE,UAAU,CAAA;IAChB,MAAM,EAAE,QAAQ,CAAC,YAAY,CAAC,CAAA;CAC/B;AAED,MAAM,WAAW,UAAW,SAAQ,GAAG;IACrC,UAAU,EAAE,UAAU,CAAA;IACtB,MAAM,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;IACzB,WAAW,CAAC,EAAE;QACZ,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,GAAG,CAAC,EAAE,MAAM,CAAA;KACb,CAAA;CACF;AAED;;GAEG;AACH,MAAM,WAAW,OAAQ,SAAQ,GAAG,EAAE,UAAU;IAC9C,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAED;;GAEG;AACH,MAAM,WAAW,MAAO,SAAQ,OAAO,EAAE,UAAU;IACjD,QAAQ,CAAC,EAAE,SAAS,GAAG,IAAI,CAAA;IAC3B,SAAS,CAAC,EAAE,UAAU,CAAC,cAAc,CAAC,CAAA;IACtC,OAAO,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,CAAA;CACpB;AAED,MAAM,WAAW,QAAS,SAAQ,GAAG;IACnC,IAAI,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAA;IACnB,IAAI,EAAE,GAAG,CAAC,IAAI,CAAC,CAAA;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,MAAO,SAAQ,WAAW;IACzC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;CACtB;AACD;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,OAAO;IAC3C,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,aAAa,GAAG,IAAI,CAAA;CAClC;AAED;;GAEG;AACH,MAAM,WAAW,MAAO,SAAQ,WAAW;IACzC,UAAU,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAA;IACzB,eAAe,EAAE,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;IACrC,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,SAAS,CAAA;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,MAAM;IACtC,MAAM,EAAE,OAAO,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,UAAU,CAAC,EAAE,WAAW,CAAA;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,WAAY,SAAQ,GAAG;IACtC,KAAK,EAAE,UAAU,CAAA;IACjB,SAAS,EAAE,YAAY,CAAA;IACvB,KAAK,EAAE,MAAM,CAAA;CACd;AAED;;GAEG;AACH,eAAO,MAAM,SAAS,EAAgB,MAAM,CAAA;AAE5C,MAAM,WAAW,WAAY,SAAQ,KAAK;IACxC,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;CACpB;AAED,MAAM,WAAW,WAAY,SAAQ,UAAU;IAC7C,UAAU,EAAE,GAAG,CAAC,QAAQ,CAAC,CAAA;IACzB,OAAO,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,aAAa,EAAE,MAAM,EAAE,CAAA;CACxB;AAED;;GAEG;AACH,eAAO,MAAM,aAAa;;wBAEA,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;yBACzB,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;gCACpB,GAAG,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC;iBACjD,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;iBACnB,GAAG,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;gBACpB,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;gBAClB,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;sBACZ,GAAG,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;gBAC9B,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;qBACb,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;qBACvB,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;wBACpB,GAAG,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;qBAC7B,GAAG,CAAC,SAAS,CAAC;kBACjB,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;qBACjB,GAAG,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;;;kBAG1B,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;;;sBAGhB,YAAY;4BACN,YAAY;sBAClB,YAAY;2BACP,YAAY;0BACb,YAAY;gBACtB,YAAY;mBACT,YAAY;qBACV,YAAY;0BACP,YAAY;sBAChB,YAAY;iCACD,YAAY;6BAChB,YAAY;4BACb,YAAY;oBACpB,YAAY;+BACD,YAAY;iCACV,YAAY;qBACxB,YAAY;4BACL,YAAY;8BACV,YAAY;oCACN,YAAY;wBACxB,YAAY;uBACb,YAAY;2BACR,YAAY;;;eAGxB,GAAG,CAAC,eAAe,CAAC;eACpB,GAAG,CAAC,eAAe,CAAC;kBACjB,GAAG,CAAC,eAAe,CAAC;iBACrB,GAAG,CAAC,eAAe,CAAC;kBACnB,GAAG,CAAC,eAAe,CAAC;gBACtB,GAAG,CAAC,eAAe,CAAC;kBAClB,GAAG,CAAC,eAAe,CAAC;kBACpB,GAAG,CAAC,eAAe,CAAC;kBACpB,GAAG,CAAC,eAAe,CAAC;eACvB,GAAG,CAAC,eAAe,CAAC;iBAClB,GAAG,CAAC,eAAe,CAAC;eACtB,GAAG,CAAC,eAAe,CAAC;;;cAGrB,GAAG,CAAC,sBAAsB,CAAC;eAC1B,GAAG,CAAC,sBAAsB,CAAC;eAC3B,GAAG,CAAC,sBAAsB,CAAC;gBAC1B,GAAG,CAAC,sBAAsB,CAAC;gBAC3B,GAAG,CAAC,sBAAsB,CAAC;kBACzB,GAAG,CAAC,sBAAsB,CAAC;;;eAG9B,GAAG,CAAC,cAAc,CAAC;eACnB,GAAG,CAAC,cAAc,CAAC;kBAChB,GAAG,CAAC,cAAc,CAAC;;;qBAGhB,QAAQ,CAAC,YAAY,CAAC;oBACvB,QAAQ,CAAC,YAAY,CAAC;wBAClB,QAAQ,CAAC,YAAY,CAAC;wBACtB,QAAQ,CAAC,YAAY,CAAC;;;4BAGlB,KAAK;eAClB,KAAK;eACL,KAAK;cACN,KAAK;iBACF,KAAK;kBACJ,KAAK;mBACJ,KAAK;kBACN,KAAK;kBACL,KAAK;gBACP,KAAK;iBACJ,KAAK;YACV,KAAK;kBACC,KAAK;eACR,KAAK;iBACH,KAAK;gBACN,KAAK;cACP,KAAK;gBACH,KAAK;iBACJ,KAAK;iBACL,KAAK;oBACF,KAAK;kBACP,KAAK;kBACL,KAAK;0BACG,KAAK;iBACd,KAAK;kBACJ,KAAK;kBACL,KAAK;eACR,KAAK;eACL,KAAK;cACN,KAAK;cACL,KAAK;;;2BAGQ,KAAK;gCACA,KAAK;;;kBAGnB,GAAG,CAAC,KAAK,CAAC;;;kBAGV,GAAG,CAAC,GAAG,CAAC;;;uBAGH,QAAQ,CAAC,OAAO,CAAC;;;6BAGX,UAAU;gBACvB,UAAU;kBACR,UAAU;4BACA,UAAU;kBACpB,UAAU;qBACP,UAAU;kBACb,UAAU;oCACQ,UAAU;mCACX,UAAU;uBACtB,UAAU;kBACf,UAAU;aACf,UAAU;qBACF,UAAU;kBACb,UAAU;iBACX,UAAU;kBACT,UAAU;mBACT,UAAU;iBACZ,UAAU;qBACN,UAAU;kBACb,UAAU;mBACT,UAAU;cACf,UAAU;mBACL,UAAU;qBACR,UAAU;4BACH,UAAU;mBACnB,UAAU;kBACX,UAAU;cACd,UAAU;6BACK,UAAU;yBACd,UAAU;eACpB,UAAU;iBACR,UAAU;eACZ,UAAU;;;qBAGJ,GAAG,CAAC,OAAO,CAAC;qBACZ,GAAG,CAAC,OAAO,CAAC;uBACV,GAAG,CAAC,OAAO,CAAC;2BACR,GAAG,CAAC,OAAO,CAAC;0BACb,GAAG,CAAC,OAAO,CAAC;;;yBAGb,GAAG,CAAC,UAAU,CAAC;0BACd,GAAG,CAAC,UAAU,CAAC;kCACP,GAAG,CAAC,UAAU,CAAC;qCACZ,GAAG,CAAC,UAAU,CAAC;;;kBAGlC,QAAQ,CAAC,CAAC,GAAG,EAAE,QAAQ,KAAK,OAAO,CAAC,gBAAgB,GAAG,SAAS,CAAC,CAAC;;;yBAG3D,GAAG,CAAC,qBAAqB,CAAC;iBAClC,GAAG,CAAC,qBAAqB,CAAC;;;6BAGd,GAAG,CAAC,aAAa,CAAC;iCACd,GAAG,CAAC,aAAa,CAAC;8BACrB,GAAG,CAAC,aAAa,CAAC;qBAC3B,GAAG,CAAC,aAAa,CAAC;0BACb,GAAG,CAAC,aAAa,CAAC;yBACnB,GAAG,CAAC,aAAa,CAAC;;;uCAGJ,GAAG,CAAC,GAAG,CAAC;;;kBAG7B,GAAG,CAAC,QAAQ,CAAC;cACjB,GAAG,CAAC,QAAQ,CAAC;;;8BAGG,oBAAoB;qCACb,oBAAoB;;;qBAGpC,QAAQ,CAAC,QAAQ,CAAC,gBAAgB,CAAC,CAAC;;CAEzD,CAAA;AAEF,eAAe,aAAa,CAAA;AAC5B,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;AACvB,cAAc,aAAa,CAAA;AAC3B,cAAc,UAAU,CAAA"}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { Permission, Ref, Space } from '@hcengineering/core';
|
|
2
|
-
import { ColorDefinition } from '@hcengineering/ui';
|
|
3
|
-
import { type Card } from '@hcengineering/card';
|
|
4
|
-
import { Person } from './index';
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type GravatarPlaceholderType = '404' | 'mp' | 'identicon' | 'monsterid' | 'wavatar' | 'retro' | 'robohash' | 'blank';
|
|
9
|
-
/**
|
|
10
|
-
* @public
|
|
11
|
-
*/
|
|
12
|
-
export declare const AVATAR_COLORS: ColorDefinition[];
|
|
13
|
-
export type PermissionsBySpace = Record<Ref<Space>, Set<Ref<Permission>>>;
|
|
14
|
-
export type PersonsByPermission = Record<Ref<Space>, Record<Ref<Permission>, Set<Ref<Person>>>>;
|
|
15
|
-
export type MembersBySpace = Record<Ref<Space>, Set<Ref<Person>>>;
|
|
16
|
-
export interface PermissionsStore {
|
|
17
|
-
ps: PermissionsBySpace;
|
|
18
|
-
ap: PersonsByPermission;
|
|
19
|
-
ms: MembersBySpace;
|
|
20
|
-
whitelist: Set<Ref<Space>>;
|
|
21
|
-
}
|
|
22
|
-
export type UserProfile = Card & {
|
|
23
|
-
person: Ref<Person>;
|
|
24
|
-
};
|
|
25
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,UAAU,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,qBAAqB,CAAA;AAC5D,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AACnD,OAAO,EAAE,KAAK,IAAI,EAAE,MAAM,qBAAqB,CAAA;AAE/C,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAA;AAEhC;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAC/B,KAAK,GACL,IAAI,GACJ,WAAW,GACX,WAAW,GACX,SAAS,GACT,OAAO,GACP,UAAU,GACV,OAAO,CAAA;AAEX;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,eAAe,EAa1C,CAAA;AAED,MAAM,MAAM,kBAAkB,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;AACzE,MAAM,MAAM,mBAAmB,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAA;AAC/F,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,GAAG,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;AACjE,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,kBAAkB,CAAA;IACtB,EAAE,EAAE,mBAAmB,CAAA;IACvB,EAAE,EAAE,cAAc,CAAA;IAClB,SAAS,EAAE,GAAG,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAA;CAC3B;AAED,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG;IAAE,MAAM,EAAE,GAAG,CAAC,MAAM,CAAC,CAAA;CAAE,CAAA"}
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import { Account, AccountUuid, AttachedData, Class, Client, Doc, Hierarchy, MeasureContext, Person as GlobalPerson, PersonId, Ref, SocialId } from '@hcengineering/core';
|
|
2
|
-
import { ColorDefinition } from '@hcengineering/ui';
|
|
3
|
-
import { AvatarProvider, AvatarType, Channel, Contact, Employee, Person, PersonSpace, SocialIdentity } from '.';
|
|
4
|
-
import { GravatarPlaceholderType } from './types';
|
|
5
|
-
import ContactCache from './cache';
|
|
6
|
-
/**
|
|
7
|
-
* @public
|
|
8
|
-
* @returns
|
|
9
|
-
*/
|
|
10
|
-
export declare function getCurrentEmployee(): Ref<Employee>;
|
|
11
|
-
export declare function getCurrentEmployeeSpace(): Ref<PersonSpace>;
|
|
12
|
-
export declare function addEmployeeListenrer(l: (ref: Ref<Employee>) => void): void;
|
|
13
|
-
/**
|
|
14
|
-
* @public
|
|
15
|
-
* @param employee -
|
|
16
|
-
*/
|
|
17
|
-
export declare function setCurrentEmployee(employee: Ref<Employee>): void;
|
|
18
|
-
export declare function setCurrentEmployeeSpace(space: Ref<PersonSpace>): void;
|
|
19
|
-
/**
|
|
20
|
-
* @public
|
|
21
|
-
*/
|
|
22
|
-
export declare function getAvatarColorForId(id: string | null | undefined): string;
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
export declare function getAvatarColors(): readonly ColorDefinition[];
|
|
27
|
-
/**
|
|
28
|
-
* @public
|
|
29
|
-
*/
|
|
30
|
-
export declare function getAvatarColorName(color: string): string;
|
|
31
|
-
/**
|
|
32
|
-
* @public
|
|
33
|
-
*/
|
|
34
|
-
export declare function getAvatarProviderId(kind: AvatarType): Ref<AvatarProvider> | undefined;
|
|
35
|
-
/**
|
|
36
|
-
* @public
|
|
37
|
-
*/
|
|
38
|
-
export declare function getGravatarUrl(gravatarId: string, width?: number, placeholder?: GravatarPlaceholderType): string;
|
|
39
|
-
/**
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export declare function checkHasGravatar(gravatarId: string, fetch?: typeof window.fetch): Promise<boolean>;
|
|
43
|
-
/**
|
|
44
|
-
* @public
|
|
45
|
-
*/
|
|
46
|
-
export declare function findContacts(client: Client, _class: Ref<Class<Doc>>, name: string, channels: AttachedData<Channel>[]): Promise<{
|
|
47
|
-
contacts: Contact[];
|
|
48
|
-
channels: AttachedData<Channel>[];
|
|
49
|
-
}>;
|
|
50
|
-
/**
|
|
51
|
-
* @public
|
|
52
|
-
*/
|
|
53
|
-
export declare function findPerson(client: Client, name: string, channels: AttachedData<Channel>[]): Promise<Person[]>;
|
|
54
|
-
/**
|
|
55
|
-
* @public
|
|
56
|
-
*/
|
|
57
|
-
export declare function combineName(first: string, last: string): string;
|
|
58
|
-
/**
|
|
59
|
-
* @public
|
|
60
|
-
*/
|
|
61
|
-
export declare function getFirstName(name: string): string;
|
|
62
|
-
/**
|
|
63
|
-
* @public
|
|
64
|
-
*/
|
|
65
|
-
export declare function getLastName(name: string): string;
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
*/
|
|
69
|
-
export declare function formatName(name: string, lastNameFirst?: string): string;
|
|
70
|
-
/**
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
export declare function getName(hierarchy: Hierarchy, value: Contact, lastNameFirst?: string): string;
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export declare function formatContactName(hierarchy: Hierarchy, _class: Ref<Class<Doc>>, name: string, lastNameFirst?: string): string;
|
|
78
|
-
export declare function includesAny(members: PersonId[], ids: PersonId[]): boolean;
|
|
79
|
-
export declare function getPersonBySocialKey(client: Client, socialKey: string): Promise<Person | undefined>;
|
|
80
|
-
export declare function getEmployeeBySocialId(client: Client, socialIdString: PersonId): Promise<Employee | undefined>;
|
|
81
|
-
export declare function getPersonRefsBySocialIds(client: Client, ids?: PersonId[]): Promise<Record<PersonId, Ref<Person>>>;
|
|
82
|
-
export declare function getPrimarySocialId(client: Client, person: Ref<Person>): Promise<PersonId | undefined>;
|
|
83
|
-
export declare function getAllSocialStringsByPersonId(client: Client, personId: PersonId): Promise<PersonId[]>;
|
|
84
|
-
export declare function getAllSocialStringsByPersonRef(client: Client, person: Ref<Person>): Promise<PersonId[]>;
|
|
85
|
-
export declare function getSocialStringsByEmployee(client: Client): Promise<Record<Ref<Person>, PersonId[]>>;
|
|
86
|
-
export declare function getAllAccounts(client: Client): Promise<AccountUuid[]>;
|
|
87
|
-
export declare function getAllUserAccounts(client: Client): Promise<AccountUuid[]>;
|
|
88
|
-
export declare function ensureEmployee(ctx: MeasureContext, me: Account, client: Pick<Client, 'findOne' | 'findAll' | 'tx'>, socialIds: SocialId[], getGlobalPerson: () => Promise<GlobalPerson | undefined>): Promise<Ref<Employee> | null>;
|
|
89
|
-
export declare function ensureEmployeeForPerson(ctx: MeasureContext, me: Account, person: Account, client: Pick<Client, 'findOne' | 'findAll' | 'tx'>, socialIds: SocialId[], globalPerson?: GlobalPerson): Promise<Ref<Employee> | null>;
|
|
90
|
-
export declare const contactCache: ContactCache;
|
|
91
|
-
export declare function loadCachesForPersonId(client: Client, personId: PersonId): Promise<void>;
|
|
92
|
-
export declare function loadCachesForPersonIds(client: Client, personIds: PersonId[]): Promise<void>;
|
|
93
|
-
export declare function loadCachesForPersonRef(client: Client, personRef: Ref<Person>): Promise<void>;
|
|
94
|
-
export declare function loadCachesForPersonRefs(client: Client, personRefs: Array<Ref<Person>>): Promise<void>;
|
|
95
|
-
export declare function getPersonRefByPersonId(client: Client, personId: PersonId): Promise<Ref<Person> | null>;
|
|
96
|
-
export declare function getPersonRefByPersonIdCb(client: Client, personId: PersonId, cb: (person: Ref<Person> | null) => void): void;
|
|
97
|
-
export declare function getPersonRefsByPersonIds(client: Client, personIds: PersonId[]): Promise<Map<PersonId, Ref<Person>>>;
|
|
98
|
-
export declare function getPersonRefsByPersonIdsCb(client: Client, personIds: PersonId[], cb: (personRefs: Map<PersonId, Ref<Person>>) => void): void;
|
|
99
|
-
export declare function getPersonByPersonId(client: Client, personId: PersonId): Promise<Readonly<Person> | null>;
|
|
100
|
-
export declare function getPersonByPersonIdCb(client: Client, personId: PersonId, cb: (person: Readonly<Person> | null) => void): void;
|
|
101
|
-
export declare function getPersonsByPersonIds(client: Client, personIds: PersonId[]): Promise<Map<PersonId, Readonly<Person>>>;
|
|
102
|
-
export declare function getPersonsByPersonIdsCb(client: Client, personIds: PersonId[], cb: (persons: Map<PersonId, Readonly<Person>>) => void): void;
|
|
103
|
-
export declare function getPersonByPersonRef(client: Client, personRef: Ref<Person>): Promise<Readonly<Person> | null>;
|
|
104
|
-
export declare function getPersonByPersonRefCb(client: Client, personRef: Ref<Person>, cb: (person: Readonly<Person> | null) => void): void;
|
|
105
|
-
export declare function getPersonsByPersonRefs(client: Client, personRefs: Array<Ref<Person>>): Promise<Map<Ref<Person>, Readonly<Person>>>;
|
|
106
|
-
export declare function getPersonsByPersonRefsCb(client: Client, personRefs: Array<Ref<Person>>, cb: (persons: Map<Ref<Person>, Readonly<Person>>) => void): void;
|
|
107
|
-
export declare function getSocialIdByPersonId(client: Client, personId: PersonId): Promise<SocialIdentity | null>;
|
|
108
|
-
export declare function getSocialIdByPersonIdCb(client: Client, personId: PersonId, cb: (socialId: SocialIdentity | null) => void): void;
|
|
109
|
-
export type { Change as ContactCacheChange } from './cache';
|
|
110
|
-
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"client.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/client.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"clone.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/clone.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"collaboration.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/collaboration.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"collaborators.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/collaborators.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"common.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/common.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"connection.d.ts","sourceRoot":"","sources":["../../src/__tests__/connection.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,WAAW,CAAA;AAajD,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAA;AAI/B,wBAAsB,OAAO,CAAE,OAAO,EAAE,CAAC,EAAE,EAAE,EAAE,KAAK,IAAI,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAmFnF"}
|