@blocklet/server-js 1.16.52-beta-20250909-073849-4e392ab1 → 1.16.52-beta-20250911-023851-d988be85
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 +9 -0
- package/dist/bundle.js +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +83 -0
- package/dist/types.js +13 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +24 -0
- package/lib/node.d.ts +9 -0
- package/lib/schema/graphql.json +83 -0
- package/lib/types.js +13 -0
- package/lib/types.js.map +1 -1
- package/package.json +2 -2
package/dist/browser.d.ts
CHANGED
|
@@ -3468,6 +3468,7 @@ declare namespace ABTNodeClient {
|
|
|
3468
3468
|
activity: ABTNodeClient.NotificationActivity;
|
|
3469
3469
|
actorInfo: ABTNodeClient.UserInfo;
|
|
3470
3470
|
options: Record<string, any>;
|
|
3471
|
+
utm: ABTNodeClient.TUTM;
|
|
3471
3472
|
}
|
|
3472
3473
|
|
|
3473
3474
|
interface NotificationAction {
|
|
@@ -3476,6 +3477,7 @@ declare namespace ABTNodeClient {
|
|
|
3476
3477
|
link: string;
|
|
3477
3478
|
name: string;
|
|
3478
3479
|
title: string;
|
|
3480
|
+
utm: ABTNodeClient.TUTM;
|
|
3479
3481
|
}
|
|
3480
3482
|
|
|
3481
3483
|
interface NotificationActivity {
|
|
@@ -4510,6 +4512,13 @@ declare namespace ABTNodeClient {
|
|
|
4510
4512
|
failed: number;
|
|
4511
4513
|
}
|
|
4512
4514
|
|
|
4515
|
+
interface TUTM {
|
|
4516
|
+
source: string;
|
|
4517
|
+
medium: string;
|
|
4518
|
+
campaign: string;
|
|
4519
|
+
content: string;
|
|
4520
|
+
}
|
|
4521
|
+
|
|
4513
4522
|
interface Tag {
|
|
4514
4523
|
id: number;
|
|
4515
4524
|
title: string;
|