@pylonsync/react 0.3.274 → 0.3.276

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/ssr.ts +3 -0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.3.274",
6
+ "version": "0.3.276",
7
7
  "type": "module",
8
8
  "main": "src/index.ts",
9
9
  "types": "src/index.ts",
@@ -12,8 +12,8 @@
12
12
  "check": "tsc -p tsconfig.json --noEmit"
13
13
  },
14
14
  "dependencies": {
15
- "@pylonsync/sdk": "0.3.274",
16
- "@pylonsync/sync": "0.3.274"
15
+ "@pylonsync/sdk": "0.3.276",
16
+ "@pylonsync/sync": "0.3.276"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "react": ">=19.0.0"
package/src/ssr.ts CHANGED
@@ -181,6 +181,9 @@ export interface Metadata {
181
181
  imageAlt?: string;
182
182
  url?: string;
183
183
  type?: string;
184
+ /** `og:site_name` — the brand the page belongs to (e.g. "Pylon").
185
+ * Discord and other unfurlers show this above the title. */
186
+ siteName?: string;
184
187
  };
185
188
  twitter?: {
186
189
  card?: string;