Skip to content

Commit 3f1d8f0

Browse files
committed
Add SmartQ APIs.
1 parent d484f20 commit 3f1d8f0

File tree

3 files changed

+138
-5
lines changed

3 files changed

+138
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 1.8.2237 - 2024-12-30
4+
- Add SmartQ APIs.
5+
- Add GetDataSourceConnectionInfo, QueryDatasetList APIs.
6+
7+
38
## 1.8.2236 - 2024-12-26
49
- CreateJob and UpdateJob support ExecutorBlockStrategy.
510
- TimeType support fixed_delay.

src/QuickbiPublic/V20220101/QuickbiPublicApiResolver.php

+132-4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
* @method DeleteUserGroupMember deleteUserGroupMember(array $options = [])
3838
* @method DeleteUserGroupMembers deleteUserGroupMembers(array $options = [])
3939
* @method DeleteUserTagMeta deleteUserTagMeta(array $options = [])
40+
* @method GetDataSourceConnectionInfo getDataSourceConnectionInfo(array $options = [])
4041
* @method GetMailTaskStatus getMailTaskStatus(array $options = [])
4142
* @method GetUserGroupInfo getUserGroupInfo(array $options = [])
4243
* @method GetWorksEmbedList getWorksEmbedList(array $options = [])
@@ -45,6 +46,7 @@
4546
* @method ListCollections listCollections(array $options = [])
4647
* @method ListCubeDataLevelPermissionConfig listCubeDataLevelPermissionConfig(array $options = [])
4748
* @method ListDataLevelPermissionWhiteList listDataLevelPermissionWhiteList(array $options = [])
49+
* @method ListDataSource listDataSource(array $options = [])
4850
* @method ListFavoriteReports listFavoriteReports(array $options = [])
4951
* @method ListOrganizationRoles listOrganizationRoles(array $options = [])
5052
* @method ListOrganizationRoleUsers listOrganizationRoleUsers(array $options = [])
@@ -71,15 +73,18 @@
7173
* @method QueryDatasetDetailInfo queryDatasetDetailInfo(array $options = [])
7274
* @method QueryDatasetInfo queryDatasetInfo(array $options = [])
7375
* @method QueryDatasetList queryDatasetList(array $options = [])
76+
* @method QueryDatasetSmartqStatus queryDatasetSmartqStatus(array $options = [])
7477
* @method QueryDatasetSwitchInfo queryDatasetSwitchInfo(array $options = [])
7578
* @method QueryEmbeddedInfo queryEmbeddedInfo(array $options = [])
7679
* @method QueryEmbeddedStatus queryEmbeddedStatus(array $options = [])
80+
* @method QueryLlmCubeWithThemeListByUserId queryLlmCubeWithThemeListByUserId(array $options = [])
7781
* @method QueryOrganizationRoleConfig queryOrganizationRoleConfig(array $options = [])
7882
* @method QueryOrganizationWorkspaceList queryOrganizationWorkspaceList(array $options = [])
7983
* @method QueryReadableResourcesListByUserId queryReadableResourcesListByUserId(array $options = [])
8084
* @method QueryReportPerformance queryReportPerformance(array $options = [])
8185
* @method QueryShareList queryShareList(array $options = [])
8286
* @method QuerySharesToUserList querySharesToUserList(array $options = [])
87+
* @method QuerySmartqPermissionByCubeId querySmartqPermissionByCubeId(array $options = [])
8388
* @method QueryTicketInfo queryTicketInfo(array $options = [])
8489
* @method QueryUserGroupListByParentId queryUserGroupListByParentId(array $options = [])
8590
* @method QueryUserGroupMember queryUserGroupMember(array $options = [])
@@ -100,6 +105,8 @@
100105
* @method SetDataLevelPermissionExtraConfig setDataLevelPermissionExtraConfig(array $options = [])
101106
* @method SetDataLevelPermissionRuleConfig setDataLevelPermissionRuleConfig(array $options = [])
102107
* @method SetDataLevelPermissionWhiteList setDataLevelPermissionWhiteList(array $options = [])
108+
* @method SmartqAuthorize smartqAuthorize(array $options = [])
109+
* @method SmartqAuthTransfer smartqAuthTransfer(array $options = [])
103110
* @method SmartqQueryAbility smartqQueryAbility(array $options = [])
104111
* @method UpdateDataLevelPermissionStatus updateDataLevelPermissionStatus(array $options = [])
105112
* @method UpdateEmbeddedStatus updateEmbeddedStatus(array $options = [])
@@ -370,14 +377,14 @@ class BatchAddFeishuUsers extends Rpc
370377
* @method $this withDataPortalId($value)
371378
* @method string getAccessPoint()
372379
* @method $this withAccessPoint($value)
380+
* @method string getMenuIds()
381+
* @method $this withMenuIds($value)
373382
* @method string getSignType()
374383
* @method $this withSignType($value)
375384
* @method string getUserGroupIds()
376385
* @method $this withUserGroupIds($value)
377386
* @method string getUserIds()
378387
* @method $this withUserIds($value)
379-
* @method string getMenuIds()
380-
* @method $this withMenuIds($value)
381388
*/
382389
class CancelAuthorizationMenu extends Rpc
383390
{
@@ -673,6 +680,21 @@ class DeleteUserTagMeta extends Rpc
673680
{
674681
}
675682

683+
/**
684+
* @method string getDsId()
685+
* @method $this withDsId($value)
686+
* @method string getAccessPoint()
687+
* @method $this withAccessPoint($value)
688+
* @method string getSignType()
689+
* @method $this withSignType($value)
690+
*/
691+
class GetDataSourceConnectionInfo extends Rpc
692+
{
693+
694+
/** @var string */
695+
public $scheme = 'https';
696+
}
697+
676698
/**
677699
* @method string getAccessPoint()
678700
* @method $this withAccessPoint($value)
@@ -795,6 +817,23 @@ class ListDataLevelPermissionWhiteList extends Rpc
795817
{
796818
}
797819

820+
/**
821+
* @method string getDsType()
822+
* @method $this withDsType($value)
823+
* @method string getAccessPoint()
824+
* @method $this withAccessPoint($value)
825+
* @method string getSignType()
826+
* @method $this withSignType($value)
827+
* @method string getWorkspaceId()
828+
* @method $this withWorkspaceId($value)
829+
*/
830+
class ListDataSource extends Rpc
831+
{
832+
833+
/** @var string */
834+
public $scheme = 'https';
835+
}
836+
798837
/**
799838
* @method string getAccessPoint()
800839
* @method $this withAccessPoint($value)
@@ -1227,6 +1266,21 @@ class QueryDatasetList extends Rpc
12271266
{
12281267
}
12291268

1269+
/**
1270+
* @method string getAccessPoint()
1271+
* @method $this withAccessPoint($value)
1272+
* @method string getSignType()
1273+
* @method $this withSignType($value)
1274+
* @method string getCubeId()
1275+
* @method $this withCubeId($value)
1276+
*/
1277+
class QueryDatasetSmartqStatus extends Rpc
1278+
{
1279+
1280+
/** @var string */
1281+
public $scheme = 'https';
1282+
}
1283+
12301284
/**
12311285
* @method string getAccessPoint()
12321286
* @method $this withAccessPoint($value)
@@ -1261,6 +1315,21 @@ class QueryEmbeddedStatus extends Rpc
12611315
{
12621316
}
12631317

1318+
/**
1319+
* @method string getAccessPoint()
1320+
* @method $this withAccessPoint($value)
1321+
* @method string getSignType()
1322+
* @method $this withSignType($value)
1323+
* @method string getUserId()
1324+
* @method $this withUserId($value)
1325+
*/
1326+
class QueryLlmCubeWithThemeListByUserId extends Rpc
1327+
{
1328+
1329+
/** @var string */
1330+
public $scheme = 'https';
1331+
}
1332+
12641333
/**
12651334
* @method string getRoleId()
12661335
* @method $this withRoleId($value)
@@ -1351,6 +1420,23 @@ class QuerySharesToUserList extends Rpc
13511420
{
13521421
}
13531422

1423+
/**
1424+
* @method string getAccessPoint()
1425+
* @method $this withAccessPoint($value)
1426+
* @method string getSignType()
1427+
* @method $this withSignType($value)
1428+
* @method string getUserId()
1429+
* @method $this withUserId($value)
1430+
* @method string getCubeId()
1431+
* @method $this withCubeId($value)
1432+
*/
1433+
class QuerySmartqPermissionByCubeId extends Rpc
1434+
{
1435+
1436+
/** @var string */
1437+
public $scheme = 'https';
1438+
}
1439+
13541440
/**
13551441
* @method string getTicket()
13561442
* @method $this withTicket($value)
@@ -1652,6 +1738,46 @@ class SetDataLevelPermissionWhiteList extends Rpc
16521738
{
16531739
}
16541740

1741+
/**
1742+
* @method string getLlmCubeThemes()
1743+
* @method $this withLlmCubeThemes($value)
1744+
* @method string getAccessPoint()
1745+
* @method $this withAccessPoint($value)
1746+
* @method string getLlmCubes()
1747+
* @method $this withLlmCubes($value)
1748+
* @method string getSignType()
1749+
* @method $this withSignType($value)
1750+
* @method string getOperationType()
1751+
* @method $this withOperationType($value)
1752+
* @method string getExpireDay()
1753+
* @method $this withExpireDay($value)
1754+
* @method string getUserIds()
1755+
* @method $this withUserIds($value)
1756+
*/
1757+
class SmartqAuthorize extends Rpc
1758+
{
1759+
1760+
/** @var string */
1761+
public $scheme = 'https';
1762+
}
1763+
1764+
/**
1765+
* @method string getAccessPoint()
1766+
* @method $this withAccessPoint($value)
1767+
* @method string getTargetUserIds()
1768+
* @method $this withTargetUserIds($value)
1769+
* @method string getSignType()
1770+
* @method $this withSignType($value)
1771+
* @method string getOriginUserId()
1772+
* @method $this withOriginUserId($value)
1773+
*/
1774+
class SmartqAuthTransfer extends Rpc
1775+
{
1776+
1777+
/** @var string */
1778+
public $scheme = 'https';
1779+
}
1780+
16551781
/**
16561782
* @method string getAccessPoint()
16571783
* @method $this withAccessPoint($value)
@@ -1798,10 +1924,12 @@ class UpdateUserTagValue extends Rpc
17981924
* @method $this withRoleId($value)
17991925
* @method string getAccessPoint()
18001926
* @method $this withAccessPoint($value)
1801-
* @method string getSignType()
1802-
* @method $this withSignType($value)
18031927
* @method string getUserId()
18041928
* @method $this withUserId($value)
1929+
* @method string getRoleIds()
1930+
* @method $this withRoleIds($value)
1931+
* @method string getSignType()
1932+
* @method $this withSignType($value)
18051933
* @method string getWorkspaceId()
18061934
* @method $this withWorkspaceId($value)
18071935
*/

src/Release.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Release
1616
/**
1717
* Version of the SDK
1818
*/
19-
const VERSION = '1.8.2236';
19+
const VERSION = '1.8.2237';
2020

2121
/**
2222
* @param Event $event

0 commit comments

Comments
 (0)