@growi/sdk-typescript 1.0.0-RC.1 → 1.0.0-RC.3
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/v1/index.d.ts +1 -1
- package/dist/generated/v1/index.d.ts.map +1 -1
- package/dist/generated/v1/index.js +1 -1
- package/dist/generated/v1/index.js.map +1 -1
- package/dist/generated/v3/index.d.ts +388 -388
- package/dist/generated/v3/index.d.ts.map +1 -1
- package/dist/generated/v3/index.js +460 -445
- 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-default-instance.d.ts +14 -0
- package/dist/utils/axios-default-instance.d.ts.map +1 -0
- package/dist/utils/axios-default-instance.js +22 -0
- package/dist/utils/axios-default-instance.js.map +1 -0
- package/dist/utils/{axios-instance.d.ts → v1/axios-instance.d.ts} +0 -1
- package/dist/utils/v1/axios-instance.d.ts.map +1 -0
- package/dist/utils/{axios-instance.js → v1/axios-instance.js} +5 -4
- package/dist/utils/v1/axios-instance.js.map +1 -0
- package/dist/utils/v3/axios-instance.d.ts +3 -0
- package/dist/utils/v3/axios-instance.d.ts.map +1 -0
- package/dist/utils/v3/axios-instance.js +19 -0
- package/dist/utils/v3/axios-instance.js.map +1 -0
- package/package.json +1 -1
- package/src/generated/v1/index.ts +1 -1
- package/src/generated/v3/index.schemas.ts +358 -358
- package/src/generated/v3/index.ts +1244 -1134
- package/src/index.ts +1 -1
- package/src/utils/axios-default-instance.ts +23 -0
- package/src/utils/{axios-instance.ts → v1/axios-instance.ts} +7 -5
- package/src/utils/v3/axios-instance.ts +23 -0
- package/dist/utils/axios-instance.d.ts.map +0 -1
- package/dist/utils/axios-instance.js.map +0 -1
|
@@ -1557,19 +1557,19 @@ export type GetExternalUserGroups200 = {
|
|
|
1557
1557
|
totalUserGroups?: number;
|
|
1558
1558
|
pagingLimit?: number;
|
|
1559
1559
|
};
|
|
1560
|
-
export type
|
|
1560
|
+
export type GetAncestorsForExternalUserGroupsParams = {
|
|
1561
1561
|
/**
|
|
1562
1562
|
* The ID of the user group to get ancestors for
|
|
1563
1563
|
*/
|
|
1564
1564
|
groupId: string;
|
|
1565
1565
|
};
|
|
1566
|
-
export type
|
|
1566
|
+
export type GetAncestorsForExternalUserGroups200AncestorUserGroupsItem = {
|
|
1567
1567
|
[key: string]: unknown;
|
|
1568
1568
|
};
|
|
1569
|
-
export type
|
|
1570
|
-
ancestorUserGroups?:
|
|
1569
|
+
export type GetAncestorsForExternalUserGroups200 = {
|
|
1570
|
+
ancestorUserGroups?: GetAncestorsForExternalUserGroups200AncestorUserGroupsItem[];
|
|
1571
1571
|
};
|
|
1572
|
-
export type
|
|
1572
|
+
export type GetChildrenForExternalUserGroupsParams = {
|
|
1573
1573
|
/**
|
|
1574
1574
|
* The IDs of the parent user groups
|
|
1575
1575
|
*/
|
|
@@ -1579,23 +1579,23 @@ export type GetExternalUserGroupsChildrenParams = {
|
|
|
1579
1579
|
*/
|
|
1580
1580
|
includeGrandChildren?: boolean;
|
|
1581
1581
|
};
|
|
1582
|
-
export type
|
|
1582
|
+
export type GetChildrenForExternalUserGroups200ChildUserGroupsItem = {
|
|
1583
1583
|
[key: string]: unknown;
|
|
1584
1584
|
};
|
|
1585
|
-
export type
|
|
1585
|
+
export type GetChildrenForExternalUserGroups200GrandChildUserGroupsItem = {
|
|
1586
1586
|
[key: string]: unknown;
|
|
1587
1587
|
};
|
|
1588
|
-
export type
|
|
1589
|
-
childUserGroups?:
|
|
1590
|
-
grandChildUserGroups?:
|
|
1588
|
+
export type GetChildrenForExternalUserGroups200 = {
|
|
1589
|
+
childUserGroups?: GetChildrenForExternalUserGroups200ChildUserGroupsItem[];
|
|
1590
|
+
grandChildUserGroups?: GetChildrenForExternalUserGroups200GrandChildUserGroupsItem[];
|
|
1591
1591
|
};
|
|
1592
|
-
export type
|
|
1592
|
+
export type GetExternalUserGroupsById200UserGroup = {
|
|
1593
1593
|
[key: string]: unknown;
|
|
1594
1594
|
};
|
|
1595
|
-
export type
|
|
1596
|
-
userGroup?:
|
|
1595
|
+
export type GetExternalUserGroupsById200 = {
|
|
1596
|
+
userGroup?: GetExternalUserGroupsById200UserGroup;
|
|
1597
1597
|
};
|
|
1598
|
-
export type
|
|
1598
|
+
export type DeleteExternalUserGroupsByIdParams = {
|
|
1599
1599
|
/**
|
|
1600
1600
|
* The action to perform on group delete
|
|
1601
1601
|
*/
|
|
@@ -1609,28 +1609,28 @@ export type DeleteExternalUserGroupsIdParams = {
|
|
|
1609
1609
|
*/
|
|
1610
1610
|
transferToUserGroupType?: string;
|
|
1611
1611
|
};
|
|
1612
|
-
export type
|
|
1612
|
+
export type DeleteExternalUserGroupsById200UserGroupsItem = {
|
|
1613
1613
|
[key: string]: unknown;
|
|
1614
1614
|
};
|
|
1615
|
-
export type
|
|
1616
|
-
userGroups?:
|
|
1615
|
+
export type DeleteExternalUserGroupsById200 = {
|
|
1616
|
+
userGroups?: DeleteExternalUserGroupsById200UserGroupsItem[];
|
|
1617
1617
|
};
|
|
1618
|
-
export type
|
|
1618
|
+
export type PutExternalUserGroupsByIdBody = {
|
|
1619
1619
|
description?: string;
|
|
1620
1620
|
};
|
|
1621
|
-
export type
|
|
1621
|
+
export type PutExternalUserGroupsById200UserGroup = {
|
|
1622
1622
|
[key: string]: unknown;
|
|
1623
1623
|
};
|
|
1624
|
-
export type
|
|
1625
|
-
userGroup?:
|
|
1624
|
+
export type PutExternalUserGroupsById200 = {
|
|
1625
|
+
userGroup?: PutExternalUserGroupsById200UserGroup;
|
|
1626
1626
|
};
|
|
1627
|
-
export type
|
|
1627
|
+
export type GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem = {
|
|
1628
1628
|
[key: string]: unknown;
|
|
1629
1629
|
};
|
|
1630
|
-
export type
|
|
1631
|
-
userGroupRelations?:
|
|
1630
|
+
export type GetExternalUserGroupRelationsByIdForExternalUserGroups200 = {
|
|
1631
|
+
userGroupRelations?: GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem[];
|
|
1632
1632
|
};
|
|
1633
|
-
export type
|
|
1633
|
+
export type GetSyncSettingsForExternalUserGroupsLdap200 = {
|
|
1634
1634
|
ldapGroupSearchBase?: string;
|
|
1635
1635
|
ldapGroupMembershipAttribute?: string;
|
|
1636
1636
|
ldapGroupMembershipAttributeType?: string;
|
|
@@ -1640,7 +1640,7 @@ export type GetExternalUserGroupsLdapSyncSettings200 = {
|
|
|
1640
1640
|
ldapGroupNameAttribute?: string;
|
|
1641
1641
|
ldapGroupDescriptionAttribute?: string;
|
|
1642
1642
|
};
|
|
1643
|
-
export type
|
|
1643
|
+
export type PutSyncSettingsForExternalUserGroupsLdapBody = {
|
|
1644
1644
|
ldapGroupSearchBase?: string;
|
|
1645
1645
|
ldapGroupMembershipAttribute?: string;
|
|
1646
1646
|
ldapGroupMembershipAttributeType?: string;
|
|
@@ -1650,10 +1650,10 @@ export type PutExternalUserGroupsLdapSyncSettingsBody = {
|
|
|
1650
1650
|
ldapGroupNameAttribute?: string;
|
|
1651
1651
|
ldapGroupDescriptionAttribute?: string;
|
|
1652
1652
|
};
|
|
1653
|
-
export type
|
|
1653
|
+
export type PutSyncSettingsForExternalUserGroupsLdap204 = {
|
|
1654
1654
|
[key: string]: unknown;
|
|
1655
1655
|
};
|
|
1656
|
-
export type
|
|
1656
|
+
export type GetSyncSettingsForExternalUserGroupsKeycloak200 = {
|
|
1657
1657
|
keycloakHost?: string;
|
|
1658
1658
|
keycloakGroupRealm?: string;
|
|
1659
1659
|
keycloakGroupSyncClientRealm?: string;
|
|
@@ -1663,7 +1663,7 @@ export type GetExternalUserGroupsKeycloakSyncSettings200 = {
|
|
|
1663
1663
|
preserveDeletedKeycloakGroups?: boolean;
|
|
1664
1664
|
keycloakGroupDescriptionAttribute?: string;
|
|
1665
1665
|
};
|
|
1666
|
-
export type
|
|
1666
|
+
export type PutSyncSettingsForExternalUserGroupsKeycloakBody = {
|
|
1667
1667
|
keycloakHost?: string;
|
|
1668
1668
|
keycloakGroupRealm?: string;
|
|
1669
1669
|
keycloakGroupSyncClientRealm?: string;
|
|
@@ -1673,55 +1673,55 @@ export type PutExternalUserGroupsKeycloakSyncSettingsBody = {
|
|
|
1673
1673
|
preserveDeletedKeycloakGroups?: boolean;
|
|
1674
1674
|
keycloakGroupDescriptionAttribute?: string;
|
|
1675
1675
|
};
|
|
1676
|
-
export type
|
|
1676
|
+
export type PutSyncSettingsForExternalUserGroupsKeycloak204 = {
|
|
1677
1677
|
[key: string]: unknown;
|
|
1678
1678
|
};
|
|
1679
|
-
export type
|
|
1679
|
+
export type PutSyncForExternalUserGroupsLdap202 = {
|
|
1680
1680
|
[key: string]: unknown;
|
|
1681
1681
|
};
|
|
1682
|
-
export type
|
|
1682
|
+
export type PutSyncForExternalUserGroupsKeycloak202 = {
|
|
1683
1683
|
[key: string]: unknown;
|
|
1684
1684
|
};
|
|
1685
|
-
export type
|
|
1685
|
+
export type GetOrdersForQuestionnaire200QuestionnaireOrdersItem = {
|
|
1686
1686
|
[key: string]: unknown;
|
|
1687
1687
|
};
|
|
1688
|
-
export type
|
|
1689
|
-
questionnaireOrders?:
|
|
1688
|
+
export type GetOrdersForQuestionnaire200 = {
|
|
1689
|
+
questionnaireOrders?: GetOrdersForQuestionnaire200QuestionnaireOrdersItem[];
|
|
1690
1690
|
};
|
|
1691
|
-
export type
|
|
1691
|
+
export type GetIsEnabledForQuestionnaire200 = {
|
|
1692
1692
|
isEnabled?: boolean;
|
|
1693
1693
|
};
|
|
1694
|
-
export type
|
|
1694
|
+
export type PostAnswerForQuestionnaireProactiveBody = {
|
|
1695
1695
|
[key: string]: unknown;
|
|
1696
1696
|
};
|
|
1697
|
-
export type
|
|
1697
|
+
export type PostAnswerForQuestionnaireProactive200 = {
|
|
1698
1698
|
[key: string]: unknown;
|
|
1699
1699
|
};
|
|
1700
|
-
export type
|
|
1700
|
+
export type PutAnswerForQuestionnaireBody = {
|
|
1701
1701
|
[key: string]: unknown;
|
|
1702
1702
|
};
|
|
1703
|
-
export type
|
|
1703
|
+
export type PutAnswerForQuestionnaire201 = {
|
|
1704
1704
|
[key: string]: unknown;
|
|
1705
1705
|
};
|
|
1706
|
-
export type
|
|
1706
|
+
export type PutAnswerForQuestionnaire204 = {
|
|
1707
1707
|
[key: string]: unknown;
|
|
1708
1708
|
};
|
|
1709
|
-
export type
|
|
1709
|
+
export type PutSkipForQuestionnaireBody = {
|
|
1710
1710
|
[key: string]: unknown;
|
|
1711
1711
|
};
|
|
1712
|
-
export type
|
|
1712
|
+
export type PutSkipForQuestionnaire201 = {
|
|
1713
1713
|
[key: string]: unknown;
|
|
1714
1714
|
};
|
|
1715
|
-
export type
|
|
1715
|
+
export type PutSkipForQuestionnaire204 = {
|
|
1716
1716
|
[key: string]: unknown;
|
|
1717
1717
|
};
|
|
1718
|
-
export type
|
|
1718
|
+
export type PutDenyForQuestionnaireBody = {
|
|
1719
1719
|
[key: string]: unknown;
|
|
1720
1720
|
};
|
|
1721
|
-
export type
|
|
1721
|
+
export type PutDenyForQuestionnaire201 = {
|
|
1722
1722
|
[key: string]: unknown;
|
|
1723
1723
|
};
|
|
1724
|
-
export type
|
|
1724
|
+
export type PutDenyForQuestionnaire204 = {
|
|
1725
1725
|
[key: string]: unknown;
|
|
1726
1726
|
};
|
|
1727
1727
|
export type GetTemplatesParams = {
|
|
@@ -1742,10 +1742,10 @@ export type GetTemplates200Summaries = {
|
|
|
1742
1742
|
export type GetTemplates200 = {
|
|
1743
1743
|
summaries?: GetTemplates200Summaries;
|
|
1744
1744
|
};
|
|
1745
|
-
export type
|
|
1745
|
+
export type GetPresetTemplatesByLocaleByTemplateIdForTemplates200 = {
|
|
1746
1746
|
markdown?: string;
|
|
1747
1747
|
};
|
|
1748
|
-
export type
|
|
1748
|
+
export type GetPluginTemplatesByLocaleByTemplateIdByReposIdByOrganizationIdForTemplates200 = {
|
|
1749
1749
|
markdown?: string;
|
|
1750
1750
|
};
|
|
1751
1751
|
export type PostPluginsBodyPluginInstallerForm = {
|
|
@@ -1760,11 +1760,11 @@ export type PostPlugins200 = {
|
|
|
1760
1760
|
/** The name of the installed plugin */
|
|
1761
1761
|
pluginName?: string;
|
|
1762
1762
|
};
|
|
1763
|
-
export type
|
|
1763
|
+
export type PutActivateByIdForPlugins200 = {
|
|
1764
1764
|
/** The name of the activated plugin */
|
|
1765
1765
|
pluginName?: string;
|
|
1766
1766
|
};
|
|
1767
|
-
export type
|
|
1767
|
+
export type DeleteRemoveByIdForPlugins200 = {
|
|
1768
1768
|
/** The name of the removed plugin */
|
|
1769
1769
|
pluginName?: string;
|
|
1770
1770
|
};
|
|
@@ -1779,44 +1779,44 @@ export type GetAdminHome200 = {
|
|
|
1779
1779
|
export type GetAppSettings200 = {
|
|
1780
1780
|
appSettingsParams?: AppSettingParams;
|
|
1781
1781
|
};
|
|
1782
|
-
export type
|
|
1782
|
+
export type PutAppSettingForAppSettings200 = {
|
|
1783
1783
|
appSettingParams?: AppSettingPutParams;
|
|
1784
1784
|
};
|
|
1785
|
-
export type
|
|
1785
|
+
export type PutSiteUrlSettingForAppSettings200SiteUrlSettingParams = {
|
|
1786
1786
|
/** Site URL. e.g. https://example.com, https://example.com:3000 */
|
|
1787
1787
|
siteUrl?: string;
|
|
1788
1788
|
};
|
|
1789
|
-
export type
|
|
1790
|
-
siteUrlSettingParams?:
|
|
1789
|
+
export type PutSiteUrlSettingForAppSettings200 = {
|
|
1790
|
+
siteUrlSettingParams?: PutSiteUrlSettingForAppSettings200SiteUrlSettingParams;
|
|
1791
1791
|
};
|
|
1792
|
-
export type
|
|
1792
|
+
export type PutSmtpSettingForAppSettings200 = {
|
|
1793
1793
|
mailSettingParams?: SmtpSettingResponseParams;
|
|
1794
1794
|
};
|
|
1795
1795
|
/**
|
|
1796
1796
|
* Empty object
|
|
1797
1797
|
*/
|
|
1798
|
-
export type
|
|
1798
|
+
export type PostSmtpTestForAppSettings200 = {
|
|
1799
1799
|
[key: string]: unknown;
|
|
1800
1800
|
};
|
|
1801
|
-
export type
|
|
1801
|
+
export type PutFileUploadSettingsForAppSettings200 = {
|
|
1802
1802
|
responseParams?: FileUploadSettingParams;
|
|
1803
1803
|
};
|
|
1804
|
-
export type
|
|
1804
|
+
export type PutQuestionnaireSettingsForAppSettings200 = {
|
|
1805
1805
|
responseParams?: QuestionnaireSettingParams;
|
|
1806
1806
|
};
|
|
1807
|
-
export type
|
|
1807
|
+
export type PostV5SchemaMigrationForAppSettings200 = {
|
|
1808
1808
|
/** is V5 compatible, or not */
|
|
1809
1809
|
isV5Compatible?: boolean;
|
|
1810
1810
|
};
|
|
1811
|
-
export type
|
|
1811
|
+
export type PostMaintenanceModeForAppSettingsBody = {
|
|
1812
1812
|
/** flag for maintenance mode */
|
|
1813
1813
|
flag?: boolean;
|
|
1814
1814
|
};
|
|
1815
|
-
export type
|
|
1815
|
+
export type PostMaintenanceModeForAppSettings200 = {
|
|
1816
1816
|
/** true if maintenance mode is enabled */
|
|
1817
1817
|
flag?: boolean;
|
|
1818
1818
|
};
|
|
1819
|
-
export type
|
|
1819
|
+
export type GetListForAttachmentParams = {
|
|
1820
1820
|
/**
|
|
1821
1821
|
* page id
|
|
1822
1822
|
*/
|
|
@@ -1830,10 +1830,10 @@ export type GetAttachmentListParams = {
|
|
|
1830
1830
|
*/
|
|
1831
1831
|
limit?: number;
|
|
1832
1832
|
};
|
|
1833
|
-
export type
|
|
1833
|
+
export type GetLimitForAttachmentParams = {
|
|
1834
1834
|
fileSize: number;
|
|
1835
1835
|
};
|
|
1836
|
-
export type
|
|
1836
|
+
export type GetLimitForAttachment200 = {
|
|
1837
1837
|
/** uploadable */
|
|
1838
1838
|
isUploadable?: boolean;
|
|
1839
1839
|
};
|
|
@@ -1854,7 +1854,7 @@ export type PostAttachment200 = {
|
|
|
1854
1854
|
attachment?: Attachment;
|
|
1855
1855
|
revision?: string;
|
|
1856
1856
|
};
|
|
1857
|
-
export type
|
|
1857
|
+
export type GetAttachmentById200 = {
|
|
1858
1858
|
attachment?: Attachment;
|
|
1859
1859
|
};
|
|
1860
1860
|
export type PostBookmarkFolderBody = {
|
|
@@ -1883,14 +1883,14 @@ export type PutBookmarkFolderBody = {
|
|
|
1883
1883
|
export type PutBookmarkFolder200 = {
|
|
1884
1884
|
bookmarkFolder?: BookmarkFolder;
|
|
1885
1885
|
};
|
|
1886
|
-
export type
|
|
1886
|
+
export type GetListByUserIdForBookmarkFolder200 = {
|
|
1887
1887
|
bookmarkFolderItems?: BookmarkFolder[];
|
|
1888
1888
|
};
|
|
1889
|
-
export type
|
|
1889
|
+
export type DeleteBookmarkFolderById200 = {
|
|
1890
1890
|
/** Number of deleted folders */
|
|
1891
1891
|
deletedCount?: number;
|
|
1892
1892
|
};
|
|
1893
|
-
export type
|
|
1893
|
+
export type PostAddBookmarkToFolderForBookmarkFolderBody = {
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Page ID
|
|
1896
1896
|
*/
|
|
@@ -1901,10 +1901,10 @@ export type PostBookmarkFolderAddBookmarkToFolderBody = {
|
|
|
1901
1901
|
*/
|
|
1902
1902
|
folderId?: string | null;
|
|
1903
1903
|
};
|
|
1904
|
-
export type
|
|
1904
|
+
export type PostAddBookmarkToFolderForBookmarkFolder200 = {
|
|
1905
1905
|
bookmarkFolder?: BookmarkFolder;
|
|
1906
1906
|
};
|
|
1907
|
-
export type
|
|
1907
|
+
export type PutUpdateBookmarkForBookmarkFolderBody = {
|
|
1908
1908
|
/**
|
|
1909
1909
|
* Page ID
|
|
1910
1910
|
*/
|
|
@@ -1912,10 +1912,10 @@ export type PutBookmarkFolderUpdateBookmarkBody = {
|
|
|
1912
1912
|
/** Bookmark status */
|
|
1913
1913
|
status?: string;
|
|
1914
1914
|
};
|
|
1915
|
-
export type
|
|
1915
|
+
export type PutUpdateBookmarkForBookmarkFolder200 = {
|
|
1916
1916
|
bookmarkFolder?: BookmarkFolder;
|
|
1917
1917
|
};
|
|
1918
|
-
export type
|
|
1918
|
+
export type GetInfoForBookmarksParams = {
|
|
1919
1919
|
/**
|
|
1920
1920
|
* page id
|
|
1921
1921
|
*/
|
|
@@ -1928,60 +1928,60 @@ export type GetCustomizeSetting200 = {
|
|
|
1928
1928
|
/** customize params */
|
|
1929
1929
|
customizeParams?: CustomizeSetting;
|
|
1930
1930
|
};
|
|
1931
|
-
export type
|
|
1931
|
+
export type PutLayoutForCustomizeSetting200 = {
|
|
1932
1932
|
/** customized params */
|
|
1933
1933
|
customizedParams?: CustomizeLayout;
|
|
1934
1934
|
};
|
|
1935
|
-
export type
|
|
1935
|
+
export type GetThemeForCustomizeSetting200 = {
|
|
1936
1936
|
/** The current theme name. */
|
|
1937
1937
|
currentTheme?: string;
|
|
1938
1938
|
/** Metadata for available plugin themes. */
|
|
1939
1939
|
pluginThemesMetadatas?: ThemesMetadata[];
|
|
1940
1940
|
};
|
|
1941
|
-
export type
|
|
1941
|
+
export type PutThemeForCustomizeSetting200 = {
|
|
1942
1942
|
customizedParams?: CustomizeTheme;
|
|
1943
1943
|
};
|
|
1944
|
-
export type
|
|
1944
|
+
export type PutSidebarForCustomizeSetting200 = {
|
|
1945
1945
|
customizedParams?: CustomizeSidebar;
|
|
1946
1946
|
};
|
|
1947
|
-
export type
|
|
1947
|
+
export type PutFunctionForCustomizeSetting200 = {
|
|
1948
1948
|
customizedParams?: CustomizeFunction;
|
|
1949
1949
|
};
|
|
1950
|
-
export type
|
|
1950
|
+
export type PutPresentationForCustomizeSetting200 = {
|
|
1951
1951
|
customizedParams?: CustomizePresentation;
|
|
1952
1952
|
};
|
|
1953
|
-
export type
|
|
1953
|
+
export type PutHighlightForCustomizeSetting200 = {
|
|
1954
1954
|
customizedParams?: CustomizeHighlightResponse;
|
|
1955
1955
|
};
|
|
1956
|
-
export type
|
|
1956
|
+
export type PutCustomizeTitleForCustomizeSetting200 = {
|
|
1957
1957
|
customizedParams?: CustomizeTitle;
|
|
1958
1958
|
};
|
|
1959
|
-
export type
|
|
1959
|
+
export type PutCustomizeNoscriptForCustomizeSetting200 = {
|
|
1960
1960
|
customizedParams?: CustomizeNoscript;
|
|
1961
1961
|
};
|
|
1962
|
-
export type
|
|
1962
|
+
export type PutCustomizeCssForCustomizeSetting200 = {
|
|
1963
1963
|
customizedParams?: CustomizeCss;
|
|
1964
1964
|
};
|
|
1965
|
-
export type
|
|
1965
|
+
export type PutCustomizeScriptForCustomizeSetting200 = {
|
|
1966
1966
|
customizedParams?: CustomizeScript;
|
|
1967
1967
|
};
|
|
1968
|
-
export type
|
|
1968
|
+
export type PutCustomizeLogoForCustomizeSetting200 = {
|
|
1969
1969
|
customizedParams?: CustomizeLogo;
|
|
1970
1970
|
};
|
|
1971
|
-
export type
|
|
1971
|
+
export type PutUploadBrandLogoForCustomizeSettingBody = {
|
|
1972
1972
|
file?: Blob;
|
|
1973
1973
|
};
|
|
1974
|
-
export type
|
|
1974
|
+
export type PutUploadBrandLogoForCustomizeSetting200AttachmentAllOf = {
|
|
1975
1975
|
creator?: string;
|
|
1976
1976
|
page?: unknown;
|
|
1977
1977
|
temporaryUrlExpiredAt?: unknown;
|
|
1978
1978
|
temporaryUrlCached?: unknown;
|
|
1979
1979
|
};
|
|
1980
|
-
export type
|
|
1981
|
-
export type
|
|
1982
|
-
attachment?:
|
|
1980
|
+
export type PutUploadBrandLogoForCustomizeSetting200Attachment = Attachment & PutUploadBrandLogoForCustomizeSetting200AttachmentAllOf;
|
|
1981
|
+
export type PutUploadBrandLogoForCustomizeSetting200 = {
|
|
1982
|
+
attachment?: PutUploadBrandLogoForCustomizeSetting200Attachment;
|
|
1983
1983
|
};
|
|
1984
|
-
export type
|
|
1984
|
+
export type GetStatusForExport200 = {
|
|
1985
1985
|
/** whether the request is succeeded or not */
|
|
1986
1986
|
ok?: boolean;
|
|
1987
1987
|
status?: ExportStatus;
|
|
@@ -1993,7 +1993,7 @@ export type PostExport200 = {
|
|
|
1993
1993
|
/** whether the request is succeeded */
|
|
1994
1994
|
ok?: boolean;
|
|
1995
1995
|
};
|
|
1996
|
-
export type
|
|
1996
|
+
export type DeleteExportByFileName200 = {
|
|
1997
1997
|
/** whether the request is succeeded */
|
|
1998
1998
|
ok?: boolean;
|
|
1999
1999
|
};
|
|
@@ -2011,14 +2011,14 @@ export type PutForgotPasswordBody = {
|
|
|
2011
2011
|
export type PutForgotPassword200 = {
|
|
2012
2012
|
userData?: User;
|
|
2013
2013
|
};
|
|
2014
|
-
export type
|
|
2014
|
+
export type GetFilesForG2gTransfer200FilesItem = {
|
|
2015
2015
|
/** The name of the file */
|
|
2016
2016
|
name?: string;
|
|
2017
2017
|
/** The size of the file */
|
|
2018
2018
|
size?: number;
|
|
2019
2019
|
};
|
|
2020
|
-
export type
|
|
2021
|
-
files?:
|
|
2020
|
+
export type GetFilesForG2gTransfer200 = {
|
|
2021
|
+
files?: GetFilesForG2gTransfer200FilesItem[];
|
|
2022
2022
|
};
|
|
2023
2023
|
/**
|
|
2024
2024
|
* The map of options for each collection
|
|
@@ -2051,45 +2051,45 @@ export type PostG2gTransfer200 = {
|
|
|
2051
2051
|
/**
|
|
2052
2052
|
* Metadata of the attachment
|
|
2053
2053
|
*/
|
|
2054
|
-
export type
|
|
2054
|
+
export type PostAttachmentForG2gTransferBodyAttachmentMetadata = {
|
|
2055
2055
|
[key: string]: unknown;
|
|
2056
2056
|
};
|
|
2057
|
-
export type
|
|
2057
|
+
export type PostAttachmentForG2gTransferBody = {
|
|
2058
2058
|
/** The zip file of the data to be transferred */
|
|
2059
2059
|
file?: Blob;
|
|
2060
2060
|
/** Metadata of the attachment */
|
|
2061
|
-
attachmentMetadata?:
|
|
2061
|
+
attachmentMetadata?: PostAttachmentForG2gTransferBodyAttachmentMetadata;
|
|
2062
2062
|
};
|
|
2063
|
-
export type
|
|
2063
|
+
export type PostAttachmentForG2gTransfer200 = {
|
|
2064
2064
|
/** The message of the result */
|
|
2065
2065
|
message?: string;
|
|
2066
2066
|
};
|
|
2067
|
-
export type
|
|
2067
|
+
export type GetGrowiInfoForG2gTransfer200 = {
|
|
2068
2068
|
growiInfo?: GrowiInfo;
|
|
2069
2069
|
};
|
|
2070
|
-
export type
|
|
2070
|
+
export type PostGenerateKeyForG2gTransferBody = {
|
|
2071
2071
|
/** The URL of the GROWI */
|
|
2072
2072
|
appSiteUrl?: string;
|
|
2073
2073
|
};
|
|
2074
|
-
export type
|
|
2074
|
+
export type PostGenerateKeyForG2gTransfer200 = {
|
|
2075
2075
|
/** The transfer key */
|
|
2076
2076
|
transferKey?: string;
|
|
2077
2077
|
};
|
|
2078
2078
|
/**
|
|
2079
2079
|
* The map of options for each collection
|
|
2080
2080
|
*/
|
|
2081
|
-
export type
|
|
2081
|
+
export type PostTransferForG2gTransferBodyOptionsMap = {
|
|
2082
2082
|
[key: string]: unknown;
|
|
2083
2083
|
};
|
|
2084
|
-
export type
|
|
2084
|
+
export type PostTransferForG2gTransferBody = {
|
|
2085
2085
|
/** The transfer key */
|
|
2086
2086
|
transferKey?: string;
|
|
2087
2087
|
/** The list of MongoDB collections to be transferred */
|
|
2088
2088
|
collections?: string[];
|
|
2089
2089
|
/** The map of options for each collection */
|
|
2090
|
-
optionsMap?:
|
|
2090
|
+
optionsMap?: PostTransferForG2gTransferBodyOptionsMap;
|
|
2091
2091
|
};
|
|
2092
|
-
export type
|
|
2092
|
+
export type PostTransferForG2gTransfer200 = {
|
|
2093
2093
|
/** The message of the result */
|
|
2094
2094
|
message?: string;
|
|
2095
2095
|
};
|
|
@@ -2163,13 +2163,13 @@ export type PostImportBody = {
|
|
|
2163
2163
|
*/
|
|
2164
2164
|
options?: PostImportBodyOptions;
|
|
2165
2165
|
};
|
|
2166
|
-
export type
|
|
2166
|
+
export type GetStatusForImport200 = {
|
|
2167
2167
|
status?: ImportStatus;
|
|
2168
2168
|
};
|
|
2169
|
-
export type
|
|
2169
|
+
export type PostUploadForImportBody = {
|
|
2170
2170
|
file?: Blob;
|
|
2171
2171
|
};
|
|
2172
|
-
export type
|
|
2172
|
+
export type GetListForInAppNotificationParams = {
|
|
2173
2173
|
/**
|
|
2174
2174
|
* The number of notifications to get
|
|
2175
2175
|
*/
|
|
@@ -2183,15 +2183,15 @@ export type GetInAppNotificationListParams = {
|
|
|
2183
2183
|
*/
|
|
2184
2184
|
status?: string;
|
|
2185
2185
|
};
|
|
2186
|
-
export type
|
|
2186
|
+
export type GetStatusForInAppNotification200 = {
|
|
2187
2187
|
/** Count of unread notifications */
|
|
2188
2188
|
count?: number;
|
|
2189
2189
|
};
|
|
2190
|
-
export type
|
|
2190
|
+
export type PostOpenForInAppNotificationBody = {
|
|
2191
2191
|
/** Notification ID */
|
|
2192
2192
|
id: string;
|
|
2193
2193
|
};
|
|
2194
|
-
export type
|
|
2194
|
+
export type PostOpenForInAppNotification200 = {
|
|
2195
2195
|
[key: string]: unknown;
|
|
2196
2196
|
};
|
|
2197
2197
|
export type PostInstallerBodyRegisterForm = {
|
|
@@ -2226,14 +2226,14 @@ export type GetMarkdownSetting200 = {
|
|
|
2226
2226
|
/** markdown params */
|
|
2227
2227
|
markdownParams?: MarkdownParams;
|
|
2228
2228
|
};
|
|
2229
|
-
export type
|
|
2229
|
+
export type PutLineBreakForMarkdownSetting200 = {
|
|
2230
2230
|
lineBreaksParams?: LineBreakParams;
|
|
2231
2231
|
};
|
|
2232
|
-
export type
|
|
2232
|
+
export type PutIndentForMarkdownSetting200 = {
|
|
2233
2233
|
/** indent params */
|
|
2234
2234
|
indentParams?: IndentParams;
|
|
2235
2235
|
};
|
|
2236
|
-
export type
|
|
2236
|
+
export type GetCollectionsForMongo200 = {
|
|
2237
2237
|
/** whether the request is succeeded */
|
|
2238
2238
|
ok?: boolean;
|
|
2239
2239
|
collections?: string[];
|
|
@@ -2245,41 +2245,41 @@ export type GetNotificationSetting200 = {
|
|
|
2245
2245
|
/**
|
|
2246
2246
|
* response params
|
|
2247
2247
|
*/
|
|
2248
|
-
export type
|
|
2248
|
+
export type PostUserNotificationForNotificationSetting200ResponseParams = {
|
|
2249
2249
|
/** user who set notification */
|
|
2250
2250
|
createdUser?: User;
|
|
2251
2251
|
userNotifications?: UserNotification[];
|
|
2252
2252
|
};
|
|
2253
|
-
export type
|
|
2253
|
+
export type PostUserNotificationForNotificationSetting200 = {
|
|
2254
2254
|
/** response params */
|
|
2255
|
-
responseParams?:
|
|
2255
|
+
responseParams?: PostUserNotificationForNotificationSetting200ResponseParams;
|
|
2256
2256
|
};
|
|
2257
|
-
export type
|
|
2257
|
+
export type GetGlobalNotificationByIdForNotificationSetting200 = {
|
|
2258
2258
|
globalNotification?: GlobalNotification;
|
|
2259
2259
|
};
|
|
2260
|
-
export type
|
|
2260
|
+
export type PutGlobalNotificationByIdForNotificationSetting200 = {
|
|
2261
2261
|
/** notification param updated */
|
|
2262
2262
|
createdNotification?: GlobalNotification;
|
|
2263
2263
|
};
|
|
2264
|
-
export type
|
|
2264
|
+
export type PostGlobalNotificationForNotificationSetting200 = {
|
|
2265
2265
|
/** notification param created */
|
|
2266
2266
|
createdNotification?: GlobalNotification;
|
|
2267
2267
|
};
|
|
2268
|
-
export type
|
|
2268
|
+
export type PutEnabledByIdForNotificationSettingGlobalNotificationBody = {
|
|
2269
2269
|
/** is notification enabled */
|
|
2270
2270
|
isEnabled?: boolean;
|
|
2271
2271
|
};
|
|
2272
|
-
export type
|
|
2272
|
+
export type PutEnabledByIdForNotificationSettingGlobalNotification200 = {
|
|
2273
2273
|
/** notification id */
|
|
2274
2274
|
id?: string;
|
|
2275
2275
|
};
|
|
2276
|
-
export type
|
|
2276
|
+
export type GetRootForPageListing200 = {
|
|
2277
2277
|
rootPage?: Page;
|
|
2278
2278
|
};
|
|
2279
|
-
export type
|
|
2279
|
+
export type GetAncestorsChildrenForPageListingParams = {
|
|
2280
2280
|
path: string;
|
|
2281
2281
|
};
|
|
2282
|
-
export type
|
|
2282
|
+
export type GetAncestorsChildrenForPageListing200AncestorsChildren = {
|
|
2283
2283
|
[key: string]: {
|
|
2284
2284
|
/** Document ID */
|
|
2285
2285
|
_id?: string;
|
|
@@ -2298,23 +2298,23 @@ export type GetPageListingAncestorsChildren200AncestorsChildren = {
|
|
|
2298
2298
|
revision?: string | null;
|
|
2299
2299
|
};
|
|
2300
2300
|
};
|
|
2301
|
-
export type
|
|
2302
|
-
ancestorsChildren?:
|
|
2301
|
+
export type GetAncestorsChildrenForPageListing200 = {
|
|
2302
|
+
ancestorsChildren?: GetAncestorsChildrenForPageListing200AncestorsChildren;
|
|
2303
2303
|
};
|
|
2304
|
-
export type
|
|
2304
|
+
export type GetChildrenForPageListingParams = {
|
|
2305
2305
|
id?: string;
|
|
2306
2306
|
path?: string;
|
|
2307
2307
|
};
|
|
2308
|
-
export type
|
|
2308
|
+
export type GetChildrenForPageListing200 = {
|
|
2309
2309
|
children?: Page[];
|
|
2310
2310
|
};
|
|
2311
|
-
export type
|
|
2311
|
+
export type GetInfoForPageListingParams = {
|
|
2312
2312
|
pageIds?: string[];
|
|
2313
2313
|
path?: string;
|
|
2314
2314
|
attachBookmarkCount?: boolean;
|
|
2315
2315
|
attachShortBody?: boolean;
|
|
2316
2316
|
};
|
|
2317
|
-
export type
|
|
2317
|
+
export type GetInfoForPageListing200IdToPageInfoMap = {
|
|
2318
2318
|
[key: string]: {
|
|
2319
2319
|
commentCount?: number;
|
|
2320
2320
|
contentAge?: number;
|
|
@@ -2331,8 +2331,8 @@ export type GetPageListingInfo200IdToPageInfoMap = {
|
|
|
2331
2331
|
sumOfSeenUsers?: number;
|
|
2332
2332
|
};
|
|
2333
2333
|
};
|
|
2334
|
-
export type
|
|
2335
|
-
idToPageInfoMap?:
|
|
2334
|
+
export type GetInfoForPageListing200 = {
|
|
2335
|
+
idToPageInfoMap?: GetInfoForPageListing200IdToPageInfoMap;
|
|
2336
2336
|
};
|
|
2337
2337
|
export type GetPageParams = {
|
|
2338
2338
|
/**
|
|
@@ -2385,51 +2385,51 @@ export type PutPage200Data = {
|
|
|
2385
2385
|
export type PutPage200 = {
|
|
2386
2386
|
data?: PutPage200Data;
|
|
2387
2387
|
};
|
|
2388
|
-
export type
|
|
2388
|
+
export type GetExistForPageParams = {
|
|
2389
2389
|
/**
|
|
2390
2390
|
* The path to check for existence
|
|
2391
2391
|
*/
|
|
2392
2392
|
path: string;
|
|
2393
2393
|
};
|
|
2394
|
-
export type
|
|
2394
|
+
export type GetExistForPage200 = {
|
|
2395
2395
|
isExist?: boolean;
|
|
2396
2396
|
};
|
|
2397
|
-
export type
|
|
2397
|
+
export type GetGrantDataForPageParams = {
|
|
2398
2398
|
/**
|
|
2399
2399
|
* page id
|
|
2400
2400
|
*/
|
|
2401
2401
|
pageId?: ObjectId;
|
|
2402
2402
|
};
|
|
2403
|
-
export type
|
|
2403
|
+
export type GetGrantDataForPage200 = {
|
|
2404
2404
|
isGrantNormalized?: boolean;
|
|
2405
2405
|
};
|
|
2406
|
-
export type
|
|
2406
|
+
export type GetNonUserRelatedGroupsGrantedForPageParams = {
|
|
2407
2407
|
/**
|
|
2408
2408
|
* Path of the page
|
|
2409
2409
|
*/
|
|
2410
2410
|
path: string;
|
|
2411
2411
|
};
|
|
2412
|
-
export type
|
|
2412
|
+
export type GetNonUserRelatedGroupsGrantedForPage200 = {
|
|
2413
2413
|
isNonUserRelatedGroupsGranted?: boolean;
|
|
2414
2414
|
};
|
|
2415
|
-
export type
|
|
2415
|
+
export type GetApplicableGrantForPageParams = {
|
|
2416
2416
|
/**
|
|
2417
2417
|
* ID of the page
|
|
2418
2418
|
*/
|
|
2419
2419
|
pageId: string;
|
|
2420
2420
|
};
|
|
2421
|
-
export type
|
|
2421
|
+
export type GetApplicableGrantForPage200 = {
|
|
2422
2422
|
grant?: number;
|
|
2423
2423
|
grantedUsers?: string[];
|
|
2424
2424
|
grantedGroups?: string[];
|
|
2425
2425
|
};
|
|
2426
|
-
export type
|
|
2426
|
+
export type PutGrantByPageIdBody = {
|
|
2427
2427
|
/** Grant level */
|
|
2428
2428
|
grant?: number;
|
|
2429
2429
|
/** Array of user-related granted group IDs */
|
|
2430
2430
|
userRelatedGrantedGroups?: string[];
|
|
2431
2431
|
};
|
|
2432
|
-
export type
|
|
2432
|
+
export type GetExistPathsForPageParams = {
|
|
2433
2433
|
/**
|
|
2434
2434
|
* old parent path
|
|
2435
2435
|
*/
|
|
@@ -2442,47 +2442,47 @@ export type GetPageExistPathsParams = {
|
|
|
2442
2442
|
/**
|
|
2443
2443
|
* Paths are already exist in DB
|
|
2444
2444
|
*/
|
|
2445
|
-
export type
|
|
2445
|
+
export type GetExistPathsForPage200ExistPaths = {
|
|
2446
2446
|
[key: string]: unknown;
|
|
2447
2447
|
};
|
|
2448
|
-
export type
|
|
2448
|
+
export type GetExistPathsForPage200 = {
|
|
2449
2449
|
/** Paths are already exist in DB */
|
|
2450
|
-
existPaths?:
|
|
2450
|
+
existPaths?: GetExistPathsForPage200ExistPaths;
|
|
2451
2451
|
};
|
|
2452
|
-
export type
|
|
2452
|
+
export type PutSubscribeForPageBody = {
|
|
2453
2453
|
pageId?: ObjectId;
|
|
2454
2454
|
};
|
|
2455
|
-
export type
|
|
2455
|
+
export type PutContentWidthByPageIdBody = {
|
|
2456
2456
|
/** Whether to expand the content width */
|
|
2457
2457
|
expandContentWidth?: boolean;
|
|
2458
2458
|
};
|
|
2459
|
-
export type
|
|
2459
|
+
export type PutContentWidthByPageId200 = {
|
|
2460
2460
|
page?: Page;
|
|
2461
2461
|
};
|
|
2462
2462
|
/**
|
|
2463
2463
|
* Yjs data
|
|
2464
2464
|
*/
|
|
2465
|
-
export type
|
|
2465
|
+
export type GetYjsDataByPageId200YjsData = {
|
|
2466
2466
|
/** Whether Yjs documents are newer than the latest revision */
|
|
2467
2467
|
hasYdocsNewerThanLatestRevision?: boolean;
|
|
2468
2468
|
/** Size of the awareness state */
|
|
2469
2469
|
awarenessStateSize?: number;
|
|
2470
2470
|
};
|
|
2471
|
-
export type
|
|
2471
|
+
export type GetYjsDataByPageId200 = {
|
|
2472
2472
|
/** Yjs data */
|
|
2473
|
-
yjsData?:
|
|
2473
|
+
yjsData?: GetYjsDataByPageId200YjsData;
|
|
2474
2474
|
};
|
|
2475
|
-
export type
|
|
2475
|
+
export type PutSyncLatestRevisionBodyToYjsDraftByPageIdBody = {
|
|
2476
2476
|
/** Length of the editing markdown */
|
|
2477
2477
|
editingMarkdownLength?: number;
|
|
2478
2478
|
};
|
|
2479
|
-
export type
|
|
2479
|
+
export type PutSyncLatestRevisionBodyToYjsDraftByPageId200 = {
|
|
2480
2480
|
/** Whether the latest revision body is synced to the Yjs draft */
|
|
2481
2481
|
synced?: boolean;
|
|
2482
2482
|
/** Whether Yjs data is broken */
|
|
2483
2483
|
isYjsDataBroken?: boolean;
|
|
2484
2484
|
};
|
|
2485
|
-
export type
|
|
2485
|
+
export type GetRecentForPagesParams = {
|
|
2486
2486
|
/**
|
|
2487
2487
|
* Limit of acquisitions
|
|
2488
2488
|
*/
|
|
@@ -2496,7 +2496,7 @@ export type GetPagesRecentParams = {
|
|
|
2496
2496
|
*/
|
|
2497
2497
|
includeWipPage?: string;
|
|
2498
2498
|
};
|
|
2499
|
-
export type
|
|
2499
|
+
export type PostRenameForPagesBody = {
|
|
2500
2500
|
pageId: ObjectId;
|
|
2501
2501
|
path?: PagePath;
|
|
2502
2502
|
/** revision ID */
|
|
@@ -2510,19 +2510,19 @@ export type PostPagesRenameBody = {
|
|
|
2510
2510
|
/** whether rename page with descendants */
|
|
2511
2511
|
isRecursively?: boolean;
|
|
2512
2512
|
};
|
|
2513
|
-
export type
|
|
2513
|
+
export type PostRenameForPages200 = {
|
|
2514
2514
|
page?: Page;
|
|
2515
2515
|
};
|
|
2516
|
-
export type
|
|
2516
|
+
export type PostResumeRenameForPagesBody = {
|
|
2517
2517
|
pageId: ObjectId;
|
|
2518
2518
|
};
|
|
2519
|
-
export type
|
|
2519
|
+
export type PostResumeRenameForPages200 = {
|
|
2520
2520
|
[key: string]: unknown;
|
|
2521
2521
|
};
|
|
2522
|
-
export type
|
|
2522
|
+
export type DeleteEmptyTrashForPages200 = {
|
|
2523
2523
|
deletablePages?: Page[];
|
|
2524
2524
|
};
|
|
2525
|
-
export type
|
|
2525
|
+
export type GetListForPagesParams = {
|
|
2526
2526
|
/**
|
|
2527
2527
|
* Path to search
|
|
2528
2528
|
*/
|
|
@@ -2536,20 +2536,20 @@ export type GetPagesListParams = {
|
|
|
2536
2536
|
*/
|
|
2537
2537
|
page?: number;
|
|
2538
2538
|
};
|
|
2539
|
-
export type
|
|
2539
|
+
export type GetListForPages200PagesItemAllOf = {
|
|
2540
2540
|
lastUpdateUser?: User;
|
|
2541
2541
|
};
|
|
2542
|
-
export type
|
|
2543
|
-
export type
|
|
2542
|
+
export type GetListForPages200PagesItem = Page & GetListForPages200PagesItemAllOf;
|
|
2543
|
+
export type GetListForPages200 = {
|
|
2544
2544
|
/** Total count of pages */
|
|
2545
2545
|
totalCount?: number;
|
|
2546
2546
|
/** Offset of pages */
|
|
2547
2547
|
offset?: number;
|
|
2548
2548
|
/** Limit of pages */
|
|
2549
2549
|
limit?: number;
|
|
2550
|
-
pages?:
|
|
2550
|
+
pages?: GetListForPages200PagesItem[];
|
|
2551
2551
|
};
|
|
2552
|
-
export type
|
|
2552
|
+
export type PostDuplicateForPagesBody = {
|
|
2553
2553
|
pageId: ObjectId;
|
|
2554
2554
|
pageNameInput?: PagePath;
|
|
2555
2555
|
/** whether duplicate page with descendants */
|
|
@@ -2557,10 +2557,10 @@ export type PostPagesDuplicateBody = {
|
|
|
2557
2557
|
/** whether duplicate only user related resources */
|
|
2558
2558
|
onlyDuplicateUserRelatedResources?: boolean;
|
|
2559
2559
|
};
|
|
2560
|
-
export type
|
|
2560
|
+
export type PostDuplicateForPages200 = {
|
|
2561
2561
|
page?: Page;
|
|
2562
2562
|
};
|
|
2563
|
-
export type
|
|
2563
|
+
export type GetSubordinatedListForPagesParams = {
|
|
2564
2564
|
/**
|
|
2565
2565
|
* Parent path of search
|
|
2566
2566
|
*/
|
|
@@ -2570,18 +2570,18 @@ export type GetPagesSubordinatedListParams = {
|
|
|
2570
2570
|
*/
|
|
2571
2571
|
limit?: number;
|
|
2572
2572
|
};
|
|
2573
|
-
export type
|
|
2573
|
+
export type GetSubordinatedListForPages200 = {
|
|
2574
2574
|
subordinatedPages?: Page[];
|
|
2575
2575
|
};
|
|
2576
2576
|
/**
|
|
2577
2577
|
* Map of page IDs to revision IDs
|
|
2578
2578
|
*/
|
|
2579
|
-
export type
|
|
2579
|
+
export type PostDeleteForPagesBodyPageIdToRevisionIdMap = {
|
|
2580
2580
|
[key: string]: unknown;
|
|
2581
2581
|
};
|
|
2582
|
-
export type
|
|
2582
|
+
export type PostDeleteForPagesBody = {
|
|
2583
2583
|
/** Map of page IDs to revision IDs */
|
|
2584
|
-
pageIdToRevisionIdMap?:
|
|
2584
|
+
pageIdToRevisionIdMap?: PostDeleteForPagesBodyPageIdToRevisionIdMap;
|
|
2585
2585
|
/** Whether to delete pages completely */
|
|
2586
2586
|
isCompletely?: boolean;
|
|
2587
2587
|
/** Whether to delete pages recursively */
|
|
@@ -2589,7 +2589,7 @@ export type PostPagesDeleteBody = {
|
|
|
2589
2589
|
/** Whether the page is restricted to anyone with the link */
|
|
2590
2590
|
isAnyoneWithTheLink?: boolean;
|
|
2591
2591
|
};
|
|
2592
|
-
export type
|
|
2592
|
+
export type PostDeleteForPages200 = {
|
|
2593
2593
|
/** List of deleted page paths */
|
|
2594
2594
|
paths?: string[];
|
|
2595
2595
|
/** Whether pages were deleted recursively */
|
|
@@ -2597,17 +2597,17 @@ export type PostPagesDelete200 = {
|
|
|
2597
2597
|
/** Whether pages were deleted completely */
|
|
2598
2598
|
isCompletely?: boolean;
|
|
2599
2599
|
};
|
|
2600
|
-
export type
|
|
2600
|
+
export type PostConvertPagesByPathForPagesBody = {
|
|
2601
2601
|
/** Path to convert */
|
|
2602
2602
|
convertPath?: string;
|
|
2603
2603
|
};
|
|
2604
2604
|
/**
|
|
2605
2605
|
* Empty object
|
|
2606
2606
|
*/
|
|
2607
|
-
export type
|
|
2607
|
+
export type PostConvertPagesByPathForPages200 = {
|
|
2608
2608
|
[key: string]: unknown;
|
|
2609
2609
|
};
|
|
2610
|
-
export type
|
|
2610
|
+
export type PostLegacyPagesMigrationForPagesBody = {
|
|
2611
2611
|
/** List of page IDs to migrate */
|
|
2612
2612
|
pageIds?: string[];
|
|
2613
2613
|
/** Whether to migrate pages recursively */
|
|
@@ -2616,10 +2616,10 @@ export type PostPagesLegacyPagesMigrationBody = {
|
|
|
2616
2616
|
/**
|
|
2617
2617
|
* Empty object
|
|
2618
2618
|
*/
|
|
2619
|
-
export type
|
|
2619
|
+
export type PostLegacyPagesMigrationForPages200 = {
|
|
2620
2620
|
[key: string]: unknown;
|
|
2621
2621
|
};
|
|
2622
|
-
export type
|
|
2622
|
+
export type GetV5MigrationStatusForPages200 = {
|
|
2623
2623
|
/** Whether the app is V5 compatible */
|
|
2624
2624
|
isV5Compatible?: boolean;
|
|
2625
2625
|
/** Number of pages that can be migrated */
|
|
@@ -2645,83 +2645,83 @@ export type PutPersonalSetting200 = {
|
|
|
2645
2645
|
/** personal params */
|
|
2646
2646
|
updatedUser?: PutPersonalSetting200UpdatedUser;
|
|
2647
2647
|
};
|
|
2648
|
-
export type
|
|
2648
|
+
export type GetIsPasswordSetForPersonalSetting200 = {
|
|
2649
2649
|
/** Whether a password has been set */
|
|
2650
2650
|
isPasswordSet?: boolean;
|
|
2651
2651
|
/** Minimum password length */
|
|
2652
2652
|
minPasswordLength?: number;
|
|
2653
2653
|
};
|
|
2654
|
-
export type
|
|
2654
|
+
export type PutImageTypeForPersonalSettingBody = {
|
|
2655
2655
|
isGravatarEnabled?: boolean;
|
|
2656
2656
|
};
|
|
2657
2657
|
/**
|
|
2658
2658
|
* user data
|
|
2659
2659
|
*/
|
|
2660
|
-
export type
|
|
2660
|
+
export type PutImageTypeForPersonalSetting200UserData = {
|
|
2661
2661
|
[key: string]: unknown;
|
|
2662
2662
|
};
|
|
2663
|
-
export type
|
|
2663
|
+
export type PutImageTypeForPersonalSetting200 = {
|
|
2664
2664
|
/** user data */
|
|
2665
|
-
userData?:
|
|
2665
|
+
userData?: PutImageTypeForPersonalSetting200UserData;
|
|
2666
2666
|
};
|
|
2667
2667
|
/**
|
|
2668
2668
|
* array of external accounts
|
|
2669
2669
|
*/
|
|
2670
|
-
export type
|
|
2670
|
+
export type GetExternalAccountsForPersonalSetting200ExternalAccounts = {
|
|
2671
2671
|
[key: string]: unknown;
|
|
2672
2672
|
};
|
|
2673
|
-
export type
|
|
2673
|
+
export type GetExternalAccountsForPersonalSetting200 = {
|
|
2674
2674
|
/** array of external accounts */
|
|
2675
|
-
externalAccounts?:
|
|
2675
|
+
externalAccounts?: GetExternalAccountsForPersonalSetting200ExternalAccounts;
|
|
2676
2676
|
};
|
|
2677
|
-
export type
|
|
2677
|
+
export type PutPasswordForPersonalSettingBody = {
|
|
2678
2678
|
oldPassword?: string;
|
|
2679
2679
|
newPassword?: string;
|
|
2680
2680
|
};
|
|
2681
2681
|
/**
|
|
2682
2682
|
* user data updated
|
|
2683
2683
|
*/
|
|
2684
|
-
export type
|
|
2684
|
+
export type PutPasswordForPersonalSetting200UserData = {
|
|
2685
2685
|
[key: string]: unknown;
|
|
2686
2686
|
};
|
|
2687
|
-
export type
|
|
2687
|
+
export type PutPasswordForPersonalSetting200 = {
|
|
2688
2688
|
/** user data updated */
|
|
2689
|
-
userData?:
|
|
2689
|
+
userData?: PutPasswordForPersonalSetting200UserData;
|
|
2690
2690
|
};
|
|
2691
2691
|
/**
|
|
2692
2692
|
* user data
|
|
2693
2693
|
*/
|
|
2694
|
-
export type
|
|
2694
|
+
export type PutApiTokenForPersonalSetting200UserData = {
|
|
2695
2695
|
[key: string]: unknown;
|
|
2696
2696
|
};
|
|
2697
|
-
export type
|
|
2697
|
+
export type PutApiTokenForPersonalSetting200 = {
|
|
2698
2698
|
/** user data */
|
|
2699
|
-
userData?:
|
|
2699
|
+
userData?: PutApiTokenForPersonalSetting200UserData;
|
|
2700
2700
|
};
|
|
2701
|
-
export type
|
|
2701
|
+
export type PutAssociateLdapForPersonalSettingBody = {
|
|
2702
2702
|
username?: string;
|
|
2703
2703
|
};
|
|
2704
2704
|
/**
|
|
2705
2705
|
* Ldap account associate to me
|
|
2706
2706
|
*/
|
|
2707
|
-
export type
|
|
2707
|
+
export type PutAssociateLdapForPersonalSetting200AssociateUser = {
|
|
2708
2708
|
[key: string]: unknown;
|
|
2709
2709
|
};
|
|
2710
|
-
export type
|
|
2710
|
+
export type PutAssociateLdapForPersonalSetting200 = {
|
|
2711
2711
|
/** Ldap account associate to me */
|
|
2712
|
-
associateUser?:
|
|
2712
|
+
associateUser?: PutAssociateLdapForPersonalSetting200AssociateUser;
|
|
2713
2713
|
};
|
|
2714
2714
|
/**
|
|
2715
2715
|
* Ldap account disassociate to me
|
|
2716
2716
|
*/
|
|
2717
|
-
export type
|
|
2717
|
+
export type PutDisassociateLdapForPersonalSetting200DisassociateUser = {
|
|
2718
2718
|
[key: string]: unknown;
|
|
2719
2719
|
};
|
|
2720
|
-
export type
|
|
2720
|
+
export type PutDisassociateLdapForPersonalSetting200 = {
|
|
2721
2721
|
/** Ldap account disassociate to me */
|
|
2722
|
-
disassociateUser?:
|
|
2722
|
+
disassociateUser?: PutDisassociateLdapForPersonalSetting200DisassociateUser;
|
|
2723
2723
|
};
|
|
2724
|
-
export type
|
|
2724
|
+
export type PutEditorSettingsForPersonalSettingBody = {
|
|
2725
2725
|
theme?: string;
|
|
2726
2726
|
keymapMode?: string;
|
|
2727
2727
|
styleActiveLine?: boolean;
|
|
@@ -2730,43 +2730,43 @@ export type PutPersonalSettingEditorSettingsBody = {
|
|
|
2730
2730
|
/**
|
|
2731
2731
|
* editor settings
|
|
2732
2732
|
*/
|
|
2733
|
-
export type
|
|
2733
|
+
export type PutEditorSettingsForPersonalSetting200 = {
|
|
2734
2734
|
[key: string]: unknown;
|
|
2735
2735
|
};
|
|
2736
2736
|
/**
|
|
2737
2737
|
* editor settings
|
|
2738
2738
|
*/
|
|
2739
|
-
export type
|
|
2739
|
+
export type GetEditorSettingsForPersonalSetting200 = {
|
|
2740
2740
|
[key: string]: unknown;
|
|
2741
2741
|
};
|
|
2742
|
-
export type
|
|
2742
|
+
export type PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem = {
|
|
2743
2743
|
name?: string;
|
|
2744
2744
|
isEnabled?: boolean;
|
|
2745
2745
|
};
|
|
2746
|
-
export type
|
|
2747
|
-
subscribeRules?:
|
|
2746
|
+
export type PutInAppNotificationSettingsForPersonalSettingBody = {
|
|
2747
|
+
subscribeRules?: PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem[];
|
|
2748
2748
|
};
|
|
2749
|
-
export type
|
|
2749
|
+
export type PutInAppNotificationSettingsForPersonalSetting200 = {
|
|
2750
2750
|
[key: string]: unknown;
|
|
2751
2751
|
};
|
|
2752
2752
|
/**
|
|
2753
2753
|
* InAppNotificationSettings
|
|
2754
2754
|
*/
|
|
2755
|
-
export type
|
|
2755
|
+
export type GetInAppNotificationSettingsForPersonalSetting200CurrentUser = {
|
|
2756
2756
|
[key: string]: unknown;
|
|
2757
2757
|
};
|
|
2758
|
-
export type
|
|
2758
|
+
export type GetInAppNotificationSettingsForPersonalSetting200 = {
|
|
2759
2759
|
/** InAppNotificationSettings */
|
|
2760
|
-
currentUser?:
|
|
2760
|
+
currentUser?: GetInAppNotificationSettingsForPersonalSetting200CurrentUser;
|
|
2761
2761
|
};
|
|
2762
|
-
export type
|
|
2762
|
+
export type PutQuestionnaireSettingsForPersonalSettingBody = {
|
|
2763
2763
|
isQuestionnaireEnabled?: boolean;
|
|
2764
2764
|
};
|
|
2765
|
-
export type
|
|
2765
|
+
export type PutQuestionnaireSettingsForPersonalSetting200 = {
|
|
2766
2766
|
message?: string;
|
|
2767
2767
|
isQuestionnaireEnabled?: boolean;
|
|
2768
2768
|
};
|
|
2769
|
-
export type
|
|
2769
|
+
export type GetListForRevisionsParams = {
|
|
2770
2770
|
pageId?: string;
|
|
2771
2771
|
/**
|
|
2772
2772
|
* selected page number
|
|
@@ -2777,39 +2777,39 @@ export type GetRevisionsListParams = {
|
|
|
2777
2777
|
*/
|
|
2778
2778
|
limit?: number;
|
|
2779
2779
|
};
|
|
2780
|
-
export type
|
|
2780
|
+
export type GetListForRevisions200 = {
|
|
2781
2781
|
revisions?: Revision[];
|
|
2782
2782
|
/** total count of revisions */
|
|
2783
2783
|
totalCount?: number;
|
|
2784
2784
|
/** offset of the revisions */
|
|
2785
2785
|
offset?: number;
|
|
2786
2786
|
};
|
|
2787
|
-
export type
|
|
2787
|
+
export type GetRevisionsByIdParams = {
|
|
2788
2788
|
/**
|
|
2789
2789
|
* page id
|
|
2790
2790
|
*/
|
|
2791
2791
|
pageId: string;
|
|
2792
2792
|
};
|
|
2793
|
-
export type
|
|
2793
|
+
export type GetRevisionsById200 = {
|
|
2794
2794
|
revision?: Revision;
|
|
2795
2795
|
};
|
|
2796
|
-
export type
|
|
2796
|
+
export type GetIndicesForSearch200 = {
|
|
2797
2797
|
/** Status of indices */
|
|
2798
2798
|
info?: Indices;
|
|
2799
2799
|
};
|
|
2800
2800
|
/**
|
|
2801
2801
|
* Operation type against to indices > * `normalize` - Normalize indices * `rebuild` - Rebuild indices
|
|
2802
2802
|
*/
|
|
2803
|
-
export type
|
|
2804
|
-
export declare const
|
|
2803
|
+
export type PutIndicesForSearchBodyOperation = (typeof PutIndicesForSearchBodyOperation)[keyof typeof PutIndicesForSearchBodyOperation];
|
|
2804
|
+
export declare const PutIndicesForSearchBodyOperation: {
|
|
2805
2805
|
readonly normalize: "normalize";
|
|
2806
2806
|
readonly rebuild: "rebuild";
|
|
2807
2807
|
};
|
|
2808
|
-
export type
|
|
2808
|
+
export type PutIndicesForSearchBody = {
|
|
2809
2809
|
/** Operation type against to indices > * `normalize` - Normalize indices * `rebuild` - Rebuild indices */
|
|
2810
|
-
operation?:
|
|
2810
|
+
operation?: PutIndicesForSearchBodyOperation;
|
|
2811
2811
|
};
|
|
2812
|
-
export type
|
|
2812
|
+
export type PutIndicesForSearch200 = {
|
|
2813
2813
|
/** Operation is successfully processed, or requested */
|
|
2814
2814
|
message?: string;
|
|
2815
2815
|
};
|
|
@@ -2831,53 +2831,53 @@ export type GetSecuritySetting200 = {
|
|
|
2831
2831
|
/** security params */
|
|
2832
2832
|
securityParams?: GetSecuritySetting200SecurityParams;
|
|
2833
2833
|
};
|
|
2834
|
-
export type
|
|
2834
|
+
export type PutEnabledForSecuritySettingAuthenticationBody = {
|
|
2835
2835
|
isEnabled?: boolean;
|
|
2836
2836
|
authId?: string;
|
|
2837
2837
|
};
|
|
2838
2838
|
/**
|
|
2839
2839
|
* updated param
|
|
2840
2840
|
*/
|
|
2841
|
-
export type
|
|
2841
|
+
export type PutEnabledForSecuritySettingAuthentication200 = {
|
|
2842
2842
|
[key: string]: unknown;
|
|
2843
2843
|
};
|
|
2844
|
-
export type
|
|
2844
|
+
export type GetAuthenticationForSecuritySetting200 = {
|
|
2845
2845
|
/** setup strategies list */
|
|
2846
2846
|
setupStrategies?: string[];
|
|
2847
2847
|
};
|
|
2848
|
-
export type
|
|
2848
|
+
export type PutShareLinkSettingForSecuritySetting200 = {
|
|
2849
2849
|
securitySettingParams?: ShareLinkSetting;
|
|
2850
2850
|
};
|
|
2851
2851
|
/**
|
|
2852
2852
|
* suceed to get all share links
|
|
2853
2853
|
*/
|
|
2854
|
-
export type
|
|
2854
|
+
export type GetAllShareLinksForSecuritySetting200SecurityParams = {
|
|
2855
2855
|
[key: string]: unknown;
|
|
2856
2856
|
};
|
|
2857
|
-
export type
|
|
2857
|
+
export type GetAllShareLinksForSecuritySetting200 = {
|
|
2858
2858
|
/** suceed to get all share links */
|
|
2859
|
-
securityParams?:
|
|
2859
|
+
securityParams?: GetAllShareLinksForSecuritySetting200SecurityParams;
|
|
2860
2860
|
};
|
|
2861
|
-
export type
|
|
2861
|
+
export type DeleteAllShareLinksForSecuritySetting200 = {
|
|
2862
2862
|
/** total number of removed share links */
|
|
2863
2863
|
removeTotal?: number;
|
|
2864
2864
|
};
|
|
2865
|
-
export type
|
|
2865
|
+
export type PutLocalSettingForSecuritySetting200 = {
|
|
2866
2866
|
localSettingParams?: LocalSetting;
|
|
2867
2867
|
};
|
|
2868
|
-
export type
|
|
2868
|
+
export type PutLdapForSecuritySetting200 = {
|
|
2869
2869
|
securitySettingParams?: LdapAuthSetting;
|
|
2870
2870
|
};
|
|
2871
|
-
export type
|
|
2871
|
+
export type PutSamlForSecuritySetting200 = {
|
|
2872
2872
|
securitySettingParams?: SamlAuthSetting;
|
|
2873
2873
|
};
|
|
2874
|
-
export type
|
|
2874
|
+
export type PutOidcForSecuritySetting200 = {
|
|
2875
2875
|
securitySettingParams?: OidcAuthSetting;
|
|
2876
2876
|
};
|
|
2877
|
-
export type
|
|
2877
|
+
export type PutGoogleOauthForSecuritySetting200 = {
|
|
2878
2878
|
securitySettingParams?: GoogleOAuthSetting;
|
|
2879
2879
|
};
|
|
2880
|
-
export type
|
|
2880
|
+
export type PutGithubOauthForSecuritySetting200 = {
|
|
2881
2881
|
securitySettingParams?: GitHubOAuthSetting;
|
|
2882
2882
|
};
|
|
2883
2883
|
export type GetShareLinksParams = {
|
|
@@ -2909,7 +2909,7 @@ export type DeleteShareLinksParams = {
|
|
|
2909
2909
|
*/
|
|
2910
2910
|
relatedPage: string;
|
|
2911
2911
|
};
|
|
2912
|
-
export type
|
|
2912
|
+
export type DeleteAllForShareLinks200 = {
|
|
2913
2913
|
/** The number of share links deleted */
|
|
2914
2914
|
deletedCount?: number;
|
|
2915
2915
|
};
|
|
@@ -2957,124 +2957,124 @@ export type GetSlackIntegrationSettings200 = {
|
|
|
2957
2957
|
errorMsg?: string;
|
|
2958
2958
|
errorCode?: string;
|
|
2959
2959
|
};
|
|
2960
|
-
export type
|
|
2960
|
+
export type PutUpdateSettingsForSlackIntegrationSettingsWithoutProxyBody = {
|
|
2961
2961
|
slackSigningSecret?: string;
|
|
2962
2962
|
slackBotToken?: string;
|
|
2963
2963
|
};
|
|
2964
|
-
export type
|
|
2964
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission = {
|
|
2965
2965
|
[key: string]: unknown;
|
|
2966
2966
|
};
|
|
2967
|
-
export type
|
|
2967
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission = {
|
|
2968
2968
|
[key: string]: unknown;
|
|
2969
2969
|
};
|
|
2970
|
-
export type
|
|
2971
|
-
commandPermission?:
|
|
2972
|
-
eventActionsPermission?:
|
|
2970
|
+
export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBody = {
|
|
2971
|
+
commandPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission;
|
|
2972
|
+
eventActionsPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission;
|
|
2973
2973
|
};
|
|
2974
|
-
export type
|
|
2974
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands = {
|
|
2975
2975
|
[key: string]: unknown;
|
|
2976
2976
|
};
|
|
2977
|
-
export type
|
|
2977
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands = {
|
|
2978
2978
|
[key: string]: unknown;
|
|
2979
2979
|
};
|
|
2980
|
-
export type
|
|
2980
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents = {
|
|
2981
2981
|
[key: string]: unknown;
|
|
2982
2982
|
};
|
|
2983
|
-
export type
|
|
2983
|
+
export type PostSlackAppIntegrationsForSlackIntegrationSettings200 = {
|
|
2984
2984
|
tokenGtoP?: string;
|
|
2985
2985
|
tokenPtoG?: string;
|
|
2986
|
-
permissionsForBroadcastUseCommands?:
|
|
2987
|
-
permissionsForSingleUseCommands?:
|
|
2988
|
-
permissionsForSlackEvents?:
|
|
2986
|
+
permissionsForBroadcastUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands;
|
|
2987
|
+
permissionsForSingleUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands;
|
|
2988
|
+
permissionsForSlackEvents?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents;
|
|
2989
2989
|
isPrimary?: boolean;
|
|
2990
2990
|
};
|
|
2991
|
-
export type
|
|
2991
|
+
export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response = {
|
|
2992
2992
|
[key: string]: unknown;
|
|
2993
2993
|
};
|
|
2994
|
-
export type
|
|
2995
|
-
response?:
|
|
2994
|
+
export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200 = {
|
|
2995
|
+
response?: DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response;
|
|
2996
2996
|
};
|
|
2997
|
-
export type
|
|
2997
|
+
export type PutProxyUriForSlackIntegrationSettingsBody = {
|
|
2998
2998
|
proxyUri?: string;
|
|
2999
2999
|
};
|
|
3000
|
-
export type
|
|
3000
|
+
export type PutProxyUriForSlackIntegrationSettings200 = {
|
|
3001
3001
|
[key: string]: unknown;
|
|
3002
3002
|
};
|
|
3003
|
-
export type
|
|
3003
|
+
export type PutRegenerateTokensByIdForSlackIntegrationSettingsSlackAppIntegrations200 = {
|
|
3004
3004
|
[key: string]: unknown;
|
|
3005
3005
|
};
|
|
3006
|
-
export type
|
|
3006
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands = {
|
|
3007
3007
|
[key: string]: unknown;
|
|
3008
3008
|
};
|
|
3009
|
-
export type
|
|
3009
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands = {
|
|
3010
3010
|
[key: string]: unknown;
|
|
3011
3011
|
};
|
|
3012
|
-
export type
|
|
3012
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions = {
|
|
3013
3013
|
[key: string]: unknown;
|
|
3014
3014
|
};
|
|
3015
|
-
export type
|
|
3016
|
-
permissionsForBroadcastUseCommands?:
|
|
3017
|
-
permissionsForSingleUseCommands?:
|
|
3018
|
-
permissionsForSlackEventActions?:
|
|
3015
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
|
|
3016
|
+
permissionsForBroadcastUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands;
|
|
3017
|
+
permissionsForSingleUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands;
|
|
3018
|
+
permissionsForSlackEventActions?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions;
|
|
3019
3019
|
};
|
|
3020
|
-
export type
|
|
3020
|
+
export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrations200 = {
|
|
3021
3021
|
[key: string]: unknown;
|
|
3022
3022
|
};
|
|
3023
|
-
export type
|
|
3023
|
+
export type PostRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
|
|
3024
3024
|
channel?: string;
|
|
3025
3025
|
};
|
|
3026
|
-
export type
|
|
3026
|
+
export type PostTestForSlackIntegrationSettingsWithoutProxyBody = {
|
|
3027
3027
|
channel?: string;
|
|
3028
3028
|
};
|
|
3029
|
-
export type
|
|
3029
|
+
export type PostCommandsForSlackIntegrationBody = {
|
|
3030
3030
|
[key: string]: unknown;
|
|
3031
3031
|
};
|
|
3032
|
-
export type
|
|
3032
|
+
export type PostVerifyForSlackIntegrationProxiedBody = {
|
|
3033
3033
|
type?: string;
|
|
3034
3034
|
challenge?: string;
|
|
3035
3035
|
};
|
|
3036
|
-
export type
|
|
3036
|
+
export type PostVerifyForSlackIntegrationProxied200 = {
|
|
3037
3037
|
challenge?: string;
|
|
3038
3038
|
};
|
|
3039
|
-
export type
|
|
3039
|
+
export type PostCommandsForSlackIntegrationProxiedBody = {
|
|
3040
3040
|
[key: string]: unknown;
|
|
3041
3041
|
};
|
|
3042
|
-
export type
|
|
3042
|
+
export type PostInteractionsForSlackIntegrationBody = {
|
|
3043
3043
|
[key: string]: unknown;
|
|
3044
3044
|
};
|
|
3045
|
-
export type
|
|
3045
|
+
export type PostInteractionsForSlackIntegrationProxiedBody = {
|
|
3046
3046
|
[key: string]: unknown;
|
|
3047
3047
|
};
|
|
3048
|
-
export type
|
|
3048
|
+
export type GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem = {
|
|
3049
3049
|
[key: string]: unknown;
|
|
3050
3050
|
};
|
|
3051
|
-
export type
|
|
3051
|
+
export type GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem = {
|
|
3052
3052
|
[key: string]: unknown;
|
|
3053
3053
|
};
|
|
3054
|
-
export type
|
|
3055
|
-
permissionsForBroadcastUseCommands?:
|
|
3056
|
-
permissionsForSingleUseCommands?:
|
|
3054
|
+
export type GetSupportedCommandsForSlackIntegration200 = {
|
|
3055
|
+
permissionsForBroadcastUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem[];
|
|
3056
|
+
permissionsForSingleUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem[];
|
|
3057
3057
|
};
|
|
3058
|
-
export type
|
|
3058
|
+
export type PostEventsForSlackIntegrationBodyEvent = {
|
|
3059
3059
|
[key: string]: unknown;
|
|
3060
3060
|
};
|
|
3061
|
-
export type
|
|
3062
|
-
event?:
|
|
3061
|
+
export type PostEventsForSlackIntegrationBody = {
|
|
3062
|
+
event?: PostEventsForSlackIntegrationBodyEvent;
|
|
3063
3063
|
};
|
|
3064
|
-
export type
|
|
3064
|
+
export type PostEventsForSlackIntegration200 = {
|
|
3065
3065
|
[key: string]: unknown;
|
|
3066
3066
|
};
|
|
3067
|
-
export type
|
|
3067
|
+
export type PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent = {
|
|
3068
3068
|
[key: string]: unknown;
|
|
3069
3069
|
};
|
|
3070
|
-
export type
|
|
3070
|
+
export type PostEventsForSlackIntegrationProxiedBodyData = {
|
|
3071
3071
|
[key: string]: unknown;
|
|
3072
3072
|
};
|
|
3073
|
-
export type
|
|
3074
|
-
growiBotEvent?:
|
|
3075
|
-
data?:
|
|
3073
|
+
export type PostEventsForSlackIntegrationProxiedBody = {
|
|
3074
|
+
growiBotEvent?: PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent;
|
|
3075
|
+
data?: PostEventsForSlackIntegrationProxiedBodyData;
|
|
3076
3076
|
};
|
|
3077
|
-
export type
|
|
3077
|
+
export type PostEventsForSlackIntegrationProxied200 = {
|
|
3078
3078
|
[key: string]: unknown;
|
|
3079
3079
|
};
|
|
3080
3080
|
export type PostCompleteRegistrationBodyRegisterForm = {
|
|
@@ -3157,20 +3157,20 @@ export type PostUserGroups200 = {
|
|
|
3157
3157
|
/** A result of `UserGroup.createGroupByName` */
|
|
3158
3158
|
userGroup?: PostUserGroups200UserGroup;
|
|
3159
3159
|
};
|
|
3160
|
-
export type
|
|
3160
|
+
export type GetAncestorsForUserGroupsParams = {
|
|
3161
3161
|
/**
|
|
3162
3162
|
* id of userGroup
|
|
3163
3163
|
*/
|
|
3164
3164
|
groupId: string;
|
|
3165
3165
|
};
|
|
3166
|
-
export type
|
|
3166
|
+
export type GetAncestorsForUserGroups200AncestorUserGroupsItem = {
|
|
3167
3167
|
[key: string]: unknown;
|
|
3168
3168
|
};
|
|
3169
|
-
export type
|
|
3169
|
+
export type GetAncestorsForUserGroups200 = {
|
|
3170
3170
|
/** userGroup objects */
|
|
3171
|
-
ancestorUserGroups?:
|
|
3171
|
+
ancestorUserGroups?: GetAncestorsForUserGroups200AncestorUserGroupsItem[];
|
|
3172
3172
|
};
|
|
3173
|
-
export type
|
|
3173
|
+
export type GetChildrenForUserGroupsParams = {
|
|
3174
3174
|
/**
|
|
3175
3175
|
* IDs of parent user groups
|
|
3176
3176
|
*/
|
|
@@ -3180,17 +3180,17 @@ export type GetUserGroupsChildrenParams = {
|
|
|
3180
3180
|
*/
|
|
3181
3181
|
includeGrandChildren?: boolean;
|
|
3182
3182
|
};
|
|
3183
|
-
export type
|
|
3183
|
+
export type GetChildrenForUserGroups200ChildUserGroupsItem = {
|
|
3184
3184
|
[key: string]: unknown;
|
|
3185
3185
|
};
|
|
3186
|
-
export type
|
|
3186
|
+
export type GetChildrenForUserGroups200GrandChildUserGroupsItem = {
|
|
3187
3187
|
[key: string]: unknown;
|
|
3188
3188
|
};
|
|
3189
|
-
export type
|
|
3189
|
+
export type GetChildrenForUserGroups200 = {
|
|
3190
3190
|
/** Child user group objects */
|
|
3191
|
-
childUserGroups?:
|
|
3191
|
+
childUserGroups?: GetChildrenForUserGroups200ChildUserGroupsItem[];
|
|
3192
3192
|
/** Grandchild user group objects */
|
|
3193
|
-
grandChildUserGroups?:
|
|
3193
|
+
grandChildUserGroups?: GetChildrenForUserGroups200GrandChildUserGroupsItem[];
|
|
3194
3194
|
};
|
|
3195
3195
|
export type GetSelectableParentGroupsParams = {
|
|
3196
3196
|
/**
|
|
@@ -3221,14 +3221,14 @@ export type GetSelectableChildGroups200 = {
|
|
|
3221
3221
|
/**
|
|
3222
3222
|
* userGroup object
|
|
3223
3223
|
*/
|
|
3224
|
-
export type
|
|
3224
|
+
export type GetUserGroupsById200UserGroup = {
|
|
3225
3225
|
[key: string]: unknown;
|
|
3226
3226
|
};
|
|
3227
|
-
export type
|
|
3227
|
+
export type GetUserGroupsById200 = {
|
|
3228
3228
|
/** userGroup object */
|
|
3229
|
-
userGroup?:
|
|
3229
|
+
userGroup?: GetUserGroupsById200UserGroup;
|
|
3230
3230
|
};
|
|
3231
|
-
export type
|
|
3231
|
+
export type DeleteUserGroupsByIdParams = {
|
|
3232
3232
|
/**
|
|
3233
3233
|
* name of action
|
|
3234
3234
|
*/
|
|
@@ -3245,14 +3245,14 @@ export type DeleteUserGroupsIdParams = {
|
|
|
3245
3245
|
/**
|
|
3246
3246
|
* A result of `UserGroup.removeCompletelyById`
|
|
3247
3247
|
*/
|
|
3248
|
-
export type
|
|
3248
|
+
export type DeleteUserGroupsById200UserGroups = {
|
|
3249
3249
|
[key: string]: unknown;
|
|
3250
3250
|
};
|
|
3251
|
-
export type
|
|
3251
|
+
export type DeleteUserGroupsById200 = {
|
|
3252
3252
|
/** A result of `UserGroup.removeCompletelyById` */
|
|
3253
|
-
userGroups?:
|
|
3253
|
+
userGroups?: DeleteUserGroupsById200UserGroups;
|
|
3254
3254
|
};
|
|
3255
|
-
export type
|
|
3255
|
+
export type PutUserGroupsByIdBody = {
|
|
3256
3256
|
/** name of the userGroup trying to be updated */
|
|
3257
3257
|
name?: string;
|
|
3258
3258
|
/** description of the userGroup trying to be updated */
|
|
@@ -3265,18 +3265,18 @@ export type PutUserGroupsIdBody = {
|
|
|
3265
3265
|
/**
|
|
3266
3266
|
* A result of `UserGroup.updateName`
|
|
3267
3267
|
*/
|
|
3268
|
-
export type
|
|
3268
|
+
export type PutUserGroupsById200UserGroup = {
|
|
3269
3269
|
[key: string]: unknown;
|
|
3270
3270
|
};
|
|
3271
|
-
export type
|
|
3271
|
+
export type PutUserGroupsById200 = {
|
|
3272
3272
|
/** A result of `UserGroup.updateName` */
|
|
3273
|
-
userGroup?:
|
|
3273
|
+
userGroup?: PutUserGroupsById200UserGroup;
|
|
3274
3274
|
};
|
|
3275
|
-
export type
|
|
3275
|
+
export type GetUsersByIdForUserGroups200 = {
|
|
3276
3276
|
/** user objects */
|
|
3277
3277
|
users?: User[];
|
|
3278
3278
|
};
|
|
3279
|
-
export type
|
|
3279
|
+
export type GetUnrelatedUsersByIdForUserGroupsParams = {
|
|
3280
3280
|
/**
|
|
3281
3281
|
* search word
|
|
3282
3282
|
*/
|
|
@@ -3294,35 +3294,35 @@ export type GetUserGroupsIdUnrelatedUsersParams = {
|
|
|
3294
3294
|
*/
|
|
3295
3295
|
isAlsoMailSearched?: boolean;
|
|
3296
3296
|
};
|
|
3297
|
-
export type
|
|
3297
|
+
export type GetUnrelatedUsersByIdForUserGroups200 = {
|
|
3298
3298
|
/** user objects */
|
|
3299
3299
|
users?: User[];
|
|
3300
3300
|
};
|
|
3301
|
-
export type
|
|
3301
|
+
export type PostUsersByUsernameByIdForUserGroups200 = {
|
|
3302
3302
|
/** the user added to the group */
|
|
3303
3303
|
user?: User;
|
|
3304
3304
|
/** the number of relations created */
|
|
3305
3305
|
createdRelationCount?: number;
|
|
3306
3306
|
};
|
|
3307
|
-
export type
|
|
3307
|
+
export type DeleteUsersByUsernameByIdForUserGroups200 = {
|
|
3308
3308
|
/** the user removed from the group */
|
|
3309
3309
|
user?: User;
|
|
3310
3310
|
/** the number of groups from which the user was removed */
|
|
3311
3311
|
deletedGroupsCount?: number;
|
|
3312
3312
|
};
|
|
3313
|
-
export type
|
|
3313
|
+
export type GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem = {
|
|
3314
3314
|
[key: string]: unknown;
|
|
3315
3315
|
};
|
|
3316
|
-
export type
|
|
3316
|
+
export type GetUserGroupRelationsByIdForUserGroups200 = {
|
|
3317
3317
|
/** userGroupRelation objects */
|
|
3318
|
-
userGroupRelations?:
|
|
3318
|
+
userGroupRelations?: GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem[];
|
|
3319
3319
|
};
|
|
3320
|
-
export type
|
|
3320
|
+
export type GetPagesByIdForUserGroups200PagesItem = {
|
|
3321
3321
|
[key: string]: unknown;
|
|
3322
3322
|
};
|
|
3323
|
-
export type
|
|
3323
|
+
export type GetPagesByIdForUserGroups200 = {
|
|
3324
3324
|
/** page objects */
|
|
3325
|
-
pages?:
|
|
3325
|
+
pages?: GetPagesByIdForUserGroups200PagesItem[];
|
|
3326
3326
|
};
|
|
3327
3327
|
export type PutUserUiSettingsBodySettings = {
|
|
3328
3328
|
currentSidebarContents?: string;
|
|
@@ -3368,10 +3368,10 @@ export type GetUsersParams = {
|
|
|
3368
3368
|
export type GetUsers200 = {
|
|
3369
3369
|
paginateResult?: PaginateResult;
|
|
3370
3370
|
};
|
|
3371
|
-
export type
|
|
3371
|
+
export type GetRecentById200 = {
|
|
3372
3372
|
paginateResult?: PaginateResult;
|
|
3373
3373
|
};
|
|
3374
|
-
export type
|
|
3374
|
+
export type PostInviteForUsersParams = {
|
|
3375
3375
|
/**
|
|
3376
3376
|
* Invitation emailList
|
|
3377
3377
|
*/
|
|
@@ -3386,141 +3386,141 @@ export type PostUsersInviteParams = {
|
|
|
3386
3386
|
/**
|
|
3387
3387
|
* Users email that failed to create or send email
|
|
3388
3388
|
*/
|
|
3389
|
-
export type
|
|
3389
|
+
export type PostInviteForUsers200FailedEmailList = {
|
|
3390
3390
|
/** email address */
|
|
3391
3391
|
email?: string;
|
|
3392
3392
|
/** reason for failure */
|
|
3393
3393
|
reason?: string;
|
|
3394
3394
|
};
|
|
3395
|
-
export type
|
|
3395
|
+
export type PostInviteForUsers200 = {
|
|
3396
3396
|
/** Users successfully created */
|
|
3397
3397
|
createdUserList?: User;
|
|
3398
3398
|
/** Users email that already exists */
|
|
3399
3399
|
existingEmailList?: string[];
|
|
3400
3400
|
/** Users email that failed to create or send email */
|
|
3401
|
-
failedEmailList?:
|
|
3401
|
+
failedEmailList?: PostInviteForUsers200FailedEmailList;
|
|
3402
3402
|
};
|
|
3403
|
-
export type
|
|
3403
|
+
export type PutGrantAdminByIdForUsers200 = {
|
|
3404
3404
|
/** data of admin user */
|
|
3405
3405
|
userData?: User;
|
|
3406
3406
|
};
|
|
3407
3407
|
/**
|
|
3408
3408
|
* data of revoked admin user
|
|
3409
3409
|
*/
|
|
3410
|
-
export type
|
|
3410
|
+
export type PutRevokeAdminByIdForUsers200UserData = {
|
|
3411
3411
|
[key: string]: unknown;
|
|
3412
3412
|
};
|
|
3413
|
-
export type
|
|
3413
|
+
export type PutRevokeAdminByIdForUsers200 = {
|
|
3414
3414
|
/** data of revoked admin user */
|
|
3415
|
-
userData?:
|
|
3415
|
+
userData?: PutRevokeAdminByIdForUsers200UserData;
|
|
3416
3416
|
};
|
|
3417
|
-
export type
|
|
3417
|
+
export type PutGrantReadOnlyByIdForUsers200 = {
|
|
3418
3418
|
/** data of grant read only */
|
|
3419
3419
|
userData?: User;
|
|
3420
3420
|
};
|
|
3421
|
-
export type
|
|
3421
|
+
export type PutRevokeReadOnlyByIdForUsers200 = {
|
|
3422
3422
|
/** data of revoke read only */
|
|
3423
3423
|
userData?: User;
|
|
3424
3424
|
};
|
|
3425
|
-
export type
|
|
3425
|
+
export type PutActivateByIdForUsers200 = {
|
|
3426
3426
|
/** data of activate user */
|
|
3427
3427
|
userData?: User;
|
|
3428
3428
|
};
|
|
3429
|
-
export type
|
|
3429
|
+
export type PutDeactivateByIdForUsers200 = {
|
|
3430
3430
|
/** data of deactivate user */
|
|
3431
3431
|
userData?: User;
|
|
3432
3432
|
};
|
|
3433
|
-
export type
|
|
3433
|
+
export type DeleteRemoveByIdForUsers200 = {
|
|
3434
3434
|
/** data of deleted user */
|
|
3435
3435
|
user?: User;
|
|
3436
3436
|
};
|
|
3437
|
-
export type
|
|
3437
|
+
export type GetExternalAccountsForUsersParams = {
|
|
3438
3438
|
/**
|
|
3439
3439
|
* page number
|
|
3440
3440
|
*/
|
|
3441
3441
|
page?: number;
|
|
3442
3442
|
};
|
|
3443
|
-
export type
|
|
3443
|
+
export type GetExternalAccountsForUsers200 = {
|
|
3444
3444
|
paginateResult?: PaginateResult;
|
|
3445
3445
|
};
|
|
3446
3446
|
/**
|
|
3447
3447
|
* A result of `ExtenralAccount.findByIdAndRemove`
|
|
3448
3448
|
*/
|
|
3449
|
-
export type
|
|
3449
|
+
export type DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount = {
|
|
3450
3450
|
[key: string]: unknown;
|
|
3451
3451
|
};
|
|
3452
|
-
export type
|
|
3452
|
+
export type DeleteRemoveByIdForUsersExternalAccounts200 = {
|
|
3453
3453
|
/** A result of `ExtenralAccount.findByIdAndRemove` */
|
|
3454
|
-
externalAccount?:
|
|
3454
|
+
externalAccount?: DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount;
|
|
3455
3455
|
};
|
|
3456
|
-
export type
|
|
3456
|
+
export type PutUpdateImageUrlCacheForUsersBody = {
|
|
3457
3457
|
/** user id list */
|
|
3458
3458
|
userIds?: string[];
|
|
3459
3459
|
};
|
|
3460
3460
|
/**
|
|
3461
3461
|
* success creating imageUrlCached
|
|
3462
3462
|
*/
|
|
3463
|
-
export type
|
|
3463
|
+
export type PutUpdateImageUrlCacheForUsers200 = {
|
|
3464
3464
|
[key: string]: unknown;
|
|
3465
3465
|
};
|
|
3466
|
-
export type
|
|
3466
|
+
export type PutResetPasswordForUsersBody = {
|
|
3467
3467
|
/** user id for reset password */
|
|
3468
3468
|
id?: string;
|
|
3469
3469
|
};
|
|
3470
|
-
export type
|
|
3470
|
+
export type PutResetPasswordForUsers200 = {
|
|
3471
3471
|
/** new password */
|
|
3472
3472
|
newPassword?: string;
|
|
3473
3473
|
user?: User;
|
|
3474
3474
|
};
|
|
3475
|
-
export type
|
|
3475
|
+
export type PutResetPasswordEmailForUsersBody = {
|
|
3476
3476
|
/** user id for send new password email */
|
|
3477
3477
|
id?: string;
|
|
3478
3478
|
newPassword?: string;
|
|
3479
3479
|
};
|
|
3480
|
-
export type
|
|
3480
|
+
export type PutSendInvitationEmailForUsersBody = {
|
|
3481
3481
|
/** user id for send invitation email */
|
|
3482
3482
|
id?: string;
|
|
3483
3483
|
};
|
|
3484
3484
|
/**
|
|
3485
3485
|
* email and reasons for email sending failure
|
|
3486
3486
|
*/
|
|
3487
|
-
export type
|
|
3487
|
+
export type PutSendInvitationEmailForUsers200FailedToSendEmail = {
|
|
3488
3488
|
email?: string;
|
|
3489
3489
|
reason?: string;
|
|
3490
3490
|
};
|
|
3491
|
-
export type
|
|
3491
|
+
export type PutSendInvitationEmailForUsers200 = {
|
|
3492
3492
|
/** email and reasons for email sending failure */
|
|
3493
|
-
failedToSendEmail?:
|
|
3493
|
+
failedToSendEmail?: PutSendInvitationEmailForUsers200FailedToSendEmail;
|
|
3494
3494
|
};
|
|
3495
|
-
export type
|
|
3495
|
+
export type GetListForUsersParams = {
|
|
3496
3496
|
userIds?: string;
|
|
3497
3497
|
};
|
|
3498
|
-
export type
|
|
3498
|
+
export type GetListForUsers200 = {
|
|
3499
3499
|
/** user list */
|
|
3500
3500
|
users?: User[];
|
|
3501
3501
|
};
|
|
3502
|
-
export type
|
|
3502
|
+
export type GetUsernamesForUsersParams = {
|
|
3503
3503
|
q?: string;
|
|
3504
3504
|
offset?: number;
|
|
3505
3505
|
limit?: number;
|
|
3506
3506
|
options?: string;
|
|
3507
3507
|
};
|
|
3508
|
-
export type
|
|
3508
|
+
export type GetUsernamesForUsers200ActiveUser = {
|
|
3509
3509
|
usernames?: string[];
|
|
3510
3510
|
totalCount?: number;
|
|
3511
3511
|
};
|
|
3512
|
-
export type
|
|
3512
|
+
export type GetUsernamesForUsers200InactiveUser = {
|
|
3513
3513
|
usernames?: string[];
|
|
3514
3514
|
totalCount?: number;
|
|
3515
3515
|
};
|
|
3516
|
-
export type
|
|
3516
|
+
export type GetUsernamesForUsers200ActivitySnapshotUser = {
|
|
3517
3517
|
usernames?: string[];
|
|
3518
3518
|
totalCount?: number;
|
|
3519
3519
|
};
|
|
3520
|
-
export type
|
|
3521
|
-
activeUser?:
|
|
3522
|
-
inactiveUser?:
|
|
3523
|
-
activitySnapshotUser?:
|
|
3520
|
+
export type GetUsernamesForUsers200 = {
|
|
3521
|
+
activeUser?: GetUsernamesForUsers200ActiveUser;
|
|
3522
|
+
inactiveUser?: GetUsernamesForUsers200InactiveUser;
|
|
3523
|
+
activitySnapshotUser?: GetUsernamesForUsers200ActivitySnapshotUser;
|
|
3524
3524
|
mixedUsernames?: string[];
|
|
3525
3525
|
};
|
|
3526
3526
|
export type PostLoginBodyLoginForm = {
|