appbuild-oceanbase-console 1.13.0 → 1.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/sdk.js +37 -10
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +37 -11
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +37 -10
- package/package.json +1 -1
- package/types/enums/o-auth-provider.d.ts +1 -0
- package/types/index.d.ts +1 -0
- package/types/sdk.d.ts +3 -0
- package/types/services/admin.d.ts +21 -0
- package/types/services/projects.d.ts +4 -1
package/dist/cjs/sdk.js
CHANGED
|
@@ -17738,21 +17738,23 @@ class Projects {
|
|
|
17738
17738
|
name: rest[0],
|
|
17739
17739
|
teamId: rest[1],
|
|
17740
17740
|
region: rest[2],
|
|
17741
|
-
|
|
17742
|
-
|
|
17743
|
-
|
|
17744
|
-
|
|
17745
|
-
|
|
17746
|
-
|
|
17747
|
-
|
|
17748
|
-
|
|
17749
|
-
|
|
17741
|
+
poolTag: rest[3],
|
|
17742
|
+
description: rest[4],
|
|
17743
|
+
logo: rest[5],
|
|
17744
|
+
url: rest[6],
|
|
17745
|
+
legalName: rest[7],
|
|
17746
|
+
legalCountry: rest[8],
|
|
17747
|
+
legalState: rest[9],
|
|
17748
|
+
legalCity: rest[10],
|
|
17749
|
+
legalAddress: rest[11],
|
|
17750
|
+
legalTaxId: rest[12]
|
|
17750
17751
|
};
|
|
17751
17752
|
}
|
|
17752
17753
|
const projectId = params.projectId;
|
|
17753
17754
|
const name = params.name;
|
|
17754
17755
|
const teamId = params.teamId;
|
|
17755
17756
|
const region = params.region;
|
|
17757
|
+
const poolTag = params.poolTag;
|
|
17756
17758
|
const description = params.description;
|
|
17757
17759
|
const logo = params.logo;
|
|
17758
17760
|
const url = params.url;
|
|
@@ -17785,6 +17787,9 @@ class Projects {
|
|
|
17785
17787
|
if (typeof region !== 'undefined') {
|
|
17786
17788
|
payload['region'] = region;
|
|
17787
17789
|
}
|
|
17790
|
+
if (typeof poolTag !== 'undefined') {
|
|
17791
|
+
payload['poolTag'] = poolTag;
|
|
17792
|
+
}
|
|
17788
17793
|
if (typeof description !== 'undefined') {
|
|
17789
17794
|
payload['description'] = description;
|
|
17790
17795
|
}
|
|
@@ -19938,6 +19943,25 @@ class Projects {
|
|
|
19938
19943
|
}
|
|
19939
19944
|
}
|
|
19940
19945
|
|
|
19946
|
+
class Admin extends Service {
|
|
19947
|
+
constructor(client) {
|
|
19948
|
+
super(client);
|
|
19949
|
+
}
|
|
19950
|
+
/**
|
|
19951
|
+
* List all defined pool tags.
|
|
19952
|
+
*
|
|
19953
|
+
* @throws {AppwriteException}
|
|
19954
|
+
* @returns {Promise<{ tags: Array<{ $id: string, name: string, poolCount: number, pools: string[], createdAt: string }>, total: number }>}
|
|
19955
|
+
*/
|
|
19956
|
+
listTags() {
|
|
19957
|
+
const apiPath = '/admin/tags';
|
|
19958
|
+
const payload = {};
|
|
19959
|
+
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
19960
|
+
const apiHeaders = {};
|
|
19961
|
+
return this.client.call('get', uri, apiHeaders, payload);
|
|
19962
|
+
}
|
|
19963
|
+
}
|
|
19964
|
+
|
|
19941
19965
|
class Proxy {
|
|
19942
19966
|
constructor(client) {
|
|
19943
19967
|
this.client = client;
|
|
@@ -28833,6 +28857,7 @@ exports.OAuthProvider = void 0;
|
|
|
28833
28857
|
OAuthProvider["Tradeshift"] = "tradeshift";
|
|
28834
28858
|
OAuthProvider["TradeshiftBox"] = "tradeshiftBox";
|
|
28835
28859
|
OAuthProvider["Twitch"] = "twitch";
|
|
28860
|
+
OAuthProvider["Weavefox"] = "weavefox";
|
|
28836
28861
|
OAuthProvider["Wordpress"] = "wordpress";
|
|
28837
28862
|
OAuthProvider["Yahoo"] = "yahoo";
|
|
28838
28863
|
OAuthProvider["Yammer"] = "yammer";
|
|
@@ -30706,7 +30731,8 @@ function createConsoleSdk(client) {
|
|
|
30706
30731
|
sites: new Sites(client),
|
|
30707
30732
|
domains: new Domains(client),
|
|
30708
30733
|
storage: new Storage(client),
|
|
30709
|
-
realtime: new Realtime(client)
|
|
30734
|
+
realtime: new Realtime(client),
|
|
30735
|
+
admin: new Admin(client)
|
|
30710
30736
|
};
|
|
30711
30737
|
}
|
|
30712
30738
|
const clientConsole = new Client();
|
|
@@ -30802,6 +30828,7 @@ function createRealtimeSubscription(realtimeInstance, channels, callback) {
|
|
|
30802
30828
|
|
|
30803
30829
|
exports.Account = Account;
|
|
30804
30830
|
exports.Activities = Activities;
|
|
30831
|
+
exports.Admin = Admin;
|
|
30805
30832
|
exports.AppwriteException = AppwriteException;
|
|
30806
30833
|
exports.Assistant = Assistant;
|
|
30807
30834
|
exports.Avatars = Avatars;
|