@sensiblestats/widget-sdk 0.4.0 → 0.5.0

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,5 +1,15 @@
1
1
  # @sensiblestats/widget-sdk
2
2
 
3
+ ## 0.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Show competition name on betting insight cards. This shipped to master in
8
+ `6d629e6b` but never reached npm because the version wasn't bumped, so the
9
+ release workflow's `--tolerate-republish` skipped every package. This changeset
10
+ bumps all three so the change actually publishes (widget-embed re-bundles
11
+ widget-react, so it must be republished too).
12
+
3
13
  ## 0.4.0
4
14
 
5
15
  ### Minor Changes
package/dist/index.d.cts CHANGED
@@ -99,6 +99,7 @@ interface BettingInsight {
99
99
  disclaimer?: string | null;
100
100
  homeTeamName?: string;
101
101
  awayTeamName?: string;
102
+ competitionName?: string;
102
103
  scopes?: {
103
104
  key: string;
104
105
  label: string;
package/dist/index.d.ts CHANGED
@@ -99,6 +99,7 @@ interface BettingInsight {
99
99
  disclaimer?: string | null;
100
100
  homeTeamName?: string;
101
101
  awayTeamName?: string;
102
+ competitionName?: string;
102
103
  scopes?: {
103
104
  key: string;
104
105
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensiblestats/widget-sdk",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Headless browser SDK for the SensibleStats chat widget gateway.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",