@abyss-project/tools 1.1.1 → 1.3.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/dist/api/beam.api.d.ts +2 -1
- package/dist/api/beam.api.js +10 -4
- package/dist/api/beam.api.js.map +1 -1
- package/dist/api/extraction-plan-preset.api.js +1 -1
- package/dist/api/extraction-plan-preset.api.js.map +1 -1
- package/dist/api/extraction-settings.api.js +1 -1
- package/dist/api/extraction-settings.api.js.map +1 -1
- package/dist/api/extraction.api.d.ts +5 -5
- package/dist/api/extraction.api.js +22 -5
- package/dist/api/extraction.api.js.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/types/enum/beam.enum.d.ts +4 -0
- package/dist/types/enum/beam.enum.js +6 -1
- package/dist/types/enum/beam.enum.js.map +1 -1
- package/dist/types/interface/api/requests/beam.request.d.ts +16 -0
- package/dist/types/interface/api/requests/extraction.request.d.ts +8 -0
- package/dist/types/interface/api/responses/beam.response.d.ts +23 -1
- package/dist/types/interface/api/responses/extraction.response.d.ts +6 -0
- package/dist/types/interface/models/beam.dto.d.ts +13 -1
- package/dist/types/interface/models/extraction.dto.d.ts +8 -1
- package/dist/types/interface/models/extraction.dto.js.map +1 -1
- package/dist/utils/shape.utils.js +18 -18
- package/package.json +14 -9
- package/src/api/abyss.admin.api.ts +54 -54
- package/src/api/atlas-document.api.ts +68 -68
- package/src/api/atlas-group.api.ts +69 -69
- package/src/api/atlas-page.api.ts +124 -124
- package/src/api/atlas.api.ts +103 -103
- package/src/api/atlas.public.api.ts +42 -42
- package/src/api/beam.api.ts +29 -4
- package/src/api/board-card-checklist.api.ts +99 -99
- package/src/api/board-card-comment.api.ts +57 -57
- package/src/api/board-card-document.api.ts +57 -57
- package/src/api/board-card.api.ts +137 -137
- package/src/api/board-column.api.ts +54 -54
- package/src/api/board-label.api.ts +87 -87
- package/src/api/board.api.ts +122 -122
- package/src/api/draw.api.ts +97 -97
- package/src/api/draw.public.api.ts +48 -48
- package/src/api/extraction-plan-preset.api.ts +1 -1
- package/src/api/extraction-settings.api.ts +1 -1
- package/src/api/extraction.api.ts +58 -18
- package/src/api/memo.api.ts +97 -97
- package/src/api/metrics.api.ts +27 -27
- package/src/api/monitor.api.ts +6 -6
- package/src/api/organization.api.ts +14 -14
- package/src/api/retrospective-card.api.ts +74 -74
- package/src/api/retrospective-member.api.ts +54 -54
- package/src/api/retrospective-section.api.ts +74 -74
- package/src/api/retrospective.api.ts +124 -124
- package/src/api/retrospective.public.api.ts +147 -147
- package/src/api/short-link.admin.api.ts +39 -39
- package/src/api/short-link.api.ts +125 -125
- package/src/api/short-link.public.api.ts +60 -60
- package/src/api/tag.api.ts +72 -72
- package/src/api/tests/beam.api.spec.ts +64 -0
- package/src/constants/atlas.constants.ts +2 -2
- package/src/constants/board.constants.ts +7 -7
- package/src/constants/memo.constants.ts +3 -3
- package/src/constants/short-link.constants.ts +11 -11
- package/src/constants/tag.constants.ts +3 -3
- package/src/index.ts +10 -1
- package/src/server-sent-events/index.ts +13 -13
- package/src/server-sent-events/protocols/atlas/atlas.sse-protocol.ts +90 -90
- package/src/server-sent-events/protocols/atlas/index.ts +1 -1
- package/src/server-sent-events/protocols/board/board.sse-protocol.ts +115 -115
- package/src/server-sent-events/protocols/board/index.ts +1 -1
- package/src/server-sent-events/protocols/board-card/board-card.sse-protocol.ts +26 -26
- package/src/server-sent-events/protocols/board-card/index.ts +1 -1
- package/src/server-sent-events/protocols/index.ts +26 -26
- package/src/server-sent-events/protocols/retrospective/index.ts +1 -1
- package/src/server-sent-events/protocols/retrospective/retrospective.sse-protocol.ts +92 -92
- package/src/server-sent-events/server-sent-events.manager.ts +73 -73
- package/src/types/draw.type.ts +173 -173
- package/src/types/enum/api-error.enum.ts +23 -23
- package/src/types/enum/beam.enum.ts +8 -0
- package/src/types/enum/board-activity.enum.ts +189 -189
- package/src/types/enum/board-column-type.enum.ts +6 -6
- package/src/types/enum/pdf-operation.enum.ts +98 -98
- package/src/types/enum/rcb-bank.enum.ts +137 -137
- package/src/types/index.ts +5 -5
- package/src/types/interface/api/index.ts +5 -5
- package/src/types/interface/api/requests/abyss.admin.request.ts +20 -20
- package/src/types/interface/api/requests/atlas-document.request.ts +32 -32
- package/src/types/interface/api/requests/atlas-group.request.ts +45 -45
- package/src/types/interface/api/requests/atlas-page.request.ts +84 -84
- package/src/types/interface/api/requests/atlas.public.request.ts +21 -21
- package/src/types/interface/api/requests/atlas.request.ts +52 -52
- package/src/types/interface/api/requests/beam.request.ts +27 -2
- package/src/types/interface/api/requests/board-card-checklist.request.ts +61 -61
- package/src/types/interface/api/requests/board-card-comment.request.ts +28 -28
- package/src/types/interface/api/requests/board-card-document.request.ts +29 -29
- package/src/types/interface/api/requests/board-card.request.ts +86 -86
- package/src/types/interface/api/requests/board-column.request.ts +30 -30
- package/src/types/interface/api/requests/board-label.request.ts +42 -42
- package/src/types/interface/api/requests/board.request.ts +61 -61
- package/src/types/interface/api/requests/draw.public.request.ts +20 -20
- package/src/types/interface/api/requests/draw.request.ts +49 -49
- package/src/types/interface/api/requests/extraction.request.ts +22 -0
- package/src/types/interface/api/requests/memo.request.ts +49 -49
- package/src/types/interface/api/requests/metrics.request.ts +7 -7
- package/src/types/interface/api/requests/retrospective-card.request.ts +38 -38
- package/src/types/interface/api/requests/retrospective-member.request.ts +20 -20
- package/src/types/interface/api/requests/retrospective-section.request.ts +43 -43
- package/src/types/interface/api/requests/retrospective.public.request.ts +84 -84
- package/src/types/interface/api/requests/retrospective.request.ts +59 -59
- package/src/types/interface/api/requests/short-link.admin.request.ts +35 -35
- package/src/types/interface/api/requests/short-link.public.request.ts +40 -40
- package/src/types/interface/api/requests/short-link.request.ts +71 -71
- package/src/types/interface/api/requests/tag.request.ts +54 -54
- package/src/types/interface/api/requests/transfer.request.ts +3 -3
- package/src/types/interface/api/responses/abyss.admin.response.ts +28 -28
- package/src/types/interface/api/responses/atlas-document.response.ts +24 -24
- package/src/types/interface/api/responses/atlas-group.response.ts +23 -23
- package/src/types/interface/api/responses/atlas-page.response.ts +53 -53
- package/src/types/interface/api/responses/atlas.public.response.ts +21 -21
- package/src/types/interface/api/responses/atlas.response.ts +32 -32
- package/src/types/interface/api/responses/beam.response.ts +30 -1
- package/src/types/interface/api/responses/board-card-checklist.response.ts +31 -31
- package/src/types/interface/api/responses/board-card-comment.response.ts +20 -20
- package/src/types/interface/api/responses/board-card-document.response.ts +21 -21
- package/src/types/interface/api/responses/board-card.response.ts +55 -55
- package/src/types/interface/api/responses/board-column.response.ts +20 -20
- package/src/types/interface/api/responses/board-label.response.ts +31 -31
- package/src/types/interface/api/responses/board.response.ts +81 -81
- package/src/types/interface/api/responses/count.response.ts +9 -9
- package/src/types/interface/api/responses/draw.public.response.ts +22 -22
- package/src/types/interface/api/responses/draw.response.ts +32 -32
- package/src/types/interface/api/responses/enriched-paginate.response.ts +11 -11
- package/src/types/interface/api/responses/extraction.response.ts +19 -2
- package/src/types/interface/api/responses/memo.response.ts +32 -32
- package/src/types/interface/api/responses/metrics.response.ts +22 -22
- package/src/types/interface/api/responses/monitor.response.ts +8 -8
- package/src/types/interface/api/responses/recent.response.ts +18 -18
- package/src/types/interface/api/responses/retrospective-card.response.ts +23 -23
- package/src/types/interface/api/responses/retrospective-member.response.ts +22 -22
- package/src/types/interface/api/responses/retrospective-section.response.ts +23 -23
- package/src/types/interface/api/responses/retrospective.public.response.ts +57 -57
- package/src/types/interface/api/responses/retrospective.response.ts +32 -32
- package/src/types/interface/api/responses/short-link.admin.response.ts +21 -21
- package/src/types/interface/api/responses/short-link.public.response.ts +26 -26
- package/src/types/interface/api/responses/short-link.response.ts +38 -38
- package/src/types/interface/api/responses/tag.response.ts +38 -38
- package/src/types/interface/api/responses/transfer.response.ts +14 -14
- package/src/types/interface/api/type-message/api-error.ts +7 -7
- package/src/types/interface/api/type-message/base-paginate.ts +11 -11
- package/src/types/interface/api/type-message/response.ts +6 -6
- package/src/types/interface/index.ts +2 -2
- package/src/types/interface/models/atlas-document.dto.ts +22 -22
- package/src/types/interface/models/atlas-group.dto.ts +21 -21
- package/src/types/interface/models/atlas-page-content.dto.ts +17 -17
- package/src/types/interface/models/atlas-page.dto.ts +26 -26
- package/src/types/interface/models/atlas.dto.ts +34 -34
- package/src/types/interface/models/beam.dto.ts +20 -1
- package/src/types/interface/models/board-activity.dto.ts +20 -20
- package/src/types/interface/models/board-card-checklist-row.dto.ts +14 -14
- package/src/types/interface/models/board-card-checklist.dto.ts +16 -16
- package/src/types/interface/models/board-card-comment.dto.ts +15 -15
- package/src/types/interface/models/board-card-document.dto.ts +22 -22
- package/src/types/interface/models/board-card-label.dto.ts +14 -14
- package/src/types/interface/models/board-card-member.dto.ts +14 -14
- package/src/types/interface/models/board-card.dto.ts +37 -37
- package/src/types/interface/models/board-column.dto.ts +17 -17
- package/src/types/interface/models/board-label.dto.ts +13 -13
- package/src/types/interface/models/board.dto.ts +33 -33
- package/src/types/interface/models/content-share.dto.ts +16 -16
- package/src/types/interface/models/draw.dto.ts +30 -30
- package/src/types/interface/models/extraction.dto.ts +24 -6
- package/src/types/interface/models/memo.dto.ts +23 -23
- package/src/types/interface/models/project.dto.ts +25 -25
- package/src/types/interface/models/retrospective-card.dto.ts +17 -17
- package/src/types/interface/models/retrospective-member.dto.ts +15 -15
- package/src/types/interface/models/retrospective-section.dto.ts +16 -16
- package/src/types/interface/models/retrospective.dto.ts +32 -32
- package/src/types/interface/models/short-link-click.dto.ts +33 -33
- package/src/types/interface/models/short-link.dto.ts +49 -49
- package/src/types/interface/models/tag.dto.ts +26 -26
- package/src/types/interface/models/team.dto.ts +12 -12
- package/src/types/interface/models/user.dto.ts +26 -26
- package/src/utils/board.utils.ts +57 -57
- package/src/utils/enum.utils.ts +5 -5
- package/src/utils/error.utils.ts +30 -30
- package/src/utils/icons.utils.ts +96 -96
- package/src/utils/shape.utils.ts +292 -292
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
export interface IGetAtlasPageParams {
|
|
2
|
-
atlasId: string;
|
|
3
|
-
atlasPageId: string;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
export interface IGetAtlasPageBySlugParams {
|
|
7
|
-
atlasId: string;
|
|
8
|
-
slug: string;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface IPaginateAtlasPageParams {
|
|
12
|
-
atlasId: string;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface IPaginateAtlasPageQuery {
|
|
16
|
-
title?: string;
|
|
17
|
-
slug?: string;
|
|
18
|
-
atlasGroupId?: string;
|
|
19
|
-
page?: number;
|
|
20
|
-
limit?: number;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export interface ICreateAtlasPageParams {
|
|
24
|
-
atlasId: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface ICreateAtlasPageBody {
|
|
28
|
-
title: string;
|
|
29
|
-
icon?: string | null;
|
|
30
|
-
color?: string | null;
|
|
31
|
-
atlasGroupId?: string | null;
|
|
32
|
-
position?: number;
|
|
33
|
-
content?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export interface IUpdateAtlasPageParams {
|
|
37
|
-
atlasId: string;
|
|
38
|
-
atlasPageId: string;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export interface IUpdateAtlasPageBody {
|
|
42
|
-
title?: string;
|
|
43
|
-
icon?: string | null;
|
|
44
|
-
color?: string | null;
|
|
45
|
-
atlasGroupId?: string | null;
|
|
46
|
-
position?: number;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export interface IDeleteAtlasPageParams {
|
|
50
|
-
atlasId: string;
|
|
51
|
-
atlasPageId: string;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export interface IUpdateAtlasPageContentParams {
|
|
55
|
-
atlasId: string;
|
|
56
|
-
atlasPageId: string;
|
|
57
|
-
}
|
|
58
|
-
export interface IUpdateAtlasPageContentBody {
|
|
59
|
-
diff: string;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
export interface IGetAtlasPageContentHistoryParams {
|
|
63
|
-
atlasId: string;
|
|
64
|
-
atlasPageId: string;
|
|
65
|
-
}
|
|
66
|
-
export interface IGetAtlasPageContentHistoryQuery {
|
|
67
|
-
page?: number;
|
|
68
|
-
limit?: number;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export interface IRestoreAtlasPageContentParams {
|
|
72
|
-
atlasId: string;
|
|
73
|
-
atlasPageId: string;
|
|
74
|
-
version: number;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export interface ISearchAtlasContentParams {
|
|
78
|
-
atlasId: string;
|
|
79
|
-
}
|
|
80
|
-
export interface ISearchAtlasContentQuery {
|
|
81
|
-
query: string;
|
|
82
|
-
page?: number;
|
|
83
|
-
limit?: number;
|
|
84
|
-
}
|
|
1
|
+
export interface IGetAtlasPageParams {
|
|
2
|
+
atlasId: string;
|
|
3
|
+
atlasPageId: string;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
export interface IGetAtlasPageBySlugParams {
|
|
7
|
+
atlasId: string;
|
|
8
|
+
slug: string;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface IPaginateAtlasPageParams {
|
|
12
|
+
atlasId: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface IPaginateAtlasPageQuery {
|
|
16
|
+
title?: string;
|
|
17
|
+
slug?: string;
|
|
18
|
+
atlasGroupId?: string;
|
|
19
|
+
page?: number;
|
|
20
|
+
limit?: number;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface ICreateAtlasPageParams {
|
|
24
|
+
atlasId: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface ICreateAtlasPageBody {
|
|
28
|
+
title: string;
|
|
29
|
+
icon?: string | null;
|
|
30
|
+
color?: string | null;
|
|
31
|
+
atlasGroupId?: string | null;
|
|
32
|
+
position?: number;
|
|
33
|
+
content?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface IUpdateAtlasPageParams {
|
|
37
|
+
atlasId: string;
|
|
38
|
+
atlasPageId: string;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface IUpdateAtlasPageBody {
|
|
42
|
+
title?: string;
|
|
43
|
+
icon?: string | null;
|
|
44
|
+
color?: string | null;
|
|
45
|
+
atlasGroupId?: string | null;
|
|
46
|
+
position?: number;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface IDeleteAtlasPageParams {
|
|
50
|
+
atlasId: string;
|
|
51
|
+
atlasPageId: string;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export interface IUpdateAtlasPageContentParams {
|
|
55
|
+
atlasId: string;
|
|
56
|
+
atlasPageId: string;
|
|
57
|
+
}
|
|
58
|
+
export interface IUpdateAtlasPageContentBody {
|
|
59
|
+
diff: string;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export interface IGetAtlasPageContentHistoryParams {
|
|
63
|
+
atlasId: string;
|
|
64
|
+
atlasPageId: string;
|
|
65
|
+
}
|
|
66
|
+
export interface IGetAtlasPageContentHistoryQuery {
|
|
67
|
+
page?: number;
|
|
68
|
+
limit?: number;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface IRestoreAtlasPageContentParams {
|
|
72
|
+
atlasId: string;
|
|
73
|
+
atlasPageId: string;
|
|
74
|
+
version: number;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface ISearchAtlasContentParams {
|
|
78
|
+
atlasId: string;
|
|
79
|
+
}
|
|
80
|
+
export interface ISearchAtlasContentQuery {
|
|
81
|
+
query: string;
|
|
82
|
+
page?: number;
|
|
83
|
+
limit?: number;
|
|
84
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export interface IGetAtlasPublicParams {
|
|
2
|
-
publicAccessToken: string;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
export type ISSEAtlasPublicParams = {
|
|
6
|
-
publicAccessToken: string;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export interface IGetPageAtlasPublicParams {
|
|
10
|
-
publicAccessToken: string;
|
|
11
|
-
atlasPageId: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface ISearchContentAtlasPublicParams {
|
|
15
|
-
publicAccessToken: string;
|
|
16
|
-
}
|
|
17
|
-
export interface ISearchContentAtlasPublicQuery {
|
|
18
|
-
query: string;
|
|
19
|
-
page?: number;
|
|
20
|
-
limit?: number;
|
|
21
|
-
}
|
|
1
|
+
export interface IGetAtlasPublicParams {
|
|
2
|
+
publicAccessToken: string;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
export type ISSEAtlasPublicParams = {
|
|
6
|
+
publicAccessToken: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export interface IGetPageAtlasPublicParams {
|
|
10
|
+
publicAccessToken: string;
|
|
11
|
+
atlasPageId: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export interface ISearchContentAtlasPublicParams {
|
|
15
|
+
publicAccessToken: string;
|
|
16
|
+
}
|
|
17
|
+
export interface ISearchContentAtlasPublicQuery {
|
|
18
|
+
query: string;
|
|
19
|
+
page?: number;
|
|
20
|
+
limit?: number;
|
|
21
|
+
}
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
import { ContentShareScope } from '../../../enum';
|
|
2
|
-
import { QueryPaginate } from '../type-message/base-paginate';
|
|
3
|
-
|
|
4
|
-
export interface IGetAtlasParams {
|
|
5
|
-
atlasId: string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export interface IPaginateProjectAtlasParams {
|
|
9
|
-
projectId: string;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
export type IPaginateAtlasQuery = {
|
|
13
|
-
title?: string;
|
|
14
|
-
scope?: ContentShareScope;
|
|
15
|
-
teamId?: string;
|
|
16
|
-
projectId?: string;
|
|
17
|
-
adminView?: boolean;
|
|
18
|
-
sharedWithMe?: boolean;
|
|
19
|
-
} & QueryPaginate;
|
|
20
|
-
|
|
21
|
-
export interface ICreateForOrganizationAtlasParams {
|
|
22
|
-
organizationId: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface ICreateAtlasBody {
|
|
26
|
-
title: string;
|
|
27
|
-
description?: string | null;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export interface IUpdateAtlasParams {
|
|
31
|
-
atlasId: string;
|
|
32
|
-
}
|
|
33
|
-
export interface IUpdateAtlasBody {
|
|
34
|
-
title?: string;
|
|
35
|
-
description?: string | null;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export interface IDeleteAtlasParams {
|
|
39
|
-
atlasId: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export type ISSEAtlasParams = {
|
|
43
|
-
atlasId: string;
|
|
44
|
-
};
|
|
45
|
-
|
|
46
|
-
export type IPaginateOrganizationAtlasParams = {
|
|
47
|
-
organizationId: string;
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
export type ICountOrganizationAtlasParams = {
|
|
51
|
-
organizationId: string;
|
|
52
|
-
};
|
|
1
|
+
import { ContentShareScope } from '../../../enum';
|
|
2
|
+
import { QueryPaginate } from '../type-message/base-paginate';
|
|
3
|
+
|
|
4
|
+
export interface IGetAtlasParams {
|
|
5
|
+
atlasId: string;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export interface IPaginateProjectAtlasParams {
|
|
9
|
+
projectId: string;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export type IPaginateAtlasQuery = {
|
|
13
|
+
title?: string;
|
|
14
|
+
scope?: ContentShareScope;
|
|
15
|
+
teamId?: string;
|
|
16
|
+
projectId?: string;
|
|
17
|
+
adminView?: boolean;
|
|
18
|
+
sharedWithMe?: boolean;
|
|
19
|
+
} & QueryPaginate;
|
|
20
|
+
|
|
21
|
+
export interface ICreateForOrganizationAtlasParams {
|
|
22
|
+
organizationId: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface ICreateAtlasBody {
|
|
26
|
+
title: string;
|
|
27
|
+
description?: string | null;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface IUpdateAtlasParams {
|
|
31
|
+
atlasId: string;
|
|
32
|
+
}
|
|
33
|
+
export interface IUpdateAtlasBody {
|
|
34
|
+
title?: string;
|
|
35
|
+
description?: string | null;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface IDeleteAtlasParams {
|
|
39
|
+
atlasId: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export type ISSEAtlasParams = {
|
|
43
|
+
atlasId: string;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type IPaginateOrganizationAtlasParams = {
|
|
47
|
+
organizationId: string;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type ICountOrganizationAtlasParams = {
|
|
51
|
+
organizationId: string;
|
|
52
|
+
};
|
|
@@ -105,14 +105,26 @@ export interface IUnlockBeamPublicBody {
|
|
|
105
105
|
password: string;
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
// Management lifecycle (B4): renew/reactivate
|
|
109
|
-
//
|
|
108
|
+
// Management lifecycle (B4): renew/reactivate push expiresAt forward and
|
|
109
|
+
// reactivate the transfer server-side. `days` optionally requests the extension
|
|
110
|
+
// window; the API clamps it to the tier cap (7 days for anonymous transfers,
|
|
111
|
+
// the plan's TOOLS_BEAM_EXPIRY_MAX_DAYS for owned ones; default 7).
|
|
110
112
|
export interface IRenewBeamParams {
|
|
111
113
|
beamId: string;
|
|
114
|
+
days?: number;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface IRenewBeamBody {
|
|
118
|
+
days?: number;
|
|
112
119
|
}
|
|
113
120
|
|
|
114
121
|
export interface IReactivateBeamParams {
|
|
115
122
|
beamId: string;
|
|
123
|
+
days?: number;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export interface IReactivateBeamBody {
|
|
127
|
+
days?: number;
|
|
116
128
|
}
|
|
117
129
|
|
|
118
130
|
// Sharing (B4): a MANAGE holder grants a content_share (BEAM content type) on the
|
|
@@ -150,3 +162,16 @@ export interface IAddRecipientsBeamBody {
|
|
|
150
162
|
export interface IListRecipientsBeamParams {
|
|
151
163
|
beamId: string;
|
|
152
164
|
}
|
|
165
|
+
|
|
166
|
+
// Download stats (owner view): per-day series over the last `days` days plus the
|
|
167
|
+
// paginated recent-event feed (limit/offset, newest first). Defaults are applied
|
|
168
|
+
// server-side (days=30, limit=50, offset=0).
|
|
169
|
+
export interface IGetBeamStatsParams {
|
|
170
|
+
beamId: string;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface IGetBeamStatsQuery {
|
|
174
|
+
days?: number;
|
|
175
|
+
limit?: number;
|
|
176
|
+
offset?: number;
|
|
177
|
+
}
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
export type ICreateBoardCardChecklistParams = {
|
|
2
|
-
boardId: string;
|
|
3
|
-
boardCardId: string;
|
|
4
|
-
};
|
|
5
|
-
export type ICreateBoardCardChecklistBody = {
|
|
6
|
-
title: string;
|
|
7
|
-
position: number;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export type IUpdateBoardCardChecklistParams = {
|
|
11
|
-
boardId: string;
|
|
12
|
-
boardCardId: string;
|
|
13
|
-
boardCardChecklistId: string;
|
|
14
|
-
};
|
|
15
|
-
export type IUpdateBoardCardChecklistBody = {
|
|
16
|
-
title?: string;
|
|
17
|
-
position?: number;
|
|
18
|
-
maskCompletedRows?: boolean;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export type IGetBoardCardChecklistParams = {
|
|
22
|
-
boardId: string;
|
|
23
|
-
boardCardId: string;
|
|
24
|
-
boardCardChecklistId: string;
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
export type IDeleteBoardCardChecklistParams = {
|
|
28
|
-
boardId: string;
|
|
29
|
-
boardCardId: string;
|
|
30
|
-
boardCardChecklistId: string;
|
|
31
|
-
};
|
|
32
|
-
|
|
33
|
-
export type IAddRowBoardCardChecklistParams = {
|
|
34
|
-
boardId: string;
|
|
35
|
-
boardCardId: string;
|
|
36
|
-
boardCardChecklistId: string;
|
|
37
|
-
};
|
|
38
|
-
export type IAddRowBoardCardChecklistBody = {
|
|
39
|
-
content: string;
|
|
40
|
-
position: number;
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
export type IRemoveRowBoardCardChecklistParams = {
|
|
44
|
-
boardId: string;
|
|
45
|
-
boardCardId: string;
|
|
46
|
-
boardCardChecklistId: string;
|
|
47
|
-
boardCardChecklistRowId: string;
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
export type IUpdateRowBoardCardChecklistParams = {
|
|
51
|
-
boardId: string;
|
|
52
|
-
boardCardId: string;
|
|
53
|
-
boardCardChecklistId: string;
|
|
54
|
-
boardCardChecklistRowId: string;
|
|
55
|
-
};
|
|
56
|
-
export type IUpdateRowBoardCardChecklistBody = {
|
|
57
|
-
content?: string;
|
|
58
|
-
completed?: boolean;
|
|
59
|
-
position?: number;
|
|
60
|
-
boardCardChecklistId?: string;
|
|
61
|
-
};
|
|
1
|
+
export type ICreateBoardCardChecklistParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardCardChecklistBody = {
|
|
6
|
+
title: string;
|
|
7
|
+
position: number;
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
export type IUpdateBoardCardChecklistParams = {
|
|
11
|
+
boardId: string;
|
|
12
|
+
boardCardId: string;
|
|
13
|
+
boardCardChecklistId: string;
|
|
14
|
+
};
|
|
15
|
+
export type IUpdateBoardCardChecklistBody = {
|
|
16
|
+
title?: string;
|
|
17
|
+
position?: number;
|
|
18
|
+
maskCompletedRows?: boolean;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type IGetBoardCardChecklistParams = {
|
|
22
|
+
boardId: string;
|
|
23
|
+
boardCardId: string;
|
|
24
|
+
boardCardChecklistId: string;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
export type IDeleteBoardCardChecklistParams = {
|
|
28
|
+
boardId: string;
|
|
29
|
+
boardCardId: string;
|
|
30
|
+
boardCardChecklistId: string;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type IAddRowBoardCardChecklistParams = {
|
|
34
|
+
boardId: string;
|
|
35
|
+
boardCardId: string;
|
|
36
|
+
boardCardChecklistId: string;
|
|
37
|
+
};
|
|
38
|
+
export type IAddRowBoardCardChecklistBody = {
|
|
39
|
+
content: string;
|
|
40
|
+
position: number;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
export type IRemoveRowBoardCardChecklistParams = {
|
|
44
|
+
boardId: string;
|
|
45
|
+
boardCardId: string;
|
|
46
|
+
boardCardChecklistId: string;
|
|
47
|
+
boardCardChecklistRowId: string;
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
export type IUpdateRowBoardCardChecklistParams = {
|
|
51
|
+
boardId: string;
|
|
52
|
+
boardCardId: string;
|
|
53
|
+
boardCardChecklistId: string;
|
|
54
|
+
boardCardChecklistRowId: string;
|
|
55
|
+
};
|
|
56
|
+
export type IUpdateRowBoardCardChecklistBody = {
|
|
57
|
+
content?: string;
|
|
58
|
+
completed?: boolean;
|
|
59
|
+
position?: number;
|
|
60
|
+
boardCardChecklistId?: string;
|
|
61
|
+
};
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export type ICreateBoardCardCommentParams = {
|
|
2
|
-
boardId: string;
|
|
3
|
-
boardCardId: string;
|
|
4
|
-
};
|
|
5
|
-
export type ICreateBoardCardCommentBody = {
|
|
6
|
-
content: string;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export type IUpdateBoardCardCommentParams = {
|
|
10
|
-
boardId: string;
|
|
11
|
-
boardCardId: string;
|
|
12
|
-
boardCardCommentId: string;
|
|
13
|
-
};
|
|
14
|
-
export type IUpdateBoardCardCommentBody = {
|
|
15
|
-
content?: string;
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
export type IGetBoardCardCommentParams = {
|
|
19
|
-
boardId: string;
|
|
20
|
-
boardCardId: string;
|
|
21
|
-
boardCardCommentId: string;
|
|
22
|
-
};
|
|
23
|
-
|
|
24
|
-
export type IDeleteBoardCardCommentParams = {
|
|
25
|
-
boardId: string;
|
|
26
|
-
boardCardId: string;
|
|
27
|
-
boardCardCommentId: string;
|
|
28
|
-
};
|
|
1
|
+
export type ICreateBoardCardCommentParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type ICreateBoardCardCommentBody = {
|
|
6
|
+
content: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type IUpdateBoardCardCommentParams = {
|
|
10
|
+
boardId: string;
|
|
11
|
+
boardCardId: string;
|
|
12
|
+
boardCardCommentId: string;
|
|
13
|
+
};
|
|
14
|
+
export type IUpdateBoardCardCommentBody = {
|
|
15
|
+
content?: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type IGetBoardCardCommentParams = {
|
|
19
|
+
boardId: string;
|
|
20
|
+
boardCardId: string;
|
|
21
|
+
boardCardCommentId: string;
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export type IDeleteBoardCardCommentParams = {
|
|
25
|
+
boardId: string;
|
|
26
|
+
boardCardId: string;
|
|
27
|
+
boardCardCommentId: string;
|
|
28
|
+
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
export type IGetUploadPreSignedUrlBoardCardDocumentParams = {
|
|
2
|
-
boardId: string;
|
|
3
|
-
boardCardId: string;
|
|
4
|
-
};
|
|
5
|
-
export type IGetUploadPreSignedUrlBoardCardDocumentBody = {
|
|
6
|
-
name: string;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export type IGetBoardCardDocumentParams = {
|
|
10
|
-
boardId: string;
|
|
11
|
-
boardCardId: string;
|
|
12
|
-
boardCardDocumentId: string;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
export type IDeleteBoardCardDocumentParams = {
|
|
16
|
-
boardId: string;
|
|
17
|
-
boardCardId: string;
|
|
18
|
-
boardCardDocumentId: string;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
export type ICloudImportBoardCardDocumentParams = {
|
|
22
|
-
boardId: string;
|
|
23
|
-
boardCardId: string;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
export type ICloudImportBoardCardDocumentBody = {
|
|
27
|
-
cloudId: string;
|
|
28
|
-
fileId: string[];
|
|
29
|
-
};
|
|
1
|
+
export type IGetUploadPreSignedUrlBoardCardDocumentParams = {
|
|
2
|
+
boardId: string;
|
|
3
|
+
boardCardId: string;
|
|
4
|
+
};
|
|
5
|
+
export type IGetUploadPreSignedUrlBoardCardDocumentBody = {
|
|
6
|
+
name: string;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export type IGetBoardCardDocumentParams = {
|
|
10
|
+
boardId: string;
|
|
11
|
+
boardCardId: string;
|
|
12
|
+
boardCardDocumentId: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export type IDeleteBoardCardDocumentParams = {
|
|
16
|
+
boardId: string;
|
|
17
|
+
boardCardId: string;
|
|
18
|
+
boardCardDocumentId: string;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export type ICloudImportBoardCardDocumentParams = {
|
|
22
|
+
boardId: string;
|
|
23
|
+
boardCardId: string;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
export type ICloudImportBoardCardDocumentBody = {
|
|
27
|
+
cloudId: string;
|
|
28
|
+
fileId: string[];
|
|
29
|
+
};
|