···1212import { login } from '#/pages/login'
1313import { env } from '#/lib/env'
1414import { page } from '#/lib/view'
1515-import * as Status from '#/lexicon/types/com/example/status'
1515+import * as Status from '#/lexicon/types/xyz/statusphere/status'
1616import * as Profile from '#/lexicon/types/app/bsky/actor/profile'
17171818type Session = { did: string }
···217217 // Construct & validate their status record
218218 const rkey = TID.nextStr()
219219 const record = {
220220- $type: 'com.example.status',
220220+ $type: 'xyz.statusphere.status',
221221 status: req.body?.status,
222222 createdAt: new Date().toISOString(),
223223 }
···233233 // Write the status record to the user's repository
234234 const res = await agent.com.atproto.repo.putRecord({
235235 repo: agent.assertDid,
236236- collection: 'com.example.status',
236236+ collection: 'xyz.statusphere.status',
237237 rkey,
238238 record,
239239 validate: false,