Live video on the AT Protocol

Merge pull request #686 from notjuliet/fix-local-ref

fix local ref in lexicon files

authored by Eli Mallon and committed by GitHub 676d9fb3 146dcba9

+11 -11
+2 -2
js/docs/src/content/docs/lex-reference/chat/place-stream-chat-defs.md
··· 23 23 | `record` | `unknown` | ✅ | | | 24 24 | `indexedAt` | `string` | ✅ | | Format: `datetime` | 25 25 | `chatProfile` | [`place.stream.chat.profile`](/lex-reference/place-stream-chat-profile) | ❌ | | | 26 - | `replyTo` | Union of:<br/>&nbsp;&nbsp;[`place.stream.chat.defs#messageView`](/lex-reference/place-stream-chat-defs#messageview) | ❌ | | | 26 + | `replyTo` | Union of:<br/>&nbsp;&nbsp;[`#messageView`](#messageview) | ❌ | | | 27 27 | `deleted` | `boolean` | ❌ | If true, this message has been deleted or labeled and should be cleared from the cache | | 28 28 29 29 --- ··· 64 64 }, 65 65 "replyTo": { 66 66 "type": "union", 67 - "refs": ["place.stream.chat.defs#messageView"] 67 + "refs": ["#messageView"] 68 68 }, 69 69 "deleted": { 70 70 "type": "boolean",
+4 -4
js/docs/src/content/docs/lex-reference/chat/place-stream-chat-profile.md
··· 19 19 20 20 **Record Properties:** 21 21 22 - | Name | Type | Req'd | Description | Constraints | 23 - | ------- | ----------------------------------------------------------------------------------- | ----- | ----------- | ----------- | 24 - | `color` | [`place.stream.chat.profile#color`](/lex-reference/place-stream-chat-profile#color) | ❌ | | | 22 + | Name | Type | Req'd | Description | Constraints | 23 + | ------- | ------------------ | ----- | ----------- | ----------- | 24 + | `color` | [`#color`](#color) | ❌ | | | 25 25 26 26 --- 27 27 ··· 60 60 "properties": { 61 61 "color": { 62 62 "type": "ref", 63 - "ref": "place.stream.chat.profile#color" 63 + "ref": "#color" 64 64 } 65 65 } 66 66 }
+2 -2
js/docs/src/content/docs/lex-reference/place-stream-livestream.md
··· 61 61 | `author` | [`app.bsky.actor.defs#profileViewBasic`](https://github.com/bluesky-social/atproto/tree/main/lexicons/app/bsky/actor/defs.json#profileViewBasic) | ✅ | | | 62 62 | `record` | `unknown` | ✅ | | | 63 63 | `indexedAt` | `string` | ✅ | | Format: `datetime` | 64 - | `viewerCount` | [`place.stream.livestream#viewerCount`](/lex-reference/place-stream-livestream#viewercount) | ❌ | The number of viewers watching this livestream. Use when you can't reasonably use #viewerCount directly. | | 64 + | `viewerCount` | [`#viewerCount`](#viewercount) | ❌ | The number of viewers watching this livestream. Use when you can't reasonably use #viewerCount directly. | | 65 65 66 66 --- 67 67 ··· 186 186 "viewerCount": { 187 187 "type": "ref", 188 188 "description": "The number of viewers watching this livestream. Use when you can't reasonably use #viewerCount directly.", 189 - "ref": "place.stream.livestream#viewerCount" 189 + "ref": "#viewerCount" 190 190 } 191 191 } 192 192 },
+1 -1
lexicons/place/stream/chat/defs.json
··· 20 20 }, 21 21 "replyTo": { 22 22 "type": "union", 23 - "refs": ["place.stream.chat.defs#messageView"] 23 + "refs": ["#messageView"] 24 24 }, 25 25 "deleted": { 26 26 "type": "boolean",
+1 -1
lexicons/place/stream/chat/profile.json
··· 12 12 "properties": { 13 13 "color": { 14 14 "type": "ref", 15 - "ref": "place.stream.chat.profile#color" 15 + "ref": "#color" 16 16 } 17 17 } 18 18 }
+1 -1
lexicons/place/stream/livestream.json
··· 77 77 "viewerCount": { 78 78 "type": "ref", 79 79 "description": "The number of viewers watching this livestream. Use when you can't reasonably use #viewerCount directly.", 80 - "ref": "place.stream.livestream#viewerCount" 80 + "ref": "#viewerCount" 81 81 } 82 82 } 83 83 },