@blocklet/server-js 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/dist/browser.d.ts +19 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +153 -0
- package/dist/types.js +35 -1
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +15 -4
- package/lib/node.d.ts +19 -0
- package/lib/schema/graphql.json +153 -0
- package/lib/types.js +35 -1
- package/lib/types.js.map +1 -1
- package/package.json +4 -4
package/dist/browser.d.ts
CHANGED
|
@@ -2831,6 +2831,12 @@ declare namespace ABTNodeClient {
|
|
|
2831
2831
|
value: ABTNodeClient.BlockletHistoryItem[];
|
|
2832
2832
|
}
|
|
2833
2833
|
|
|
2834
|
+
interface BlockletIntegrations {
|
|
2835
|
+
webhooks: number;
|
|
2836
|
+
accessKeys: number;
|
|
2837
|
+
oauthApps: number;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2834
2840
|
interface BlockletMeta {
|
|
2835
2841
|
did: string;
|
|
2836
2842
|
name: string;
|
|
@@ -3067,6 +3073,16 @@ declare namespace ABTNodeClient {
|
|
|
3067
3073
|
scope: string;
|
|
3068
3074
|
}
|
|
3069
3075
|
|
|
3076
|
+
interface BlockletStudio {
|
|
3077
|
+
blocklets: number;
|
|
3078
|
+
releases: number;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
interface BlockletTraffic {
|
|
3082
|
+
totalRequests: number;
|
|
3083
|
+
failedRequests: number;
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3070
3086
|
interface BlockletUsers {
|
|
3071
3087
|
users: number;
|
|
3072
3088
|
approvedUsers: number;
|
|
@@ -4116,6 +4132,9 @@ declare namespace ABTNodeClient {
|
|
|
4116
4132
|
passport: ABTNodeClient.BlockletPassport;
|
|
4117
4133
|
backup: ABTNodeClient.Backup;
|
|
4118
4134
|
appRuntimeInfo: ABTNodeClient.RuntimeInfo;
|
|
4135
|
+
traffic: ABTNodeClient.BlockletTraffic;
|
|
4136
|
+
integrations: ABTNodeClient.BlockletIntegrations;
|
|
4137
|
+
studio: ABTNodeClient.BlockletStudio;
|
|
4119
4138
|
}
|
|
4120
4139
|
|
|
4121
4140
|
interface ResponseBlockletMeta {
|