@adobe/spacecat-shared-rum-api-client 2.36.2 → 2.36.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [@adobe/spacecat-shared-rum-api-client-v2.36.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.36.3...@adobe/spacecat-shared-rum-api-client-v2.36.4) (2025-08-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **rum-api-client:** harden LLM-related classifications ([#916](https://github.com/adobe/spacecat-shared/issues/916)) ([63573d7](https://github.com/adobe/spacecat-shared/commit/63573d71af9e2452f3cf4377efcddd6e7e4267c0))
7
+
8
+ # [@adobe/spacecat-shared-rum-api-client-v2.36.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.36.2...@adobe/spacecat-shared-rum-api-client-v2.36.3) (2025-08-09)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update external fixes ([#899](https://github.com/adobe/spacecat-shared/issues/899)) ([c2cc342](https://github.com/adobe/spacecat-shared/commit/c2cc3422a0a4a3f8d1a2724847da456bf801ff59))
14
+
1
15
  # [@adobe/spacecat-shared-rum-api-client-v2.36.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-rum-api-client-v2.36.1...@adobe/spacecat-shared-rum-api-client-v2.36.2) (2025-08-04)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-rum-api-client",
3
- "version": "2.36.2",
3
+ "version": "2.36.4",
4
4
  "description": "Shared modules of the Spacecat Services - Rum API client",
5
5
  "type": "module",
6
6
  "engines": {
@@ -46,7 +46,7 @@
46
46
  "devDependencies": {
47
47
  "chai": "5.2.1",
48
48
  "chai-as-promised": "8.0.1",
49
- "nock": "14.0.8",
49
+ "nock": "14.0.9",
50
50
  "sinon": "20.0.0",
51
51
  "sinon-chai": "4.0.0",
52
52
  "typescript": "5.9.2"
@@ -41,7 +41,7 @@ const referrers = {
41
41
  social: /^\b((www\.)?x)\b|(.*(facebook|tiktok|snapchat|twitter|pinterest|reddit|linkedin|threads|quora|discord|tumblr|mastodon|bluesky|instagram).*)$/,
42
42
  ad: /googlesyndication|2mdn|doubleclick|syndicatedsearch/,
43
43
  video: /youtube|vimeo|twitch|dailymotion|wistia/,
44
- llm: /chatgpt|openai|perplexity|claude|gemini\.google|copilot\.microsoft/,
44
+ llm: /\b(chatgpt|openai)\b|perplexity|claude|gemini\.google|copilot\.microsoft/,
45
45
  };
46
46
 
47
47
  const mediums = {
@@ -103,7 +103,7 @@ const vendorClassifications = [
103
103
  { regex: /amazon|ctv/i, result: 'amazon' },
104
104
  { regex: /dailymotion/i, result: 'dailymotion' },
105
105
  { regex: /twitch/i, result: 'twitch' },
106
- { regex: /chatgpt|openai/i, result: 'openai' },
106
+ { regex: /\b(chatgpt|openai)\b/i, result: 'openai' },
107
107
  { regex: /perplexity/i, result: 'perplexity' },
108
108
  { regex: /claude/i, result: 'claude' },
109
109
  { regex: /direct/i, result: 'direct' },