@abtnode/types 1.17.5-beta-20251211-104355-426d7eb6 → 1.17.5-beta-20251214-231110-497f8d27
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/lib/rpc_pb.d.ts +16 -0
- package/package.json +2 -2
package/lib/rpc_pb.d.ts
CHANGED
|
@@ -1436,11 +1436,27 @@ export type TBlockletPassport = {
|
|
|
1436
1436
|
passports: number;
|
|
1437
1437
|
activePassports: number;
|
|
1438
1438
|
};
|
|
1439
|
+
export type TBlockletTraffic = {
|
|
1440
|
+
totalRequests: number;
|
|
1441
|
+
failedRequests: number;
|
|
1442
|
+
};
|
|
1443
|
+
export type TBlockletIntegrations = {
|
|
1444
|
+
webhooks: number;
|
|
1445
|
+
accessKeys: number;
|
|
1446
|
+
oauthApps: number;
|
|
1447
|
+
};
|
|
1448
|
+
export type TBlockletStudio = {
|
|
1449
|
+
blocklets: number;
|
|
1450
|
+
releases: number;
|
|
1451
|
+
};
|
|
1439
1452
|
export type TResponseBlockletInfo = {
|
|
1440
1453
|
user?: TBlockletUsers;
|
|
1441
1454
|
passport?: TBlockletPassport;
|
|
1442
1455
|
backup?: type_pb.TBackup;
|
|
1443
1456
|
appruntimeinfo?: type_pb.TRuntimeInfo;
|
|
1457
|
+
traffic?: TBlockletTraffic;
|
|
1458
|
+
integrations?: TBlockletIntegrations;
|
|
1459
|
+
studio?: TBlockletStudio;
|
|
1444
1460
|
};
|
|
1445
1461
|
export type TRequestAddUploadEndpoint = {
|
|
1446
1462
|
teamDid: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/types",
|
|
3
|
-
"version": "1.17.5-beta-
|
|
3
|
+
"version": "1.17.5-beta-20251214-231110-497f8d27",
|
|
4
4
|
"description": "Typescript definitions generated from protobuf",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"abtnode",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"bugs": {
|
|
36
36
|
"url": "https://github.com/ArcBlock/abt-node/issues"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "aa782962d97ed5d9a994268621e9a652c995c783"
|
|
39
39
|
}
|