Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Jan 25, 2024
2 parents 812bf6c + 43eb405 commit c793246
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lexicons/app/bsky/graph/getRelationships.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"items": {
"type": "union",
"refs": [
"app.bsky.graph.def#relationship",
"app.bsky.graph.defs#relationship",
"app.bsky.graph.defs#notFoundActor"
]
}
Expand Down
2 changes: 1 addition & 1 deletion packages/api/src/client/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,7 @@ export const schemaDict = {
items: {
type: 'union',
refs: [
'lex:app.bsky.graph.def#relationship',
'lex:app.bsky.graph.defs#relationship',
'lex:app.bsky.graph.defs#notFoundActor',
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { ValidationResult, BlobRef } from '@atproto/lexicon'
import { isObj, hasProp } from '../../../../util'
import { lexicons } from '../../../../lexicons'
import { CID } from 'multiformats/cid'
import * as AppBskyGraphDef from './def'
import * as AppBskyGraphDefs from './defs'

export interface QueryParams {
Expand All @@ -19,7 +18,7 @@ export type InputSchema = undefined
export interface OutputSchema {
actor?: string
relationships: (
| AppBskyGraphDef.Relationship
| AppBskyGraphDefs.Relationship
| AppBskyGraphDefs.NotFoundActor
| { $type: string; [k: string]: unknown }
)[]
Expand Down
2 changes: 1 addition & 1 deletion packages/bsky/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,7 @@ export const schemaDict = {
items: {
type: 'union',
refs: [
'lex:app.bsky.graph.def#relationship',
'lex:app.bsky.graph.defs#relationship',
'lex:app.bsky.graph.defs#notFoundActor',
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { lexicons } from '../../../../lexicons'
import { isObj, hasProp } from '../../../../util'
import { CID } from 'multiformats/cid'
import { HandlerAuth } from '@atproto/xrpc-server'
import * as AppBskyGraphDef from './def'
import * as AppBskyGraphDefs from './defs'

export interface QueryParams {
Expand All @@ -20,7 +19,7 @@ export type InputSchema = undefined
export interface OutputSchema {
actor?: string
relationships: (
| AppBskyGraphDef.Relationship
| AppBskyGraphDefs.Relationship
| AppBskyGraphDefs.NotFoundActor
| { $type: string; [k: string]: unknown }
)[]
Expand Down
2 changes: 1 addition & 1 deletion packages/ozone/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,7 @@ export const schemaDict = {
items: {
type: 'union',
refs: [
'lex:app.bsky.graph.def#relationship',
'lex:app.bsky.graph.defs#relationship',
'lex:app.bsky.graph.defs#notFoundActor',
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { lexicons } from '../../../../lexicons'
import { isObj, hasProp } from '../../../../util'
import { CID } from 'multiformats/cid'
import { HandlerAuth } from '@atproto/xrpc-server'
import * as AppBskyGraphDef from './def'
import * as AppBskyGraphDefs from './defs'

export interface QueryParams {
Expand All @@ -20,7 +19,7 @@ export type InputSchema = undefined
export interface OutputSchema {
actor?: string
relationships: (
| AppBskyGraphDef.Relationship
| AppBskyGraphDefs.Relationship
| AppBskyGraphDefs.NotFoundActor
| { $type: string; [k: string]: unknown }
)[]
Expand Down
2 changes: 1 addition & 1 deletion packages/pds/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7436,7 +7436,7 @@ export const schemaDict = {
items: {
type: 'union',
refs: [
'lex:app.bsky.graph.def#relationship',
'lex:app.bsky.graph.defs#relationship',
'lex:app.bsky.graph.defs#notFoundActor',
],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { lexicons } from '../../../../lexicons'
import { isObj, hasProp } from '../../../../util'
import { CID } from 'multiformats/cid'
import { HandlerAuth } from '@atproto/xrpc-server'
import * as AppBskyGraphDef from './def'
import * as AppBskyGraphDefs from './defs'

export interface QueryParams {
Expand All @@ -20,7 +19,7 @@ export type InputSchema = undefined
export interface OutputSchema {
actor?: string
relationships: (
| AppBskyGraphDef.Relationship
| AppBskyGraphDefs.Relationship
| AppBskyGraphDefs.NotFoundActor
| { $type: string; [k: string]: unknown }
)[]
Expand Down

0 comments on commit c793246

Please sign in to comment.