@growi/sdk-typescript 1.0.0-RC.1 → 1.0.0-RC.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/README_JP.md +3 -3
- package/dist/apiv3/index.d.ts +193 -193
- package/dist/generated/v3/index.d.ts +387 -387
- package/dist/generated/v3/index.d.ts.map +1 -1
- package/dist/generated/v3/index.js +459 -444
- package/dist/generated/v3/index.js.map +1 -1
- package/dist/generated/v3/index.schemas.d.ts +358 -358
- package/dist/generated/v3/index.schemas.d.ts.map +1 -1
- package/dist/generated/v3/index.schemas.js +1 -1
- package/dist/generated/v3/index.schemas.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/axios-instance.d.ts +13 -1
- package/dist/utils/axios-instance.d.ts.map +1 -1
- package/dist/utils/axios-instance.js +18 -1
- package/dist/utils/axios-instance.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v3/index.schemas.ts +358 -358
- package/src/generated/v3/index.ts +1243 -1133
- package/src/index.ts +1 -1
- package/src/utils/axios-instance.ts +19 -1
|
@@ -1683,20 +1683,20 @@ export type GetExternalUserGroups200 = {
|
|
|
1683
1683
|
pagingLimit?: number;
|
|
1684
1684
|
};
|
|
1685
1685
|
|
|
1686
|
-
export type
|
|
1686
|
+
export type GetAncestorsForExternalUserGroupsParams = {
|
|
1687
1687
|
/**
|
|
1688
1688
|
* The ID of the user group to get ancestors for
|
|
1689
1689
|
*/
|
|
1690
1690
|
groupId: string;
|
|
1691
1691
|
};
|
|
1692
1692
|
|
|
1693
|
-
export type
|
|
1693
|
+
export type GetAncestorsForExternalUserGroups200AncestorUserGroupsItem = { [key: string]: unknown };
|
|
1694
1694
|
|
|
1695
|
-
export type
|
|
1696
|
-
ancestorUserGroups?:
|
|
1695
|
+
export type GetAncestorsForExternalUserGroups200 = {
|
|
1696
|
+
ancestorUserGroups?: GetAncestorsForExternalUserGroups200AncestorUserGroupsItem[];
|
|
1697
1697
|
};
|
|
1698
1698
|
|
|
1699
|
-
export type
|
|
1699
|
+
export type GetChildrenForExternalUserGroupsParams = {
|
|
1700
1700
|
/**
|
|
1701
1701
|
* The IDs of the parent user groups
|
|
1702
1702
|
*/
|
|
@@ -1707,22 +1707,22 @@ export type GetExternalUserGroupsChildrenParams = {
|
|
|
1707
1707
|
includeGrandChildren?: boolean;
|
|
1708
1708
|
};
|
|
1709
1709
|
|
|
1710
|
-
export type
|
|
1710
|
+
export type GetChildrenForExternalUserGroups200ChildUserGroupsItem = { [key: string]: unknown };
|
|
1711
1711
|
|
|
1712
|
-
export type
|
|
1712
|
+
export type GetChildrenForExternalUserGroups200GrandChildUserGroupsItem = { [key: string]: unknown };
|
|
1713
1713
|
|
|
1714
|
-
export type
|
|
1715
|
-
childUserGroups?:
|
|
1716
|
-
grandChildUserGroups?:
|
|
1714
|
+
export type GetChildrenForExternalUserGroups200 = {
|
|
1715
|
+
childUserGroups?: GetChildrenForExternalUserGroups200ChildUserGroupsItem[];
|
|
1716
|
+
grandChildUserGroups?: GetChildrenForExternalUserGroups200GrandChildUserGroupsItem[];
|
|
1717
1717
|
};
|
|
1718
1718
|
|
|
1719
|
-
export type
|
|
1719
|
+
export type GetExternalUserGroupsById200UserGroup = { [key: string]: unknown };
|
|
1720
1720
|
|
|
1721
|
-
export type
|
|
1722
|
-
userGroup?:
|
|
1721
|
+
export type GetExternalUserGroupsById200 = {
|
|
1722
|
+
userGroup?: GetExternalUserGroupsById200UserGroup;
|
|
1723
1723
|
};
|
|
1724
1724
|
|
|
1725
|
-
export type
|
|
1725
|
+
export type DeleteExternalUserGroupsByIdParams = {
|
|
1726
1726
|
/**
|
|
1727
1727
|
* The action to perform on group delete
|
|
1728
1728
|
*/
|
|
@@ -1737,29 +1737,29 @@ export type DeleteExternalUserGroupsIdParams = {
|
|
|
1737
1737
|
transferToUserGroupType?: string;
|
|
1738
1738
|
};
|
|
1739
1739
|
|
|
1740
|
-
export type
|
|
1740
|
+
export type DeleteExternalUserGroupsById200UserGroupsItem = { [key: string]: unknown };
|
|
1741
1741
|
|
|
1742
|
-
export type
|
|
1743
|
-
userGroups?:
|
|
1742
|
+
export type DeleteExternalUserGroupsById200 = {
|
|
1743
|
+
userGroups?: DeleteExternalUserGroupsById200UserGroupsItem[];
|
|
1744
1744
|
};
|
|
1745
1745
|
|
|
1746
|
-
export type
|
|
1746
|
+
export type PutExternalUserGroupsByIdBody = {
|
|
1747
1747
|
description?: string;
|
|
1748
1748
|
};
|
|
1749
1749
|
|
|
1750
|
-
export type
|
|
1750
|
+
export type PutExternalUserGroupsById200UserGroup = { [key: string]: unknown };
|
|
1751
1751
|
|
|
1752
|
-
export type
|
|
1753
|
-
userGroup?:
|
|
1752
|
+
export type PutExternalUserGroupsById200 = {
|
|
1753
|
+
userGroup?: PutExternalUserGroupsById200UserGroup;
|
|
1754
1754
|
};
|
|
1755
1755
|
|
|
1756
|
-
export type
|
|
1756
|
+
export type GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem = { [key: string]: unknown };
|
|
1757
1757
|
|
|
1758
|
-
export type
|
|
1759
|
-
userGroupRelations?:
|
|
1758
|
+
export type GetExternalUserGroupRelationsByIdForExternalUserGroups200 = {
|
|
1759
|
+
userGroupRelations?: GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem[];
|
|
1760
1760
|
};
|
|
1761
1761
|
|
|
1762
|
-
export type
|
|
1762
|
+
export type GetSyncSettingsForExternalUserGroupsLdap200 = {
|
|
1763
1763
|
ldapGroupSearchBase?: string;
|
|
1764
1764
|
ldapGroupMembershipAttribute?: string;
|
|
1765
1765
|
ldapGroupMembershipAttributeType?: string;
|
|
@@ -1770,7 +1770,7 @@ export type GetExternalUserGroupsLdapSyncSettings200 = {
|
|
|
1770
1770
|
ldapGroupDescriptionAttribute?: string;
|
|
1771
1771
|
};
|
|
1772
1772
|
|
|
1773
|
-
export type
|
|
1773
|
+
export type PutSyncSettingsForExternalUserGroupsLdapBody = {
|
|
1774
1774
|
ldapGroupSearchBase?: string;
|
|
1775
1775
|
ldapGroupMembershipAttribute?: string;
|
|
1776
1776
|
ldapGroupMembershipAttributeType?: string;
|
|
@@ -1781,9 +1781,9 @@ export type PutExternalUserGroupsLdapSyncSettingsBody = {
|
|
|
1781
1781
|
ldapGroupDescriptionAttribute?: string;
|
|
1782
1782
|
};
|
|
1783
1783
|
|
|
1784
|
-
export type
|
|
1784
|
+
export type PutSyncSettingsForExternalUserGroupsLdap204 = { [key: string]: unknown };
|
|
1785
1785
|
|
|
1786
|
-
export type
|
|
1786
|
+
export type GetSyncSettingsForExternalUserGroupsKeycloak200 = {
|
|
1787
1787
|
keycloakHost?: string;
|
|
1788
1788
|
keycloakGroupRealm?: string;
|
|
1789
1789
|
keycloakGroupSyncClientRealm?: string;
|
|
@@ -1794,7 +1794,7 @@ export type GetExternalUserGroupsKeycloakSyncSettings200 = {
|
|
|
1794
1794
|
keycloakGroupDescriptionAttribute?: string;
|
|
1795
1795
|
};
|
|
1796
1796
|
|
|
1797
|
-
export type
|
|
1797
|
+
export type PutSyncSettingsForExternalUserGroupsKeycloakBody = {
|
|
1798
1798
|
keycloakHost?: string;
|
|
1799
1799
|
keycloakGroupRealm?: string;
|
|
1800
1800
|
keycloakGroupSyncClientRealm?: string;
|
|
@@ -1805,43 +1805,43 @@ export type PutExternalUserGroupsKeycloakSyncSettingsBody = {
|
|
|
1805
1805
|
keycloakGroupDescriptionAttribute?: string;
|
|
1806
1806
|
};
|
|
1807
1807
|
|
|
1808
|
-
export type
|
|
1808
|
+
export type PutSyncSettingsForExternalUserGroupsKeycloak204 = { [key: string]: unknown };
|
|
1809
1809
|
|
|
1810
|
-
export type
|
|
1810
|
+
export type PutSyncForExternalUserGroupsLdap202 = { [key: string]: unknown };
|
|
1811
1811
|
|
|
1812
|
-
export type
|
|
1812
|
+
export type PutSyncForExternalUserGroupsKeycloak202 = { [key: string]: unknown };
|
|
1813
1813
|
|
|
1814
|
-
export type
|
|
1814
|
+
export type GetOrdersForQuestionnaire200QuestionnaireOrdersItem = { [key: string]: unknown };
|
|
1815
1815
|
|
|
1816
|
-
export type
|
|
1817
|
-
questionnaireOrders?:
|
|
1816
|
+
export type GetOrdersForQuestionnaire200 = {
|
|
1817
|
+
questionnaireOrders?: GetOrdersForQuestionnaire200QuestionnaireOrdersItem[];
|
|
1818
1818
|
};
|
|
1819
1819
|
|
|
1820
|
-
export type
|
|
1820
|
+
export type GetIsEnabledForQuestionnaire200 = {
|
|
1821
1821
|
isEnabled?: boolean;
|
|
1822
1822
|
};
|
|
1823
1823
|
|
|
1824
|
-
export type
|
|
1824
|
+
export type PostAnswerForQuestionnaireProactiveBody = { [key: string]: unknown };
|
|
1825
1825
|
|
|
1826
|
-
export type
|
|
1826
|
+
export type PostAnswerForQuestionnaireProactive200 = { [key: string]: unknown };
|
|
1827
1827
|
|
|
1828
|
-
export type
|
|
1828
|
+
export type PutAnswerForQuestionnaireBody = { [key: string]: unknown };
|
|
1829
1829
|
|
|
1830
|
-
export type
|
|
1830
|
+
export type PutAnswerForQuestionnaire201 = { [key: string]: unknown };
|
|
1831
1831
|
|
|
1832
|
-
export type
|
|
1832
|
+
export type PutAnswerForQuestionnaire204 = { [key: string]: unknown };
|
|
1833
1833
|
|
|
1834
|
-
export type
|
|
1834
|
+
export type PutSkipForQuestionnaireBody = { [key: string]: unknown };
|
|
1835
1835
|
|
|
1836
|
-
export type
|
|
1836
|
+
export type PutSkipForQuestionnaire201 = { [key: string]: unknown };
|
|
1837
1837
|
|
|
1838
|
-
export type
|
|
1838
|
+
export type PutSkipForQuestionnaire204 = { [key: string]: unknown };
|
|
1839
1839
|
|
|
1840
|
-
export type
|
|
1840
|
+
export type PutDenyForQuestionnaireBody = { [key: string]: unknown };
|
|
1841
1841
|
|
|
1842
|
-
export type
|
|
1842
|
+
export type PutDenyForQuestionnaire201 = { [key: string]: unknown };
|
|
1843
1843
|
|
|
1844
|
-
export type
|
|
1844
|
+
export type PutDenyForQuestionnaire204 = { [key: string]: unknown };
|
|
1845
1845
|
|
|
1846
1846
|
export type GetTemplatesParams = {
|
|
1847
1847
|
/**
|
|
@@ -1864,11 +1864,11 @@ export type GetTemplates200 = {
|
|
|
1864
1864
|
summaries?: GetTemplates200Summaries;
|
|
1865
1865
|
};
|
|
1866
1866
|
|
|
1867
|
-
export type
|
|
1867
|
+
export type GetPresetTemplatesByLocaleByTemplateIdForTemplates200 = {
|
|
1868
1868
|
markdown?: string;
|
|
1869
1869
|
};
|
|
1870
1870
|
|
|
1871
|
-
export type
|
|
1871
|
+
export type GetPluginTemplatesByLocaleByTemplateIdByReposIdByOrganizationIdForTemplates200 = {
|
|
1872
1872
|
markdown?: string;
|
|
1873
1873
|
};
|
|
1874
1874
|
|
|
@@ -1887,12 +1887,12 @@ export type PostPlugins200 = {
|
|
|
1887
1887
|
pluginName?: string;
|
|
1888
1888
|
};
|
|
1889
1889
|
|
|
1890
|
-
export type
|
|
1890
|
+
export type PutActivateByIdForPlugins200 = {
|
|
1891
1891
|
/** The name of the activated plugin */
|
|
1892
1892
|
pluginName?: string;
|
|
1893
1893
|
};
|
|
1894
1894
|
|
|
1895
|
-
export type
|
|
1895
|
+
export type DeleteRemoveByIdForPlugins200 = {
|
|
1896
1896
|
/** The name of the removed plugin */
|
|
1897
1897
|
pluginName?: string;
|
|
1898
1898
|
};
|
|
@@ -1911,52 +1911,52 @@ export type GetAppSettings200 = {
|
|
|
1911
1911
|
appSettingsParams?: AppSettingParams;
|
|
1912
1912
|
};
|
|
1913
1913
|
|
|
1914
|
-
export type
|
|
1914
|
+
export type PutAppSettingForAppSettings200 = {
|
|
1915
1915
|
appSettingParams?: AppSettingPutParams;
|
|
1916
1916
|
};
|
|
1917
1917
|
|
|
1918
|
-
export type
|
|
1918
|
+
export type PutSiteUrlSettingForAppSettings200SiteUrlSettingParams = {
|
|
1919
1919
|
/** Site URL. e.g. https://example.com, https://example.com:3000 */
|
|
1920
1920
|
siteUrl?: string;
|
|
1921
1921
|
};
|
|
1922
1922
|
|
|
1923
|
-
export type
|
|
1924
|
-
siteUrlSettingParams?:
|
|
1923
|
+
export type PutSiteUrlSettingForAppSettings200 = {
|
|
1924
|
+
siteUrlSettingParams?: PutSiteUrlSettingForAppSettings200SiteUrlSettingParams;
|
|
1925
1925
|
};
|
|
1926
1926
|
|
|
1927
|
-
export type
|
|
1927
|
+
export type PutSmtpSettingForAppSettings200 = {
|
|
1928
1928
|
mailSettingParams?: SmtpSettingResponseParams;
|
|
1929
1929
|
};
|
|
1930
1930
|
|
|
1931
1931
|
/**
|
|
1932
1932
|
* Empty object
|
|
1933
1933
|
*/
|
|
1934
|
-
export type
|
|
1934
|
+
export type PostSmtpTestForAppSettings200 = { [key: string]: unknown };
|
|
1935
1935
|
|
|
1936
|
-
export type
|
|
1936
|
+
export type PutFileUploadSettingsForAppSettings200 = {
|
|
1937
1937
|
responseParams?: FileUploadSettingParams;
|
|
1938
1938
|
};
|
|
1939
1939
|
|
|
1940
|
-
export type
|
|
1940
|
+
export type PutQuestionnaireSettingsForAppSettings200 = {
|
|
1941
1941
|
responseParams?: QuestionnaireSettingParams;
|
|
1942
1942
|
};
|
|
1943
1943
|
|
|
1944
|
-
export type
|
|
1944
|
+
export type PostV5SchemaMigrationForAppSettings200 = {
|
|
1945
1945
|
/** is V5 compatible, or not */
|
|
1946
1946
|
isV5Compatible?: boolean;
|
|
1947
1947
|
};
|
|
1948
1948
|
|
|
1949
|
-
export type
|
|
1949
|
+
export type PostMaintenanceModeForAppSettingsBody = {
|
|
1950
1950
|
/** flag for maintenance mode */
|
|
1951
1951
|
flag?: boolean;
|
|
1952
1952
|
};
|
|
1953
1953
|
|
|
1954
|
-
export type
|
|
1954
|
+
export type PostMaintenanceModeForAppSettings200 = {
|
|
1955
1955
|
/** true if maintenance mode is enabled */
|
|
1956
1956
|
flag?: boolean;
|
|
1957
1957
|
};
|
|
1958
1958
|
|
|
1959
|
-
export type
|
|
1959
|
+
export type GetListForAttachmentParams = {
|
|
1960
1960
|
/**
|
|
1961
1961
|
* page id
|
|
1962
1962
|
*/
|
|
@@ -1971,11 +1971,11 @@ export type GetAttachmentListParams = {
|
|
|
1971
1971
|
limit?: number;
|
|
1972
1972
|
};
|
|
1973
1973
|
|
|
1974
|
-
export type
|
|
1974
|
+
export type GetLimitForAttachmentParams = {
|
|
1975
1975
|
fileSize: number;
|
|
1976
1976
|
};
|
|
1977
1977
|
|
|
1978
|
-
export type
|
|
1978
|
+
export type GetLimitForAttachment200 = {
|
|
1979
1979
|
/** uploadable */
|
|
1980
1980
|
isUploadable?: boolean;
|
|
1981
1981
|
};
|
|
@@ -2000,7 +2000,7 @@ export type PostAttachment200 = {
|
|
|
2000
2000
|
revision?: string;
|
|
2001
2001
|
};
|
|
2002
2002
|
|
|
2003
|
-
export type
|
|
2003
|
+
export type GetAttachmentById200 = {
|
|
2004
2004
|
attachment?: Attachment;
|
|
2005
2005
|
};
|
|
2006
2006
|
|
|
@@ -2034,16 +2034,16 @@ export type PutBookmarkFolder200 = {
|
|
|
2034
2034
|
bookmarkFolder?: BookmarkFolder;
|
|
2035
2035
|
};
|
|
2036
2036
|
|
|
2037
|
-
export type
|
|
2037
|
+
export type GetListByUserIdForBookmarkFolder200 = {
|
|
2038
2038
|
bookmarkFolderItems?: BookmarkFolder[];
|
|
2039
2039
|
};
|
|
2040
2040
|
|
|
2041
|
-
export type
|
|
2041
|
+
export type DeleteBookmarkFolderById200 = {
|
|
2042
2042
|
/** Number of deleted folders */
|
|
2043
2043
|
deletedCount?: number;
|
|
2044
2044
|
};
|
|
2045
2045
|
|
|
2046
|
-
export type
|
|
2046
|
+
export type PostAddBookmarkToFolderForBookmarkFolderBody = {
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Page ID
|
|
2049
2049
|
*/
|
|
@@ -2055,11 +2055,11 @@ export type PostBookmarkFolderAddBookmarkToFolderBody = {
|
|
|
2055
2055
|
folderId?: string | null;
|
|
2056
2056
|
};
|
|
2057
2057
|
|
|
2058
|
-
export type
|
|
2058
|
+
export type PostAddBookmarkToFolderForBookmarkFolder200 = {
|
|
2059
2059
|
bookmarkFolder?: BookmarkFolder;
|
|
2060
2060
|
};
|
|
2061
2061
|
|
|
2062
|
-
export type
|
|
2062
|
+
export type PutUpdateBookmarkForBookmarkFolderBody = {
|
|
2063
2063
|
/**
|
|
2064
2064
|
* Page ID
|
|
2065
2065
|
*/
|
|
@@ -2068,11 +2068,11 @@ export type PutBookmarkFolderUpdateBookmarkBody = {
|
|
|
2068
2068
|
status?: string;
|
|
2069
2069
|
};
|
|
2070
2070
|
|
|
2071
|
-
export type
|
|
2071
|
+
export type PutUpdateBookmarkForBookmarkFolder200 = {
|
|
2072
2072
|
bookmarkFolder?: BookmarkFolder;
|
|
2073
2073
|
};
|
|
2074
2074
|
|
|
2075
|
-
export type
|
|
2075
|
+
export type GetInfoForBookmarksParams = {
|
|
2076
2076
|
/**
|
|
2077
2077
|
* page id
|
|
2078
2078
|
*/
|
|
@@ -2088,76 +2088,76 @@ export type GetCustomizeSetting200 = {
|
|
|
2088
2088
|
customizeParams?: CustomizeSetting;
|
|
2089
2089
|
};
|
|
2090
2090
|
|
|
2091
|
-
export type
|
|
2091
|
+
export type PutLayoutForCustomizeSetting200 = {
|
|
2092
2092
|
/** customized params */
|
|
2093
2093
|
customizedParams?: CustomizeLayout;
|
|
2094
2094
|
};
|
|
2095
2095
|
|
|
2096
|
-
export type
|
|
2096
|
+
export type GetThemeForCustomizeSetting200 = {
|
|
2097
2097
|
/** The current theme name. */
|
|
2098
2098
|
currentTheme?: string;
|
|
2099
2099
|
/** Metadata for available plugin themes. */
|
|
2100
2100
|
pluginThemesMetadatas?: ThemesMetadata[];
|
|
2101
2101
|
};
|
|
2102
2102
|
|
|
2103
|
-
export type
|
|
2103
|
+
export type PutThemeForCustomizeSetting200 = {
|
|
2104
2104
|
customizedParams?: CustomizeTheme;
|
|
2105
2105
|
};
|
|
2106
2106
|
|
|
2107
|
-
export type
|
|
2107
|
+
export type PutSidebarForCustomizeSetting200 = {
|
|
2108
2108
|
customizedParams?: CustomizeSidebar;
|
|
2109
2109
|
};
|
|
2110
2110
|
|
|
2111
|
-
export type
|
|
2111
|
+
export type PutFunctionForCustomizeSetting200 = {
|
|
2112
2112
|
customizedParams?: CustomizeFunction;
|
|
2113
2113
|
};
|
|
2114
2114
|
|
|
2115
|
-
export type
|
|
2115
|
+
export type PutPresentationForCustomizeSetting200 = {
|
|
2116
2116
|
customizedParams?: CustomizePresentation;
|
|
2117
2117
|
};
|
|
2118
2118
|
|
|
2119
|
-
export type
|
|
2119
|
+
export type PutHighlightForCustomizeSetting200 = {
|
|
2120
2120
|
customizedParams?: CustomizeHighlightResponse;
|
|
2121
2121
|
};
|
|
2122
2122
|
|
|
2123
|
-
export type
|
|
2123
|
+
export type PutCustomizeTitleForCustomizeSetting200 = {
|
|
2124
2124
|
customizedParams?: CustomizeTitle;
|
|
2125
2125
|
};
|
|
2126
2126
|
|
|
2127
|
-
export type
|
|
2127
|
+
export type PutCustomizeNoscriptForCustomizeSetting200 = {
|
|
2128
2128
|
customizedParams?: CustomizeNoscript;
|
|
2129
2129
|
};
|
|
2130
2130
|
|
|
2131
|
-
export type
|
|
2131
|
+
export type PutCustomizeCssForCustomizeSetting200 = {
|
|
2132
2132
|
customizedParams?: CustomizeCss;
|
|
2133
2133
|
};
|
|
2134
2134
|
|
|
2135
|
-
export type
|
|
2135
|
+
export type PutCustomizeScriptForCustomizeSetting200 = {
|
|
2136
2136
|
customizedParams?: CustomizeScript;
|
|
2137
2137
|
};
|
|
2138
2138
|
|
|
2139
|
-
export type
|
|
2139
|
+
export type PutCustomizeLogoForCustomizeSetting200 = {
|
|
2140
2140
|
customizedParams?: CustomizeLogo;
|
|
2141
2141
|
};
|
|
2142
2142
|
|
|
2143
|
-
export type
|
|
2143
|
+
export type PutUploadBrandLogoForCustomizeSettingBody = {
|
|
2144
2144
|
file?: Blob;
|
|
2145
2145
|
};
|
|
2146
2146
|
|
|
2147
|
-
export type
|
|
2147
|
+
export type PutUploadBrandLogoForCustomizeSetting200AttachmentAllOf = {
|
|
2148
2148
|
creator?: string;
|
|
2149
2149
|
page?: unknown;
|
|
2150
2150
|
temporaryUrlExpiredAt?: unknown;
|
|
2151
2151
|
temporaryUrlCached?: unknown;
|
|
2152
2152
|
};
|
|
2153
2153
|
|
|
2154
|
-
export type
|
|
2154
|
+
export type PutUploadBrandLogoForCustomizeSetting200Attachment = Attachment & PutUploadBrandLogoForCustomizeSetting200AttachmentAllOf;
|
|
2155
2155
|
|
|
2156
|
-
export type
|
|
2157
|
-
attachment?:
|
|
2156
|
+
export type PutUploadBrandLogoForCustomizeSetting200 = {
|
|
2157
|
+
attachment?: PutUploadBrandLogoForCustomizeSetting200Attachment;
|
|
2158
2158
|
};
|
|
2159
2159
|
|
|
2160
|
-
export type
|
|
2160
|
+
export type GetStatusForExport200 = {
|
|
2161
2161
|
/** whether the request is succeeded or not */
|
|
2162
2162
|
ok?: boolean;
|
|
2163
2163
|
status?: ExportStatus;
|
|
@@ -2172,7 +2172,7 @@ export type PostExport200 = {
|
|
|
2172
2172
|
ok?: boolean;
|
|
2173
2173
|
};
|
|
2174
2174
|
|
|
2175
|
-
export type
|
|
2175
|
+
export type DeleteExportByFileName200 = {
|
|
2176
2176
|
/** whether the request is succeeded */
|
|
2177
2177
|
ok?: boolean;
|
|
2178
2178
|
};
|
|
@@ -2193,15 +2193,15 @@ export type PutForgotPassword200 = {
|
|
|
2193
2193
|
userData?: User;
|
|
2194
2194
|
};
|
|
2195
2195
|
|
|
2196
|
-
export type
|
|
2196
|
+
export type GetFilesForG2gTransfer200FilesItem = {
|
|
2197
2197
|
/** The name of the file */
|
|
2198
2198
|
name?: string;
|
|
2199
2199
|
/** The size of the file */
|
|
2200
2200
|
size?: number;
|
|
2201
2201
|
};
|
|
2202
2202
|
|
|
2203
|
-
export type
|
|
2204
|
-
files?:
|
|
2203
|
+
export type GetFilesForG2gTransfer200 = {
|
|
2204
|
+
files?: GetFilesForG2gTransfer200FilesItem[];
|
|
2205
2205
|
};
|
|
2206
2206
|
|
|
2207
2207
|
/**
|
|
@@ -2235,30 +2235,30 @@ export type PostG2gTransfer200 = {
|
|
|
2235
2235
|
/**
|
|
2236
2236
|
* Metadata of the attachment
|
|
2237
2237
|
*/
|
|
2238
|
-
export type
|
|
2238
|
+
export type PostAttachmentForG2gTransferBodyAttachmentMetadata = { [key: string]: unknown };
|
|
2239
2239
|
|
|
2240
|
-
export type
|
|
2240
|
+
export type PostAttachmentForG2gTransferBody = {
|
|
2241
2241
|
/** The zip file of the data to be transferred */
|
|
2242
2242
|
file?: Blob;
|
|
2243
2243
|
/** Metadata of the attachment */
|
|
2244
|
-
attachmentMetadata?:
|
|
2244
|
+
attachmentMetadata?: PostAttachmentForG2gTransferBodyAttachmentMetadata;
|
|
2245
2245
|
};
|
|
2246
2246
|
|
|
2247
|
-
export type
|
|
2247
|
+
export type PostAttachmentForG2gTransfer200 = {
|
|
2248
2248
|
/** The message of the result */
|
|
2249
2249
|
message?: string;
|
|
2250
2250
|
};
|
|
2251
2251
|
|
|
2252
|
-
export type
|
|
2252
|
+
export type GetGrowiInfoForG2gTransfer200 = {
|
|
2253
2253
|
growiInfo?: GrowiInfo;
|
|
2254
2254
|
};
|
|
2255
2255
|
|
|
2256
|
-
export type
|
|
2256
|
+
export type PostGenerateKeyForG2gTransferBody = {
|
|
2257
2257
|
/** The URL of the GROWI */
|
|
2258
2258
|
appSiteUrl?: string;
|
|
2259
2259
|
};
|
|
2260
2260
|
|
|
2261
|
-
export type
|
|
2261
|
+
export type PostGenerateKeyForG2gTransfer200 = {
|
|
2262
2262
|
/** The transfer key */
|
|
2263
2263
|
transferKey?: string;
|
|
2264
2264
|
};
|
|
@@ -2266,18 +2266,18 @@ export type PostG2gTransferGenerateKey200 = {
|
|
|
2266
2266
|
/**
|
|
2267
2267
|
* The map of options for each collection
|
|
2268
2268
|
*/
|
|
2269
|
-
export type
|
|
2269
|
+
export type PostTransferForG2gTransferBodyOptionsMap = { [key: string]: unknown };
|
|
2270
2270
|
|
|
2271
|
-
export type
|
|
2271
|
+
export type PostTransferForG2gTransferBody = {
|
|
2272
2272
|
/** The transfer key */
|
|
2273
2273
|
transferKey?: string;
|
|
2274
2274
|
/** The list of MongoDB collections to be transferred */
|
|
2275
2275
|
collections?: string[];
|
|
2276
2276
|
/** The map of options for each collection */
|
|
2277
|
-
optionsMap?:
|
|
2277
|
+
optionsMap?: PostTransferForG2gTransferBodyOptionsMap;
|
|
2278
2278
|
};
|
|
2279
2279
|
|
|
2280
|
-
export type
|
|
2280
|
+
export type PostTransferForG2gTransfer200 = {
|
|
2281
2281
|
/** The message of the result */
|
|
2282
2282
|
message?: string;
|
|
2283
2283
|
};
|
|
@@ -2363,15 +2363,15 @@ export type PostImportBody = {
|
|
|
2363
2363
|
options?: PostImportBodyOptions;
|
|
2364
2364
|
};
|
|
2365
2365
|
|
|
2366
|
-
export type
|
|
2366
|
+
export type GetStatusForImport200 = {
|
|
2367
2367
|
status?: ImportStatus;
|
|
2368
2368
|
};
|
|
2369
2369
|
|
|
2370
|
-
export type
|
|
2370
|
+
export type PostUploadForImportBody = {
|
|
2371
2371
|
file?: Blob;
|
|
2372
2372
|
};
|
|
2373
2373
|
|
|
2374
|
-
export type
|
|
2374
|
+
export type GetListForInAppNotificationParams = {
|
|
2375
2375
|
/**
|
|
2376
2376
|
* The number of notifications to get
|
|
2377
2377
|
*/
|
|
@@ -2386,17 +2386,17 @@ export type GetInAppNotificationListParams = {
|
|
|
2386
2386
|
status?: string;
|
|
2387
2387
|
};
|
|
2388
2388
|
|
|
2389
|
-
export type
|
|
2389
|
+
export type GetStatusForInAppNotification200 = {
|
|
2390
2390
|
/** Count of unread notifications */
|
|
2391
2391
|
count?: number;
|
|
2392
2392
|
};
|
|
2393
2393
|
|
|
2394
|
-
export type
|
|
2394
|
+
export type PostOpenForInAppNotificationBody = {
|
|
2395
2395
|
/** Notification ID */
|
|
2396
2396
|
id: string;
|
|
2397
2397
|
};
|
|
2398
2398
|
|
|
2399
|
-
export type
|
|
2399
|
+
export type PostOpenForInAppNotification200 = { [key: string]: unknown };
|
|
2400
2400
|
|
|
2401
2401
|
export type PostInstallerBodyRegisterForm = {
|
|
2402
2402
|
name?: string;
|
|
@@ -2437,16 +2437,16 @@ export type GetMarkdownSetting200 = {
|
|
|
2437
2437
|
markdownParams?: MarkdownParams;
|
|
2438
2438
|
};
|
|
2439
2439
|
|
|
2440
|
-
export type
|
|
2440
|
+
export type PutLineBreakForMarkdownSetting200 = {
|
|
2441
2441
|
lineBreaksParams?: LineBreakParams;
|
|
2442
2442
|
};
|
|
2443
2443
|
|
|
2444
|
-
export type
|
|
2444
|
+
export type PutIndentForMarkdownSetting200 = {
|
|
2445
2445
|
/** indent params */
|
|
2446
2446
|
indentParams?: IndentParams;
|
|
2447
2447
|
};
|
|
2448
2448
|
|
|
2449
|
-
export type
|
|
2449
|
+
export type GetCollectionsForMongo200 = {
|
|
2450
2450
|
/** whether the request is succeeded */
|
|
2451
2451
|
ok?: boolean;
|
|
2452
2452
|
collections?: string[];
|
|
@@ -2460,50 +2460,50 @@ export type GetNotificationSetting200 = {
|
|
|
2460
2460
|
/**
|
|
2461
2461
|
* response params
|
|
2462
2462
|
*/
|
|
2463
|
-
export type
|
|
2463
|
+
export type PostUserNotificationForNotificationSetting200ResponseParams = {
|
|
2464
2464
|
/** user who set notification */
|
|
2465
2465
|
createdUser?: User;
|
|
2466
2466
|
userNotifications?: UserNotification[];
|
|
2467
2467
|
};
|
|
2468
2468
|
|
|
2469
|
-
export type
|
|
2469
|
+
export type PostUserNotificationForNotificationSetting200 = {
|
|
2470
2470
|
/** response params */
|
|
2471
|
-
responseParams?:
|
|
2471
|
+
responseParams?: PostUserNotificationForNotificationSetting200ResponseParams;
|
|
2472
2472
|
};
|
|
2473
2473
|
|
|
2474
|
-
export type
|
|
2474
|
+
export type GetGlobalNotificationByIdForNotificationSetting200 = {
|
|
2475
2475
|
globalNotification?: GlobalNotification;
|
|
2476
2476
|
};
|
|
2477
2477
|
|
|
2478
|
-
export type
|
|
2478
|
+
export type PutGlobalNotificationByIdForNotificationSetting200 = {
|
|
2479
2479
|
/** notification param updated */
|
|
2480
2480
|
createdNotification?: GlobalNotification;
|
|
2481
2481
|
};
|
|
2482
2482
|
|
|
2483
|
-
export type
|
|
2483
|
+
export type PostGlobalNotificationForNotificationSetting200 = {
|
|
2484
2484
|
/** notification param created */
|
|
2485
2485
|
createdNotification?: GlobalNotification;
|
|
2486
2486
|
};
|
|
2487
2487
|
|
|
2488
|
-
export type
|
|
2488
|
+
export type PutEnabledByIdForNotificationSettingGlobalNotificationBody = {
|
|
2489
2489
|
/** is notification enabled */
|
|
2490
2490
|
isEnabled?: boolean;
|
|
2491
2491
|
};
|
|
2492
2492
|
|
|
2493
|
-
export type
|
|
2493
|
+
export type PutEnabledByIdForNotificationSettingGlobalNotification200 = {
|
|
2494
2494
|
/** notification id */
|
|
2495
2495
|
id?: string;
|
|
2496
2496
|
};
|
|
2497
2497
|
|
|
2498
|
-
export type
|
|
2498
|
+
export type GetRootForPageListing200 = {
|
|
2499
2499
|
rootPage?: Page;
|
|
2500
2500
|
};
|
|
2501
2501
|
|
|
2502
|
-
export type
|
|
2502
|
+
export type GetAncestorsChildrenForPageListingParams = {
|
|
2503
2503
|
path: string;
|
|
2504
2504
|
};
|
|
2505
2505
|
|
|
2506
|
-
export type
|
|
2506
|
+
export type GetAncestorsChildrenForPageListing200AncestorsChildren = {
|
|
2507
2507
|
[key: string]: {
|
|
2508
2508
|
/** Document ID */
|
|
2509
2509
|
_id?: string;
|
|
@@ -2523,27 +2523,27 @@ export type GetPageListingAncestorsChildren200AncestorsChildren = {
|
|
|
2523
2523
|
};
|
|
2524
2524
|
};
|
|
2525
2525
|
|
|
2526
|
-
export type
|
|
2527
|
-
ancestorsChildren?:
|
|
2526
|
+
export type GetAncestorsChildrenForPageListing200 = {
|
|
2527
|
+
ancestorsChildren?: GetAncestorsChildrenForPageListing200AncestorsChildren;
|
|
2528
2528
|
};
|
|
2529
2529
|
|
|
2530
|
-
export type
|
|
2530
|
+
export type GetChildrenForPageListingParams = {
|
|
2531
2531
|
id?: string;
|
|
2532
2532
|
path?: string;
|
|
2533
2533
|
};
|
|
2534
2534
|
|
|
2535
|
-
export type
|
|
2535
|
+
export type GetChildrenForPageListing200 = {
|
|
2536
2536
|
children?: Page[];
|
|
2537
2537
|
};
|
|
2538
2538
|
|
|
2539
|
-
export type
|
|
2539
|
+
export type GetInfoForPageListingParams = {
|
|
2540
2540
|
pageIds?: string[];
|
|
2541
2541
|
path?: string;
|
|
2542
2542
|
attachBookmarkCount?: boolean;
|
|
2543
2543
|
attachShortBody?: boolean;
|
|
2544
2544
|
};
|
|
2545
2545
|
|
|
2546
|
-
export type
|
|
2546
|
+
export type GetInfoForPageListing200IdToPageInfoMap = {
|
|
2547
2547
|
[key: string]: {
|
|
2548
2548
|
commentCount?: number;
|
|
2549
2549
|
contentAge?: number;
|
|
@@ -2561,8 +2561,8 @@ export type GetPageListingInfo200IdToPageInfoMap = {
|
|
|
2561
2561
|
};
|
|
2562
2562
|
};
|
|
2563
2563
|
|
|
2564
|
-
export type
|
|
2565
|
-
idToPageInfoMap?:
|
|
2564
|
+
export type GetInfoForPageListing200 = {
|
|
2565
|
+
idToPageInfoMap?: GetInfoForPageListing200IdToPageInfoMap;
|
|
2566
2566
|
};
|
|
2567
2567
|
|
|
2568
2568
|
export type GetPageParams = {
|
|
@@ -2623,60 +2623,60 @@ export type PutPage200 = {
|
|
|
2623
2623
|
data?: PutPage200Data;
|
|
2624
2624
|
};
|
|
2625
2625
|
|
|
2626
|
-
export type
|
|
2626
|
+
export type GetExistForPageParams = {
|
|
2627
2627
|
/**
|
|
2628
2628
|
* The path to check for existence
|
|
2629
2629
|
*/
|
|
2630
2630
|
path: string;
|
|
2631
2631
|
};
|
|
2632
2632
|
|
|
2633
|
-
export type
|
|
2633
|
+
export type GetExistForPage200 = {
|
|
2634
2634
|
isExist?: boolean;
|
|
2635
2635
|
};
|
|
2636
2636
|
|
|
2637
|
-
export type
|
|
2637
|
+
export type GetGrantDataForPageParams = {
|
|
2638
2638
|
/**
|
|
2639
2639
|
* page id
|
|
2640
2640
|
*/
|
|
2641
2641
|
pageId?: ObjectId;
|
|
2642
2642
|
};
|
|
2643
2643
|
|
|
2644
|
-
export type
|
|
2644
|
+
export type GetGrantDataForPage200 = {
|
|
2645
2645
|
isGrantNormalized?: boolean;
|
|
2646
2646
|
};
|
|
2647
2647
|
|
|
2648
|
-
export type
|
|
2648
|
+
export type GetNonUserRelatedGroupsGrantedForPageParams = {
|
|
2649
2649
|
/**
|
|
2650
2650
|
* Path of the page
|
|
2651
2651
|
*/
|
|
2652
2652
|
path: string;
|
|
2653
2653
|
};
|
|
2654
2654
|
|
|
2655
|
-
export type
|
|
2655
|
+
export type GetNonUserRelatedGroupsGrantedForPage200 = {
|
|
2656
2656
|
isNonUserRelatedGroupsGranted?: boolean;
|
|
2657
2657
|
};
|
|
2658
2658
|
|
|
2659
|
-
export type
|
|
2659
|
+
export type GetApplicableGrantForPageParams = {
|
|
2660
2660
|
/**
|
|
2661
2661
|
* ID of the page
|
|
2662
2662
|
*/
|
|
2663
2663
|
pageId: string;
|
|
2664
2664
|
};
|
|
2665
2665
|
|
|
2666
|
-
export type
|
|
2666
|
+
export type GetApplicableGrantForPage200 = {
|
|
2667
2667
|
grant?: number;
|
|
2668
2668
|
grantedUsers?: string[];
|
|
2669
2669
|
grantedGroups?: string[];
|
|
2670
2670
|
};
|
|
2671
2671
|
|
|
2672
|
-
export type
|
|
2672
|
+
export type PutGrantByPageIdBody = {
|
|
2673
2673
|
/** Grant level */
|
|
2674
2674
|
grant?: number;
|
|
2675
2675
|
/** Array of user-related granted group IDs */
|
|
2676
2676
|
userRelatedGrantedGroups?: string[];
|
|
2677
2677
|
};
|
|
2678
2678
|
|
|
2679
|
-
export type
|
|
2679
|
+
export type GetExistPathsForPageParams = {
|
|
2680
2680
|
/**
|
|
2681
2681
|
* old parent path
|
|
2682
2682
|
*/
|
|
@@ -2690,54 +2690,54 @@ export type GetPageExistPathsParams = {
|
|
|
2690
2690
|
/**
|
|
2691
2691
|
* Paths are already exist in DB
|
|
2692
2692
|
*/
|
|
2693
|
-
export type
|
|
2693
|
+
export type GetExistPathsForPage200ExistPaths = { [key: string]: unknown };
|
|
2694
2694
|
|
|
2695
|
-
export type
|
|
2695
|
+
export type GetExistPathsForPage200 = {
|
|
2696
2696
|
/** Paths are already exist in DB */
|
|
2697
|
-
existPaths?:
|
|
2697
|
+
existPaths?: GetExistPathsForPage200ExistPaths;
|
|
2698
2698
|
};
|
|
2699
2699
|
|
|
2700
|
-
export type
|
|
2700
|
+
export type PutSubscribeForPageBody = {
|
|
2701
2701
|
pageId?: ObjectId;
|
|
2702
2702
|
};
|
|
2703
2703
|
|
|
2704
|
-
export type
|
|
2704
|
+
export type PutContentWidthByPageIdBody = {
|
|
2705
2705
|
/** Whether to expand the content width */
|
|
2706
2706
|
expandContentWidth?: boolean;
|
|
2707
2707
|
};
|
|
2708
2708
|
|
|
2709
|
-
export type
|
|
2709
|
+
export type PutContentWidthByPageId200 = {
|
|
2710
2710
|
page?: Page;
|
|
2711
2711
|
};
|
|
2712
2712
|
|
|
2713
2713
|
/**
|
|
2714
2714
|
* Yjs data
|
|
2715
2715
|
*/
|
|
2716
|
-
export type
|
|
2716
|
+
export type GetYjsDataByPageId200YjsData = {
|
|
2717
2717
|
/** Whether Yjs documents are newer than the latest revision */
|
|
2718
2718
|
hasYdocsNewerThanLatestRevision?: boolean;
|
|
2719
2719
|
/** Size of the awareness state */
|
|
2720
2720
|
awarenessStateSize?: number;
|
|
2721
2721
|
};
|
|
2722
2722
|
|
|
2723
|
-
export type
|
|
2723
|
+
export type GetYjsDataByPageId200 = {
|
|
2724
2724
|
/** Yjs data */
|
|
2725
|
-
yjsData?:
|
|
2725
|
+
yjsData?: GetYjsDataByPageId200YjsData;
|
|
2726
2726
|
};
|
|
2727
2727
|
|
|
2728
|
-
export type
|
|
2728
|
+
export type PutSyncLatestRevisionBodyToYjsDraftByPageIdBody = {
|
|
2729
2729
|
/** Length of the editing markdown */
|
|
2730
2730
|
editingMarkdownLength?: number;
|
|
2731
2731
|
};
|
|
2732
2732
|
|
|
2733
|
-
export type
|
|
2733
|
+
export type PutSyncLatestRevisionBodyToYjsDraftByPageId200 = {
|
|
2734
2734
|
/** Whether the latest revision body is synced to the Yjs draft */
|
|
2735
2735
|
synced?: boolean;
|
|
2736
2736
|
/** Whether Yjs data is broken */
|
|
2737
2737
|
isYjsDataBroken?: boolean;
|
|
2738
2738
|
};
|
|
2739
2739
|
|
|
2740
|
-
export type
|
|
2740
|
+
export type GetRecentForPagesParams = {
|
|
2741
2741
|
/**
|
|
2742
2742
|
* Limit of acquisitions
|
|
2743
2743
|
*/
|
|
@@ -2752,7 +2752,7 @@ export type GetPagesRecentParams = {
|
|
|
2752
2752
|
includeWipPage?: string;
|
|
2753
2753
|
};
|
|
2754
2754
|
|
|
2755
|
-
export type
|
|
2755
|
+
export type PostRenameForPagesBody = {
|
|
2756
2756
|
pageId: ObjectId;
|
|
2757
2757
|
path?: PagePath;
|
|
2758
2758
|
/** revision ID */
|
|
@@ -2767,21 +2767,21 @@ export type PostPagesRenameBody = {
|
|
|
2767
2767
|
isRecursively?: boolean;
|
|
2768
2768
|
};
|
|
2769
2769
|
|
|
2770
|
-
export type
|
|
2770
|
+
export type PostRenameForPages200 = {
|
|
2771
2771
|
page?: Page;
|
|
2772
2772
|
};
|
|
2773
2773
|
|
|
2774
|
-
export type
|
|
2774
|
+
export type PostResumeRenameForPagesBody = {
|
|
2775
2775
|
pageId: ObjectId;
|
|
2776
2776
|
};
|
|
2777
2777
|
|
|
2778
|
-
export type
|
|
2778
|
+
export type PostResumeRenameForPages200 = { [key: string]: unknown };
|
|
2779
2779
|
|
|
2780
|
-
export type
|
|
2780
|
+
export type DeleteEmptyTrashForPages200 = {
|
|
2781
2781
|
deletablePages?: Page[];
|
|
2782
2782
|
};
|
|
2783
2783
|
|
|
2784
|
-
export type
|
|
2784
|
+
export type GetListForPagesParams = {
|
|
2785
2785
|
/**
|
|
2786
2786
|
* Path to search
|
|
2787
2787
|
*/
|
|
@@ -2796,23 +2796,23 @@ export type GetPagesListParams = {
|
|
|
2796
2796
|
page?: number;
|
|
2797
2797
|
};
|
|
2798
2798
|
|
|
2799
|
-
export type
|
|
2799
|
+
export type GetListForPages200PagesItemAllOf = {
|
|
2800
2800
|
lastUpdateUser?: User;
|
|
2801
2801
|
};
|
|
2802
2802
|
|
|
2803
|
-
export type
|
|
2803
|
+
export type GetListForPages200PagesItem = Page & GetListForPages200PagesItemAllOf;
|
|
2804
2804
|
|
|
2805
|
-
export type
|
|
2805
|
+
export type GetListForPages200 = {
|
|
2806
2806
|
/** Total count of pages */
|
|
2807
2807
|
totalCount?: number;
|
|
2808
2808
|
/** Offset of pages */
|
|
2809
2809
|
offset?: number;
|
|
2810
2810
|
/** Limit of pages */
|
|
2811
2811
|
limit?: number;
|
|
2812
|
-
pages?:
|
|
2812
|
+
pages?: GetListForPages200PagesItem[];
|
|
2813
2813
|
};
|
|
2814
2814
|
|
|
2815
|
-
export type
|
|
2815
|
+
export type PostDuplicateForPagesBody = {
|
|
2816
2816
|
pageId: ObjectId;
|
|
2817
2817
|
pageNameInput?: PagePath;
|
|
2818
2818
|
/** whether duplicate page with descendants */
|
|
@@ -2821,11 +2821,11 @@ export type PostPagesDuplicateBody = {
|
|
|
2821
2821
|
onlyDuplicateUserRelatedResources?: boolean;
|
|
2822
2822
|
};
|
|
2823
2823
|
|
|
2824
|
-
export type
|
|
2824
|
+
export type PostDuplicateForPages200 = {
|
|
2825
2825
|
page?: Page;
|
|
2826
2826
|
};
|
|
2827
2827
|
|
|
2828
|
-
export type
|
|
2828
|
+
export type GetSubordinatedListForPagesParams = {
|
|
2829
2829
|
/**
|
|
2830
2830
|
* Parent path of search
|
|
2831
2831
|
*/
|
|
@@ -2836,18 +2836,18 @@ export type GetPagesSubordinatedListParams = {
|
|
|
2836
2836
|
limit?: number;
|
|
2837
2837
|
};
|
|
2838
2838
|
|
|
2839
|
-
export type
|
|
2839
|
+
export type GetSubordinatedListForPages200 = {
|
|
2840
2840
|
subordinatedPages?: Page[];
|
|
2841
2841
|
};
|
|
2842
2842
|
|
|
2843
2843
|
/**
|
|
2844
2844
|
* Map of page IDs to revision IDs
|
|
2845
2845
|
*/
|
|
2846
|
-
export type
|
|
2846
|
+
export type PostDeleteForPagesBodyPageIdToRevisionIdMap = { [key: string]: unknown };
|
|
2847
2847
|
|
|
2848
|
-
export type
|
|
2848
|
+
export type PostDeleteForPagesBody = {
|
|
2849
2849
|
/** Map of page IDs to revision IDs */
|
|
2850
|
-
pageIdToRevisionIdMap?:
|
|
2850
|
+
pageIdToRevisionIdMap?: PostDeleteForPagesBodyPageIdToRevisionIdMap;
|
|
2851
2851
|
/** Whether to delete pages completely */
|
|
2852
2852
|
isCompletely?: boolean;
|
|
2853
2853
|
/** Whether to delete pages recursively */
|
|
@@ -2856,7 +2856,7 @@ export type PostPagesDeleteBody = {
|
|
|
2856
2856
|
isAnyoneWithTheLink?: boolean;
|
|
2857
2857
|
};
|
|
2858
2858
|
|
|
2859
|
-
export type
|
|
2859
|
+
export type PostDeleteForPages200 = {
|
|
2860
2860
|
/** List of deleted page paths */
|
|
2861
2861
|
paths?: string[];
|
|
2862
2862
|
/** Whether pages were deleted recursively */
|
|
@@ -2865,7 +2865,7 @@ export type PostPagesDelete200 = {
|
|
|
2865
2865
|
isCompletely?: boolean;
|
|
2866
2866
|
};
|
|
2867
2867
|
|
|
2868
|
-
export type
|
|
2868
|
+
export type PostConvertPagesByPathForPagesBody = {
|
|
2869
2869
|
/** Path to convert */
|
|
2870
2870
|
convertPath?: string;
|
|
2871
2871
|
};
|
|
@@ -2873,9 +2873,9 @@ export type PostPagesConvertPagesByPathBody = {
|
|
|
2873
2873
|
/**
|
|
2874
2874
|
* Empty object
|
|
2875
2875
|
*/
|
|
2876
|
-
export type
|
|
2876
|
+
export type PostConvertPagesByPathForPages200 = { [key: string]: unknown };
|
|
2877
2877
|
|
|
2878
|
-
export type
|
|
2878
|
+
export type PostLegacyPagesMigrationForPagesBody = {
|
|
2879
2879
|
/** List of page IDs to migrate */
|
|
2880
2880
|
pageIds?: string[];
|
|
2881
2881
|
/** Whether to migrate pages recursively */
|
|
@@ -2885,9 +2885,9 @@ export type PostPagesLegacyPagesMigrationBody = {
|
|
|
2885
2885
|
/**
|
|
2886
2886
|
* Empty object
|
|
2887
2887
|
*/
|
|
2888
|
-
export type
|
|
2888
|
+
export type PostLegacyPagesMigrationForPages200 = { [key: string]: unknown };
|
|
2889
2889
|
|
|
2890
|
-
export type
|
|
2890
|
+
export type GetV5MigrationStatusForPages200 = {
|
|
2891
2891
|
/** Whether the app is V5 compatible */
|
|
2892
2892
|
isV5Compatible?: boolean;
|
|
2893
2893
|
/** Number of pages that can be migrated */
|
|
@@ -2914,38 +2914,38 @@ export type PutPersonalSetting200 = {
|
|
|
2914
2914
|
updatedUser?: PutPersonalSetting200UpdatedUser;
|
|
2915
2915
|
};
|
|
2916
2916
|
|
|
2917
|
-
export type
|
|
2917
|
+
export type GetIsPasswordSetForPersonalSetting200 = {
|
|
2918
2918
|
/** Whether a password has been set */
|
|
2919
2919
|
isPasswordSet?: boolean;
|
|
2920
2920
|
/** Minimum password length */
|
|
2921
2921
|
minPasswordLength?: number;
|
|
2922
2922
|
};
|
|
2923
2923
|
|
|
2924
|
-
export type
|
|
2924
|
+
export type PutImageTypeForPersonalSettingBody = {
|
|
2925
2925
|
isGravatarEnabled?: boolean;
|
|
2926
2926
|
};
|
|
2927
2927
|
|
|
2928
2928
|
/**
|
|
2929
2929
|
* user data
|
|
2930
2930
|
*/
|
|
2931
|
-
export type
|
|
2931
|
+
export type PutImageTypeForPersonalSetting200UserData = { [key: string]: unknown };
|
|
2932
2932
|
|
|
2933
|
-
export type
|
|
2933
|
+
export type PutImageTypeForPersonalSetting200 = {
|
|
2934
2934
|
/** user data */
|
|
2935
|
-
userData?:
|
|
2935
|
+
userData?: PutImageTypeForPersonalSetting200UserData;
|
|
2936
2936
|
};
|
|
2937
2937
|
|
|
2938
2938
|
/**
|
|
2939
2939
|
* array of external accounts
|
|
2940
2940
|
*/
|
|
2941
|
-
export type
|
|
2941
|
+
export type GetExternalAccountsForPersonalSetting200ExternalAccounts = { [key: string]: unknown };
|
|
2942
2942
|
|
|
2943
|
-
export type
|
|
2943
|
+
export type GetExternalAccountsForPersonalSetting200 = {
|
|
2944
2944
|
/** array of external accounts */
|
|
2945
|
-
externalAccounts?:
|
|
2945
|
+
externalAccounts?: GetExternalAccountsForPersonalSetting200ExternalAccounts;
|
|
2946
2946
|
};
|
|
2947
2947
|
|
|
2948
|
-
export type
|
|
2948
|
+
export type PutPasswordForPersonalSettingBody = {
|
|
2949
2949
|
oldPassword?: string;
|
|
2950
2950
|
newPassword?: string;
|
|
2951
2951
|
};
|
|
@@ -2953,48 +2953,48 @@ export type PutPersonalSettingPasswordBody = {
|
|
|
2953
2953
|
/**
|
|
2954
2954
|
* user data updated
|
|
2955
2955
|
*/
|
|
2956
|
-
export type
|
|
2956
|
+
export type PutPasswordForPersonalSetting200UserData = { [key: string]: unknown };
|
|
2957
2957
|
|
|
2958
|
-
export type
|
|
2958
|
+
export type PutPasswordForPersonalSetting200 = {
|
|
2959
2959
|
/** user data updated */
|
|
2960
|
-
userData?:
|
|
2960
|
+
userData?: PutPasswordForPersonalSetting200UserData;
|
|
2961
2961
|
};
|
|
2962
2962
|
|
|
2963
2963
|
/**
|
|
2964
2964
|
* user data
|
|
2965
2965
|
*/
|
|
2966
|
-
export type
|
|
2966
|
+
export type PutApiTokenForPersonalSetting200UserData = { [key: string]: unknown };
|
|
2967
2967
|
|
|
2968
|
-
export type
|
|
2968
|
+
export type PutApiTokenForPersonalSetting200 = {
|
|
2969
2969
|
/** user data */
|
|
2970
|
-
userData?:
|
|
2970
|
+
userData?: PutApiTokenForPersonalSetting200UserData;
|
|
2971
2971
|
};
|
|
2972
2972
|
|
|
2973
|
-
export type
|
|
2973
|
+
export type PutAssociateLdapForPersonalSettingBody = {
|
|
2974
2974
|
username?: string;
|
|
2975
2975
|
};
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Ldap account associate to me
|
|
2979
2979
|
*/
|
|
2980
|
-
export type
|
|
2980
|
+
export type PutAssociateLdapForPersonalSetting200AssociateUser = { [key: string]: unknown };
|
|
2981
2981
|
|
|
2982
|
-
export type
|
|
2982
|
+
export type PutAssociateLdapForPersonalSetting200 = {
|
|
2983
2983
|
/** Ldap account associate to me */
|
|
2984
|
-
associateUser?:
|
|
2984
|
+
associateUser?: PutAssociateLdapForPersonalSetting200AssociateUser;
|
|
2985
2985
|
};
|
|
2986
2986
|
|
|
2987
2987
|
/**
|
|
2988
2988
|
* Ldap account disassociate to me
|
|
2989
2989
|
*/
|
|
2990
|
-
export type
|
|
2990
|
+
export type PutDisassociateLdapForPersonalSetting200DisassociateUser = { [key: string]: unknown };
|
|
2991
2991
|
|
|
2992
|
-
export type
|
|
2992
|
+
export type PutDisassociateLdapForPersonalSetting200 = {
|
|
2993
2993
|
/** Ldap account disassociate to me */
|
|
2994
|
-
disassociateUser?:
|
|
2994
|
+
disassociateUser?: PutDisassociateLdapForPersonalSetting200DisassociateUser;
|
|
2995
2995
|
};
|
|
2996
2996
|
|
|
2997
|
-
export type
|
|
2997
|
+
export type PutEditorSettingsForPersonalSettingBody = {
|
|
2998
2998
|
theme?: string;
|
|
2999
2999
|
keymapMode?: string;
|
|
3000
3000
|
styleActiveLine?: boolean;
|
|
@@ -3004,44 +3004,44 @@ export type PutPersonalSettingEditorSettingsBody = {
|
|
|
3004
3004
|
/**
|
|
3005
3005
|
* editor settings
|
|
3006
3006
|
*/
|
|
3007
|
-
export type
|
|
3007
|
+
export type PutEditorSettingsForPersonalSetting200 = { [key: string]: unknown };
|
|
3008
3008
|
|
|
3009
3009
|
/**
|
|
3010
3010
|
* editor settings
|
|
3011
3011
|
*/
|
|
3012
|
-
export type
|
|
3012
|
+
export type GetEditorSettingsForPersonalSetting200 = { [key: string]: unknown };
|
|
3013
3013
|
|
|
3014
|
-
export type
|
|
3014
|
+
export type PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem = {
|
|
3015
3015
|
name?: string;
|
|
3016
3016
|
isEnabled?: boolean;
|
|
3017
3017
|
};
|
|
3018
3018
|
|
|
3019
|
-
export type
|
|
3020
|
-
subscribeRules?:
|
|
3019
|
+
export type PutInAppNotificationSettingsForPersonalSettingBody = {
|
|
3020
|
+
subscribeRules?: PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem[];
|
|
3021
3021
|
};
|
|
3022
3022
|
|
|
3023
|
-
export type
|
|
3023
|
+
export type PutInAppNotificationSettingsForPersonalSetting200 = { [key: string]: unknown };
|
|
3024
3024
|
|
|
3025
3025
|
/**
|
|
3026
3026
|
* InAppNotificationSettings
|
|
3027
3027
|
*/
|
|
3028
|
-
export type
|
|
3028
|
+
export type GetInAppNotificationSettingsForPersonalSetting200CurrentUser = { [key: string]: unknown };
|
|
3029
3029
|
|
|
3030
|
-
export type
|
|
3030
|
+
export type GetInAppNotificationSettingsForPersonalSetting200 = {
|
|
3031
3031
|
/** InAppNotificationSettings */
|
|
3032
|
-
currentUser?:
|
|
3032
|
+
currentUser?: GetInAppNotificationSettingsForPersonalSetting200CurrentUser;
|
|
3033
3033
|
};
|
|
3034
3034
|
|
|
3035
|
-
export type
|
|
3035
|
+
export type PutQuestionnaireSettingsForPersonalSettingBody = {
|
|
3036
3036
|
isQuestionnaireEnabled?: boolean;
|
|
3037
3037
|
};
|
|
3038
3038
|
|
|
3039
|
-
export type
|
|
3039
|
+
export type PutQuestionnaireSettingsForPersonalSetting200 = {
|
|
3040
3040
|
message?: string;
|
|
3041
3041
|
isQuestionnaireEnabled?: boolean;
|
|
3042
3042
|
};
|
|
3043
3043
|
|
|
3044
|
-
export type
|
|
3044
|
+
export type GetListForRevisionsParams = {
|
|
3045
3045
|
pageId?: string;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* selected page number
|
|
@@ -3053,7 +3053,7 @@ export type GetRevisionsListParams = {
|
|
|
3053
3053
|
limit?: number;
|
|
3054
3054
|
};
|
|
3055
3055
|
|
|
3056
|
-
export type
|
|
3056
|
+
export type GetListForRevisions200 = {
|
|
3057
3057
|
revisions?: Revision[];
|
|
3058
3058
|
/** total count of revisions */
|
|
3059
3059
|
totalCount?: number;
|
|
@@ -3061,18 +3061,18 @@ export type GetRevisionsList200 = {
|
|
|
3061
3061
|
offset?: number;
|
|
3062
3062
|
};
|
|
3063
3063
|
|
|
3064
|
-
export type
|
|
3064
|
+
export type GetRevisionsByIdParams = {
|
|
3065
3065
|
/**
|
|
3066
3066
|
* page id
|
|
3067
3067
|
*/
|
|
3068
3068
|
pageId: string;
|
|
3069
3069
|
};
|
|
3070
3070
|
|
|
3071
|
-
export type
|
|
3071
|
+
export type GetRevisionsById200 = {
|
|
3072
3072
|
revision?: Revision;
|
|
3073
3073
|
};
|
|
3074
3074
|
|
|
3075
|
-
export type
|
|
3075
|
+
export type GetIndicesForSearch200 = {
|
|
3076
3076
|
/** Status of indices */
|
|
3077
3077
|
info?: Indices;
|
|
3078
3078
|
};
|
|
@@ -3080,20 +3080,20 @@ export type GetSearchIndices200 = {
|
|
|
3080
3080
|
/**
|
|
3081
3081
|
* Operation type against to indices > * `normalize` - Normalize indices * `rebuild` - Rebuild indices
|
|
3082
3082
|
*/
|
|
3083
|
-
export type
|
|
3083
|
+
export type PutIndicesForSearchBodyOperation = (typeof PutIndicesForSearchBodyOperation)[keyof typeof PutIndicesForSearchBodyOperation];
|
|
3084
3084
|
|
|
3085
3085
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
3086
|
-
export const
|
|
3086
|
+
export const PutIndicesForSearchBodyOperation = {
|
|
3087
3087
|
normalize: 'normalize',
|
|
3088
3088
|
rebuild: 'rebuild',
|
|
3089
3089
|
} as const;
|
|
3090
3090
|
|
|
3091
|
-
export type
|
|
3091
|
+
export type PutIndicesForSearchBody = {
|
|
3092
3092
|
/** Operation type against to indices > * `normalize` - Normalize indices * `rebuild` - Rebuild indices */
|
|
3093
|
-
operation?:
|
|
3093
|
+
operation?: PutIndicesForSearchBodyOperation;
|
|
3094
3094
|
};
|
|
3095
3095
|
|
|
3096
|
-
export type
|
|
3096
|
+
export type PutIndicesForSearch200 = {
|
|
3097
3097
|
/** Operation is successfully processed, or requested */
|
|
3098
3098
|
message?: string;
|
|
3099
3099
|
};
|
|
@@ -3118,7 +3118,7 @@ export type GetSecuritySetting200 = {
|
|
|
3118
3118
|
securityParams?: GetSecuritySetting200SecurityParams;
|
|
3119
3119
|
};
|
|
3120
3120
|
|
|
3121
|
-
export type
|
|
3121
|
+
export type PutEnabledForSecuritySettingAuthenticationBody = {
|
|
3122
3122
|
isEnabled?: boolean;
|
|
3123
3123
|
authId?: string;
|
|
3124
3124
|
};
|
|
@@ -3126,53 +3126,53 @@ export type PutSecuritySettingAuthenticationEnabledBody = {
|
|
|
3126
3126
|
/**
|
|
3127
3127
|
* updated param
|
|
3128
3128
|
*/
|
|
3129
|
-
export type
|
|
3129
|
+
export type PutEnabledForSecuritySettingAuthentication200 = { [key: string]: unknown };
|
|
3130
3130
|
|
|
3131
|
-
export type
|
|
3131
|
+
export type GetAuthenticationForSecuritySetting200 = {
|
|
3132
3132
|
/** setup strategies list */
|
|
3133
3133
|
setupStrategies?: string[];
|
|
3134
3134
|
};
|
|
3135
3135
|
|
|
3136
|
-
export type
|
|
3136
|
+
export type PutShareLinkSettingForSecuritySetting200 = {
|
|
3137
3137
|
securitySettingParams?: ShareLinkSetting;
|
|
3138
3138
|
};
|
|
3139
3139
|
|
|
3140
3140
|
/**
|
|
3141
3141
|
* suceed to get all share links
|
|
3142
3142
|
*/
|
|
3143
|
-
export type
|
|
3143
|
+
export type GetAllShareLinksForSecuritySetting200SecurityParams = { [key: string]: unknown };
|
|
3144
3144
|
|
|
3145
|
-
export type
|
|
3145
|
+
export type GetAllShareLinksForSecuritySetting200 = {
|
|
3146
3146
|
/** suceed to get all share links */
|
|
3147
|
-
securityParams?:
|
|
3147
|
+
securityParams?: GetAllShareLinksForSecuritySetting200SecurityParams;
|
|
3148
3148
|
};
|
|
3149
3149
|
|
|
3150
|
-
export type
|
|
3150
|
+
export type DeleteAllShareLinksForSecuritySetting200 = {
|
|
3151
3151
|
/** total number of removed share links */
|
|
3152
3152
|
removeTotal?: number;
|
|
3153
3153
|
};
|
|
3154
3154
|
|
|
3155
|
-
export type
|
|
3155
|
+
export type PutLocalSettingForSecuritySetting200 = {
|
|
3156
3156
|
localSettingParams?: LocalSetting;
|
|
3157
3157
|
};
|
|
3158
3158
|
|
|
3159
|
-
export type
|
|
3159
|
+
export type PutLdapForSecuritySetting200 = {
|
|
3160
3160
|
securitySettingParams?: LdapAuthSetting;
|
|
3161
3161
|
};
|
|
3162
3162
|
|
|
3163
|
-
export type
|
|
3163
|
+
export type PutSamlForSecuritySetting200 = {
|
|
3164
3164
|
securitySettingParams?: SamlAuthSetting;
|
|
3165
3165
|
};
|
|
3166
3166
|
|
|
3167
|
-
export type
|
|
3167
|
+
export type PutOidcForSecuritySetting200 = {
|
|
3168
3168
|
securitySettingParams?: OidcAuthSetting;
|
|
3169
3169
|
};
|
|
3170
3170
|
|
|
3171
|
-
export type
|
|
3171
|
+
export type PutGoogleOauthForSecuritySetting200 = {
|
|
3172
3172
|
securitySettingParams?: GoogleOAuthSetting;
|
|
3173
3173
|
};
|
|
3174
3174
|
|
|
3175
|
-
export type
|
|
3175
|
+
export type PutGithubOauthForSecuritySetting200 = {
|
|
3176
3176
|
securitySettingParams?: GitHubOAuthSetting;
|
|
3177
3177
|
};
|
|
3178
3178
|
|
|
@@ -3209,7 +3209,7 @@ export type DeleteShareLinksParams = {
|
|
|
3209
3209
|
relatedPage: string;
|
|
3210
3210
|
};
|
|
3211
3211
|
|
|
3212
|
-
export type
|
|
3212
|
+
export type DeleteAllForShareLinks200 = {
|
|
3213
3213
|
/** The number of share links deleted */
|
|
3214
3214
|
deletedCount?: number;
|
|
3215
3215
|
};
|
|
@@ -3263,115 +3263,115 @@ export type GetSlackIntegrationSettings200 = {
|
|
|
3263
3263
|
errorCode?: string;
|
|
3264
3264
|
};
|
|
3265
3265
|
|
|
3266
|
-
export type
|
|
3266
|
+
export type PutUpdateSettingsForSlackIntegrationSettingsWithoutProxyBody = {
|
|
3267
3267
|
slackSigningSecret?: string;
|
|
3268
3268
|
slackBotToken?: string;
|
|
3269
3269
|
};
|
|
3270
3270
|
|
|
3271
|
-
export type
|
|
3271
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission = { [key: string]: unknown };
|
|
3272
3272
|
|
|
3273
|
-
export type
|
|
3273
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission = { [key: string]: unknown };
|
|
3274
3274
|
|
|
3275
|
-
export type
|
|
3276
|
-
commandPermission?:
|
|
3277
|
-
eventActionsPermission?:
|
|
3275
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBody = {
|
|
3276
|
+
commandPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission;
|
|
3277
|
+
eventActionsPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission;
|
|
3278
3278
|
};
|
|
3279
3279
|
|
|
3280
|
-
export type
|
|
3280
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands = { [key: string]: unknown };
|
|
3281
3281
|
|
|
3282
|
-
export type
|
|
3282
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands = { [key: string]: unknown };
|
|
3283
3283
|
|
|
3284
|
-
export type
|
|
3284
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents = { [key: string]: unknown };
|
|
3285
3285
|
|
|
3286
|
-
export type
|
|
3286
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200 = {
|
|
3287
3287
|
tokenGtoP?: string;
|
|
3288
3288
|
tokenPtoG?: string;
|
|
3289
|
-
permissionsForBroadcastUseCommands?:
|
|
3290
|
-
permissionsForSingleUseCommands?:
|
|
3291
|
-
permissionsForSlackEvents?:
|
|
3289
|
+
permissionsForBroadcastUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands;
|
|
3290
|
+
permissionsForSingleUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands;
|
|
3291
|
+
permissionsForSlackEvents?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents;
|
|
3292
3292
|
isPrimary?: boolean;
|
|
3293
3293
|
};
|
|
3294
3294
|
|
|
3295
|
-
export type
|
|
3295
|
+
export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response = { [key: string]: unknown };
|
|
3296
3296
|
|
|
3297
|
-
export type
|
|
3298
|
-
response?:
|
|
3297
|
+
export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200 = {
|
|
3298
|
+
response?: DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response;
|
|
3299
3299
|
};
|
|
3300
3300
|
|
|
3301
|
-
export type
|
|
3301
|
+
export type PutProxyUriForSlackIntegrationSettingsBody = {
|
|
3302
3302
|
proxyUri?: string;
|
|
3303
3303
|
};
|
|
3304
3304
|
|
|
3305
|
-
export type
|
|
3305
|
+
export type PutProxyUriForSlackIntegrationSettings200 = { [key: string]: unknown };
|
|
3306
3306
|
|
|
3307
|
-
export type
|
|
3307
|
+
export type PutRegenerateTokensByIdForSlackIntegrationSettingsSlackAppIntegrations200 = { [key: string]: unknown };
|
|
3308
3308
|
|
|
3309
|
-
export type
|
|
3309
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands = { [key: string]: unknown };
|
|
3310
3310
|
|
|
3311
|
-
export type
|
|
3311
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands = { [key: string]: unknown };
|
|
3312
3312
|
|
|
3313
|
-
export type
|
|
3313
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions = { [key: string]: unknown };
|
|
3314
3314
|
|
|
3315
|
-
export type
|
|
3316
|
-
permissionsForBroadcastUseCommands?:
|
|
3317
|
-
permissionsForSingleUseCommands?:
|
|
3318
|
-
permissionsForSlackEventActions?:
|
|
3315
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
|
|
3316
|
+
permissionsForBroadcastUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands;
|
|
3317
|
+
permissionsForSingleUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands;
|
|
3318
|
+
permissionsForSlackEventActions?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions;
|
|
3319
3319
|
};
|
|
3320
3320
|
|
|
3321
|
-
export type
|
|
3321
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrations200 = { [key: string]: unknown };
|
|
3322
3322
|
|
|
3323
|
-
export type
|
|
3323
|
+
export type PostRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
|
|
3324
3324
|
channel?: string;
|
|
3325
3325
|
};
|
|
3326
3326
|
|
|
3327
|
-
export type
|
|
3327
|
+
export type PostTestForSlackIntegrationSettingsWithoutProxyBody = {
|
|
3328
3328
|
channel?: string;
|
|
3329
3329
|
};
|
|
3330
3330
|
|
|
3331
|
-
export type
|
|
3331
|
+
export type PostCommandsForSlackIntegrationBody = { [key: string]: unknown };
|
|
3332
3332
|
|
|
3333
|
-
export type
|
|
3333
|
+
export type PostVerifyForSlackIntegrationProxiedBody = {
|
|
3334
3334
|
type?: string;
|
|
3335
3335
|
challenge?: string;
|
|
3336
3336
|
};
|
|
3337
3337
|
|
|
3338
|
-
export type
|
|
3338
|
+
export type PostVerifyForSlackIntegrationProxied200 = {
|
|
3339
3339
|
challenge?: string;
|
|
3340
3340
|
};
|
|
3341
3341
|
|
|
3342
|
-
export type
|
|
3342
|
+
export type PostCommandsForSlackIntegrationProxiedBody = { [key: string]: unknown };
|
|
3343
3343
|
|
|
3344
|
-
export type
|
|
3344
|
+
export type PostInteractionsForSlackIntegrationBody = { [key: string]: unknown };
|
|
3345
3345
|
|
|
3346
|
-
export type
|
|
3346
|
+
export type PostInteractionsForSlackIntegrationProxiedBody = { [key: string]: unknown };
|
|
3347
3347
|
|
|
3348
|
-
export type
|
|
3348
|
+
export type GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem = { [key: string]: unknown };
|
|
3349
3349
|
|
|
3350
|
-
export type
|
|
3350
|
+
export type GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem = { [key: string]: unknown };
|
|
3351
3351
|
|
|
3352
|
-
export type
|
|
3353
|
-
permissionsForBroadcastUseCommands?:
|
|
3354
|
-
permissionsForSingleUseCommands?:
|
|
3352
|
+
export type GetSupportedCommandsForSlackIntegration200 = {
|
|
3353
|
+
permissionsForBroadcastUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem[];
|
|
3354
|
+
permissionsForSingleUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem[];
|
|
3355
3355
|
};
|
|
3356
3356
|
|
|
3357
|
-
export type
|
|
3357
|
+
export type PostEventsForSlackIntegrationBodyEvent = { [key: string]: unknown };
|
|
3358
3358
|
|
|
3359
|
-
export type
|
|
3360
|
-
event?:
|
|
3359
|
+
export type PostEventsForSlackIntegrationBody = {
|
|
3360
|
+
event?: PostEventsForSlackIntegrationBodyEvent;
|
|
3361
3361
|
};
|
|
3362
3362
|
|
|
3363
|
-
export type
|
|
3363
|
+
export type PostEventsForSlackIntegration200 = { [key: string]: unknown };
|
|
3364
3364
|
|
|
3365
|
-
export type
|
|
3365
|
+
export type PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent = { [key: string]: unknown };
|
|
3366
3366
|
|
|
3367
|
-
export type
|
|
3367
|
+
export type PostEventsForSlackIntegrationProxiedBodyData = { [key: string]: unknown };
|
|
3368
3368
|
|
|
3369
|
-
export type
|
|
3370
|
-
growiBotEvent?:
|
|
3371
|
-
data?:
|
|
3369
|
+
export type PostEventsForSlackIntegrationProxiedBody = {
|
|
3370
|
+
growiBotEvent?: PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent;
|
|
3371
|
+
data?: PostEventsForSlackIntegrationProxiedBodyData;
|
|
3372
3372
|
};
|
|
3373
3373
|
|
|
3374
|
-
export type
|
|
3374
|
+
export type PostEventsForSlackIntegrationProxied200 = { [key: string]: unknown };
|
|
3375
3375
|
|
|
3376
3376
|
export type PostCompleteRegistrationBodyRegisterForm = {
|
|
3377
3377
|
username?: string;
|
|
@@ -3458,21 +3458,21 @@ export type PostUserGroups200 = {
|
|
|
3458
3458
|
userGroup?: PostUserGroups200UserGroup;
|
|
3459
3459
|
};
|
|
3460
3460
|
|
|
3461
|
-
export type
|
|
3461
|
+
export type GetAncestorsForUserGroupsParams = {
|
|
3462
3462
|
/**
|
|
3463
3463
|
* id of userGroup
|
|
3464
3464
|
*/
|
|
3465
3465
|
groupId: string;
|
|
3466
3466
|
};
|
|
3467
3467
|
|
|
3468
|
-
export type
|
|
3468
|
+
export type GetAncestorsForUserGroups200AncestorUserGroupsItem = { [key: string]: unknown };
|
|
3469
3469
|
|
|
3470
|
-
export type
|
|
3470
|
+
export type GetAncestorsForUserGroups200 = {
|
|
3471
3471
|
/** userGroup objects */
|
|
3472
|
-
ancestorUserGroups?:
|
|
3472
|
+
ancestorUserGroups?: GetAncestorsForUserGroups200AncestorUserGroupsItem[];
|
|
3473
3473
|
};
|
|
3474
3474
|
|
|
3475
|
-
export type
|
|
3475
|
+
export type GetChildrenForUserGroupsParams = {
|
|
3476
3476
|
/**
|
|
3477
3477
|
* IDs of parent user groups
|
|
3478
3478
|
*/
|
|
@@ -3483,15 +3483,15 @@ export type GetUserGroupsChildrenParams = {
|
|
|
3483
3483
|
includeGrandChildren?: boolean;
|
|
3484
3484
|
};
|
|
3485
3485
|
|
|
3486
|
-
export type
|
|
3486
|
+
export type GetChildrenForUserGroups200ChildUserGroupsItem = { [key: string]: unknown };
|
|
3487
3487
|
|
|
3488
|
-
export type
|
|
3488
|
+
export type GetChildrenForUserGroups200GrandChildUserGroupsItem = { [key: string]: unknown };
|
|
3489
3489
|
|
|
3490
|
-
export type
|
|
3490
|
+
export type GetChildrenForUserGroups200 = {
|
|
3491
3491
|
/** Child user group objects */
|
|
3492
|
-
childUserGroups?:
|
|
3492
|
+
childUserGroups?: GetChildrenForUserGroups200ChildUserGroupsItem[];
|
|
3493
3493
|
/** Grandchild user group objects */
|
|
3494
|
-
grandChildUserGroups?:
|
|
3494
|
+
grandChildUserGroups?: GetChildrenForUserGroups200GrandChildUserGroupsItem[];
|
|
3495
3495
|
};
|
|
3496
3496
|
|
|
3497
3497
|
export type GetSelectableParentGroupsParams = {
|
|
@@ -3525,14 +3525,14 @@ export type GetSelectableChildGroups200 = {
|
|
|
3525
3525
|
/**
|
|
3526
3526
|
* userGroup object
|
|
3527
3527
|
*/
|
|
3528
|
-
export type
|
|
3528
|
+
export type GetUserGroupsById200UserGroup = { [key: string]: unknown };
|
|
3529
3529
|
|
|
3530
|
-
export type
|
|
3530
|
+
export type GetUserGroupsById200 = {
|
|
3531
3531
|
/** userGroup object */
|
|
3532
|
-
userGroup?:
|
|
3532
|
+
userGroup?: GetUserGroupsById200UserGroup;
|
|
3533
3533
|
};
|
|
3534
3534
|
|
|
3535
|
-
export type
|
|
3535
|
+
export type DeleteUserGroupsByIdParams = {
|
|
3536
3536
|
/**
|
|
3537
3537
|
* name of action
|
|
3538
3538
|
*/
|
|
@@ -3550,14 +3550,14 @@ export type DeleteUserGroupsIdParams = {
|
|
|
3550
3550
|
/**
|
|
3551
3551
|
* A result of `UserGroup.removeCompletelyById`
|
|
3552
3552
|
*/
|
|
3553
|
-
export type
|
|
3553
|
+
export type DeleteUserGroupsById200UserGroups = { [key: string]: unknown };
|
|
3554
3554
|
|
|
3555
|
-
export type
|
|
3555
|
+
export type DeleteUserGroupsById200 = {
|
|
3556
3556
|
/** A result of `UserGroup.removeCompletelyById` */
|
|
3557
|
-
userGroups?:
|
|
3557
|
+
userGroups?: DeleteUserGroupsById200UserGroups;
|
|
3558
3558
|
};
|
|
3559
3559
|
|
|
3560
|
-
export type
|
|
3560
|
+
export type PutUserGroupsByIdBody = {
|
|
3561
3561
|
/** name of the userGroup trying to be updated */
|
|
3562
3562
|
name?: string;
|
|
3563
3563
|
/** description of the userGroup trying to be updated */
|
|
@@ -3571,19 +3571,19 @@ export type PutUserGroupsIdBody = {
|
|
|
3571
3571
|
/**
|
|
3572
3572
|
* A result of `UserGroup.updateName`
|
|
3573
3573
|
*/
|
|
3574
|
-
export type
|
|
3574
|
+
export type PutUserGroupsById200UserGroup = { [key: string]: unknown };
|
|
3575
3575
|
|
|
3576
|
-
export type
|
|
3576
|
+
export type PutUserGroupsById200 = {
|
|
3577
3577
|
/** A result of `UserGroup.updateName` */
|
|
3578
|
-
userGroup?:
|
|
3578
|
+
userGroup?: PutUserGroupsById200UserGroup;
|
|
3579
3579
|
};
|
|
3580
3580
|
|
|
3581
|
-
export type
|
|
3581
|
+
export type GetUsersByIdForUserGroups200 = {
|
|
3582
3582
|
/** user objects */
|
|
3583
3583
|
users?: User[];
|
|
3584
3584
|
};
|
|
3585
3585
|
|
|
3586
|
-
export type
|
|
3586
|
+
export type GetUnrelatedUsersByIdForUserGroupsParams = {
|
|
3587
3587
|
/**
|
|
3588
3588
|
* search word
|
|
3589
3589
|
*/
|
|
@@ -3602,37 +3602,37 @@ export type GetUserGroupsIdUnrelatedUsersParams = {
|
|
|
3602
3602
|
isAlsoMailSearched?: boolean;
|
|
3603
3603
|
};
|
|
3604
3604
|
|
|
3605
|
-
export type
|
|
3605
|
+
export type GetUnrelatedUsersByIdForUserGroups200 = {
|
|
3606
3606
|
/** user objects */
|
|
3607
3607
|
users?: User[];
|
|
3608
3608
|
};
|
|
3609
3609
|
|
|
3610
|
-
export type
|
|
3610
|
+
export type PostUsersByUsernameByIdForUserGroups200 = {
|
|
3611
3611
|
/** the user added to the group */
|
|
3612
3612
|
user?: User;
|
|
3613
3613
|
/** the number of relations created */
|
|
3614
3614
|
createdRelationCount?: number;
|
|
3615
3615
|
};
|
|
3616
3616
|
|
|
3617
|
-
export type
|
|
3617
|
+
export type DeleteUsersByUsernameByIdForUserGroups200 = {
|
|
3618
3618
|
/** the user removed from the group */
|
|
3619
3619
|
user?: User;
|
|
3620
3620
|
/** the number of groups from which the user was removed */
|
|
3621
3621
|
deletedGroupsCount?: number;
|
|
3622
3622
|
};
|
|
3623
3623
|
|
|
3624
|
-
export type
|
|
3624
|
+
export type GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem = { [key: string]: unknown };
|
|
3625
3625
|
|
|
3626
|
-
export type
|
|
3626
|
+
export type GetUserGroupRelationsByIdForUserGroups200 = {
|
|
3627
3627
|
/** userGroupRelation objects */
|
|
3628
|
-
userGroupRelations?:
|
|
3628
|
+
userGroupRelations?: GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem[];
|
|
3629
3629
|
};
|
|
3630
3630
|
|
|
3631
|
-
export type
|
|
3631
|
+
export type GetPagesByIdForUserGroups200PagesItem = { [key: string]: unknown };
|
|
3632
3632
|
|
|
3633
|
-
export type
|
|
3633
|
+
export type GetPagesByIdForUserGroups200 = {
|
|
3634
3634
|
/** page objects */
|
|
3635
|
-
pages?:
|
|
3635
|
+
pages?: GetPagesByIdForUserGroups200PagesItem[];
|
|
3636
3636
|
};
|
|
3637
3637
|
|
|
3638
3638
|
export type PutUserUiSettingsBodySettings = {
|
|
@@ -3684,11 +3684,11 @@ export type GetUsers200 = {
|
|
|
3684
3684
|
paginateResult?: PaginateResult;
|
|
3685
3685
|
};
|
|
3686
3686
|
|
|
3687
|
-
export type
|
|
3687
|
+
export type GetRecentById200 = {
|
|
3688
3688
|
paginateResult?: PaginateResult;
|
|
3689
3689
|
};
|
|
3690
3690
|
|
|
3691
|
-
export type
|
|
3691
|
+
export type PostInviteForUsersParams = {
|
|
3692
3692
|
/**
|
|
3693
3693
|
* Invitation emailList
|
|
3694
3694
|
*/
|
|
@@ -3702,23 +3702,23 @@ export type PostUsersInviteParams = {
|
|
|
3702
3702
|
/**
|
|
3703
3703
|
* Users email that failed to create or send email
|
|
3704
3704
|
*/
|
|
3705
|
-
export type
|
|
3705
|
+
export type PostInviteForUsers200FailedEmailList = {
|
|
3706
3706
|
/** email address */
|
|
3707
3707
|
email?: string;
|
|
3708
3708
|
/** reason for failure */
|
|
3709
3709
|
reason?: string;
|
|
3710
3710
|
};
|
|
3711
3711
|
|
|
3712
|
-
export type
|
|
3712
|
+
export type PostInviteForUsers200 = {
|
|
3713
3713
|
/** Users successfully created */
|
|
3714
3714
|
createdUserList?: User;
|
|
3715
3715
|
/** Users email that already exists */
|
|
3716
3716
|
existingEmailList?: string[];
|
|
3717
3717
|
/** Users email that failed to create or send email */
|
|
3718
|
-
failedEmailList?:
|
|
3718
|
+
failedEmailList?: PostInviteForUsers200FailedEmailList;
|
|
3719
3719
|
};
|
|
3720
3720
|
|
|
3721
|
-
export type
|
|
3721
|
+
export type PutGrantAdminByIdForUsers200 = {
|
|
3722
3722
|
/** data of admin user */
|
|
3723
3723
|
userData?: User;
|
|
3724
3724
|
};
|
|
@@ -3726,60 +3726,60 @@ export type PutUsersIdGrantAdmin200 = {
|
|
|
3726
3726
|
/**
|
|
3727
3727
|
* data of revoked admin user
|
|
3728
3728
|
*/
|
|
3729
|
-
export type
|
|
3729
|
+
export type PutRevokeAdminByIdForUsers200UserData = { [key: string]: unknown };
|
|
3730
3730
|
|
|
3731
|
-
export type
|
|
3731
|
+
export type PutRevokeAdminByIdForUsers200 = {
|
|
3732
3732
|
/** data of revoked admin user */
|
|
3733
|
-
userData?:
|
|
3733
|
+
userData?: PutRevokeAdminByIdForUsers200UserData;
|
|
3734
3734
|
};
|
|
3735
3735
|
|
|
3736
|
-
export type
|
|
3736
|
+
export type PutGrantReadOnlyByIdForUsers200 = {
|
|
3737
3737
|
/** data of grant read only */
|
|
3738
3738
|
userData?: User;
|
|
3739
3739
|
};
|
|
3740
3740
|
|
|
3741
|
-
export type
|
|
3741
|
+
export type PutRevokeReadOnlyByIdForUsers200 = {
|
|
3742
3742
|
/** data of revoke read only */
|
|
3743
3743
|
userData?: User;
|
|
3744
3744
|
};
|
|
3745
3745
|
|
|
3746
|
-
export type
|
|
3746
|
+
export type PutActivateByIdForUsers200 = {
|
|
3747
3747
|
/** data of activate user */
|
|
3748
3748
|
userData?: User;
|
|
3749
3749
|
};
|
|
3750
3750
|
|
|
3751
|
-
export type
|
|
3751
|
+
export type PutDeactivateByIdForUsers200 = {
|
|
3752
3752
|
/** data of deactivate user */
|
|
3753
3753
|
userData?: User;
|
|
3754
3754
|
};
|
|
3755
3755
|
|
|
3756
|
-
export type
|
|
3756
|
+
export type DeleteRemoveByIdForUsers200 = {
|
|
3757
3757
|
/** data of deleted user */
|
|
3758
3758
|
user?: User;
|
|
3759
3759
|
};
|
|
3760
3760
|
|
|
3761
|
-
export type
|
|
3761
|
+
export type GetExternalAccountsForUsersParams = {
|
|
3762
3762
|
/**
|
|
3763
3763
|
* page number
|
|
3764
3764
|
*/
|
|
3765
3765
|
page?: number;
|
|
3766
3766
|
};
|
|
3767
3767
|
|
|
3768
|
-
export type
|
|
3768
|
+
export type GetExternalAccountsForUsers200 = {
|
|
3769
3769
|
paginateResult?: PaginateResult;
|
|
3770
3770
|
};
|
|
3771
3771
|
|
|
3772
3772
|
/**
|
|
3773
3773
|
* A result of `ExtenralAccount.findByIdAndRemove`
|
|
3774
3774
|
*/
|
|
3775
|
-
export type
|
|
3775
|
+
export type DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount = { [key: string]: unknown };
|
|
3776
3776
|
|
|
3777
|
-
export type
|
|
3777
|
+
export type DeleteRemoveByIdForUsersExternalAccounts200 = {
|
|
3778
3778
|
/** A result of `ExtenralAccount.findByIdAndRemove` */
|
|
3779
|
-
externalAccount?:
|
|
3779
|
+
externalAccount?: DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount;
|
|
3780
3780
|
};
|
|
3781
3781
|
|
|
3782
|
-
export type
|
|
3782
|
+
export type PutUpdateImageUrlCacheForUsersBody = {
|
|
3783
3783
|
/** user id list */
|
|
3784
3784
|
userIds?: string[];
|
|
3785
3785
|
};
|
|
@@ -3787,26 +3787,26 @@ export type PutUsersUpdateImageUrlCacheBody = {
|
|
|
3787
3787
|
/**
|
|
3788
3788
|
* success creating imageUrlCached
|
|
3789
3789
|
*/
|
|
3790
|
-
export type
|
|
3790
|
+
export type PutUpdateImageUrlCacheForUsers200 = { [key: string]: unknown };
|
|
3791
3791
|
|
|
3792
|
-
export type
|
|
3792
|
+
export type PutResetPasswordForUsersBody = {
|
|
3793
3793
|
/** user id for reset password */
|
|
3794
3794
|
id?: string;
|
|
3795
3795
|
};
|
|
3796
3796
|
|
|
3797
|
-
export type
|
|
3797
|
+
export type PutResetPasswordForUsers200 = {
|
|
3798
3798
|
/** new password */
|
|
3799
3799
|
newPassword?: string;
|
|
3800
3800
|
user?: User;
|
|
3801
3801
|
};
|
|
3802
3802
|
|
|
3803
|
-
export type
|
|
3803
|
+
export type PutResetPasswordEmailForUsersBody = {
|
|
3804
3804
|
/** user id for send new password email */
|
|
3805
3805
|
id?: string;
|
|
3806
3806
|
newPassword?: string;
|
|
3807
3807
|
};
|
|
3808
3808
|
|
|
3809
|
-
export type
|
|
3809
|
+
export type PutSendInvitationEmailForUsersBody = {
|
|
3810
3810
|
/** user id for send invitation email */
|
|
3811
3811
|
id?: string;
|
|
3812
3812
|
};
|
|
@@ -3814,51 +3814,51 @@ export type PutUsersSendInvitationEmailBody = {
|
|
|
3814
3814
|
/**
|
|
3815
3815
|
* email and reasons for email sending failure
|
|
3816
3816
|
*/
|
|
3817
|
-
export type
|
|
3817
|
+
export type PutSendInvitationEmailForUsers200FailedToSendEmail = {
|
|
3818
3818
|
email?: string;
|
|
3819
3819
|
reason?: string;
|
|
3820
3820
|
};
|
|
3821
3821
|
|
|
3822
|
-
export type
|
|
3822
|
+
export type PutSendInvitationEmailForUsers200 = {
|
|
3823
3823
|
/** email and reasons for email sending failure */
|
|
3824
|
-
failedToSendEmail?:
|
|
3824
|
+
failedToSendEmail?: PutSendInvitationEmailForUsers200FailedToSendEmail;
|
|
3825
3825
|
};
|
|
3826
3826
|
|
|
3827
|
-
export type
|
|
3827
|
+
export type GetListForUsersParams = {
|
|
3828
3828
|
userIds?: string;
|
|
3829
3829
|
};
|
|
3830
3830
|
|
|
3831
|
-
export type
|
|
3831
|
+
export type GetListForUsers200 = {
|
|
3832
3832
|
/** user list */
|
|
3833
3833
|
users?: User[];
|
|
3834
3834
|
};
|
|
3835
3835
|
|
|
3836
|
-
export type
|
|
3836
|
+
export type GetUsernamesForUsersParams = {
|
|
3837
3837
|
q?: string;
|
|
3838
3838
|
offset?: number;
|
|
3839
3839
|
limit?: number;
|
|
3840
3840
|
options?: string;
|
|
3841
3841
|
};
|
|
3842
3842
|
|
|
3843
|
-
export type
|
|
3843
|
+
export type GetUsernamesForUsers200ActiveUser = {
|
|
3844
3844
|
usernames?: string[];
|
|
3845
3845
|
totalCount?: number;
|
|
3846
3846
|
};
|
|
3847
3847
|
|
|
3848
|
-
export type
|
|
3848
|
+
export type GetUsernamesForUsers200InactiveUser = {
|
|
3849
3849
|
usernames?: string[];
|
|
3850
3850
|
totalCount?: number;
|
|
3851
3851
|
};
|
|
3852
3852
|
|
|
3853
|
-
export type
|
|
3853
|
+
export type GetUsernamesForUsers200ActivitySnapshotUser = {
|
|
3854
3854
|
usernames?: string[];
|
|
3855
3855
|
totalCount?: number;
|
|
3856
3856
|
};
|
|
3857
3857
|
|
|
3858
|
-
export type
|
|
3859
|
-
activeUser?:
|
|
3860
|
-
inactiveUser?:
|
|
3861
|
-
activitySnapshotUser?:
|
|
3858
|
+
export type GetUsernamesForUsers200 = {
|
|
3859
|
+
activeUser?: GetUsernamesForUsers200ActiveUser;
|
|
3860
|
+
inactiveUser?: GetUsernamesForUsers200InactiveUser;
|
|
3861
|
+
activitySnapshotUser?: GetUsernamesForUsers200ActivitySnapshotUser;
|
|
3862
3862
|
mixedUsernames?: string[];
|
|
3863
3863
|
};
|
|
3864
3864
|
|