Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

fix ref on actor status lexicon

+8 -5
+1 -1
packages/jetstring/src/index.ts
··· 11 11 import { 12 12 Record as FmTealAlphaPlay, 13 13 isRecord as isTealAlphaPlay, 14 - } from "@teal/lexicons/src/types/fm/teal/alpha/play"; 14 + } from "@teal/lexicons/src/types/fm/teal/alpha/feed/play"; 15 15 16 16 class Handler { 17 17 private static instance: Handler;
+4 -1
packages/lexicons/real/fm/teal/alpha/actor/status.json
··· 15 15 "format": "datetime", 16 16 "description": "The unix timestamp of when the item was recorded" 17 17 }, 18 - "item": { "type": "union", "refs": ["fm.teal.alpha.play#record"] } 18 + "item": { 19 + "type": "union", 20 + "refs": ["fm.teal.alpha.feed.play#record"] 21 + } 19 22 } 20 23 } 21 24 }
+1 -1
packages/lexicons/src/lexicons.ts
··· 236 236 }, 237 237 item: { 238 238 type: 'union', 239 - refs: ['lex:fm.teal.alpha.play#record'], 239 + refs: ['lex:fm.teal.alpha.feed.play#record'], 240 240 }, 241 241 }, 242 242 },
+2 -2
packages/lexicons/src/types/fm/teal/alpha/actor/status.ts
··· 5 5 import { lexicons } from '../../../../../lexicons' 6 6 import { isObj, hasProp } from '../../../../../util' 7 7 import { CID } from 'multiformats/cid' 8 - import * as FmTealAlphaPlay from '../play' 8 + import * as FmTealAlphaFeedPlay from '../feed/play' 9 9 10 10 export interface Record { 11 11 /** The unix timestamp of when the item was recorded */ 12 12 time: string 13 - item: FmTealAlphaPlay.Record | { $type: string; [k: string]: unknown } 13 + item: FmTealAlphaFeedPlay.Record | { $type: string; [k: string]: unknown } 14 14 [k: string]: unknown 15 15 } 16 16