Skip to content

Commit

Permalink
🐛 Add missing union ref to ozone mod subject
Browse files Browse the repository at this point in the history
  • Loading branch information
foysalit committed Mar 5, 2025
1 parent 442fcce commit 39f56e1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lexicons/tools/ozone/moderation/defs.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@
"type": "union",
"refs": [
"com.atproto.admin.defs#repoRef",
"com.atproto.repo.strongRef"
"com.atproto.repo.strongRef",
"chat.bsky.convo.defs#messageRef"
]
},
"hosting": {
Expand Down
1 change: 1 addition & 0 deletions packages/api/src/client/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11779,6 +11779,7 @@ export const schemaDict = {
refs: [
'lex:com.atproto.admin.defs#repoRef',
'lex:com.atproto.repo.strongRef',
'lex:chat.bsky.convo.defs#messageRef',
],
},
hosting: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export interface SubjectStatusView {
subject:
| $Typed<ComAtprotoAdminDefs.RepoRef>
| $Typed<ComAtprotoRepoStrongRef.Main>
| $Typed<ChatBskyConvoDefs.MessageRef>
| { $type: string }
hosting?: $Typed<AccountHosting> | $Typed<RecordHosting> | { $type: string }
subjectBlobCids?: string[]
Expand Down
1 change: 1 addition & 0 deletions packages/ozone/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11779,6 +11779,7 @@ export const schemaDict = {
refs: [
'lex:com.atproto.admin.defs#repoRef',
'lex:com.atproto.repo.strongRef',
'lex:chat.bsky.convo.defs#messageRef',
],
},
hosting: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export interface SubjectStatusView {
subject:
| $Typed<ComAtprotoAdminDefs.RepoRef>
| $Typed<ComAtprotoRepoStrongRef.Main>
| $Typed<ChatBskyConvoDefs.MessageRef>
| { $type: string }
hosting?: $Typed<AccountHosting> | $Typed<RecordHosting> | { $type: string }
subjectBlobCids?: string[]
Expand Down
1 change: 1 addition & 0 deletions packages/pds/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11779,6 +11779,7 @@ export const schemaDict = {
refs: [
'lex:com.atproto.admin.defs#repoRef',
'lex:com.atproto.repo.strongRef',
'lex:chat.bsky.convo.defs#messageRef',
],
},
hosting: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export interface SubjectStatusView {
subject:
| $Typed<ComAtprotoAdminDefs.RepoRef>
| $Typed<ComAtprotoRepoStrongRef.Main>
| $Typed<ChatBskyConvoDefs.MessageRef>
| { $type: string }
hosting?: $Typed<AccountHosting> | $Typed<RecordHosting> | { $type: string }
subjectBlobCids?: string[]
Expand Down

0 comments on commit 39f56e1

Please sign in to comment.