We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c25e1 commit e664b13Copy full SHA for e664b13
response.ts
@@ -28,6 +28,12 @@ export interface RelatedPage extends
28
linksLc: StringLc[];
29
}
30
31
+/** 外部プロジェクトの関連ページ */
32
+export interface ProjectRelatedPage extends Omit<RelatedPage, "linksLc"> {
33
+ /** project name */
34
+ projectName: string;
35
+}
36
+
37
/** user information */
38
export interface User {
39
id: UserId;
@@ -82,6 +88,9 @@ export interface Page extends BasePage {
82
88
/** 2 hop links */
83
89
links2hop: RelatedPage[];
84
90
91
+ /** external links */
92
+ projectLinks1hop: ProjectRelatedPage[];
93
85
94
/** このページを参照しているページorアイコンがあればtrue */
86
95
hasBackLinksOrIcons: boolean;
87
96
};
0 commit comments