@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.
@@ -1557,19 +1557,19 @@ export type GetExternalUserGroups200 = {
1557
1557
  totalUserGroups?: number;
1558
1558
  pagingLimit?: number;
1559
1559
  };
1560
- export type GetExternalUserGroupsAncestorsParams = {
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 GetExternalUserGroupsAncestors200AncestorUserGroupsItem = {
1566
+ export type GetAncestorsForExternalUserGroups200AncestorUserGroupsItem = {
1567
1567
  [key: string]: unknown;
1568
1568
  };
1569
- export type GetExternalUserGroupsAncestors200 = {
1570
- ancestorUserGroups?: GetExternalUserGroupsAncestors200AncestorUserGroupsItem[];
1569
+ export type GetAncestorsForExternalUserGroups200 = {
1570
+ ancestorUserGroups?: GetAncestorsForExternalUserGroups200AncestorUserGroupsItem[];
1571
1571
  };
1572
- export type GetExternalUserGroupsChildrenParams = {
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 GetExternalUserGroupsChildren200ChildUserGroupsItem = {
1582
+ export type GetChildrenForExternalUserGroups200ChildUserGroupsItem = {
1583
1583
  [key: string]: unknown;
1584
1584
  };
1585
- export type GetExternalUserGroupsChildren200GrandChildUserGroupsItem = {
1585
+ export type GetChildrenForExternalUserGroups200GrandChildUserGroupsItem = {
1586
1586
  [key: string]: unknown;
1587
1587
  };
1588
- export type GetExternalUserGroupsChildren200 = {
1589
- childUserGroups?: GetExternalUserGroupsChildren200ChildUserGroupsItem[];
1590
- grandChildUserGroups?: GetExternalUserGroupsChildren200GrandChildUserGroupsItem[];
1588
+ export type GetChildrenForExternalUserGroups200 = {
1589
+ childUserGroups?: GetChildrenForExternalUserGroups200ChildUserGroupsItem[];
1590
+ grandChildUserGroups?: GetChildrenForExternalUserGroups200GrandChildUserGroupsItem[];
1591
1591
  };
1592
- export type GetExternalUserGroupsId200UserGroup = {
1592
+ export type GetExternalUserGroupsById200UserGroup = {
1593
1593
  [key: string]: unknown;
1594
1594
  };
1595
- export type GetExternalUserGroupsId200 = {
1596
- userGroup?: GetExternalUserGroupsId200UserGroup;
1595
+ export type GetExternalUserGroupsById200 = {
1596
+ userGroup?: GetExternalUserGroupsById200UserGroup;
1597
1597
  };
1598
- export type DeleteExternalUserGroupsIdParams = {
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 DeleteExternalUserGroupsId200UserGroupsItem = {
1612
+ export type DeleteExternalUserGroupsById200UserGroupsItem = {
1613
1613
  [key: string]: unknown;
1614
1614
  };
1615
- export type DeleteExternalUserGroupsId200 = {
1616
- userGroups?: DeleteExternalUserGroupsId200UserGroupsItem[];
1615
+ export type DeleteExternalUserGroupsById200 = {
1616
+ userGroups?: DeleteExternalUserGroupsById200UserGroupsItem[];
1617
1617
  };
1618
- export type PutExternalUserGroupsIdBody = {
1618
+ export type PutExternalUserGroupsByIdBody = {
1619
1619
  description?: string;
1620
1620
  };
1621
- export type PutExternalUserGroupsId200UserGroup = {
1621
+ export type PutExternalUserGroupsById200UserGroup = {
1622
1622
  [key: string]: unknown;
1623
1623
  };
1624
- export type PutExternalUserGroupsId200 = {
1625
- userGroup?: PutExternalUserGroupsId200UserGroup;
1624
+ export type PutExternalUserGroupsById200 = {
1625
+ userGroup?: PutExternalUserGroupsById200UserGroup;
1626
1626
  };
1627
- export type GetExternalUserGroupsIdExternalUserGroupRelations200UserGroupRelationsItem = {
1627
+ export type GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem = {
1628
1628
  [key: string]: unknown;
1629
1629
  };
1630
- export type GetExternalUserGroupsIdExternalUserGroupRelations200 = {
1631
- userGroupRelations?: GetExternalUserGroupsIdExternalUserGroupRelations200UserGroupRelationsItem[];
1630
+ export type GetExternalUserGroupRelationsByIdForExternalUserGroups200 = {
1631
+ userGroupRelations?: GetExternalUserGroupRelationsByIdForExternalUserGroups200UserGroupRelationsItem[];
1632
1632
  };
1633
- export type GetExternalUserGroupsLdapSyncSettings200 = {
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 PutExternalUserGroupsLdapSyncSettingsBody = {
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 PutExternalUserGroupsLdapSyncSettings204 = {
1653
+ export type PutSyncSettingsForExternalUserGroupsLdap204 = {
1654
1654
  [key: string]: unknown;
1655
1655
  };
1656
- export type GetExternalUserGroupsKeycloakSyncSettings200 = {
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 PutExternalUserGroupsKeycloakSyncSettingsBody = {
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 PutExternalUserGroupsKeycloakSyncSettings204 = {
1676
+ export type PutSyncSettingsForExternalUserGroupsKeycloak204 = {
1677
1677
  [key: string]: unknown;
1678
1678
  };
1679
- export type PutExternalUserGroupsLdapSync202 = {
1679
+ export type PutSyncForExternalUserGroupsLdap202 = {
1680
1680
  [key: string]: unknown;
1681
1681
  };
1682
- export type PutExternalUserGroupsKeycloakSync202 = {
1682
+ export type PutSyncForExternalUserGroupsKeycloak202 = {
1683
1683
  [key: string]: unknown;
1684
1684
  };
1685
- export type GetQuestionnaireOrders200QuestionnaireOrdersItem = {
1685
+ export type GetOrdersForQuestionnaire200QuestionnaireOrdersItem = {
1686
1686
  [key: string]: unknown;
1687
1687
  };
1688
- export type GetQuestionnaireOrders200 = {
1689
- questionnaireOrders?: GetQuestionnaireOrders200QuestionnaireOrdersItem[];
1688
+ export type GetOrdersForQuestionnaire200 = {
1689
+ questionnaireOrders?: GetOrdersForQuestionnaire200QuestionnaireOrdersItem[];
1690
1690
  };
1691
- export type GetQuestionnaireIsEnabled200 = {
1691
+ export type GetIsEnabledForQuestionnaire200 = {
1692
1692
  isEnabled?: boolean;
1693
1693
  };
1694
- export type PostQuestionnaireProactiveAnswerBody = {
1694
+ export type PostAnswerForQuestionnaireProactiveBody = {
1695
1695
  [key: string]: unknown;
1696
1696
  };
1697
- export type PostQuestionnaireProactiveAnswer200 = {
1697
+ export type PostAnswerForQuestionnaireProactive200 = {
1698
1698
  [key: string]: unknown;
1699
1699
  };
1700
- export type PutQuestionnaireAnswerBody = {
1700
+ export type PutAnswerForQuestionnaireBody = {
1701
1701
  [key: string]: unknown;
1702
1702
  };
1703
- export type PutQuestionnaireAnswer201 = {
1703
+ export type PutAnswerForQuestionnaire201 = {
1704
1704
  [key: string]: unknown;
1705
1705
  };
1706
- export type PutQuestionnaireAnswer204 = {
1706
+ export type PutAnswerForQuestionnaire204 = {
1707
1707
  [key: string]: unknown;
1708
1708
  };
1709
- export type PutQuestionnaireSkipBody = {
1709
+ export type PutSkipForQuestionnaireBody = {
1710
1710
  [key: string]: unknown;
1711
1711
  };
1712
- export type PutQuestionnaireSkip201 = {
1712
+ export type PutSkipForQuestionnaire201 = {
1713
1713
  [key: string]: unknown;
1714
1714
  };
1715
- export type PutQuestionnaireSkip204 = {
1715
+ export type PutSkipForQuestionnaire204 = {
1716
1716
  [key: string]: unknown;
1717
1717
  };
1718
- export type PutQuestionnaireDenyBody = {
1718
+ export type PutDenyForQuestionnaireBody = {
1719
1719
  [key: string]: unknown;
1720
1720
  };
1721
- export type PutQuestionnaireDeny201 = {
1721
+ export type PutDenyForQuestionnaire201 = {
1722
1722
  [key: string]: unknown;
1723
1723
  };
1724
- export type PutQuestionnaireDeny204 = {
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 GetTemplatesPresetTemplatesTemplateIdLocale200 = {
1745
+ export type GetPresetTemplatesByLocaleByTemplateIdForTemplates200 = {
1746
1746
  markdown?: string;
1747
1747
  };
1748
- export type GetTemplatesPluginTemplatesOrganizationIdReposIdTemplateIdLocale200 = {
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 PutPluginsIdActivate200 = {
1763
+ export type PutActivateByIdForPlugins200 = {
1764
1764
  /** The name of the activated plugin */
1765
1765
  pluginName?: string;
1766
1766
  };
1767
- export type DeletePluginsIdRemove200 = {
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 PutAppSettingsAppSetting200 = {
1782
+ export type PutAppSettingForAppSettings200 = {
1783
1783
  appSettingParams?: AppSettingPutParams;
1784
1784
  };
1785
- export type PutAppSettingsSiteUrlSetting200SiteUrlSettingParams = {
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 PutAppSettingsSiteUrlSetting200 = {
1790
- siteUrlSettingParams?: PutAppSettingsSiteUrlSetting200SiteUrlSettingParams;
1789
+ export type PutSiteUrlSettingForAppSettings200 = {
1790
+ siteUrlSettingParams?: PutSiteUrlSettingForAppSettings200SiteUrlSettingParams;
1791
1791
  };
1792
- export type PutAppSettingsSmtpSetting200 = {
1792
+ export type PutSmtpSettingForAppSettings200 = {
1793
1793
  mailSettingParams?: SmtpSettingResponseParams;
1794
1794
  };
1795
1795
  /**
1796
1796
  * Empty object
1797
1797
  */
1798
- export type PostAppSettingsSmtpTest200 = {
1798
+ export type PostSmtpTestForAppSettings200 = {
1799
1799
  [key: string]: unknown;
1800
1800
  };
1801
- export type PutAppSettingsFileUploadSettings200 = {
1801
+ export type PutFileUploadSettingsForAppSettings200 = {
1802
1802
  responseParams?: FileUploadSettingParams;
1803
1803
  };
1804
- export type PutAppSettingsQuestionnaireSettings200 = {
1804
+ export type PutQuestionnaireSettingsForAppSettings200 = {
1805
1805
  responseParams?: QuestionnaireSettingParams;
1806
1806
  };
1807
- export type PostAppSettingsV5SchemaMigration200 = {
1807
+ export type PostV5SchemaMigrationForAppSettings200 = {
1808
1808
  /** is V5 compatible, or not */
1809
1809
  isV5Compatible?: boolean;
1810
1810
  };
1811
- export type PostAppSettingsMaintenanceModeBody = {
1811
+ export type PostMaintenanceModeForAppSettingsBody = {
1812
1812
  /** flag for maintenance mode */
1813
1813
  flag?: boolean;
1814
1814
  };
1815
- export type PostAppSettingsMaintenanceMode200 = {
1815
+ export type PostMaintenanceModeForAppSettings200 = {
1816
1816
  /** true if maintenance mode is enabled */
1817
1817
  flag?: boolean;
1818
1818
  };
1819
- export type GetAttachmentListParams = {
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 GetAttachmentLimitParams = {
1833
+ export type GetLimitForAttachmentParams = {
1834
1834
  fileSize: number;
1835
1835
  };
1836
- export type GetAttachmentLimit200 = {
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 GetAttachmentId200 = {
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 GetBookmarkFolderListUserId200 = {
1886
+ export type GetListByUserIdForBookmarkFolder200 = {
1887
1887
  bookmarkFolderItems?: BookmarkFolder[];
1888
1888
  };
1889
- export type DeleteBookmarkFolderId200 = {
1889
+ export type DeleteBookmarkFolderById200 = {
1890
1890
  /** Number of deleted folders */
1891
1891
  deletedCount?: number;
1892
1892
  };
1893
- export type PostBookmarkFolderAddBookmarkToFolderBody = {
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 PostBookmarkFolderAddBookmarkToFolder200 = {
1904
+ export type PostAddBookmarkToFolderForBookmarkFolder200 = {
1905
1905
  bookmarkFolder?: BookmarkFolder;
1906
1906
  };
1907
- export type PutBookmarkFolderUpdateBookmarkBody = {
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 PutBookmarkFolderUpdateBookmark200 = {
1915
+ export type PutUpdateBookmarkForBookmarkFolder200 = {
1916
1916
  bookmarkFolder?: BookmarkFolder;
1917
1917
  };
1918
- export type GetBookmarksInfoParams = {
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 PutCustomizeSettingLayout200 = {
1931
+ export type PutLayoutForCustomizeSetting200 = {
1932
1932
  /** customized params */
1933
1933
  customizedParams?: CustomizeLayout;
1934
1934
  };
1935
- export type GetCustomizeSettingTheme200 = {
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 PutCustomizeSettingTheme200 = {
1941
+ export type PutThemeForCustomizeSetting200 = {
1942
1942
  customizedParams?: CustomizeTheme;
1943
1943
  };
1944
- export type PutCustomizeSettingSidebar200 = {
1944
+ export type PutSidebarForCustomizeSetting200 = {
1945
1945
  customizedParams?: CustomizeSidebar;
1946
1946
  };
1947
- export type PutCustomizeSettingFunction200 = {
1947
+ export type PutFunctionForCustomizeSetting200 = {
1948
1948
  customizedParams?: CustomizeFunction;
1949
1949
  };
1950
- export type PutCustomizeSettingPresentation200 = {
1950
+ export type PutPresentationForCustomizeSetting200 = {
1951
1951
  customizedParams?: CustomizePresentation;
1952
1952
  };
1953
- export type PutCustomizeSettingHighlight200 = {
1953
+ export type PutHighlightForCustomizeSetting200 = {
1954
1954
  customizedParams?: CustomizeHighlightResponse;
1955
1955
  };
1956
- export type PutCustomizeSettingCustomizeTitle200 = {
1956
+ export type PutCustomizeTitleForCustomizeSetting200 = {
1957
1957
  customizedParams?: CustomizeTitle;
1958
1958
  };
1959
- export type PutCustomizeSettingCustomizeNoscript200 = {
1959
+ export type PutCustomizeNoscriptForCustomizeSetting200 = {
1960
1960
  customizedParams?: CustomizeNoscript;
1961
1961
  };
1962
- export type PutCustomizeSettingCustomizeCss200 = {
1962
+ export type PutCustomizeCssForCustomizeSetting200 = {
1963
1963
  customizedParams?: CustomizeCss;
1964
1964
  };
1965
- export type PutCustomizeSettingCustomizeScript200 = {
1965
+ export type PutCustomizeScriptForCustomizeSetting200 = {
1966
1966
  customizedParams?: CustomizeScript;
1967
1967
  };
1968
- export type PutCustomizeSettingCustomizeLogo200 = {
1968
+ export type PutCustomizeLogoForCustomizeSetting200 = {
1969
1969
  customizedParams?: CustomizeLogo;
1970
1970
  };
1971
- export type PutCustomizeSettingUploadBrandLogoBody = {
1971
+ export type PutUploadBrandLogoForCustomizeSettingBody = {
1972
1972
  file?: Blob;
1973
1973
  };
1974
- export type PutCustomizeSettingUploadBrandLogo200AttachmentAllOf = {
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 PutCustomizeSettingUploadBrandLogo200Attachment = Attachment & PutCustomizeSettingUploadBrandLogo200AttachmentAllOf;
1981
- export type PutCustomizeSettingUploadBrandLogo200 = {
1982
- attachment?: PutCustomizeSettingUploadBrandLogo200Attachment;
1980
+ export type PutUploadBrandLogoForCustomizeSetting200Attachment = Attachment & PutUploadBrandLogoForCustomizeSetting200AttachmentAllOf;
1981
+ export type PutUploadBrandLogoForCustomizeSetting200 = {
1982
+ attachment?: PutUploadBrandLogoForCustomizeSetting200Attachment;
1983
1983
  };
1984
- export type GetExportStatus200 = {
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 DeleteExportFileName200 = {
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 GetG2gTransferFiles200FilesItem = {
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 GetG2gTransferFiles200 = {
2021
- files?: GetG2gTransferFiles200FilesItem[];
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 PostG2gTransferAttachmentBodyAttachmentMetadata = {
2054
+ export type PostAttachmentForG2gTransferBodyAttachmentMetadata = {
2055
2055
  [key: string]: unknown;
2056
2056
  };
2057
- export type PostG2gTransferAttachmentBody = {
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?: PostG2gTransferAttachmentBodyAttachmentMetadata;
2061
+ attachmentMetadata?: PostAttachmentForG2gTransferBodyAttachmentMetadata;
2062
2062
  };
2063
- export type PostG2gTransferAttachment200 = {
2063
+ export type PostAttachmentForG2gTransfer200 = {
2064
2064
  /** The message of the result */
2065
2065
  message?: string;
2066
2066
  };
2067
- export type GetG2gTransferGrowiInfo200 = {
2067
+ export type GetGrowiInfoForG2gTransfer200 = {
2068
2068
  growiInfo?: GrowiInfo;
2069
2069
  };
2070
- export type PostG2gTransferGenerateKeyBody = {
2070
+ export type PostGenerateKeyForG2gTransferBody = {
2071
2071
  /** The URL of the GROWI */
2072
2072
  appSiteUrl?: string;
2073
2073
  };
2074
- export type PostG2gTransferGenerateKey200 = {
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 PostG2gTransferTransferBodyOptionsMap = {
2081
+ export type PostTransferForG2gTransferBodyOptionsMap = {
2082
2082
  [key: string]: unknown;
2083
2083
  };
2084
- export type PostG2gTransferTransferBody = {
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?: PostG2gTransferTransferBodyOptionsMap;
2090
+ optionsMap?: PostTransferForG2gTransferBodyOptionsMap;
2091
2091
  };
2092
- export type PostG2gTransferTransfer200 = {
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 GetImportStatus200 = {
2166
+ export type GetStatusForImport200 = {
2167
2167
  status?: ImportStatus;
2168
2168
  };
2169
- export type PostImportUploadBody = {
2169
+ export type PostUploadForImportBody = {
2170
2170
  file?: Blob;
2171
2171
  };
2172
- export type GetInAppNotificationListParams = {
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 GetInAppNotificationStatus200 = {
2186
+ export type GetStatusForInAppNotification200 = {
2187
2187
  /** Count of unread notifications */
2188
2188
  count?: number;
2189
2189
  };
2190
- export type PostInAppNotificationOpenBody = {
2190
+ export type PostOpenForInAppNotificationBody = {
2191
2191
  /** Notification ID */
2192
2192
  id: string;
2193
2193
  };
2194
- export type PostInAppNotificationOpen200 = {
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 PutMarkdownSettingLineBreak200 = {
2229
+ export type PutLineBreakForMarkdownSetting200 = {
2230
2230
  lineBreaksParams?: LineBreakParams;
2231
2231
  };
2232
- export type PutMarkdownSettingIndent200 = {
2232
+ export type PutIndentForMarkdownSetting200 = {
2233
2233
  /** indent params */
2234
2234
  indentParams?: IndentParams;
2235
2235
  };
2236
- export type GetMongoCollections200 = {
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 PostNotificationSettingUserNotification200ResponseParams = {
2248
+ export type PostUserNotificationForNotificationSetting200ResponseParams = {
2249
2249
  /** user who set notification */
2250
2250
  createdUser?: User;
2251
2251
  userNotifications?: UserNotification[];
2252
2252
  };
2253
- export type PostNotificationSettingUserNotification200 = {
2253
+ export type PostUserNotificationForNotificationSetting200 = {
2254
2254
  /** response params */
2255
- responseParams?: PostNotificationSettingUserNotification200ResponseParams;
2255
+ responseParams?: PostUserNotificationForNotificationSetting200ResponseParams;
2256
2256
  };
2257
- export type GetNotificationSettingGlobalNotificationId200 = {
2257
+ export type GetGlobalNotificationByIdForNotificationSetting200 = {
2258
2258
  globalNotification?: GlobalNotification;
2259
2259
  };
2260
- export type PutNotificationSettingGlobalNotificationId200 = {
2260
+ export type PutGlobalNotificationByIdForNotificationSetting200 = {
2261
2261
  /** notification param updated */
2262
2262
  createdNotification?: GlobalNotification;
2263
2263
  };
2264
- export type PostNotificationSettingGlobalNotification200 = {
2264
+ export type PostGlobalNotificationForNotificationSetting200 = {
2265
2265
  /** notification param created */
2266
2266
  createdNotification?: GlobalNotification;
2267
2267
  };
2268
- export type PutNotificationSettingGlobalNotificationIdEnabledBody = {
2268
+ export type PutEnabledByIdForNotificationSettingGlobalNotificationBody = {
2269
2269
  /** is notification enabled */
2270
2270
  isEnabled?: boolean;
2271
2271
  };
2272
- export type PutNotificationSettingGlobalNotificationIdEnabled200 = {
2272
+ export type PutEnabledByIdForNotificationSettingGlobalNotification200 = {
2273
2273
  /** notification id */
2274
2274
  id?: string;
2275
2275
  };
2276
- export type GetPageListingRoot200 = {
2276
+ export type GetRootForPageListing200 = {
2277
2277
  rootPage?: Page;
2278
2278
  };
2279
- export type GetPageListingAncestorsChildrenParams = {
2279
+ export type GetAncestorsChildrenForPageListingParams = {
2280
2280
  path: string;
2281
2281
  };
2282
- export type GetPageListingAncestorsChildren200AncestorsChildren = {
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 GetPageListingAncestorsChildren200 = {
2302
- ancestorsChildren?: GetPageListingAncestorsChildren200AncestorsChildren;
2301
+ export type GetAncestorsChildrenForPageListing200 = {
2302
+ ancestorsChildren?: GetAncestorsChildrenForPageListing200AncestorsChildren;
2303
2303
  };
2304
- export type GetPageListingChildrenParams = {
2304
+ export type GetChildrenForPageListingParams = {
2305
2305
  id?: string;
2306
2306
  path?: string;
2307
2307
  };
2308
- export type GetPageListingChildren200 = {
2308
+ export type GetChildrenForPageListing200 = {
2309
2309
  children?: Page[];
2310
2310
  };
2311
- export type GetPageListingInfoParams = {
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 GetPageListingInfo200IdToPageInfoMap = {
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 GetPageListingInfo200 = {
2335
- idToPageInfoMap?: GetPageListingInfo200IdToPageInfoMap;
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 GetPageExistParams = {
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 GetPageExist200 = {
2394
+ export type GetExistForPage200 = {
2395
2395
  isExist?: boolean;
2396
2396
  };
2397
- export type GetPageGrantDataParams = {
2397
+ export type GetGrantDataForPageParams = {
2398
2398
  /**
2399
2399
  * page id
2400
2400
  */
2401
2401
  pageId?: ObjectId;
2402
2402
  };
2403
- export type GetPageGrantData200 = {
2403
+ export type GetGrantDataForPage200 = {
2404
2404
  isGrantNormalized?: boolean;
2405
2405
  };
2406
- export type GetPageNonUserRelatedGroupsGrantedParams = {
2406
+ export type GetNonUserRelatedGroupsGrantedForPageParams = {
2407
2407
  /**
2408
2408
  * Path of the page
2409
2409
  */
2410
2410
  path: string;
2411
2411
  };
2412
- export type GetPageNonUserRelatedGroupsGranted200 = {
2412
+ export type GetNonUserRelatedGroupsGrantedForPage200 = {
2413
2413
  isNonUserRelatedGroupsGranted?: boolean;
2414
2414
  };
2415
- export type GetPageApplicableGrantParams = {
2415
+ export type GetApplicableGrantForPageParams = {
2416
2416
  /**
2417
2417
  * ID of the page
2418
2418
  */
2419
2419
  pageId: string;
2420
2420
  };
2421
- export type GetPageApplicableGrant200 = {
2421
+ export type GetApplicableGrantForPage200 = {
2422
2422
  grant?: number;
2423
2423
  grantedUsers?: string[];
2424
2424
  grantedGroups?: string[];
2425
2425
  };
2426
- export type PutPageIdGrantBody = {
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 GetPageExistPathsParams = {
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 GetPageExistPaths200ExistPaths = {
2445
+ export type GetExistPathsForPage200ExistPaths = {
2446
2446
  [key: string]: unknown;
2447
2447
  };
2448
- export type GetPageExistPaths200 = {
2448
+ export type GetExistPathsForPage200 = {
2449
2449
  /** Paths are already exist in DB */
2450
- existPaths?: GetPageExistPaths200ExistPaths;
2450
+ existPaths?: GetExistPathsForPage200ExistPaths;
2451
2451
  };
2452
- export type PutPageSubscribeBody = {
2452
+ export type PutSubscribeForPageBody = {
2453
2453
  pageId?: ObjectId;
2454
2454
  };
2455
- export type PutPageIdContentWidthBody = {
2455
+ export type PutContentWidthByPageIdBody = {
2456
2456
  /** Whether to expand the content width */
2457
2457
  expandContentWidth?: boolean;
2458
2458
  };
2459
- export type PutPageIdContentWidth200 = {
2459
+ export type PutContentWidthByPageId200 = {
2460
2460
  page?: Page;
2461
2461
  };
2462
2462
  /**
2463
2463
  * Yjs data
2464
2464
  */
2465
- export type GetPageIdYjsData200YjsData = {
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 GetPageIdYjsData200 = {
2471
+ export type GetYjsDataByPageId200 = {
2472
2472
  /** Yjs data */
2473
- yjsData?: GetPageIdYjsData200YjsData;
2473
+ yjsData?: GetYjsDataByPageId200YjsData;
2474
2474
  };
2475
- export type PutPageIdSyncLatestRevisionBodyToYjsDraftBody = {
2475
+ export type PutSyncLatestRevisionBodyToYjsDraftByPageIdBody = {
2476
2476
  /** Length of the editing markdown */
2477
2477
  editingMarkdownLength?: number;
2478
2478
  };
2479
- export type PutPageIdSyncLatestRevisionBodyToYjsDraft200 = {
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 GetPagesRecentParams = {
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 PostPagesRenameBody = {
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 PostPagesRename200 = {
2513
+ export type PostRenameForPages200 = {
2514
2514
  page?: Page;
2515
2515
  };
2516
- export type PostPagesResumeRenameBody = {
2516
+ export type PostResumeRenameForPagesBody = {
2517
2517
  pageId: ObjectId;
2518
2518
  };
2519
- export type PostPagesResumeRename200 = {
2519
+ export type PostResumeRenameForPages200 = {
2520
2520
  [key: string]: unknown;
2521
2521
  };
2522
- export type DeletePagesEmptyTrash200 = {
2522
+ export type DeleteEmptyTrashForPages200 = {
2523
2523
  deletablePages?: Page[];
2524
2524
  };
2525
- export type GetPagesListParams = {
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 GetPagesList200PagesItemAllOf = {
2539
+ export type GetListForPages200PagesItemAllOf = {
2540
2540
  lastUpdateUser?: User;
2541
2541
  };
2542
- export type GetPagesList200PagesItem = Page & GetPagesList200PagesItemAllOf;
2543
- export type GetPagesList200 = {
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?: GetPagesList200PagesItem[];
2550
+ pages?: GetListForPages200PagesItem[];
2551
2551
  };
2552
- export type PostPagesDuplicateBody = {
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 PostPagesDuplicate200 = {
2560
+ export type PostDuplicateForPages200 = {
2561
2561
  page?: Page;
2562
2562
  };
2563
- export type GetPagesSubordinatedListParams = {
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 GetPagesSubordinatedList200 = {
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 PostPagesDeleteBodyPageIdToRevisionIdMap = {
2579
+ export type PostDeleteForPagesBodyPageIdToRevisionIdMap = {
2580
2580
  [key: string]: unknown;
2581
2581
  };
2582
- export type PostPagesDeleteBody = {
2582
+ export type PostDeleteForPagesBody = {
2583
2583
  /** Map of page IDs to revision IDs */
2584
- pageIdToRevisionIdMap?: PostPagesDeleteBodyPageIdToRevisionIdMap;
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 PostPagesDelete200 = {
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 PostPagesConvertPagesByPathBody = {
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 PostPagesConvertPagesByPath200 = {
2607
+ export type PostConvertPagesByPathForPages200 = {
2608
2608
  [key: string]: unknown;
2609
2609
  };
2610
- export type PostPagesLegacyPagesMigrationBody = {
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 PostPagesLegacyPagesMigration200 = {
2619
+ export type PostLegacyPagesMigrationForPages200 = {
2620
2620
  [key: string]: unknown;
2621
2621
  };
2622
- export type GetPagesV5MigrationStatus200 = {
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 GetPersonalSettingIsPasswordSet200 = {
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 PutPersonalSettingImageTypeBody = {
2654
+ export type PutImageTypeForPersonalSettingBody = {
2655
2655
  isGravatarEnabled?: boolean;
2656
2656
  };
2657
2657
  /**
2658
2658
  * user data
2659
2659
  */
2660
- export type PutPersonalSettingImageType200UserData = {
2660
+ export type PutImageTypeForPersonalSetting200UserData = {
2661
2661
  [key: string]: unknown;
2662
2662
  };
2663
- export type PutPersonalSettingImageType200 = {
2663
+ export type PutImageTypeForPersonalSetting200 = {
2664
2664
  /** user data */
2665
- userData?: PutPersonalSettingImageType200UserData;
2665
+ userData?: PutImageTypeForPersonalSetting200UserData;
2666
2666
  };
2667
2667
  /**
2668
2668
  * array of external accounts
2669
2669
  */
2670
- export type GetPersonalSettingExternalAccounts200ExternalAccounts = {
2670
+ export type GetExternalAccountsForPersonalSetting200ExternalAccounts = {
2671
2671
  [key: string]: unknown;
2672
2672
  };
2673
- export type GetPersonalSettingExternalAccounts200 = {
2673
+ export type GetExternalAccountsForPersonalSetting200 = {
2674
2674
  /** array of external accounts */
2675
- externalAccounts?: GetPersonalSettingExternalAccounts200ExternalAccounts;
2675
+ externalAccounts?: GetExternalAccountsForPersonalSetting200ExternalAccounts;
2676
2676
  };
2677
- export type PutPersonalSettingPasswordBody = {
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 PutPersonalSettingPassword200UserData = {
2684
+ export type PutPasswordForPersonalSetting200UserData = {
2685
2685
  [key: string]: unknown;
2686
2686
  };
2687
- export type PutPersonalSettingPassword200 = {
2687
+ export type PutPasswordForPersonalSetting200 = {
2688
2688
  /** user data updated */
2689
- userData?: PutPersonalSettingPassword200UserData;
2689
+ userData?: PutPasswordForPersonalSetting200UserData;
2690
2690
  };
2691
2691
  /**
2692
2692
  * user data
2693
2693
  */
2694
- export type PutPersonalSettingApiToken200UserData = {
2694
+ export type PutApiTokenForPersonalSetting200UserData = {
2695
2695
  [key: string]: unknown;
2696
2696
  };
2697
- export type PutPersonalSettingApiToken200 = {
2697
+ export type PutApiTokenForPersonalSetting200 = {
2698
2698
  /** user data */
2699
- userData?: PutPersonalSettingApiToken200UserData;
2699
+ userData?: PutApiTokenForPersonalSetting200UserData;
2700
2700
  };
2701
- export type PutPersonalSettingAssociateLdapBody = {
2701
+ export type PutAssociateLdapForPersonalSettingBody = {
2702
2702
  username?: string;
2703
2703
  };
2704
2704
  /**
2705
2705
  * Ldap account associate to me
2706
2706
  */
2707
- export type PutPersonalSettingAssociateLdap200AssociateUser = {
2707
+ export type PutAssociateLdapForPersonalSetting200AssociateUser = {
2708
2708
  [key: string]: unknown;
2709
2709
  };
2710
- export type PutPersonalSettingAssociateLdap200 = {
2710
+ export type PutAssociateLdapForPersonalSetting200 = {
2711
2711
  /** Ldap account associate to me */
2712
- associateUser?: PutPersonalSettingAssociateLdap200AssociateUser;
2712
+ associateUser?: PutAssociateLdapForPersonalSetting200AssociateUser;
2713
2713
  };
2714
2714
  /**
2715
2715
  * Ldap account disassociate to me
2716
2716
  */
2717
- export type PutPersonalSettingDisassociateLdap200DisassociateUser = {
2717
+ export type PutDisassociateLdapForPersonalSetting200DisassociateUser = {
2718
2718
  [key: string]: unknown;
2719
2719
  };
2720
- export type PutPersonalSettingDisassociateLdap200 = {
2720
+ export type PutDisassociateLdapForPersonalSetting200 = {
2721
2721
  /** Ldap account disassociate to me */
2722
- disassociateUser?: PutPersonalSettingDisassociateLdap200DisassociateUser;
2722
+ disassociateUser?: PutDisassociateLdapForPersonalSetting200DisassociateUser;
2723
2723
  };
2724
- export type PutPersonalSettingEditorSettingsBody = {
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 PutPersonalSettingEditorSettings200 = {
2733
+ export type PutEditorSettingsForPersonalSetting200 = {
2734
2734
  [key: string]: unknown;
2735
2735
  };
2736
2736
  /**
2737
2737
  * editor settings
2738
2738
  */
2739
- export type GetPersonalSettingEditorSettings200 = {
2739
+ export type GetEditorSettingsForPersonalSetting200 = {
2740
2740
  [key: string]: unknown;
2741
2741
  };
2742
- export type PutPersonalSettingInAppNotificationSettingsBodySubscribeRulesItem = {
2742
+ export type PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem = {
2743
2743
  name?: string;
2744
2744
  isEnabled?: boolean;
2745
2745
  };
2746
- export type PutPersonalSettingInAppNotificationSettingsBody = {
2747
- subscribeRules?: PutPersonalSettingInAppNotificationSettingsBodySubscribeRulesItem[];
2746
+ export type PutInAppNotificationSettingsForPersonalSettingBody = {
2747
+ subscribeRules?: PutInAppNotificationSettingsForPersonalSettingBodySubscribeRulesItem[];
2748
2748
  };
2749
- export type PutPersonalSettingInAppNotificationSettings200 = {
2749
+ export type PutInAppNotificationSettingsForPersonalSetting200 = {
2750
2750
  [key: string]: unknown;
2751
2751
  };
2752
2752
  /**
2753
2753
  * InAppNotificationSettings
2754
2754
  */
2755
- export type GetPersonalSettingInAppNotificationSettings200CurrentUser = {
2755
+ export type GetInAppNotificationSettingsForPersonalSetting200CurrentUser = {
2756
2756
  [key: string]: unknown;
2757
2757
  };
2758
- export type GetPersonalSettingInAppNotificationSettings200 = {
2758
+ export type GetInAppNotificationSettingsForPersonalSetting200 = {
2759
2759
  /** InAppNotificationSettings */
2760
- currentUser?: GetPersonalSettingInAppNotificationSettings200CurrentUser;
2760
+ currentUser?: GetInAppNotificationSettingsForPersonalSetting200CurrentUser;
2761
2761
  };
2762
- export type PutPersonalSettingQuestionnaireSettingsBody = {
2762
+ export type PutQuestionnaireSettingsForPersonalSettingBody = {
2763
2763
  isQuestionnaireEnabled?: boolean;
2764
2764
  };
2765
- export type PutPersonalSettingQuestionnaireSettings200 = {
2765
+ export type PutQuestionnaireSettingsForPersonalSetting200 = {
2766
2766
  message?: string;
2767
2767
  isQuestionnaireEnabled?: boolean;
2768
2768
  };
2769
- export type GetRevisionsListParams = {
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 GetRevisionsList200 = {
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 GetRevisionsIdParams = {
2787
+ export type GetRevisionsByIdParams = {
2788
2788
  /**
2789
2789
  * page id
2790
2790
  */
2791
2791
  pageId: string;
2792
2792
  };
2793
- export type GetRevisionsId200 = {
2793
+ export type GetRevisionsById200 = {
2794
2794
  revision?: Revision;
2795
2795
  };
2796
- export type GetSearchIndices200 = {
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 PutSearchIndicesBodyOperation = (typeof PutSearchIndicesBodyOperation)[keyof typeof PutSearchIndicesBodyOperation];
2804
- export declare const PutSearchIndicesBodyOperation: {
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 PutSearchIndicesBody = {
2808
+ export type PutIndicesForSearchBody = {
2809
2809
  /** Operation type against to indices > * `normalize` - Normalize indices * `rebuild` - Rebuild indices */
2810
- operation?: PutSearchIndicesBodyOperation;
2810
+ operation?: PutIndicesForSearchBodyOperation;
2811
2811
  };
2812
- export type PutSearchIndices200 = {
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 PutSecuritySettingAuthenticationEnabledBody = {
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 PutSecuritySettingAuthenticationEnabled200 = {
2841
+ export type PutEnabledForSecuritySettingAuthentication200 = {
2842
2842
  [key: string]: unknown;
2843
2843
  };
2844
- export type GetSecuritySettingAuthentication200 = {
2844
+ export type GetAuthenticationForSecuritySetting200 = {
2845
2845
  /** setup strategies list */
2846
2846
  setupStrategies?: string[];
2847
2847
  };
2848
- export type PutSecuritySettingShareLinkSetting200 = {
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 GetSecuritySettingAllShareLinks200SecurityParams = {
2854
+ export type GetAllShareLinksForSecuritySetting200SecurityParams = {
2855
2855
  [key: string]: unknown;
2856
2856
  };
2857
- export type GetSecuritySettingAllShareLinks200 = {
2857
+ export type GetAllShareLinksForSecuritySetting200 = {
2858
2858
  /** suceed to get all share links */
2859
- securityParams?: GetSecuritySettingAllShareLinks200SecurityParams;
2859
+ securityParams?: GetAllShareLinksForSecuritySetting200SecurityParams;
2860
2860
  };
2861
- export type DeleteSecuritySettingAllShareLinks200 = {
2861
+ export type DeleteAllShareLinksForSecuritySetting200 = {
2862
2862
  /** total number of removed share links */
2863
2863
  removeTotal?: number;
2864
2864
  };
2865
- export type PutSecuritySettingLocalSetting200 = {
2865
+ export type PutLocalSettingForSecuritySetting200 = {
2866
2866
  localSettingParams?: LocalSetting;
2867
2867
  };
2868
- export type PutSecuritySettingLdap200 = {
2868
+ export type PutLdapForSecuritySetting200 = {
2869
2869
  securitySettingParams?: LdapAuthSetting;
2870
2870
  };
2871
- export type PutSecuritySettingSaml200 = {
2871
+ export type PutSamlForSecuritySetting200 = {
2872
2872
  securitySettingParams?: SamlAuthSetting;
2873
2873
  };
2874
- export type PutSecuritySettingOidc200 = {
2874
+ export type PutOidcForSecuritySetting200 = {
2875
2875
  securitySettingParams?: OidcAuthSetting;
2876
2876
  };
2877
- export type PutSecuritySettingGoogleOauth200 = {
2877
+ export type PutGoogleOauthForSecuritySetting200 = {
2878
2878
  securitySettingParams?: GoogleOAuthSetting;
2879
2879
  };
2880
- export type PutSecuritySettingGithubOauth200 = {
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 DeleteShareLinksAll200 = {
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 PutSlackIntegrationSettingsWithoutProxyUpdateSettingsBody = {
2960
+ export type PutUpdateSettingsForSlackIntegrationSettingsWithoutProxyBody = {
2961
2961
  slackSigningSecret?: string;
2962
2962
  slackBotToken?: string;
2963
2963
  };
2964
- export type PutSlackIntegrationSettingsWithoutProxyUpdatePermissionsBodyCommandPermission = {
2964
+ export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission = {
2965
2965
  [key: string]: unknown;
2966
2966
  };
2967
- export type PutSlackIntegrationSettingsWithoutProxyUpdatePermissionsBodyEventActionsPermission = {
2967
+ export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission = {
2968
2968
  [key: string]: unknown;
2969
2969
  };
2970
- export type PutSlackIntegrationSettingsWithoutProxyUpdatePermissionsBody = {
2971
- commandPermission?: PutSlackIntegrationSettingsWithoutProxyUpdatePermissionsBodyCommandPermission;
2972
- eventActionsPermission?: PutSlackIntegrationSettingsWithoutProxyUpdatePermissionsBodyEventActionsPermission;
2970
+ export type PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBody = {
2971
+ commandPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyCommandPermission;
2972
+ eventActionsPermission?: PutUpdatePermissionsForSlackIntegrationSettingsWithoutProxyBodyEventActionsPermission;
2973
2973
  };
2974
- export type PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForBroadcastUseCommands = {
2974
+ export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands = {
2975
2975
  [key: string]: unknown;
2976
2976
  };
2977
- export type PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForSingleUseCommands = {
2977
+ export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands = {
2978
2978
  [key: string]: unknown;
2979
2979
  };
2980
- export type PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForSlackEvents = {
2980
+ export type PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents = {
2981
2981
  [key: string]: unknown;
2982
2982
  };
2983
- export type PostSlackIntegrationSettingsSlackAppIntegrations200 = {
2983
+ export type PostSlackAppIntegrationsForSlackIntegrationSettings200 = {
2984
2984
  tokenGtoP?: string;
2985
2985
  tokenPtoG?: string;
2986
- permissionsForBroadcastUseCommands?: PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForBroadcastUseCommands;
2987
- permissionsForSingleUseCommands?: PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForSingleUseCommands;
2988
- permissionsForSlackEvents?: PostSlackIntegrationSettingsSlackAppIntegrations200PermissionsForSlackEvents;
2986
+ permissionsForBroadcastUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForBroadcastUseCommands;
2987
+ permissionsForSingleUseCommands?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSingleUseCommands;
2988
+ permissionsForSlackEvents?: PostSlackAppIntegrationsForSlackIntegrationSettings200PermissionsForSlackEvents;
2989
2989
  isPrimary?: boolean;
2990
2990
  };
2991
- export type DeleteSlackIntegrationSettingsSlackAppIntegrationsId200Response = {
2991
+ export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response = {
2992
2992
  [key: string]: unknown;
2993
2993
  };
2994
- export type DeleteSlackIntegrationSettingsSlackAppIntegrationsId200 = {
2995
- response?: DeleteSlackIntegrationSettingsSlackAppIntegrationsId200Response;
2994
+ export type DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200 = {
2995
+ response?: DeleteSlackAppIntegrationsByIdForSlackIntegrationSettings200Response;
2996
2996
  };
2997
- export type PutSlackIntegrationSettingsProxyUriBody = {
2997
+ export type PutProxyUriForSlackIntegrationSettingsBody = {
2998
2998
  proxyUri?: string;
2999
2999
  };
3000
- export type PutSlackIntegrationSettingsProxyUri200 = {
3000
+ export type PutProxyUriForSlackIntegrationSettings200 = {
3001
3001
  [key: string]: unknown;
3002
3002
  };
3003
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdRegenerateTokens200 = {
3003
+ export type PutRegenerateTokensByIdForSlackIntegrationSettingsSlackAppIntegrations200 = {
3004
3004
  [key: string]: unknown;
3005
3005
  };
3006
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForBroadcastUseCommands = {
3006
+ export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands = {
3007
3007
  [key: string]: unknown;
3008
3008
  };
3009
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForSingleUseCommands = {
3009
+ export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands = {
3010
3010
  [key: string]: unknown;
3011
3011
  };
3012
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForSlackEventActions = {
3012
+ export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions = {
3013
3013
  [key: string]: unknown;
3014
3014
  };
3015
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBody = {
3016
- permissionsForBroadcastUseCommands?: PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForBroadcastUseCommands;
3017
- permissionsForSingleUseCommands?: PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForSingleUseCommands;
3018
- permissionsForSlackEventActions?: PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissionsBodyPermissionsForSlackEventActions;
3015
+ export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
3016
+ permissionsForBroadcastUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForBroadcastUseCommands;
3017
+ permissionsForSingleUseCommands?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSingleUseCommands;
3018
+ permissionsForSlackEventActions?: PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrationsBodyPermissionsForSlackEventActions;
3019
3019
  };
3020
- export type PutSlackIntegrationSettingsSlackAppIntegrationsIdPermissions200 = {
3020
+ export type PutPermissionsByIdForSlackIntegrationSettingsSlackAppIntegrations200 = {
3021
3021
  [key: string]: unknown;
3022
3022
  };
3023
- export type PostSlackIntegrationSettingsSlackAppIntegrationsIdRelationTestBody = {
3023
+ export type PostRelationTestByIdForSlackIntegrationSettingsSlackAppIntegrationsBody = {
3024
3024
  channel?: string;
3025
3025
  };
3026
- export type PostSlackIntegrationSettingsWithoutProxyTestBody = {
3026
+ export type PostTestForSlackIntegrationSettingsWithoutProxyBody = {
3027
3027
  channel?: string;
3028
3028
  };
3029
- export type PostSlackIntegrationCommandsBody = {
3029
+ export type PostCommandsForSlackIntegrationBody = {
3030
3030
  [key: string]: unknown;
3031
3031
  };
3032
- export type PostSlackIntegrationProxiedVerifyBody = {
3032
+ export type PostVerifyForSlackIntegrationProxiedBody = {
3033
3033
  type?: string;
3034
3034
  challenge?: string;
3035
3035
  };
3036
- export type PostSlackIntegrationProxiedVerify200 = {
3036
+ export type PostVerifyForSlackIntegrationProxied200 = {
3037
3037
  challenge?: string;
3038
3038
  };
3039
- export type PostSlackIntegrationProxiedCommandsBody = {
3039
+ export type PostCommandsForSlackIntegrationProxiedBody = {
3040
3040
  [key: string]: unknown;
3041
3041
  };
3042
- export type PostSlackIntegrationInteractionsBody = {
3042
+ export type PostInteractionsForSlackIntegrationBody = {
3043
3043
  [key: string]: unknown;
3044
3044
  };
3045
- export type PostSlackIntegrationProxiedInteractionsBody = {
3045
+ export type PostInteractionsForSlackIntegrationProxiedBody = {
3046
3046
  [key: string]: unknown;
3047
3047
  };
3048
- export type GetSlackIntegrationSupportedCommands200PermissionsForBroadcastUseCommandsItem = {
3048
+ export type GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem = {
3049
3049
  [key: string]: unknown;
3050
3050
  };
3051
- export type GetSlackIntegrationSupportedCommands200PermissionsForSingleUseCommandsItem = {
3051
+ export type GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem = {
3052
3052
  [key: string]: unknown;
3053
3053
  };
3054
- export type GetSlackIntegrationSupportedCommands200 = {
3055
- permissionsForBroadcastUseCommands?: GetSlackIntegrationSupportedCommands200PermissionsForBroadcastUseCommandsItem[];
3056
- permissionsForSingleUseCommands?: GetSlackIntegrationSupportedCommands200PermissionsForSingleUseCommandsItem[];
3054
+ export type GetSupportedCommandsForSlackIntegration200 = {
3055
+ permissionsForBroadcastUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForBroadcastUseCommandsItem[];
3056
+ permissionsForSingleUseCommands?: GetSupportedCommandsForSlackIntegration200PermissionsForSingleUseCommandsItem[];
3057
3057
  };
3058
- export type PostSlackIntegrationEventsBodyEvent = {
3058
+ export type PostEventsForSlackIntegrationBodyEvent = {
3059
3059
  [key: string]: unknown;
3060
3060
  };
3061
- export type PostSlackIntegrationEventsBody = {
3062
- event?: PostSlackIntegrationEventsBodyEvent;
3061
+ export type PostEventsForSlackIntegrationBody = {
3062
+ event?: PostEventsForSlackIntegrationBodyEvent;
3063
3063
  };
3064
- export type PostSlackIntegrationEvents200 = {
3064
+ export type PostEventsForSlackIntegration200 = {
3065
3065
  [key: string]: unknown;
3066
3066
  };
3067
- export type PostSlackIntegrationProxiedEventsBodyGrowiBotEvent = {
3067
+ export type PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent = {
3068
3068
  [key: string]: unknown;
3069
3069
  };
3070
- export type PostSlackIntegrationProxiedEventsBodyData = {
3070
+ export type PostEventsForSlackIntegrationProxiedBodyData = {
3071
3071
  [key: string]: unknown;
3072
3072
  };
3073
- export type PostSlackIntegrationProxiedEventsBody = {
3074
- growiBotEvent?: PostSlackIntegrationProxiedEventsBodyGrowiBotEvent;
3075
- data?: PostSlackIntegrationProxiedEventsBodyData;
3073
+ export type PostEventsForSlackIntegrationProxiedBody = {
3074
+ growiBotEvent?: PostEventsForSlackIntegrationProxiedBodyGrowiBotEvent;
3075
+ data?: PostEventsForSlackIntegrationProxiedBodyData;
3076
3076
  };
3077
- export type PostSlackIntegrationProxiedEvents200 = {
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 GetUserGroupsAncestorsParams = {
3160
+ export type GetAncestorsForUserGroupsParams = {
3161
3161
  /**
3162
3162
  * id of userGroup
3163
3163
  */
3164
3164
  groupId: string;
3165
3165
  };
3166
- export type GetUserGroupsAncestors200AncestorUserGroupsItem = {
3166
+ export type GetAncestorsForUserGroups200AncestorUserGroupsItem = {
3167
3167
  [key: string]: unknown;
3168
3168
  };
3169
- export type GetUserGroupsAncestors200 = {
3169
+ export type GetAncestorsForUserGroups200 = {
3170
3170
  /** userGroup objects */
3171
- ancestorUserGroups?: GetUserGroupsAncestors200AncestorUserGroupsItem[];
3171
+ ancestorUserGroups?: GetAncestorsForUserGroups200AncestorUserGroupsItem[];
3172
3172
  };
3173
- export type GetUserGroupsChildrenParams = {
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 GetUserGroupsChildren200ChildUserGroupsItem = {
3183
+ export type GetChildrenForUserGroups200ChildUserGroupsItem = {
3184
3184
  [key: string]: unknown;
3185
3185
  };
3186
- export type GetUserGroupsChildren200GrandChildUserGroupsItem = {
3186
+ export type GetChildrenForUserGroups200GrandChildUserGroupsItem = {
3187
3187
  [key: string]: unknown;
3188
3188
  };
3189
- export type GetUserGroupsChildren200 = {
3189
+ export type GetChildrenForUserGroups200 = {
3190
3190
  /** Child user group objects */
3191
- childUserGroups?: GetUserGroupsChildren200ChildUserGroupsItem[];
3191
+ childUserGroups?: GetChildrenForUserGroups200ChildUserGroupsItem[];
3192
3192
  /** Grandchild user group objects */
3193
- grandChildUserGroups?: GetUserGroupsChildren200GrandChildUserGroupsItem[];
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 GetUserGroupsId200UserGroup = {
3224
+ export type GetUserGroupsById200UserGroup = {
3225
3225
  [key: string]: unknown;
3226
3226
  };
3227
- export type GetUserGroupsId200 = {
3227
+ export type GetUserGroupsById200 = {
3228
3228
  /** userGroup object */
3229
- userGroup?: GetUserGroupsId200UserGroup;
3229
+ userGroup?: GetUserGroupsById200UserGroup;
3230
3230
  };
3231
- export type DeleteUserGroupsIdParams = {
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 DeleteUserGroupsId200UserGroups = {
3248
+ export type DeleteUserGroupsById200UserGroups = {
3249
3249
  [key: string]: unknown;
3250
3250
  };
3251
- export type DeleteUserGroupsId200 = {
3251
+ export type DeleteUserGroupsById200 = {
3252
3252
  /** A result of `UserGroup.removeCompletelyById` */
3253
- userGroups?: DeleteUserGroupsId200UserGroups;
3253
+ userGroups?: DeleteUserGroupsById200UserGroups;
3254
3254
  };
3255
- export type PutUserGroupsIdBody = {
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 PutUserGroupsId200UserGroup = {
3268
+ export type PutUserGroupsById200UserGroup = {
3269
3269
  [key: string]: unknown;
3270
3270
  };
3271
- export type PutUserGroupsId200 = {
3271
+ export type PutUserGroupsById200 = {
3272
3272
  /** A result of `UserGroup.updateName` */
3273
- userGroup?: PutUserGroupsId200UserGroup;
3273
+ userGroup?: PutUserGroupsById200UserGroup;
3274
3274
  };
3275
- export type GetUserGroupsIdUsers200 = {
3275
+ export type GetUsersByIdForUserGroups200 = {
3276
3276
  /** user objects */
3277
3277
  users?: User[];
3278
3278
  };
3279
- export type GetUserGroupsIdUnrelatedUsersParams = {
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 GetUserGroupsIdUnrelatedUsers200 = {
3297
+ export type GetUnrelatedUsersByIdForUserGroups200 = {
3298
3298
  /** user objects */
3299
3299
  users?: User[];
3300
3300
  };
3301
- export type PostUserGroupsIdUsersUsername200 = {
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 DeleteUserGroupsIdUsersUsername200 = {
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 GetUserGroupsIdUserGroupRelations200UserGroupRelationsItem = {
3313
+ export type GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem = {
3314
3314
  [key: string]: unknown;
3315
3315
  };
3316
- export type GetUserGroupsIdUserGroupRelations200 = {
3316
+ export type GetUserGroupRelationsByIdForUserGroups200 = {
3317
3317
  /** userGroupRelation objects */
3318
- userGroupRelations?: GetUserGroupsIdUserGroupRelations200UserGroupRelationsItem[];
3318
+ userGroupRelations?: GetUserGroupRelationsByIdForUserGroups200UserGroupRelationsItem[];
3319
3319
  };
3320
- export type GetUserGroupsIdPages200PagesItem = {
3320
+ export type GetPagesByIdForUserGroups200PagesItem = {
3321
3321
  [key: string]: unknown;
3322
3322
  };
3323
- export type GetUserGroupsIdPages200 = {
3323
+ export type GetPagesByIdForUserGroups200 = {
3324
3324
  /** page objects */
3325
- pages?: GetUserGroupsIdPages200PagesItem[];
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 GetIdRecent200 = {
3371
+ export type GetRecentById200 = {
3372
3372
  paginateResult?: PaginateResult;
3373
3373
  };
3374
- export type PostUsersInviteParams = {
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 PostUsersInvite200FailedEmailList = {
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 PostUsersInvite200 = {
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?: PostUsersInvite200FailedEmailList;
3401
+ failedEmailList?: PostInviteForUsers200FailedEmailList;
3402
3402
  };
3403
- export type PutUsersIdGrantAdmin200 = {
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 PutUsersIdRevokeAdmin200UserData = {
3410
+ export type PutRevokeAdminByIdForUsers200UserData = {
3411
3411
  [key: string]: unknown;
3412
3412
  };
3413
- export type PutUsersIdRevokeAdmin200 = {
3413
+ export type PutRevokeAdminByIdForUsers200 = {
3414
3414
  /** data of revoked admin user */
3415
- userData?: PutUsersIdRevokeAdmin200UserData;
3415
+ userData?: PutRevokeAdminByIdForUsers200UserData;
3416
3416
  };
3417
- export type PutUsersIdGrantReadOnly200 = {
3417
+ export type PutGrantReadOnlyByIdForUsers200 = {
3418
3418
  /** data of grant read only */
3419
3419
  userData?: User;
3420
3420
  };
3421
- export type PutUsersIdRevokeReadOnly200 = {
3421
+ export type PutRevokeReadOnlyByIdForUsers200 = {
3422
3422
  /** data of revoke read only */
3423
3423
  userData?: User;
3424
3424
  };
3425
- export type PutUsersIdActivate200 = {
3425
+ export type PutActivateByIdForUsers200 = {
3426
3426
  /** data of activate user */
3427
3427
  userData?: User;
3428
3428
  };
3429
- export type PutUsersIdDeactivate200 = {
3429
+ export type PutDeactivateByIdForUsers200 = {
3430
3430
  /** data of deactivate user */
3431
3431
  userData?: User;
3432
3432
  };
3433
- export type DeleteUsersIdRemove200 = {
3433
+ export type DeleteRemoveByIdForUsers200 = {
3434
3434
  /** data of deleted user */
3435
3435
  user?: User;
3436
3436
  };
3437
- export type GetUsersExternalAccountsParams = {
3437
+ export type GetExternalAccountsForUsersParams = {
3438
3438
  /**
3439
3439
  * page number
3440
3440
  */
3441
3441
  page?: number;
3442
3442
  };
3443
- export type GetUsersExternalAccounts200 = {
3443
+ export type GetExternalAccountsForUsers200 = {
3444
3444
  paginateResult?: PaginateResult;
3445
3445
  };
3446
3446
  /**
3447
3447
  * A result of `ExtenralAccount.findByIdAndRemove`
3448
3448
  */
3449
- export type DeleteUsersExternalAccountsIdRemove200ExternalAccount = {
3449
+ export type DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount = {
3450
3450
  [key: string]: unknown;
3451
3451
  };
3452
- export type DeleteUsersExternalAccountsIdRemove200 = {
3452
+ export type DeleteRemoveByIdForUsersExternalAccounts200 = {
3453
3453
  /** A result of `ExtenralAccount.findByIdAndRemove` */
3454
- externalAccount?: DeleteUsersExternalAccountsIdRemove200ExternalAccount;
3454
+ externalAccount?: DeleteRemoveByIdForUsersExternalAccounts200ExternalAccount;
3455
3455
  };
3456
- export type PutUsersUpdateImageUrlCacheBody = {
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 PutUsersUpdateImageUrlCache200 = {
3463
+ export type PutUpdateImageUrlCacheForUsers200 = {
3464
3464
  [key: string]: unknown;
3465
3465
  };
3466
- export type PutUsersResetPasswordBody = {
3466
+ export type PutResetPasswordForUsersBody = {
3467
3467
  /** user id for reset password */
3468
3468
  id?: string;
3469
3469
  };
3470
- export type PutUsersResetPassword200 = {
3470
+ export type PutResetPasswordForUsers200 = {
3471
3471
  /** new password */
3472
3472
  newPassword?: string;
3473
3473
  user?: User;
3474
3474
  };
3475
- export type PutUsersResetPasswordEmailBody = {
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 PutUsersSendInvitationEmailBody = {
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 PutUsersSendInvitationEmail200FailedToSendEmail = {
3487
+ export type PutSendInvitationEmailForUsers200FailedToSendEmail = {
3488
3488
  email?: string;
3489
3489
  reason?: string;
3490
3490
  };
3491
- export type PutUsersSendInvitationEmail200 = {
3491
+ export type PutSendInvitationEmailForUsers200 = {
3492
3492
  /** email and reasons for email sending failure */
3493
- failedToSendEmail?: PutUsersSendInvitationEmail200FailedToSendEmail;
3493
+ failedToSendEmail?: PutSendInvitationEmailForUsers200FailedToSendEmail;
3494
3494
  };
3495
- export type GetUsersListParams = {
3495
+ export type GetListForUsersParams = {
3496
3496
  userIds?: string;
3497
3497
  };
3498
- export type GetUsersList200 = {
3498
+ export type GetListForUsers200 = {
3499
3499
  /** user list */
3500
3500
  users?: User[];
3501
3501
  };
3502
- export type GetUsersUsernamesParams = {
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 GetUsersUsernames200ActiveUser = {
3508
+ export type GetUsernamesForUsers200ActiveUser = {
3509
3509
  usernames?: string[];
3510
3510
  totalCount?: number;
3511
3511
  };
3512
- export type GetUsersUsernames200InactiveUser = {
3512
+ export type GetUsernamesForUsers200InactiveUser = {
3513
3513
  usernames?: string[];
3514
3514
  totalCount?: number;
3515
3515
  };
3516
- export type GetUsersUsernames200ActivitySnapshotUser = {
3516
+ export type GetUsernamesForUsers200ActivitySnapshotUser = {
3517
3517
  usernames?: string[];
3518
3518
  totalCount?: number;
3519
3519
  };
3520
- export type GetUsersUsernames200 = {
3521
- activeUser?: GetUsersUsernames200ActiveUser;
3522
- inactiveUser?: GetUsersUsernames200InactiveUser;
3523
- activitySnapshotUser?: GetUsersUsernames200ActivitySnapshotUser;
3520
+ export type GetUsernamesForUsers200 = {
3521
+ activeUser?: GetUsernamesForUsers200ActiveUser;
3522
+ inactiveUser?: GetUsernamesForUsers200InactiveUser;
3523
+ activitySnapshotUser?: GetUsernamesForUsers200ActivitySnapshotUser;
3524
3524
  mixedUsernames?: string[];
3525
3525
  };
3526
3526
  export type PostLoginBodyLoginForm = {