@@ -777,6 +777,7 @@ public function indexViewColumns(int $viewId): DataResponse {
777777 * @param bool|null $usergroupMultipleItems Can select multiple users or/and groups, if column is usergroup
778778 * @param bool|null $usergroupSelectUsers Can select users, if column type is usergroup
779779 * @param bool|null $usergroupSelectGroups Can select groups, if column type is usergroup
780+ * @param bool|null $usergroupSelectTeams Can select teams, if column type is usergroup
780781 * @param bool|null $usergroupShowUserStatus Whether to show the user's status, if column type is usergroup
781782 * @param int[]|null $selectedViewIds View IDs where this column should be added to be presented
782783 *
@@ -814,6 +815,7 @@ public function createColumn(
814815 ?bool $ usergroupMultipleItems = null ,
815816 ?bool $ usergroupSelectUsers = null ,
816817 ?bool $ usergroupSelectGroups = null ,
818+ ?bool $ usergroupSelectTeams = null ,
817819 ?bool $ usergroupShowUserStatus = null ,
818820
819821 ?array $ selectedViewIds = []
@@ -892,6 +894,7 @@ public function createColumn(
892894 * @param bool|null $usergroupMultipleItems Can select multiple users or/and groups, if column is usergroup
893895 * @param bool|null $usergroupSelectUsers Can select users, if column type is usergroup
894896 * @param bool|null $usergroupSelectGroups Can select groups, if column type is usergroup
897+ * @param bool|null $usergroupSelectTeams Can select teams, if column type is usergroup
895898 * @param bool|null $usergroupShowUserStatus Whether to show the user's status, if column type is usergroup
896899 *
897900 * @return DataResponse<Http::STATUS_OK, TablesColumn, array{}>|DataResponse<Http::STATUS_INTERNAL_SERVER_ERROR, array{message: string}, array{}>
@@ -925,6 +928,7 @@ public function updateColumn(
925928 ?bool $ usergroupMultipleItems ,
926929 ?bool $ usergroupSelectUsers ,
927930 ?bool $ usergroupSelectGroups ,
931+ ?bool $ usergroupSelectTeams ,
928932 ?bool $ usergroupShowUserStatus ,
929933
930934 ): DataResponse {
@@ -1494,6 +1498,7 @@ public function createTableShare(int $tableId, string $receiver, string $receive
14941498 * @param bool|null $usergroupMultipleItems Can select multiple users or/and groups, if column is usergroup
14951499 * @param bool|null $usergroupSelectUsers Can select users, if column type is usergroup
14961500 * @param bool|null $usergroupSelectGroups Can select groups, if column type is usergroup
1501+ * @param bool|null $usergroupSelectTeams Can select teams, if column type is usergroup
14971502 * @param bool|null $usergroupShowUserStatus Whether to show the user's status, if column type is usergroup
14981503 * @param int[]|null $selectedViewIds View IDs where this column should be added to be presented
14991504 *
@@ -1531,6 +1536,7 @@ public function createTableColumn(
15311536 ?bool $ usergroupMultipleItems = null ,
15321537 ?bool $ usergroupSelectUsers = null ,
15331538 ?bool $ usergroupSelectGroups = null ,
1539+ ?bool $ usergroupSelectTeams = null ,
15341540 ?bool $ usergroupShowUserStatus = null ,
15351541 ?array $ selectedViewIds = []
15361542 ): DataResponse {
0 commit comments