@abyss-project/main 1.0.64 → 1.0.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/dist/api/atlas-group.api.d.ts +6 -0
  2. package/dist/api/atlas-group.api.js +24 -0
  3. package/dist/api/atlas-page-content.api.d.ts +0 -0
  4. package/dist/api/atlas-page-content.api.js +1 -0
  5. package/dist/api/atlas-page.api.d.ts +10 -0
  6. package/dist/api/atlas-page.api.js +46 -0
  7. package/dist/api/atlas.api.d.ts +8 -0
  8. package/dist/api/atlas.api.js +35 -0
  9. package/dist/api/atlas.public.api.d.ts +4 -0
  10. package/dist/api/atlas.public.api.js +18 -0
  11. package/dist/api/board-card.api.d.ts +2 -1
  12. package/dist/api/board-card.api.js +7 -1
  13. package/dist/api/index.d.ts +10 -0
  14. package/dist/api/index.js +10 -0
  15. package/dist/api/memo.api.d.ts +8 -0
  16. package/dist/api/memo.api.js +36 -0
  17. package/dist/api/retrospective-card.api.d.ts +6 -0
  18. package/dist/api/retrospective-card.api.js +26 -0
  19. package/dist/api/retrospective-member.api.d.ts +5 -0
  20. package/dist/api/retrospective-member.api.js +20 -0
  21. package/dist/api/retrospective-section.api.d.ts +6 -0
  22. package/dist/api/retrospective-section.api.js +26 -0
  23. package/dist/api/retrospective.api.d.ts +8 -0
  24. package/dist/api/retrospective.api.js +34 -0
  25. package/dist/api/retrospective.public.api.d.ts +11 -0
  26. package/dist/api/retrospective.public.api.js +44 -0
  27. package/dist/constants/index.d.ts +1 -0
  28. package/dist/constants/index.js +1 -0
  29. package/dist/constants/memo.constants.d.ts +3 -0
  30. package/dist/constants/memo.constants.js +6 -0
  31. package/dist/index.d.ts +2 -0
  32. package/dist/index.js +6 -1
  33. package/dist/server-sent-events/index.d.ts +3 -1
  34. package/dist/server-sent-events/index.js +2 -0
  35. package/dist/server-sent-events/protocols/atlas/atlas.sse-protocol.d.ts +62 -0
  36. package/dist/server-sent-events/protocols/atlas/atlas.sse-protocol.js +19 -0
  37. package/dist/server-sent-events/protocols/atlas/index.d.ts +1 -0
  38. package/dist/server-sent-events/protocols/atlas/index.js +17 -0
  39. package/dist/server-sent-events/protocols/index.d.ts +2 -0
  40. package/dist/server-sent-events/protocols/index.js +2 -0
  41. package/dist/server-sent-events/protocols/retrospective/index.d.ts +1 -0
  42. package/dist/server-sent-events/protocols/retrospective/index.js +17 -0
  43. package/dist/server-sent-events/protocols/retrospective/retrospective.sse-protocol.d.ts +69 -0
  44. package/dist/server-sent-events/protocols/retrospective/retrospective.sse-protocol.js +21 -0
  45. package/dist/server-sent-events/server-sent-events.manager.d.ts +1 -1
  46. package/dist/server-sent-events/server-sent-events.manager.js +2 -1
  47. package/dist/types/draw.type.d.ts +9 -0
  48. package/dist/types/enum/abyss-application-event.enum.d.ts +40 -2
  49. package/dist/types/enum/abyss-application-event.enum.js +40 -2
  50. package/dist/types/enum/api-error.enum.d.ts +2 -1
  51. package/dist/types/enum/api-error.enum.js +1 -0
  52. package/dist/types/interface/api/index.d.ts +20 -0
  53. package/dist/types/interface/api/index.js +20 -0
  54. package/dist/types/interface/api/requests/atlas-group.request.d.ts +40 -0
  55. package/dist/types/interface/api/requests/atlas-group.request.js +2 -0
  56. package/dist/types/interface/api/requests/atlas-page.request.d.ts +72 -0
  57. package/dist/types/interface/api/requests/atlas-page.request.js +2 -0
  58. package/dist/types/interface/api/requests/atlas.public.request.d.ts +18 -0
  59. package/dist/types/interface/api/requests/atlas.public.request.js +2 -0
  60. package/dist/types/interface/api/requests/atlas.request.d.ts +33 -0
  61. package/dist/types/interface/api/requests/atlas.request.js +2 -0
  62. package/dist/types/interface/api/requests/board-card.request.d.ts +8 -0
  63. package/dist/types/interface/api/requests/memo.request.d.ts +29 -0
  64. package/dist/types/interface/api/requests/memo.request.js +2 -0
  65. package/dist/types/interface/api/requests/retrospective-card.request.d.ts +32 -0
  66. package/dist/types/interface/api/requests/retrospective-card.request.js +2 -0
  67. package/dist/types/interface/api/requests/retrospective-member.request.d.ts +17 -0
  68. package/dist/types/interface/api/requests/retrospective-member.request.js +2 -0
  69. package/dist/types/interface/api/requests/retrospective-section.request.d.ts +36 -0
  70. package/dist/types/interface/api/requests/retrospective-section.request.js +2 -0
  71. package/dist/types/interface/api/requests/retrospective.public.request.d.ts +71 -0
  72. package/dist/types/interface/api/requests/retrospective.public.request.js +2 -0
  73. package/dist/types/interface/api/requests/retrospective.request.d.ts +39 -0
  74. package/dist/types/interface/api/requests/retrospective.request.js +2 -0
  75. package/dist/types/interface/api/responses/atlas-group.response.d.ts +18 -0
  76. package/dist/types/interface/api/responses/atlas-group.response.js +2 -0
  77. package/dist/types/interface/api/responses/atlas-page.response.d.ts +43 -0
  78. package/dist/types/interface/api/responses/atlas-page.response.js +2 -0
  79. package/dist/types/interface/api/responses/atlas.public.response.d.ts +17 -0
  80. package/dist/types/interface/api/responses/atlas.public.response.js +2 -0
  81. package/dist/types/interface/api/responses/atlas.response.d.ts +18 -0
  82. package/dist/types/interface/api/responses/atlas.response.js +2 -0
  83. package/dist/types/interface/api/responses/board-card.response.d.ts +12 -0
  84. package/dist/types/interface/api/responses/memo.response.d.ts +18 -0
  85. package/dist/types/interface/api/responses/memo.response.js +2 -0
  86. package/dist/types/interface/api/responses/project.response.d.ts +7 -0
  87. package/dist/types/interface/api/responses/retrospective-card.response.d.ts +18 -0
  88. package/dist/types/interface/api/responses/retrospective-card.response.js +2 -0
  89. package/dist/types/interface/api/responses/retrospective-member.response.d.ts +18 -0
  90. package/dist/types/interface/api/responses/retrospective-member.response.js +2 -0
  91. package/dist/types/interface/api/responses/retrospective-section.response.d.ts +18 -0
  92. package/dist/types/interface/api/responses/retrospective-section.response.js +2 -0
  93. package/dist/types/interface/api/responses/retrospective.public.response.d.ts +36 -0
  94. package/dist/types/interface/api/responses/retrospective.public.response.js +2 -0
  95. package/dist/types/interface/api/responses/retrospective.response.d.ts +18 -0
  96. package/dist/types/interface/api/responses/retrospective.response.js +2 -0
  97. package/dist/types/interface/index.d.ts +9 -0
  98. package/dist/types/interface/index.js +9 -0
  99. package/dist/types/interface/models/atlas-group.model.d.ts +18 -0
  100. package/dist/types/interface/models/atlas-group.model.js +2 -0
  101. package/dist/types/interface/models/atlas-page-content.model.d.ts +14 -0
  102. package/dist/types/interface/models/atlas-page-content.model.js +2 -0
  103. package/dist/types/interface/models/atlas-page.model.d.ts +21 -0
  104. package/dist/types/interface/models/atlas-page.model.js +2 -0
  105. package/dist/types/interface/models/atlas.model.d.ts +23 -0
  106. package/dist/types/interface/models/atlas.model.js +2 -0
  107. package/dist/types/interface/models/memo.model.d.ts +14 -0
  108. package/dist/types/interface/models/memo.model.js +2 -0
  109. package/dist/types/interface/models/project.model.d.ts +6 -0
  110. package/dist/types/interface/models/retrospective-card.model.d.ts +14 -0
  111. package/dist/types/interface/models/retrospective-card.model.js +2 -0
  112. package/dist/types/interface/models/retrospective-member.model.d.ts +12 -0
  113. package/dist/types/interface/models/retrospective-member.model.js +2 -0
  114. package/dist/types/interface/models/retrospective-section.model.d.ts +13 -0
  115. package/dist/types/interface/models/retrospective-section.model.js +2 -0
  116. package/dist/types/interface/models/retrospective.model.d.ts +24 -0
  117. package/dist/types/interface/models/retrospective.model.js +2 -0
  118. package/dist/types/interface/models/user.model.d.ts +4 -1
  119. package/package.json +2 -1
@@ -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,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -67,3 +67,11 @@ export type IMoveToBoardBoardCardBody = {
67
67
  boardColumnId: string;
68
68
  boardId: string;
69
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,29 @@
1
+ import { QueryPaginate } from '../type-message/base-paginate';
2
+ export type ICreateForProjectMemoParams = {
3
+ projectId: string;
4
+ };
5
+ export type ICreateMemoBody = {
6
+ title: string;
7
+ content: string;
8
+ };
9
+ export type IUpdateMemoParams = {
10
+ memoId: string;
11
+ };
12
+ export type IUpdateMemoBody = {
13
+ title?: string;
14
+ content?: string;
15
+ archived?: boolean;
16
+ };
17
+ export type IGetMemoParams = {
18
+ memoId: string;
19
+ };
20
+ export type IDeleteMemoParams = {
21
+ memoId: string;
22
+ };
23
+ export type IPaginateMemoQuery = {
24
+ title?: string;
25
+ archived?: boolean;
26
+ } & QueryPaginate;
27
+ export type IPaginateProjectMemoParams = {
28
+ projectId: string;
29
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,32 @@
1
+ export interface IGetRetrospectiveCardParams {
2
+ retrospectiveId: string;
3
+ retrospectiveCardId: string;
4
+ }
5
+ export interface IPaginateRetrospectiveCardParams {
6
+ retrospectiveId: string;
7
+ }
8
+ export interface IPaginateRetrospectiveCardQuery {
9
+ page?: number;
10
+ limit?: number;
11
+ }
12
+ export type ICreateRetrospectiveCardParams = {
13
+ retrospectiveId: string;
14
+ };
15
+ export interface ICreateRetrospectiveCardBody {
16
+ content: string;
17
+ positionX: number;
18
+ positionY: number;
19
+ }
20
+ export interface IUpdateRetrospectiveCardParams {
21
+ retrospectiveId: string;
22
+ retrospectiveCardId: string;
23
+ }
24
+ export interface IUpdateRetrospectiveCardBody {
25
+ content?: string;
26
+ positionX?: number;
27
+ positionY?: number;
28
+ }
29
+ export interface IDeleteRetrospectiveCardParams {
30
+ retrospectiveId: string;
31
+ retrospectiveCardId: string;
32
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ export interface IGetRetrospectiveMemberParams {
2
+ retrospectiveId: string;
3
+ retrospectiveMemberId: string;
4
+ }
5
+ export interface IListRetrospectiveMemberParams {
6
+ retrospectiveId: string;
7
+ }
8
+ export type IJoinRetrospectiveMemberParams = {
9
+ retrospectiveId: string;
10
+ };
11
+ export type IUpdateRetrospectiveMemberParams = {
12
+ retrospectiveId: string;
13
+ };
14
+ export interface IUpdateRetrospectiveMemberBody {
15
+ alias?: string;
16
+ unmasked?: boolean;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
1
+ export interface IGetRetrospectiveSectionParams {
2
+ retrospectiveId: string;
3
+ retrospectiveSectionId: string;
4
+ }
5
+ export interface IPaginateRetrospectiveSectionParams {
6
+ retrospectiveId: string;
7
+ }
8
+ export interface IPaginateRetrospectiveSectionQuery {
9
+ page?: number;
10
+ limit?: number;
11
+ }
12
+ export interface ICreateRetrospectiveSectionParams {
13
+ retrospectiveId: string;
14
+ }
15
+ export interface ICreateRetrospectiveSectionBody {
16
+ title: string;
17
+ description: string;
18
+ color: string;
19
+ positionX: number;
20
+ positionY: number;
21
+ }
22
+ export interface IUpdateRetrospectiveSectionParams {
23
+ retrospectiveId: string;
24
+ retrospectiveSectionId: string;
25
+ }
26
+ export interface IUpdateRetrospectiveSectionBody {
27
+ title?: string;
28
+ description?: string;
29
+ color?: string;
30
+ positionX?: number;
31
+ positionY?: number;
32
+ }
33
+ export interface IDeleteRetrospectiveSectionParams {
34
+ retrospectiveId: string;
35
+ retrospectiveSectionId: string;
36
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,71 @@
1
+ export interface IGetRetrospectivePublicParams {
2
+ accessToken: string;
3
+ }
4
+ export interface IUpdateRetrospectivePublicParams {
5
+ accessToken: string;
6
+ }
7
+ export interface IUpdateRetrospectivePublicBody {
8
+ title?: string;
9
+ description?: string;
10
+ startDate?: Date | null;
11
+ endDate?: Date | null;
12
+ }
13
+ export type ISSERetrospectivePublicParams = {
14
+ accessToken: string;
15
+ };
16
+ export interface ICreateSectionRetrospectivePublicParams {
17
+ accessToken: string;
18
+ }
19
+ export interface ICreateSectionRetrospectivePublicBody {
20
+ title: string;
21
+ description: string;
22
+ color: string;
23
+ positionX: number;
24
+ positionY: number;
25
+ }
26
+ export interface IUpdateSectionRetrospectivePublicParams {
27
+ accessToken: string;
28
+ retrospectiveSectionId: string;
29
+ }
30
+ export interface IUpdateSectionRetrospectivePublicBody {
31
+ title?: string;
32
+ description?: string;
33
+ color?: string;
34
+ positionX?: number;
35
+ positionY?: number;
36
+ }
37
+ export interface IDeleteSectionRetrospectivePublicParams {
38
+ accessToken: string;
39
+ retrospectiveSectionId: string;
40
+ }
41
+ export type IJoinMemberRetrospectivePublicParams = {
42
+ accessToken: string;
43
+ };
44
+ export type IUpdateMemberRetrospectivePublicParams = {
45
+ accessToken: string;
46
+ };
47
+ export interface IUpdateMemberRetrospectivePublicBody {
48
+ alias?: string;
49
+ unmasked?: boolean;
50
+ }
51
+ export interface ICreateCardRetrospectivePublicParams {
52
+ accessToken: string;
53
+ }
54
+ export interface ICreateCardRetrospectivePublicBody {
55
+ content: string;
56
+ positionX: number;
57
+ positionY: number;
58
+ }
59
+ export interface IUpdateCardRetrospectivePublicParams {
60
+ accessToken: string;
61
+ retrospectiveCardId: string;
62
+ }
63
+ export interface IUpdateCardRetrospectivePublicBody {
64
+ content?: string;
65
+ positionX?: number;
66
+ positionY?: number;
67
+ }
68
+ export interface IDeleteCardRetrospectivePublicParams {
69
+ accessToken: string;
70
+ retrospectiveCardId: string;
71
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,39 @@
1
+ export interface IGetRetrospectiveParams {
2
+ retrospectiveId: string;
3
+ }
4
+ export interface IPaginateProjectRetrospectiveParams {
5
+ projectId: string;
6
+ }
7
+ export interface IPaginateRetrospectiveQuery {
8
+ title?: string;
9
+ archived?: boolean;
10
+ page?: number;
11
+ limit?: number;
12
+ }
13
+ export interface ICreateForProjectRetrospectiveParams {
14
+ projectId: string;
15
+ }
16
+ export interface ICreateRetrospectiveBody {
17
+ title: string;
18
+ description: string;
19
+ startDate: Date | null;
20
+ endDate: Date | null;
21
+ }
22
+ export interface IUpdateRetrospectiveParams {
23
+ retrospectiveId: string;
24
+ }
25
+ export interface IUpdateRetrospectiveBody {
26
+ title?: string;
27
+ description?: string;
28
+ startDate?: Date | null;
29
+ endDate?: Date | null;
30
+ archived?: boolean;
31
+ completed?: boolean;
32
+ enablePublicAccess?: boolean;
33
+ }
34
+ export interface IDeleteRetrospectiveParams {
35
+ retrospectiveId: string;
36
+ }
37
+ export type ISSERetrospectiveParams = {
38
+ retrospectiveId: string;
39
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IAtlasGroup, BasePaginate } from '../..';
3
+ export interface IGetAtlasGroupData {
4
+ atlasGroup: IAtlasGroup;
5
+ }
6
+ export type IGetAtlasGroupResponse = IResponse<IGetAtlasGroupData>;
7
+ export type IPaginateAtlasGroupResponse = IResponse<BasePaginate<IAtlasGroup>>;
8
+ export interface ICreateAtlasGroupData {
9
+ atlasGroup: IAtlasGroup;
10
+ }
11
+ export type ICreateAtlasGroupResponse = IResponse<ICreateAtlasGroupData>;
12
+ export interface IUpdateAtlasGroupData {
13
+ atlasGroup: IAtlasGroup;
14
+ }
15
+ export type IUpdateAtlasGroupResponse = IResponse<IUpdateAtlasGroupData>;
16
+ export interface IDeleteAtlasGroupData {
17
+ }
18
+ export type IDeleteAtlasGroupResponse = IResponse<IDeleteAtlasGroupData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,43 @@
1
+ import { IResponse } from '..';
2
+ import { IAtlasPage, IAtlasPageContent, BasePaginate } from '../..';
3
+ export interface IGetAtlasPageData {
4
+ atlasPage: IAtlasPage;
5
+ }
6
+ export type IGetAtlasPageResponse = IResponse<IGetAtlasPageData>;
7
+ export type IPaginateAtlasPageResponse = IResponse<BasePaginate<IAtlasPage>>;
8
+ export interface ICreateAtlasPageData {
9
+ atlasPage: IAtlasPage;
10
+ content?: IAtlasPageContent | null;
11
+ }
12
+ export type ICreateAtlasPageResponse = IResponse<ICreateAtlasPageData>;
13
+ export interface IUpdateAtlasPageData {
14
+ atlasPage: IAtlasPage;
15
+ }
16
+ export type IUpdateAtlasPageResponse = IResponse<IUpdateAtlasPageData>;
17
+ export interface IDeleteAtlasPageData {
18
+ }
19
+ export type IDeleteAtlasPageResponse = IResponse<IDeleteAtlasPageData>;
20
+ export interface IUpdateAtlasPageContentData {
21
+ content: IAtlasPageContent;
22
+ atlasPage: IAtlasPage;
23
+ }
24
+ export type IUpdateAtlasPageContentResponse = IResponse<IUpdateAtlasPageContentData>;
25
+ export type IGetAtlasPageContentHistoryResponse = IResponse<BasePaginate<IAtlasPageContent>>;
26
+ export interface IRestoreAtlasPageContentData {
27
+ content: IAtlasPageContent;
28
+ atlasPage: IAtlasPage;
29
+ }
30
+ export type IRestoreAtlasPageContentResponse = IResponse<IRestoreAtlasPageContentData>;
31
+ export interface IAtlasSearchResult {
32
+ page: IAtlasPage;
33
+ content: string;
34
+ matchCount: number;
35
+ excerpt: string;
36
+ }
37
+ export interface ISearchAtlasContentData {
38
+ results: IAtlasSearchResult[];
39
+ total: number;
40
+ page: number;
41
+ limit: number;
42
+ }
43
+ export type ISearchAtlasContentResponse = IResponse<ISearchAtlasContentData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,17 @@
1
+ import { IAtlasSearchResult, IResponse } from '..';
2
+ import { IAtlas, IAtlasPage } from '../..';
3
+ export interface IGetAtlasPublicData {
4
+ atlas: IAtlas;
5
+ }
6
+ export type IGetAtlasPublicResponse = IResponse<IGetAtlasPublicData>;
7
+ export interface IGetPageAtlasPublicData {
8
+ atlasPage: IAtlasPage;
9
+ }
10
+ export type IGetPageAtlasPublicResponse = IResponse<IGetPageAtlasPublicData>;
11
+ export interface ISearchContentAtlasPublicData {
12
+ results: IAtlasSearchResult[];
13
+ total: number;
14
+ page: number;
15
+ limit: number;
16
+ }
17
+ export type ISearchContentAtlasPublicResponse = IResponse<ISearchContentAtlasPublicData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IAtlas, BasePaginate } from '../..';
3
+ export interface IGetAtlasData {
4
+ atlas: IAtlas;
5
+ }
6
+ export type IGetAtlasResponse = IResponse<IGetAtlasData>;
7
+ export type IPaginateAtlasResponse = IResponse<BasePaginate<IAtlas>>;
8
+ export interface ICreateAtlasData {
9
+ atlas: IAtlas;
10
+ }
11
+ export type ICreateAtlasResponse = IResponse<ICreateAtlasData>;
12
+ export interface IUpdateAtlasData {
13
+ atlas: IAtlas;
14
+ }
15
+ export type IUpdateAtlasResponse = IResponse<IUpdateAtlasData>;
16
+ export interface IDeleteAtlasData {
17
+ }
18
+ export type IDeleteAtlasResponse = IResponse<IDeleteAtlasData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -33,3 +33,15 @@ export interface IMoveToBoardBoardCardData {
33
33
  boardCard: IBoardCard;
34
34
  }
35
35
  export type IMoveToBoardBoardCardResponse = IResponse<IMoveToBoardBoardCardData>;
36
+ export interface IBoardCardSearchResult {
37
+ boardCard: IBoardCard;
38
+ matchCount: number;
39
+ excerpt: string;
40
+ }
41
+ export interface ISearchBoardCardData {
42
+ results: IBoardCardSearchResult[];
43
+ total: number;
44
+ page: number;
45
+ limit: number;
46
+ }
47
+ export type ISearchBoardCardResponse = IResponse<ISearchBoardCardData>;
@@ -0,0 +1,18 @@
1
+ import { BasePaginate, IResponse } from '..';
2
+ import { IMemo } from '../../models/memo.model';
3
+ export interface IGetMemoData {
4
+ memo: IMemo;
5
+ }
6
+ export type IGetMemoResponse = IResponse<IGetMemoData>;
7
+ export interface IUpdateMemoData {
8
+ memo: IMemo;
9
+ }
10
+ export type IUpdateMemoResponse = IResponse<IUpdateMemoData>;
11
+ export interface ICreateMemoData {
12
+ memo: IMemo;
13
+ }
14
+ export type ICreateMemoResponse = IResponse<ICreateMemoData>;
15
+ export interface IDeleteMemoData {
16
+ }
17
+ export type IDeleteMemoResponse = IResponse<IDeleteMemoData>;
18
+ export type IPaginateMemoResponse = IResponse<BasePaginate<IMemo>>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -14,6 +14,13 @@ export type ProjectWithoutApplication = Overwrite<IProject & IListBoardUserData,
14
14
  createdAt: Date;
15
15
  updatedAt: Date;
16
16
  }[];
17
+ metrics: {
18
+ totalBoards: number;
19
+ totalDraws: number;
20
+ totalRetrospectives: number;
21
+ totalMember: number;
22
+ totalApiKeys: number;
23
+ };
17
24
  }>;
18
25
  export interface IGetProjectData {
19
26
  project: IProject;
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IRetrospectiveCard, BasePaginate } from '../..';
3
+ export interface IGetRetrospectiveCardData {
4
+ retrospectiveCard: IRetrospectiveCard;
5
+ }
6
+ export type IGetRetrospectiveCardResponse = IResponse<IGetRetrospectiveCardData>;
7
+ export type IPaginateRetrospectiveCardResponse = IResponse<BasePaginate<IRetrospectiveCard>>;
8
+ export interface ICreateRetrospectiveCardData {
9
+ retrospectiveCard: IRetrospectiveCard;
10
+ }
11
+ export type ICreateRetrospectiveCardResponse = IResponse<ICreateRetrospectiveCardData>;
12
+ export interface IUpdateRetrospectiveCardData {
13
+ retrospectiveCard: IRetrospectiveCard;
14
+ }
15
+ export type IUpdateRetrospectiveCardResponse = IResponse<IUpdateRetrospectiveCardData>;
16
+ export interface IDeleteRetrospectiveCardData {
17
+ }
18
+ export type IDeleteRetrospectiveCardResponse = IResponse<IDeleteRetrospectiveCardData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IRetrospectiveMember } from '../..';
3
+ export interface IGetRetrospectiveMemberData {
4
+ retrospectiveMember: IRetrospectiveMember;
5
+ }
6
+ export type IGetRetrospectiveMemberResponse = IResponse<IGetRetrospectiveMemberData>;
7
+ export interface IListRetrospectiveMemberData {
8
+ retrospectiveMember: IRetrospectiveMember[];
9
+ }
10
+ export type IListRetrospectiveMemberResponse = IResponse<IListRetrospectiveMemberData>;
11
+ export interface IJoinRetrospectiveMemberData {
12
+ retrospectiveMember: IRetrospectiveMember;
13
+ }
14
+ export type IJoinRetrospectiveMemberResponse = IResponse<IJoinRetrospectiveMemberData>;
15
+ export interface IUpdateRetrospectiveMemberData {
16
+ retrospectiveMember: IRetrospectiveMember;
17
+ }
18
+ export type IUpdateRetrospectiveMemberResponse = IResponse<IUpdateRetrospectiveMemberData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IRetrospectiveSection, BasePaginate } from '../..';
3
+ export interface IGetRetrospectiveSectionData {
4
+ retrospectiveSection: IRetrospectiveSection;
5
+ }
6
+ export type IGetRetrospectiveSectionResponse = IResponse<IGetRetrospectiveSectionData>;
7
+ export type IPaginateRetrospectiveSectionResponse = IResponse<BasePaginate<IRetrospectiveSection>>;
8
+ export interface ICreateRetrospectiveSectionData {
9
+ retrospectiveSection: IRetrospectiveSection;
10
+ }
11
+ export type ICreateRetrospectiveSectionResponse = IResponse<ICreateRetrospectiveSectionData>;
12
+ export interface IUpdateRetrospectiveSectionData {
13
+ retrospectiveSection: IRetrospectiveSection;
14
+ }
15
+ export type IUpdateRetrospectiveSectionResponse = IResponse<IUpdateRetrospectiveSectionData>;
16
+ export interface IDeleteRetrospectiveSectionData {
17
+ }
18
+ export type IDeleteRetrospectiveSectionResponse = IResponse<IDeleteRetrospectiveSectionData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,36 @@
1
+ import { IResponse } from '..';
2
+ import { IRetrospective, IRetrospectiveSection, IRetrospectiveMember, IRetrospectiveCard } from '../..';
3
+ export interface IGetRetrospectivePublicData {
4
+ retrospective: IRetrospective;
5
+ }
6
+ export type IGetRetrospectivePublicResponse = IResponse<IGetRetrospectivePublicData>;
7
+ export interface IUpdateRetrospectivePublicData {
8
+ retrospective: IRetrospective;
9
+ }
10
+ export type IUpdateRetrospectivePublicResponse = IResponse<IUpdateRetrospectivePublicData>;
11
+ export interface ICreateSectionRetrospectivePublicData {
12
+ retrospectiveSection: IRetrospectiveSection;
13
+ }
14
+ export type ICreateSectionRetrospectivePublicResponse = IResponse<ICreateSectionRetrospectivePublicData>;
15
+ export interface IUpdateSectionRetrospectivePublicData {
16
+ retrospectiveSection: IRetrospectiveSection;
17
+ }
18
+ export type IUpdateSectionRetrospectivePublicResponse = IResponse<IUpdateSectionRetrospectivePublicData>;
19
+ export type IDeleteSectionRetrospectivePublicResponse = IResponse<Record<string, never>>;
20
+ export interface IJoinMemberRetrospectivePublicData {
21
+ retrospectiveMember: IRetrospectiveMember;
22
+ }
23
+ export type IJoinMemberRetrospectivePublicResponse = IResponse<IJoinMemberRetrospectivePublicData>;
24
+ export interface IUpdateMemberRetrospectivePublicData {
25
+ retrospectiveMember: IRetrospectiveMember;
26
+ }
27
+ export type IUpdateMemberRetrospectivePublicResponse = IResponse<IUpdateMemberRetrospectivePublicData>;
28
+ export interface ICreateCardRetrospectivePublicData {
29
+ retrospectiveCard: IRetrospectiveCard;
30
+ }
31
+ export type ICreateCardRetrospectivePublicResponse = IResponse<ICreateCardRetrospectivePublicData>;
32
+ export interface IUpdateCardRetrospectivePublicData {
33
+ retrospectiveCard: IRetrospectiveCard;
34
+ }
35
+ export type IUpdateCardRetrospectivePublicResponse = IResponse<IUpdateCardRetrospectivePublicData>;
36
+ export type IDeleteCardRetrospectivePublicResponse = IResponse<Record<string, never>>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ import { IResponse } from '..';
2
+ import { IRetrospective, BasePaginate } from '../..';
3
+ export interface IGetRetrospectiveData {
4
+ retrospective: IRetrospective;
5
+ }
6
+ export type IGetRetrospectiveResponse = IResponse<IGetRetrospectiveData>;
7
+ export type IPaginateRetrospectiveResponse = IResponse<BasePaginate<IRetrospective>>;
8
+ export interface ICreateRetrospectiveData {
9
+ retrospective: IRetrospective;
10
+ }
11
+ export type ICreateRetrospectiveResponse = IResponse<ICreateRetrospectiveData>;
12
+ export interface IUpdateRetrospectiveData {
13
+ retrospective: IRetrospective;
14
+ }
15
+ export type IUpdateRetrospectiveResponse = IResponse<IUpdateRetrospectiveData>;
16
+ export interface IDeleteRetrospectiveData {
17
+ }
18
+ export type IDeleteRetrospectiveResponse = IResponse<IDeleteRetrospectiveData>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -31,3 +31,12 @@ export * from './models/board-card-comment.model';
31
31
  export * from './models/board-label.model';
32
32
  export * from './models/board-card-label.model';
33
33
  export * from './models/draw.model';
34
+ export * from './models//retrospective.model';
35
+ export * from './models//retrospective-section.model';
36
+ export * from './models//retrospective-member.model';
37
+ export * from './models//retrospective-card.model';
38
+ export * from './models/atlas.model';
39
+ export * from './models/atlas-group.model';
40
+ export * from './models/atlas-page.model';
41
+ export * from './models/atlas-page-content.model';
42
+ export * from './models/memo.model';
@@ -47,3 +47,12 @@ __exportStar(require("./models/board-card-comment.model"), exports);
47
47
  __exportStar(require("./models/board-label.model"), exports);
48
48
  __exportStar(require("./models/board-card-label.model"), exports);
49
49
  __exportStar(require("./models/draw.model"), exports);
50
+ __exportStar(require("./models//retrospective.model"), exports);
51
+ __exportStar(require("./models//retrospective-section.model"), exports);
52
+ __exportStar(require("./models//retrospective-member.model"), exports);
53
+ __exportStar(require("./models//retrospective-card.model"), exports);
54
+ __exportStar(require("./models/atlas.model"), exports);
55
+ __exportStar(require("./models/atlas-group.model"), exports);
56
+ __exportStar(require("./models/atlas-page.model"), exports);
57
+ __exportStar(require("./models/atlas-page-content.model"), exports);
58
+ __exportStar(require("./models/memo.model"), exports);