@abyss-project/tools 1.0.0
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/.eslintrc.js +33 -0
- package/.prettierrc +5 -0
- package/dist/api/abyss.admin.api.d.ts +7 -0
- package/dist/api/abyss.admin.api.js +28 -0
- package/dist/api/atlas-document.api.d.ts +6 -0
- package/dist/api/atlas-document.api.js +26 -0
- package/dist/api/atlas-group.api.d.ts +6 -0
- package/dist/api/atlas-group.api.js +24 -0
- package/dist/api/atlas-page-content.api.d.ts +0 -0
- package/dist/api/atlas-page-content.api.js +1 -0
- package/dist/api/atlas-page.api.d.ts +10 -0
- package/dist/api/atlas-page.api.js +46 -0
- package/dist/api/atlas.api.d.ts +8 -0
- package/dist/api/atlas.api.js +35 -0
- package/dist/api/atlas.public.api.d.ts +4 -0
- package/dist/api/atlas.public.api.js +18 -0
- package/dist/api/board-card-checklist.api.d.ts +8 -0
- package/dist/api/board-card-checklist.api.js +32 -0
- package/dist/api/board-card-comment.api.d.ts +5 -0
- package/dist/api/board-card-comment.api.js +20 -0
- package/dist/api/board-card-document.api.d.ts +5 -0
- package/dist/api/board-card-document.api.js +20 -0
- package/dist/api/board-card.api.d.ts +11 -0
- package/dist/api/board-card.api.js +48 -0
- package/dist/api/board-column.api.d.ts +5 -0
- package/dist/api/board-column.api.js +20 -0
- package/dist/api/board-label.api.d.ts +8 -0
- package/dist/api/board-label.api.js +33 -0
- package/dist/api/board.api.d.ts +12 -0
- package/dist/api/board.api.js +41 -0
- package/dist/api/draw.api.d.ts +8 -0
- package/dist/api/draw.api.js +36 -0
- package/dist/api/draw.public.api.d.ts +5 -0
- package/dist/api/draw.public.api.js +20 -0
- package/dist/api/index.d.ts +26 -0
- package/dist/api/index.js +42 -0
- package/dist/api/memo.api.d.ts +8 -0
- package/dist/api/memo.api.js +36 -0
- package/dist/api/metrics.api.d.ts +2 -0
- package/dist/api/metrics.api.js +8 -0
- package/dist/api/retrospective-card.api.d.ts +6 -0
- package/dist/api/retrospective-card.api.js +26 -0
- package/dist/api/retrospective-member.api.d.ts +5 -0
- package/dist/api/retrospective-member.api.js +20 -0
- package/dist/api/retrospective-section.api.d.ts +6 -0
- package/dist/api/retrospective-section.api.js +26 -0
- package/dist/api/retrospective.api.d.ts +8 -0
- package/dist/api/retrospective.api.js +34 -0
- package/dist/api/retrospective.public.api.d.ts +11 -0
- package/dist/api/retrospective.public.api.js +44 -0
- package/dist/api/short-link.admin.api.d.ts +7 -0
- package/dist/api/short-link.admin.api.js +22 -0
- package/dist/api/short-link.api.d.ts +12 -0
- package/dist/api/short-link.api.js +48 -0
- package/dist/api/short-link.public.api.d.ts +8 -0
- package/dist/api/short-link.public.api.js +32 -0
- package/dist/api/user-tag.api.d.ts +9 -0
- package/dist/api/user-tag.api.js +36 -0
- package/dist/constants/atlas.constants.d.ts +2 -0
- package/dist/constants/atlas.constants.js +5 -0
- package/dist/constants/board.constants.d.ts +5 -0
- package/dist/constants/board.constants.js +8 -0
- package/dist/constants/index.d.ts +5 -0
- package/dist/constants/index.js +21 -0
- package/dist/constants/memo.constants.d.ts +3 -0
- package/dist/constants/memo.constants.js +6 -0
- package/dist/constants/short-link.constants.d.ts +8 -0
- package/dist/constants/short-link.constants.js +11 -0
- package/dist/constants/user-tag.constants.d.ts +3 -0
- package/dist/constants/user-tag.constants.js +6 -0
- package/dist/index.d.ts +262 -0
- package/dist/index.js +341 -0
- package/dist/server-sent-events/index.d.ts +10 -0
- package/dist/server-sent-events/index.js +28 -0
- package/dist/server-sent-events/protocols/atlas/atlas.sse-protocol.d.ts +74 -0
- package/dist/server-sent-events/protocols/atlas/atlas.sse-protocol.js +21 -0
- package/dist/server-sent-events/protocols/atlas/index.d.ts +1 -0
- package/dist/server-sent-events/protocols/atlas/index.js +17 -0
- package/dist/server-sent-events/protocols/board/board.sse-protocol.d.ts +91 -0
- package/dist/server-sent-events/protocols/board/board.sse-protocol.js +23 -0
- package/dist/server-sent-events/protocols/board/index.d.ts +1 -0
- package/dist/server-sent-events/protocols/board/index.js +17 -0
- package/dist/server-sent-events/protocols/board-card/board-card.sse-protocol.d.ts +18 -0
- package/dist/server-sent-events/protocols/board-card/board-card.sse-protocol.js +11 -0
- package/dist/server-sent-events/protocols/board-card/index.d.ts +1 -0
- package/dist/server-sent-events/protocols/board-card/index.js +17 -0
- package/dist/server-sent-events/protocols/index.d.ts +20 -0
- package/dist/server-sent-events/protocols/index.js +29 -0
- package/dist/server-sent-events/protocols/retrospective/index.d.ts +1 -0
- package/dist/server-sent-events/protocols/retrospective/index.js +17 -0
- package/dist/server-sent-events/protocols/retrospective/retrospective.sse-protocol.d.ts +69 -0
- package/dist/server-sent-events/protocols/retrospective/retrospective.sse-protocol.js +21 -0
- package/dist/server-sent-events/server-sent-events.manager.d.ts +23 -0
- package/dist/server-sent-events/server-sent-events.manager.js +59 -0
- package/dist/types/draw.type.d.ts +132 -0
- package/dist/types/draw.type.js +15 -0
- package/dist/types/enum/api-error.enum.d.ts +21 -0
- package/dist/types/enum/api-error.enum.js +26 -0
- package/dist/types/enum/board-activity.enum.d.ts +170 -0
- package/dist/types/enum/board-activity.enum.js +37 -0
- package/dist/types/enum/board-column-type.enum.d.ts +6 -0
- package/dist/types/enum/board-column-type.enum.js +10 -0
- package/dist/types/enum/index.d.ts +3 -0
- package/dist/types/enum/index.js +19 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.js +19 -0
- package/dist/types/interface/api/index.d.ts +5 -0
- package/dist/types/interface/api/index.js +21 -0
- package/dist/types/interface/api/requests/abyss.admin.request.d.ts +14 -0
- package/dist/types/interface/api/requests/abyss.admin.request.js +2 -0
- package/dist/types/interface/api/requests/atlas-document.request.d.ts +26 -0
- package/dist/types/interface/api/requests/atlas-document.request.js +2 -0
- package/dist/types/interface/api/requests/atlas-group.request.d.ts +40 -0
- package/dist/types/interface/api/requests/atlas-group.request.js +2 -0
- package/dist/types/interface/api/requests/atlas-page.request.d.ts +72 -0
- package/dist/types/interface/api/requests/atlas-page.request.js +2 -0
- package/dist/types/interface/api/requests/atlas.public.request.d.ts +18 -0
- package/dist/types/interface/api/requests/atlas.public.request.js +2 -0
- package/dist/types/interface/api/requests/atlas.request.d.ts +33 -0
- package/dist/types/interface/api/requests/atlas.request.js +2 -0
- package/dist/types/interface/api/requests/board-card-checklist.request.d.ts +55 -0
- package/dist/types/interface/api/requests/board-card-checklist.request.js +2 -0
- package/dist/types/interface/api/requests/board-card-comment.request.d.ts +25 -0
- package/dist/types/interface/api/requests/board-card-comment.request.js +2 -0
- package/dist/types/interface/api/requests/board-card-document.request.d.ts +25 -0
- package/dist/types/interface/api/requests/board-card-document.request.js +2 -0
- package/dist/types/interface/api/requests/board-card.request.d.ts +77 -0
- package/dist/types/interface/api/requests/board-card.request.js +2 -0
- package/dist/types/interface/api/requests/board-column.request.d.ts +26 -0
- package/dist/types/interface/api/requests/board-column.request.js +2 -0
- package/dist/types/interface/api/requests/board-label.request.d.ts +36 -0
- package/dist/types/interface/api/requests/board-label.request.js +2 -0
- package/dist/types/interface/api/requests/board.request.d.ts +25 -0
- package/dist/types/interface/api/requests/board.request.js +2 -0
- package/dist/types/interface/api/requests/draw.public.request.d.ts +17 -0
- package/dist/types/interface/api/requests/draw.public.request.js +2 -0
- package/dist/types/interface/api/requests/draw.request.d.ts +31 -0
- package/dist/types/interface/api/requests/draw.request.js +2 -0
- package/dist/types/interface/api/requests/index.d.ts +26 -0
- package/dist/types/interface/api/requests/index.js +42 -0
- package/dist/types/interface/api/requests/memo.request.d.ts +29 -0
- package/dist/types/interface/api/requests/memo.request.js +2 -0
- package/dist/types/interface/api/requests/metrics.request.d.ts +3 -0
- package/dist/types/interface/api/requests/metrics.request.js +2 -0
- package/dist/types/interface/api/requests/retrospective-card.request.d.ts +32 -0
- package/dist/types/interface/api/requests/retrospective-card.request.js +2 -0
- package/dist/types/interface/api/requests/retrospective-member.request.d.ts +17 -0
- package/dist/types/interface/api/requests/retrospective-member.request.js +2 -0
- package/dist/types/interface/api/requests/retrospective-section.request.d.ts +36 -0
- package/dist/types/interface/api/requests/retrospective-section.request.js +2 -0
- package/dist/types/interface/api/requests/retrospective.public.request.d.ts +71 -0
- package/dist/types/interface/api/requests/retrospective.public.request.js +2 -0
- package/dist/types/interface/api/requests/retrospective.request.d.ts +39 -0
- package/dist/types/interface/api/requests/retrospective.request.js +2 -0
- package/dist/types/interface/api/requests/short-link.admin.request.d.ts +29 -0
- package/dist/types/interface/api/requests/short-link.admin.request.js +2 -0
- package/dist/types/interface/api/requests/short-link.public.request.d.ts +33 -0
- package/dist/types/interface/api/requests/short-link.public.request.js +2 -0
- package/dist/types/interface/api/requests/short-link.request.d.ts +47 -0
- package/dist/types/interface/api/requests/short-link.request.js +2 -0
- package/dist/types/interface/api/requests/user-tag.request.d.ts +37 -0
- package/dist/types/interface/api/requests/user-tag.request.js +2 -0
- package/dist/types/interface/api/responses/abyss.admin.response.d.ts +14 -0
- package/dist/types/interface/api/responses/abyss.admin.response.js +2 -0
- package/dist/types/interface/api/responses/atlas-document.response.d.ts +19 -0
- package/dist/types/interface/api/responses/atlas-document.response.js +2 -0
- package/dist/types/interface/api/responses/atlas-group.response.d.ts +19 -0
- package/dist/types/interface/api/responses/atlas-group.response.js +2 -0
- package/dist/types/interface/api/responses/atlas-page.response.d.ts +44 -0
- package/dist/types/interface/api/responses/atlas-page.response.js +2 -0
- package/dist/types/interface/api/responses/atlas.public.response.d.ts +18 -0
- package/dist/types/interface/api/responses/atlas.public.response.js +2 -0
- package/dist/types/interface/api/responses/atlas.response.d.ts +19 -0
- package/dist/types/interface/api/responses/atlas.response.js +2 -0
- package/dist/types/interface/api/responses/board-card-checklist.response.d.ts +27 -0
- package/dist/types/interface/api/responses/board-card-checklist.response.js +2 -0
- package/dist/types/interface/api/responses/board-card-comment.response.d.ts +17 -0
- package/dist/types/interface/api/responses/board-card-comment.response.js +2 -0
- package/dist/types/interface/api/responses/board-card-document.response.d.ts +20 -0
- package/dist/types/interface/api/responses/board-card-document.response.js +2 -0
- package/dist/types/interface/api/responses/board-card.response.d.ts +47 -0
- package/dist/types/interface/api/responses/board-card.response.js +2 -0
- package/dist/types/interface/api/responses/board-column.response.d.ts +17 -0
- package/dist/types/interface/api/responses/board-column.response.js +2 -0
- package/dist/types/interface/api/responses/board-label.response.d.ts +30 -0
- package/dist/types/interface/api/responses/board-label.response.js +2 -0
- package/dist/types/interface/api/responses/board.response.d.ts +59 -0
- package/dist/types/interface/api/responses/board.response.js +2 -0
- package/dist/types/interface/api/responses/draw.public.response.d.ts +17 -0
- package/dist/types/interface/api/responses/draw.public.response.js +2 -0
- package/dist/types/interface/api/responses/draw.response.d.ts +19 -0
- package/dist/types/interface/api/responses/draw.response.js +2 -0
- package/dist/types/interface/api/responses/index.d.ts +26 -0
- package/dist/types/interface/api/responses/index.js +42 -0
- package/dist/types/interface/api/responses/memo.response.d.ts +19 -0
- package/dist/types/interface/api/responses/memo.response.js +2 -0
- package/dist/types/interface/api/responses/metrics.response.d.ts +13 -0
- package/dist/types/interface/api/responses/metrics.response.js +2 -0
- package/dist/types/interface/api/responses/retrospective-card.response.d.ts +19 -0
- package/dist/types/interface/api/responses/retrospective-card.response.js +2 -0
- package/dist/types/interface/api/responses/retrospective-member.response.d.ts +18 -0
- package/dist/types/interface/api/responses/retrospective-member.response.js +2 -0
- package/dist/types/interface/api/responses/retrospective-section.response.d.ts +19 -0
- package/dist/types/interface/api/responses/retrospective-section.response.js +2 -0
- package/dist/types/interface/api/responses/retrospective.public.response.d.ts +36 -0
- package/dist/types/interface/api/responses/retrospective.public.response.js +2 -0
- package/dist/types/interface/api/responses/retrospective.response.d.ts +19 -0
- package/dist/types/interface/api/responses/retrospective.response.js +2 -0
- package/dist/types/interface/api/responses/short-link.admin.response.d.ts +17 -0
- package/dist/types/interface/api/responses/short-link.admin.response.js +2 -0
- package/dist/types/interface/api/responses/short-link.public.response.d.ts +21 -0
- package/dist/types/interface/api/responses/short-link.public.response.js +2 -0
- package/dist/types/interface/api/responses/short-link.response.d.ts +25 -0
- package/dist/types/interface/api/responses/short-link.response.js +2 -0
- package/dist/types/interface/api/responses/user-tag.response.d.ts +32 -0
- package/dist/types/interface/api/responses/user-tag.response.js +2 -0
- package/dist/types/interface/api/type-message/api-error.d.ts +6 -0
- package/dist/types/interface/api/type-message/api-error.js +2 -0
- package/dist/types/interface/api/type-message/base-paginate.d.ts +10 -0
- package/dist/types/interface/api/type-message/base-paginate.js +2 -0
- package/dist/types/interface/api/type-message/response.d.ts +5 -0
- package/dist/types/interface/api/type-message/response.js +2 -0
- package/dist/types/interface/index.d.ts +2 -0
- package/dist/types/interface/index.js +18 -0
- package/dist/types/interface/models/atlas-document.dto.d.ts +19 -0
- package/dist/types/interface/models/atlas-document.dto.js +2 -0
- package/dist/types/interface/models/atlas-group.dto.d.ts +18 -0
- package/dist/types/interface/models/atlas-group.dto.js +2 -0
- package/dist/types/interface/models/atlas-page-content.dto.d.ts +14 -0
- package/dist/types/interface/models/atlas-page-content.dto.js +2 -0
- package/dist/types/interface/models/atlas-page.dto.d.ts +23 -0
- package/dist/types/interface/models/atlas-page.dto.js +2 -0
- package/dist/types/interface/models/atlas.dto.d.ts +30 -0
- package/dist/types/interface/models/atlas.dto.js +2 -0
- package/dist/types/interface/models/board-activity.dto.d.ts +17 -0
- package/dist/types/interface/models/board-activity.dto.js +2 -0
- package/dist/types/interface/models/board-card-checklist-row.dto.d.ts +11 -0
- package/dist/types/interface/models/board-card-checklist-row.dto.js +2 -0
- package/dist/types/interface/models/board-card-checklist.dto.d.ts +13 -0
- package/dist/types/interface/models/board-card-checklist.dto.js +2 -0
- package/dist/types/interface/models/board-card-comment.dto.d.ts +12 -0
- package/dist/types/interface/models/board-card-comment.dto.js +2 -0
- package/dist/types/interface/models/board-card-document.dto.d.ts +19 -0
- package/dist/types/interface/models/board-card-document.dto.js +2 -0
- package/dist/types/interface/models/board-card-label.dto.d.ts +11 -0
- package/dist/types/interface/models/board-card-label.dto.js +2 -0
- package/dist/types/interface/models/board-card-member.dto.d.ts +11 -0
- package/dist/types/interface/models/board-card-member.dto.js +2 -0
- package/dist/types/interface/models/board-card.dto.d.ts +34 -0
- package/dist/types/interface/models/board-card.dto.js +2 -0
- package/dist/types/interface/models/board-column.dto.d.ts +14 -0
- package/dist/types/interface/models/board-column.dto.js +2 -0
- package/dist/types/interface/models/board-label.dto.d.ts +10 -0
- package/dist/types/interface/models/board-label.dto.js +2 -0
- package/dist/types/interface/models/board.dto.d.ts +29 -0
- package/dist/types/interface/models/board.dto.js +2 -0
- package/dist/types/interface/models/draw.dto.d.ts +25 -0
- package/dist/types/interface/models/draw.dto.js +2 -0
- package/dist/types/interface/models/index.d.ts +28 -0
- package/dist/types/interface/models/index.js +44 -0
- package/dist/types/interface/models/memo.dto.d.ts +19 -0
- package/dist/types/interface/models/memo.dto.js +2 -0
- package/dist/types/interface/models/organization.dto.d.ts +9 -0
- package/dist/types/interface/models/organization.dto.js +2 -0
- package/dist/types/interface/models/project.dto.d.ts +22 -0
- package/dist/types/interface/models/project.dto.js +2 -0
- package/dist/types/interface/models/retrospective-card.dto.d.ts +14 -0
- package/dist/types/interface/models/retrospective-card.dto.js +2 -0
- package/dist/types/interface/models/retrospective-member.dto.d.ts +12 -0
- package/dist/types/interface/models/retrospective-member.dto.js +2 -0
- package/dist/types/interface/models/retrospective-section.dto.d.ts +13 -0
- package/dist/types/interface/models/retrospective-section.dto.js +2 -0
- package/dist/types/interface/models/retrospective.dto.d.ts +29 -0
- package/dist/types/interface/models/retrospective.dto.js +2 -0
- package/dist/types/interface/models/short-link-click.dto.d.ts +30 -0
- package/dist/types/interface/models/short-link-click.dto.js +2 -0
- package/dist/types/interface/models/short-link.dto.d.ts +71 -0
- package/dist/types/interface/models/short-link.dto.js +2 -0
- package/dist/types/interface/models/user-tag.dto.d.ts +22 -0
- package/dist/types/interface/models/user-tag.dto.js +2 -0
- package/dist/types/interface/models/user.dto.d.ts +23 -0
- package/dist/types/interface/models/user.dto.js +2 -0
- package/dist/utils/board.utils.d.ts +5 -0
- package/dist/utils/board.utils.js +39 -0
- package/dist/utils/enum.utils.d.ts +1 -0
- package/dist/utils/enum.utils.js +9 -0
- package/dist/utils/error.utils.d.ts +15 -0
- package/dist/utils/error.utils.js +24 -0
- package/dist/utils/icons.utils.d.ts +75 -0
- package/dist/utils/icons.utils.js +86 -0
- package/dist/utils/index.d.ts +5 -0
- package/dist/utils/index.js +21 -0
- package/dist/utils/shape.utils.d.ts +26 -0
- package/dist/utils/shape.utils.js +181 -0
- package/package.json +53 -0
- package/src/api/abyss.admin.api.ts +60 -0
- package/src/api/atlas-document.api.ts +68 -0
- package/src/api/atlas-group.api.ts +69 -0
- package/src/api/atlas-page-content.api.ts +0 -0
- package/src/api/atlas-page.api.ts +124 -0
- package/src/api/atlas.api.ts +65 -0
- package/src/api/atlas.public.api.ts +42 -0
- package/src/api/board-card-checklist.api.ts +99 -0
- package/src/api/board-card-comment.api.ts +57 -0
- package/src/api/board-card-document.api.ts +57 -0
- package/src/api/board-card.api.ts +137 -0
- package/src/api/board-column.api.ts +54 -0
- package/src/api/board-label.api.ts +87 -0
- package/src/api/board.api.ts +67 -0
- package/src/api/draw.api.ts +58 -0
- package/src/api/draw.public.api.ts +48 -0
- package/src/api/index.ts +43 -0
- package/src/api/memo.api.ts +59 -0
- package/src/api/metrics.api.ts +15 -0
- package/src/api/retrospective-card.api.ts +74 -0
- package/src/api/retrospective-member.api.ts +54 -0
- package/src/api/retrospective-section.api.ts +74 -0
- package/src/api/retrospective.api.ts +86 -0
- package/src/api/retrospective.public.api.ts +147 -0
- package/src/api/short-link.admin.api.ts +39 -0
- package/src/api/short-link.api.ts +90 -0
- package/src/api/short-link.public.api.ts +60 -0
- package/src/api/user-tag.api.ts +70 -0
- package/src/constants/atlas.constants.ts +2 -0
- package/src/constants/board.constants.ts +7 -0
- package/src/constants/index.ts +5 -0
- package/src/constants/memo.constants.ts +3 -0
- package/src/constants/short-link.constants.ts +11 -0
- package/src/constants/user-tag.constants.ts +3 -0
- package/src/index.ts +541 -0
- package/src/server-sent-events/index.ts +13 -0
- package/src/server-sent-events/protocols/atlas/atlas.sse-protocol.ts +90 -0
- package/src/server-sent-events/protocols/atlas/index.ts +1 -0
- package/src/server-sent-events/protocols/board/board.sse-protocol.ts +115 -0
- package/src/server-sent-events/protocols/board/index.ts +1 -0
- package/src/server-sent-events/protocols/board-card/board-card.sse-protocol.ts +26 -0
- package/src/server-sent-events/protocols/board-card/index.ts +1 -0
- package/src/server-sent-events/protocols/index.ts +26 -0
- package/src/server-sent-events/protocols/retrospective/index.ts +1 -0
- package/src/server-sent-events/protocols/retrospective/retrospective.sse-protocol.ts +92 -0
- package/src/server-sent-events/server-sent-events.manager.ts +73 -0
- package/src/types/draw.type.ts +173 -0
- package/src/types/enum/api-error.enum.ts +23 -0
- package/src/types/enum/board-activity.enum.ts +189 -0
- package/src/types/enum/board-column-type.enum.ts +6 -0
- package/src/types/enum/index.ts +3 -0
- package/src/types/index.ts +5 -0
- package/src/types/interface/api/index.ts +5 -0
- package/src/types/interface/api/requests/abyss.admin.request.ts +16 -0
- package/src/types/interface/api/requests/atlas-document.request.ts +32 -0
- package/src/types/interface/api/requests/atlas-group.request.ts +45 -0
- package/src/types/interface/api/requests/atlas-page.request.ts +84 -0
- package/src/types/interface/api/requests/atlas.public.request.ts +21 -0
- package/src/types/interface/api/requests/atlas.request.ts +40 -0
- package/src/types/interface/api/requests/board-card-checklist.request.ts +61 -0
- package/src/types/interface/api/requests/board-card-comment.request.ts +28 -0
- package/src/types/interface/api/requests/board-card-document.request.ts +29 -0
- package/src/types/interface/api/requests/board-card.request.ts +86 -0
- package/src/types/interface/api/requests/board-column.request.ts +30 -0
- package/src/types/interface/api/requests/board-label.request.ts +42 -0
- package/src/types/interface/api/requests/board.request.ts +30 -0
- package/src/types/interface/api/requests/draw.public.request.ts +20 -0
- package/src/types/interface/api/requests/draw.request.ts +37 -0
- package/src/types/interface/api/requests/index.ts +26 -0
- package/src/types/interface/api/requests/memo.request.ts +35 -0
- package/src/types/interface/api/requests/metrics.request.ts +3 -0
- package/src/types/interface/api/requests/retrospective-card.request.ts +38 -0
- package/src/types/interface/api/requests/retrospective-member.request.ts +20 -0
- package/src/types/interface/api/requests/retrospective-section.request.ts +43 -0
- package/src/types/interface/api/requests/retrospective.public.request.ts +84 -0
- package/src/types/interface/api/requests/retrospective.request.ts +46 -0
- package/src/types/interface/api/requests/short-link.admin.request.ts +35 -0
- package/src/types/interface/api/requests/short-link.public.request.ts +40 -0
- package/src/types/interface/api/requests/short-link.request.ts +57 -0
- package/src/types/interface/api/requests/user-tag.request.ts +45 -0
- package/src/types/interface/api/responses/abyss.admin.response.ts +17 -0
- package/src/types/interface/api/responses/atlas-document.response.ts +24 -0
- package/src/types/interface/api/responses/atlas-group.response.ts +23 -0
- package/src/types/interface/api/responses/atlas-page.response.ts +53 -0
- package/src/types/interface/api/responses/atlas.public.response.ts +21 -0
- package/src/types/interface/api/responses/atlas.response.ts +23 -0
- package/src/types/interface/api/responses/board-card-checklist.response.ts +31 -0
- package/src/types/interface/api/responses/board-card-comment.response.ts +20 -0
- package/src/types/interface/api/responses/board-card-document.response.ts +21 -0
- package/src/types/interface/api/responses/board-card.response.ts +55 -0
- package/src/types/interface/api/responses/board-column.response.ts +20 -0
- package/src/types/interface/api/responses/board-label.response.ts +31 -0
- package/src/types/interface/api/responses/board.response.ts +68 -0
- package/src/types/interface/api/responses/draw.public.response.ts +20 -0
- package/src/types/interface/api/responses/draw.response.ts +23 -0
- package/src/types/interface/api/responses/index.ts +26 -0
- package/src/types/interface/api/responses/memo.response.ts +23 -0
- package/src/types/interface/api/responses/metrics.response.ts +16 -0
- package/src/types/interface/api/responses/retrospective-card.response.ts +23 -0
- package/src/types/interface/api/responses/retrospective-member.response.ts +22 -0
- package/src/types/interface/api/responses/retrospective-section.response.ts +23 -0
- package/src/types/interface/api/responses/retrospective.public.response.ts +57 -0
- package/src/types/interface/api/responses/retrospective.response.ts +23 -0
- package/src/types/interface/api/responses/short-link.admin.response.ts +21 -0
- package/src/types/interface/api/responses/short-link.public.response.ts +26 -0
- package/src/types/interface/api/responses/short-link.response.ts +31 -0
- package/src/types/interface/api/responses/user-tag.response.ts +38 -0
- package/src/types/interface/api/type-message/api-error.ts +7 -0
- package/src/types/interface/api/type-message/base-paginate.ts +11 -0
- package/src/types/interface/api/type-message/response.ts +6 -0
- package/src/types/interface/index.ts +2 -0
- package/src/types/interface/models/atlas-document.dto.ts +22 -0
- package/src/types/interface/models/atlas-group.dto.ts +21 -0
- package/src/types/interface/models/atlas-page-content.dto.ts +17 -0
- package/src/types/interface/models/atlas-page.dto.ts +26 -0
- package/src/types/interface/models/atlas.dto.ts +34 -0
- package/src/types/interface/models/board-activity.dto.ts +20 -0
- package/src/types/interface/models/board-card-checklist-row.dto.ts +14 -0
- package/src/types/interface/models/board-card-checklist.dto.ts +16 -0
- package/src/types/interface/models/board-card-comment.dto.ts +15 -0
- package/src/types/interface/models/board-card-document.dto.ts +22 -0
- package/src/types/interface/models/board-card-label.dto.ts +14 -0
- package/src/types/interface/models/board-card-member.dto.ts +14 -0
- package/src/types/interface/models/board-card.dto.ts +37 -0
- package/src/types/interface/models/board-column.dto.ts +17 -0
- package/src/types/interface/models/board-label.dto.ts +13 -0
- package/src/types/interface/models/board.dto.ts +32 -0
- package/src/types/interface/models/draw.dto.ts +28 -0
- package/src/types/interface/models/index.ts +28 -0
- package/src/types/interface/models/memo.dto.ts +22 -0
- package/src/types/interface/models/organization.dto.ts +12 -0
- package/src/types/interface/models/project.dto.ts +25 -0
- package/src/types/interface/models/retrospective-card.dto.ts +17 -0
- package/src/types/interface/models/retrospective-member.dto.ts +15 -0
- package/src/types/interface/models/retrospective-section.dto.ts +16 -0
- package/src/types/interface/models/retrospective.dto.ts +32 -0
- package/src/types/interface/models/short-link-click.dto.ts +33 -0
- package/src/types/interface/models/short-link.dto.ts +48 -0
- package/src/types/interface/models/user-tag.dto.ts +26 -0
- package/src/types/interface/models/user.dto.ts +26 -0
- package/src/utils/board.utils.ts +57 -0
- package/src/utils/enum.utils.ts +6 -0
- package/src/utils/error.utils.ts +30 -0
- package/src/utils/icons.utils.ts +96 -0
- package/src/utils/index.ts +5 -0
- package/src/utils/shape.utils.ts +296 -0
- package/tsconfig.json +24 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BoardActivityData = exports.BoardActivityType = void 0;
|
|
4
|
+
var BoardActivityType;
|
|
5
|
+
(function (BoardActivityType) {
|
|
6
|
+
BoardActivityType["CARD_CREATE"] = "CARD_CREATE";
|
|
7
|
+
BoardActivityType["CARD_UPDATE"] = "CARD_UPDATE";
|
|
8
|
+
BoardActivityType["CARD_ARCHIVE"] = "CARD_ARCHIVE";
|
|
9
|
+
BoardActivityType["CARD_RESTORE"] = "CARD_RESTORE";
|
|
10
|
+
BoardActivityType["CARD_MOVE_COLUMN"] = "CARD_MOVE_COLUMN";
|
|
11
|
+
BoardActivityType["CARD_MOVE_BOARD"] = "CARD_MOVE_BOARD";
|
|
12
|
+
BoardActivityType["COLUMN_CREATE"] = "COLUMN_CREATE";
|
|
13
|
+
BoardActivityType["COLUMN_UPDATE"] = "COLUMN_UPDATE";
|
|
14
|
+
BoardActivityType["COLUMN_DELETE"] = "COLUMN_DELETE";
|
|
15
|
+
BoardActivityType["COMMENT_CREATE"] = "COMMENT_CREATE";
|
|
16
|
+
BoardActivityType["COMMENT_UPDATE"] = "COMMENT_UPDATE";
|
|
17
|
+
BoardActivityType["COMMENT_DELETE"] = "COMMENT_DELETE";
|
|
18
|
+
BoardActivityType["LABEL_CREATE"] = "LABEL_CREATE";
|
|
19
|
+
BoardActivityType["LABEL_DELETE"] = "LABEL_DELETE";
|
|
20
|
+
BoardActivityType["LABEL_UPDATE"] = "LABEL_UPDATE";
|
|
21
|
+
BoardActivityType["LABEL_ADD"] = "LABEL_ADD";
|
|
22
|
+
BoardActivityType["LABEL_REMOVE"] = "LABEL_REMOVE";
|
|
23
|
+
BoardActivityType["MEMBER_ADD"] = "MEMBER_ADD";
|
|
24
|
+
BoardActivityType["MEMBER_REMOVE"] = "MEMBER_REMOVE";
|
|
25
|
+
BoardActivityType["CHECKLIST_CREATE"] = "CHECKLIST_CREATE";
|
|
26
|
+
BoardActivityType["CHECKLIST_UPDATE"] = "CHECKLIST_UPDATE";
|
|
27
|
+
BoardActivityType["CHECKLIST_DELETE"] = "CHECKLIST_DELETE";
|
|
28
|
+
BoardActivityType["CHECKLIST_ITEM_ADD"] = "CHECKLIST_ITEM_ADD";
|
|
29
|
+
BoardActivityType["CHECKLIST_ITEM_UPDATE"] = "CHECKLIST_ITEM_UPDATE";
|
|
30
|
+
BoardActivityType["CHECKLIST_ITEM_DELETE"] = "CHECKLIST_ITEM_DELETE";
|
|
31
|
+
BoardActivityType["DOCUMENT_ADD"] = "DOCUMENT_ADD";
|
|
32
|
+
BoardActivityType["DOCUMENT_REMOVE"] = "DOCUMENT_REMOVE";
|
|
33
|
+
})(BoardActivityType || (exports.BoardActivityType = BoardActivityType = {}));
|
|
34
|
+
class BoardActivityData {
|
|
35
|
+
}
|
|
36
|
+
exports.BoardActivityData = BoardActivityData;
|
|
37
|
+
BoardActivityType.CARD_CREATE, BoardActivityType.CARD_UPDATE, BoardActivityType.CARD_ARCHIVE, BoardActivityType.CARD_RESTORE, BoardActivityType.CARD_MOVE_COLUMN, BoardActivityType.CARD_MOVE_BOARD, BoardActivityType.COLUMN_CREATE, BoardActivityType.COLUMN_UPDATE, BoardActivityType.COLUMN_DELETE, BoardActivityType.COMMENT_CREATE, BoardActivityType.COMMENT_UPDATE, BoardActivityType.COMMENT_DELETE, BoardActivityType.LABEL_CREATE, BoardActivityType.LABEL_DELETE, BoardActivityType.LABEL_UPDATE, BoardActivityType.LABEL_ADD, BoardActivityType.LABEL_REMOVE, BoardActivityType.MEMBER_ADD, BoardActivityType.MEMBER_REMOVE, BoardActivityType.CHECKLIST_CREATE, BoardActivityType.CHECKLIST_UPDATE, BoardActivityType.CHECKLIST_DELETE, BoardActivityType.CHECKLIST_ITEM_ADD, BoardActivityType.CHECKLIST_ITEM_UPDATE, BoardActivityType.CHECKLIST_ITEM_DELETE, BoardActivityType.DOCUMENT_ADD, BoardActivityType.DOCUMENT_REMOVE;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BoardColumnType = void 0;
|
|
4
|
+
var BoardColumnType;
|
|
5
|
+
(function (BoardColumnType) {
|
|
6
|
+
BoardColumnType["CONCEPTION"] = "CONCEPTION";
|
|
7
|
+
BoardColumnType["BACKLOG"] = "BACKLOG";
|
|
8
|
+
BoardColumnType["DOING"] = "DOING";
|
|
9
|
+
BoardColumnType["DONE"] = "DONE";
|
|
10
|
+
})(BoardColumnType || (exports.BoardColumnType = BoardColumnType = {}));
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api-error.enum"), exports);
|
|
18
|
+
__exportStar(require("./board-activity.enum"), exports);
|
|
19
|
+
__exportStar(require("./board-column-type.enum"), exports);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./interface"), exports);
|
|
18
|
+
__exportStar(require("./enum"), exports);
|
|
19
|
+
__exportStar(require("./draw.type"), exports);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./requests"), exports);
|
|
18
|
+
__exportStar(require("./responses"), exports);
|
|
19
|
+
__exportStar(require("./type-message/response"), exports);
|
|
20
|
+
__exportStar(require("./type-message/api-error"), exports);
|
|
21
|
+
__exportStar(require("./type-message/base-paginate"), exports);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface IActivateUserServiceAbyssAdminBody {
|
|
2
|
+
userId: string;
|
|
3
|
+
}
|
|
4
|
+
export interface ISyncOrganizationAbyssAdminBody {
|
|
5
|
+
id: string;
|
|
6
|
+
name: string;
|
|
7
|
+
slug: string;
|
|
8
|
+
}
|
|
9
|
+
export interface ISyncProjectAbyssAdminBody {
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
userId: string;
|
|
13
|
+
organizationId: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { QueryPaginate } from '..';
|
|
2
|
+
export type IGetUploadPreSignedUrlAtlasDocumentParams = {
|
|
3
|
+
atlasId: string;
|
|
4
|
+
atlasPageId: string;
|
|
5
|
+
};
|
|
6
|
+
export type IGetUploadPreSignedUrlAtlasDocumentBody = {
|
|
7
|
+
name: string;
|
|
8
|
+
};
|
|
9
|
+
export type IGetAtlasDocumentParams = {
|
|
10
|
+
atlasId: string;
|
|
11
|
+
atlasDocumentId: string;
|
|
12
|
+
};
|
|
13
|
+
export type IDeleteAtlasDocumentParams = {
|
|
14
|
+
atlasId: string;
|
|
15
|
+
atlasDocumentId: string;
|
|
16
|
+
};
|
|
17
|
+
export type IPaginateAtlasDocumentParams = {
|
|
18
|
+
atlasId: string;
|
|
19
|
+
};
|
|
20
|
+
export type IPaginateAtlasDocumentQuery = QueryPaginate & {
|
|
21
|
+
atlasPageId?: string;
|
|
22
|
+
};
|
|
23
|
+
export type IListAtlasDocumentParams = {
|
|
24
|
+
atlasId: string;
|
|
25
|
+
atlasPageId: string;
|
|
26
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export interface IGetAtlasGroupParams {
|
|
2
|
+
atlasId: string;
|
|
3
|
+
atlasGroupId: string;
|
|
4
|
+
}
|
|
5
|
+
export interface IPaginateAtlasGroupParams {
|
|
6
|
+
atlasId: string;
|
|
7
|
+
}
|
|
8
|
+
export interface IPaginateAtlasGroupQuery {
|
|
9
|
+
name?: string;
|
|
10
|
+
parentAtlasGroupId?: string;
|
|
11
|
+
page?: number;
|
|
12
|
+
limit?: number;
|
|
13
|
+
}
|
|
14
|
+
export interface ICreateAtlasGroupParams {
|
|
15
|
+
atlasId: string;
|
|
16
|
+
}
|
|
17
|
+
export interface ICreateAtlasGroupBody {
|
|
18
|
+
name: string;
|
|
19
|
+
description?: string | null;
|
|
20
|
+
icon?: string | null;
|
|
21
|
+
color?: string | null;
|
|
22
|
+
parentAtlasGroupId?: string | null;
|
|
23
|
+
position?: number;
|
|
24
|
+
}
|
|
25
|
+
export interface IUpdateAtlasGroupParams {
|
|
26
|
+
atlasId: string;
|
|
27
|
+
atlasGroupId: string;
|
|
28
|
+
}
|
|
29
|
+
export interface IUpdateAtlasGroupBody {
|
|
30
|
+
name?: string;
|
|
31
|
+
description?: string | null;
|
|
32
|
+
icon?: string | null;
|
|
33
|
+
color?: string | null;
|
|
34
|
+
parentAtlasGroupId?: string | null;
|
|
35
|
+
position?: number;
|
|
36
|
+
}
|
|
37
|
+
export interface IDeleteAtlasGroupParams {
|
|
38
|
+
atlasId: string;
|
|
39
|
+
atlasGroupId: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
export interface IGetAtlasPageParams {
|
|
2
|
+
atlasId: string;
|
|
3
|
+
atlasPageId: string;
|
|
4
|
+
}
|
|
5
|
+
export interface IGetAtlasPageBySlugParams {
|
|
6
|
+
atlasId: string;
|
|
7
|
+
slug: string;
|
|
8
|
+
}
|
|
9
|
+
export interface IPaginateAtlasPageParams {
|
|
10
|
+
atlasId: string;
|
|
11
|
+
}
|
|
12
|
+
export interface IPaginateAtlasPageQuery {
|
|
13
|
+
title?: string;
|
|
14
|
+
slug?: string;
|
|
15
|
+
atlasGroupId?: string;
|
|
16
|
+
page?: number;
|
|
17
|
+
limit?: number;
|
|
18
|
+
}
|
|
19
|
+
export interface ICreateAtlasPageParams {
|
|
20
|
+
atlasId: string;
|
|
21
|
+
}
|
|
22
|
+
export interface ICreateAtlasPageBody {
|
|
23
|
+
title: string;
|
|
24
|
+
icon?: string | null;
|
|
25
|
+
color?: string | null;
|
|
26
|
+
atlasGroupId?: string | null;
|
|
27
|
+
position?: number;
|
|
28
|
+
content?: string;
|
|
29
|
+
}
|
|
30
|
+
export interface IUpdateAtlasPageParams {
|
|
31
|
+
atlasId: string;
|
|
32
|
+
atlasPageId: string;
|
|
33
|
+
}
|
|
34
|
+
export interface IUpdateAtlasPageBody {
|
|
35
|
+
title?: string;
|
|
36
|
+
icon?: string | null;
|
|
37
|
+
color?: string | null;
|
|
38
|
+
atlasGroupId?: string | null;
|
|
39
|
+
position?: number;
|
|
40
|
+
}
|
|
41
|
+
export interface IDeleteAtlasPageParams {
|
|
42
|
+
atlasId: string;
|
|
43
|
+
atlasPageId: string;
|
|
44
|
+
}
|
|
45
|
+
export interface IUpdateAtlasPageContentParams {
|
|
46
|
+
atlasId: string;
|
|
47
|
+
atlasPageId: string;
|
|
48
|
+
}
|
|
49
|
+
export interface IUpdateAtlasPageContentBody {
|
|
50
|
+
diff: string;
|
|
51
|
+
}
|
|
52
|
+
export interface IGetAtlasPageContentHistoryParams {
|
|
53
|
+
atlasId: string;
|
|
54
|
+
atlasPageId: string;
|
|
55
|
+
}
|
|
56
|
+
export interface IGetAtlasPageContentHistoryQuery {
|
|
57
|
+
page?: number;
|
|
58
|
+
limit?: number;
|
|
59
|
+
}
|
|
60
|
+
export interface IRestoreAtlasPageContentParams {
|
|
61
|
+
atlasId: string;
|
|
62
|
+
atlasPageId: string;
|
|
63
|
+
version: number;
|
|
64
|
+
}
|
|
65
|
+
export interface ISearchAtlasContentParams {
|
|
66
|
+
atlasId: string;
|
|
67
|
+
}
|
|
68
|
+
export interface ISearchAtlasContentQuery {
|
|
69
|
+
query: string;
|
|
70
|
+
page?: number;
|
|
71
|
+
limit?: number;
|
|
72
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface IGetAtlasPublicParams {
|
|
2
|
+
publicAccessToken: string;
|
|
3
|
+
}
|
|
4
|
+
export type ISSEAtlasPublicParams = {
|
|
5
|
+
publicAccessToken: string;
|
|
6
|
+
};
|
|
7
|
+
export interface IGetPageAtlasPublicParams {
|
|
8
|
+
publicAccessToken: string;
|
|
9
|
+
atlasPageId: string;
|
|
10
|
+
}
|
|
11
|
+
export interface ISearchContentAtlasPublicParams {
|
|
12
|
+
publicAccessToken: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ISearchContentAtlasPublicQuery {
|
|
15
|
+
query: string;
|
|
16
|
+
page?: number;
|
|
17
|
+
limit?: number;
|
|
18
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export interface IGetAtlasParams {
|
|
2
|
+
atlasId: string;
|
|
3
|
+
}
|
|
4
|
+
export interface IPaginateProjectAtlasParams {
|
|
5
|
+
projectId: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IPaginateAtlasQuery {
|
|
8
|
+
title?: string;
|
|
9
|
+
page?: number;
|
|
10
|
+
limit?: number;
|
|
11
|
+
}
|
|
12
|
+
export interface ICreateForProjectAtlasParams {
|
|
13
|
+
projectId: string;
|
|
14
|
+
}
|
|
15
|
+
export interface ICreateAtlasBody {
|
|
16
|
+
title: string;
|
|
17
|
+
description?: string | null;
|
|
18
|
+
}
|
|
19
|
+
export interface IUpdateAtlasParams {
|
|
20
|
+
atlasId: string;
|
|
21
|
+
}
|
|
22
|
+
export interface IUpdateAtlasBody {
|
|
23
|
+
title?: string;
|
|
24
|
+
description?: string | null;
|
|
25
|
+
enablePublicAccess?: boolean;
|
|
26
|
+
transferToProjectId?: string | null;
|
|
27
|
+
}
|
|
28
|
+
export interface IDeleteAtlasParams {
|
|
29
|
+
atlasId: string;
|
|
30
|
+
}
|
|
31
|
+
export type ISSEAtlasParams = {
|
|
32
|
+
atlasId: string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export type ICreateBoardCardChecklistParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardCardChecklistBody = {
|
|
6
|
+
title: string;
|
|
7
|
+
position: number;
|
|
8
|
+
};
|
|
9
|
+
export type IUpdateBoardCardChecklistParams = {
|
|
10
|
+
boardId: string;
|
|
11
|
+
boardCardId: string;
|
|
12
|
+
boardCardChecklistId: string;
|
|
13
|
+
};
|
|
14
|
+
export type IUpdateBoardCardChecklistBody = {
|
|
15
|
+
title?: string;
|
|
16
|
+
position?: number;
|
|
17
|
+
maskCompletedRows?: boolean;
|
|
18
|
+
};
|
|
19
|
+
export type IGetBoardCardChecklistParams = {
|
|
20
|
+
boardId: string;
|
|
21
|
+
boardCardId: string;
|
|
22
|
+
boardCardChecklistId: string;
|
|
23
|
+
};
|
|
24
|
+
export type IDeleteBoardCardChecklistParams = {
|
|
25
|
+
boardId: string;
|
|
26
|
+
boardCardId: string;
|
|
27
|
+
boardCardChecklistId: string;
|
|
28
|
+
};
|
|
29
|
+
export type IAddRowBoardCardChecklistParams = {
|
|
30
|
+
boardId: string;
|
|
31
|
+
boardCardId: string;
|
|
32
|
+
boardCardChecklistId: string;
|
|
33
|
+
};
|
|
34
|
+
export type IAddRowBoardCardChecklistBody = {
|
|
35
|
+
content: string;
|
|
36
|
+
position: number;
|
|
37
|
+
};
|
|
38
|
+
export type IRemoveRowBoardCardChecklistParams = {
|
|
39
|
+
boardId: string;
|
|
40
|
+
boardCardId: string;
|
|
41
|
+
boardCardChecklistId: string;
|
|
42
|
+
boardCardChecklistRowId: string;
|
|
43
|
+
};
|
|
44
|
+
export type IUpdateRowBoardCardChecklistParams = {
|
|
45
|
+
boardId: string;
|
|
46
|
+
boardCardId: string;
|
|
47
|
+
boardCardChecklistId: string;
|
|
48
|
+
boardCardChecklistRowId: string;
|
|
49
|
+
};
|
|
50
|
+
export type IUpdateRowBoardCardChecklistBody = {
|
|
51
|
+
content?: string;
|
|
52
|
+
completed?: boolean;
|
|
53
|
+
position?: number;
|
|
54
|
+
boardCardChecklistId?: string;
|
|
55
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type ICreateBoardCardCommentParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardCardCommentBody = {
|
|
6
|
+
content: string;
|
|
7
|
+
};
|
|
8
|
+
export type IUpdateBoardCardCommentParams = {
|
|
9
|
+
boardId: string;
|
|
10
|
+
boardCardId: string;
|
|
11
|
+
boardCardCommentId: string;
|
|
12
|
+
};
|
|
13
|
+
export type IUpdateBoardCardCommentBody = {
|
|
14
|
+
content?: string;
|
|
15
|
+
};
|
|
16
|
+
export type IGetBoardCardCommentParams = {
|
|
17
|
+
boardId: string;
|
|
18
|
+
boardCardId: string;
|
|
19
|
+
boardCardCommentId: string;
|
|
20
|
+
};
|
|
21
|
+
export type IDeleteBoardCardCommentParams = {
|
|
22
|
+
boardId: string;
|
|
23
|
+
boardCardId: string;
|
|
24
|
+
boardCardCommentId: string;
|
|
25
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type IGetUploadPreSignedUrlBoardCardDocumentParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type IGetUploadPreSignedUrlBoardCardDocumentBody = {
|
|
6
|
+
name: string;
|
|
7
|
+
};
|
|
8
|
+
export type IGetBoardCardDocumentParams = {
|
|
9
|
+
boardId: string;
|
|
10
|
+
boardCardId: string;
|
|
11
|
+
boardCardDocumentId: string;
|
|
12
|
+
};
|
|
13
|
+
export type IDeleteBoardCardDocumentParams = {
|
|
14
|
+
boardId: string;
|
|
15
|
+
boardCardId: string;
|
|
16
|
+
boardCardDocumentId: string;
|
|
17
|
+
};
|
|
18
|
+
export type ICloudImportBoardCardDocumentParams = {
|
|
19
|
+
boardId: string;
|
|
20
|
+
boardCardId: string;
|
|
21
|
+
};
|
|
22
|
+
export type ICloudImportBoardCardDocumentBody = {
|
|
23
|
+
cloudId: string;
|
|
24
|
+
fileId: string[];
|
|
25
|
+
};
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
export type ICreateBoardCardParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardColumnId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardCardBody = {
|
|
6
|
+
title: string;
|
|
7
|
+
position: number;
|
|
8
|
+
description?: string | null;
|
|
9
|
+
weight?: number;
|
|
10
|
+
startDate?: Date;
|
|
11
|
+
endDate?: Date;
|
|
12
|
+
};
|
|
13
|
+
export type IUpdateBoardCardParams = {
|
|
14
|
+
boardId: string;
|
|
15
|
+
boardCardId: string;
|
|
16
|
+
};
|
|
17
|
+
export type IUpdateBoardCardBody = {
|
|
18
|
+
title?: string;
|
|
19
|
+
description?: string | null;
|
|
20
|
+
position?: number;
|
|
21
|
+
boardColumnId?: string;
|
|
22
|
+
weight?: number;
|
|
23
|
+
startDate?: Date | null;
|
|
24
|
+
endDate?: Date | null;
|
|
25
|
+
bannerId?: string | null;
|
|
26
|
+
};
|
|
27
|
+
export type IGetBoardCardParams = {
|
|
28
|
+
boardId: string;
|
|
29
|
+
boardCardId: string;
|
|
30
|
+
};
|
|
31
|
+
export type ISSEBoardCardParams = {
|
|
32
|
+
boardId: string;
|
|
33
|
+
boardCardId: string;
|
|
34
|
+
};
|
|
35
|
+
export type IDeleteBoardCardParams = {
|
|
36
|
+
boardId: string;
|
|
37
|
+
boardCardId: string;
|
|
38
|
+
};
|
|
39
|
+
export type IRestoreBoardCardParams = {
|
|
40
|
+
boardId: string;
|
|
41
|
+
boardCardId: string;
|
|
42
|
+
};
|
|
43
|
+
export type IRestoreBoardCardBody = {
|
|
44
|
+
boardColumnId: string;
|
|
45
|
+
};
|
|
46
|
+
export type IAddMemberBoardCardParams = {
|
|
47
|
+
boardId: string;
|
|
48
|
+
boardCardId: string;
|
|
49
|
+
userId: string;
|
|
50
|
+
};
|
|
51
|
+
export type IRemoveMemberBoardCardParams = {
|
|
52
|
+
boardId: string;
|
|
53
|
+
boardCardId: string;
|
|
54
|
+
userId: string;
|
|
55
|
+
};
|
|
56
|
+
export type IGetAllBoardCardParams = {
|
|
57
|
+
boardId: string;
|
|
58
|
+
};
|
|
59
|
+
export type IGetAllBoardCardQuery = {
|
|
60
|
+
archived?: boolean;
|
|
61
|
+
};
|
|
62
|
+
export type IMoveToBoardBoardCardParams = {
|
|
63
|
+
boardId: string;
|
|
64
|
+
boardCardId: string;
|
|
65
|
+
};
|
|
66
|
+
export type IMoveToBoardBoardCardBody = {
|
|
67
|
+
boardColumnId: string;
|
|
68
|
+
boardId: string;
|
|
69
|
+
};
|
|
70
|
+
export type ISearchBoardCardParams = {
|
|
71
|
+
boardId: string;
|
|
72
|
+
};
|
|
73
|
+
export type ISearchBoardCardQuery = {
|
|
74
|
+
query?: string;
|
|
75
|
+
page?: number;
|
|
76
|
+
limit?: number;
|
|
77
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { BoardColumnType } from '../../../enum';
|
|
2
|
+
export type ICreateBoardColumnParams = {
|
|
3
|
+
boardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardColumnBody = {
|
|
6
|
+
title: string;
|
|
7
|
+
position: number;
|
|
8
|
+
type?: BoardColumnType;
|
|
9
|
+
};
|
|
10
|
+
export type IUpdateBoardColumnParams = {
|
|
11
|
+
boardId: string;
|
|
12
|
+
boardColumnId: string;
|
|
13
|
+
};
|
|
14
|
+
export type IUpdateBoardColumnBody = {
|
|
15
|
+
title?: string;
|
|
16
|
+
position?: number;
|
|
17
|
+
type?: BoardColumnType;
|
|
18
|
+
};
|
|
19
|
+
export type IGetBoardColumnParams = {
|
|
20
|
+
boardId: string;
|
|
21
|
+
boardColumnId: string;
|
|
22
|
+
};
|
|
23
|
+
export type IDeleteBoardColumnParams = {
|
|
24
|
+
boardId: string;
|
|
25
|
+
boardColumnId: string;
|
|
26
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export type ICreateBoardLabelParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
};
|
|
4
|
+
export type ICreateBoardLabelBody = {
|
|
5
|
+
name: string;
|
|
6
|
+
color: string;
|
|
7
|
+
};
|
|
8
|
+
export type IUpdateBoardLabelParams = {
|
|
9
|
+
boardId: string;
|
|
10
|
+
boardLabelId: string;
|
|
11
|
+
};
|
|
12
|
+
export type IUpdateBoardLabelBody = {
|
|
13
|
+
name?: string;
|
|
14
|
+
color?: string;
|
|
15
|
+
};
|
|
16
|
+
export type IGetBoardLabelParams = {
|
|
17
|
+
boardId: string;
|
|
18
|
+
boardLabelId: string;
|
|
19
|
+
};
|
|
20
|
+
export type IDeleteBoardLabelParams = {
|
|
21
|
+
boardId: string;
|
|
22
|
+
boardLabelId: string;
|
|
23
|
+
};
|
|
24
|
+
export type IAddBoardLabelParams = {
|
|
25
|
+
boardId: string;
|
|
26
|
+
boardCardId: string;
|
|
27
|
+
boardLabelId: string;
|
|
28
|
+
};
|
|
29
|
+
export type IRemoveBoardLabelParams = {
|
|
30
|
+
boardId: string;
|
|
31
|
+
boardCardId: string;
|
|
32
|
+
boardLabelId: string;
|
|
33
|
+
};
|
|
34
|
+
export type IListBoardLabelParams = {
|
|
35
|
+
boardId: string;
|
|
36
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type ICreateForProjectBoardParams = {
|
|
2
|
+
projectId: string;
|
|
3
|
+
};
|
|
4
|
+
export type ICreateBoardBody = {
|
|
5
|
+
title: string;
|
|
6
|
+
};
|
|
7
|
+
export type IUpdateBoardParams = {
|
|
8
|
+
boardId: string;
|
|
9
|
+
};
|
|
10
|
+
export type IUpdateBoardBody = {
|
|
11
|
+
title?: string;
|
|
12
|
+
archived?: boolean;
|
|
13
|
+
};
|
|
14
|
+
export type IGetBoardParams = {
|
|
15
|
+
boardId: string;
|
|
16
|
+
};
|
|
17
|
+
export type ISSEBoardParams = {
|
|
18
|
+
boardId: string;
|
|
19
|
+
};
|
|
20
|
+
export type IGetBySlugBoardParams = {
|
|
21
|
+
slug: string;
|
|
22
|
+
};
|
|
23
|
+
export type IDeleteBoardParams = {
|
|
24
|
+
boardId: string;
|
|
25
|
+
};
|