···293293 "type": "string",
294294 "format": "at-uri",
295295 "description": "if the actor is followed by this DID, contains the AT-URI of the follow record"
296296+ },
297297+ "blocking": {
298298+ "type": "string",
299299+ "format": "at-uri",
300300+ "description": "if the actor blocks this DID, this is the AT-URI of the block record"
301301+ },
302302+ "blockedBy": {
303303+ "type": "string",
304304+ "format": "at-uri",
305305+ "description": "if the actor is blocked by this DID, contains the AT-URI of the block record"
306306+ },
307307+ "blockingByList": {
308308+ "type": "string",
309309+ "format": "at-uri",
310310+ "description": "if the actor blocks this DID via a block list, this is the AT-URI of the listblock record"
311311+ },
312312+ "blockedByList": {
313313+ "type": "string",
314314+ "format": "at-uri",
315315+ "description": "if the actor is blocked by this DID via a block list, contains the AT-URI of the listblock record"
296316 }
297317 }
298318 }
···9999const _referencelistSchema = /*#__PURE__*/ v.literal('app.bsky.graph.defs#referencelist');
100100const _relationshipSchema = /*#__PURE__*/ v.object({
101101 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.graph.defs#relationship')),
102102+ /**
103103+ * if the actor is blocked by this DID, contains the AT-URI of the block record
104104+ */
105105+ blockedBy: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
106106+ /**
107107+ * if the actor is blocked by this DID via a block list, contains the AT-URI of the listblock record
108108+ */
109109+ blockedByList: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
110110+ /**
111111+ * if the actor blocks this DID, this is the AT-URI of the block record
112112+ */
113113+ blocking: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
114114+ /**
115115+ * if the actor blocks this DID via a block list, this is the AT-URI of the listblock record
116116+ */
117117+ blockingByList: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()),
102118 did: /*#__PURE__*/ v.didString(),
103119 /**
104120 * if the actor is followed by this DID, contains the AT-URI of the follow record
+1-1
packages/definitions/ozone/lexicons/README.md
···33this directory contains lexicon documents pulled from the following sources:
4455- https://github.com/bluesky-social/atproto.git
66- - commit: 151a7b0c6d103d5fec23bb0c53321a5f0f150426
66+ - commit: a6e16cd0cd3029caf63ce2312dc5207532654763
···126126 },
127127 /**
128128 * Comment describing the reason for the override.
129129+ * @minLength 1
129130 */
130130- comment: /*#__PURE__*/ v.string(),
131131+ comment: /*#__PURE__*/ v.constrain(/*#__PURE__*/ v.string(), [/*#__PURE__*/ v.stringLength(1)]),
131132 /**
132133 * The status to be set for the user decided by a moderator, overriding whatever value the user had previously. Use reset to default to original state.
133134 */
···685686 ),
686687 /**
687688 * Comment describing the reason for the revocation.
689689+ * @minLength 1
688690 */
689689- comment: /*#__PURE__*/ v.string(),
691691+ comment: /*#__PURE__*/ v.constrain(/*#__PURE__*/ v.string(), [/*#__PURE__*/ v.stringLength(1)]),
690692});
691693const _scheduleTakedownEventSchema = /*#__PURE__*/ v.object({
692694 $type: /*#__PURE__*/ v.optional(