@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/docs/QUERIES.md CHANGED
@@ -4471,6 +4471,12 @@ No arguments
4471
4471
  link
4472
4472
  name
4473
4473
  title
4474
+ utm {
4475
+ campaign
4476
+ content
4477
+ medium
4478
+ source
4479
+ }
4474
4480
  }
4475
4481
  activity {
4476
4482
  actor
@@ -4809,6 +4815,12 @@ No arguments
4809
4815
  total
4810
4816
  }
4811
4817
  }
4818
+ utm {
4819
+ campaign
4820
+ content
4821
+ medium
4822
+ source
4823
+ }
4812
4824
  }
4813
4825
  paging {
4814
4826
  page
@@ -4876,6 +4888,12 @@ No arguments
4876
4888
  link
4877
4889
  name
4878
4890
  title
4891
+ utm {
4892
+ campaign
4893
+ content
4894
+ medium
4895
+ source
4896
+ }
4879
4897
  }
4880
4898
  activity {
4881
4899
  actor
@@ -5214,6 +5232,12 @@ No arguments
5214
5232
  total
5215
5233
  }
5216
5234
  }
5235
+ utm {
5236
+ campaign
5237
+ content
5238
+ medium
5239
+ source
5240
+ }
5217
5241
  }
5218
5242
  paging {
5219
5243
  page
package/lib/node.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;
@@ -22603,6 +22603,18 @@
22603
22603
  },
22604
22604
  "isDeprecated": false,
22605
22605
  "deprecationReason": null
22606
+ },
22607
+ {
22608
+ "name": "utm",
22609
+ "description": null,
22610
+ "args": [],
22611
+ "type": {
22612
+ "kind": "OBJECT",
22613
+ "name": "TUTM",
22614
+ "ofType": null
22615
+ },
22616
+ "isDeprecated": false,
22617
+ "deprecationReason": null
22606
22618
  }
22607
22619
  ],
22608
22620
  "inputFields": null,
@@ -22674,6 +22686,18 @@
22674
22686
  },
22675
22687
  "isDeprecated": false,
22676
22688
  "deprecationReason": null
22689
+ },
22690
+ {
22691
+ "name": "utm",
22692
+ "description": null,
22693
+ "args": [],
22694
+ "type": {
22695
+ "kind": "OBJECT",
22696
+ "name": "TUTM",
22697
+ "ofType": null
22698
+ },
22699
+ "isDeprecated": false,
22700
+ "deprecationReason": null
22677
22701
  }
22678
22702
  ],
22679
22703
  "inputFields": null,
@@ -30735,6 +30759,65 @@
30735
30759
  "enumValues": null,
30736
30760
  "possibleTypes": null
30737
30761
  },
30762
+ {
30763
+ "kind": "OBJECT",
30764
+ "name": "TUTM",
30765
+ "description": null,
30766
+ "fields": [
30767
+ {
30768
+ "name": "source",
30769
+ "description": null,
30770
+ "args": [],
30771
+ "type": {
30772
+ "kind": "SCALAR",
30773
+ "name": "String",
30774
+ "ofType": null
30775
+ },
30776
+ "isDeprecated": false,
30777
+ "deprecationReason": null
30778
+ },
30779
+ {
30780
+ "name": "medium",
30781
+ "description": null,
30782
+ "args": [],
30783
+ "type": {
30784
+ "kind": "SCALAR",
30785
+ "name": "String",
30786
+ "ofType": null
30787
+ },
30788
+ "isDeprecated": false,
30789
+ "deprecationReason": null
30790
+ },
30791
+ {
30792
+ "name": "campaign",
30793
+ "description": null,
30794
+ "args": [],
30795
+ "type": {
30796
+ "kind": "SCALAR",
30797
+ "name": "String",
30798
+ "ofType": null
30799
+ },
30800
+ "isDeprecated": false,
30801
+ "deprecationReason": null
30802
+ },
30803
+ {
30804
+ "name": "content",
30805
+ "description": null,
30806
+ "args": [],
30807
+ "type": {
30808
+ "kind": "SCALAR",
30809
+ "name": "String",
30810
+ "ofType": null
30811
+ },
30812
+ "isDeprecated": false,
30813
+ "deprecationReason": null
30814
+ }
30815
+ ],
30816
+ "inputFields": null,
30817
+ "interfaces": [],
30818
+ "enumValues": null,
30819
+ "possibleTypes": null
30820
+ },
30738
30821
  {
30739
30822
  "kind": "OBJECT",
30740
30823
  "name": "Tag",
package/lib/types.js CHANGED
@@ -4487,6 +4487,7 @@
4487
4487
  * @property {...ABTNodeClient.NotificationActivity} activity
4488
4488
  * @property {...ABTNodeClient.UserInfo} actorInfo
4489
4489
  * @property {any} options
4490
+ * @property {...ABTNodeClient.TUTM} utm
4490
4491
  */
4491
4492
 
4492
4493
  /**
@@ -4499,6 +4500,7 @@
4499
4500
  * @property {string} link
4500
4501
  * @property {string} name
4501
4502
  * @property {string} title
4503
+ * @property {...ABTNodeClient.TUTM} utm
4502
4504
  */
4503
4505
 
4504
4506
  /**
@@ -6608,6 +6610,17 @@
6608
6610
  * @property {number} failed
6609
6611
  */
6610
6612
 
6613
+ /**
6614
+ * Structure of ABTNodeClient.TUTM
6615
+ *
6616
+ * @memberof ABTNodeClient
6617
+ * @typedef {object} ABTNodeClient.TUTM
6618
+ * @property {string} source
6619
+ * @property {string} medium
6620
+ * @property {string} campaign
6621
+ * @property {string} content
6622
+ */
6623
+
6611
6624
  /**
6612
6625
  * Structure of ABTNodeClient.Tag
6613
6626
  *