@singi-labs/sifa-sdk 0.18.12 → 0.18.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3305,6 +3305,11 @@ var externalRecordRefSchema = z.object({
3305
3305
  uri: atUriSchema,
3306
3306
  cid: cidSchema.optional()
3307
3307
  });
3308
+ z.object({
3309
+ name: z.string().min(1).refine(maxGraphemes(256)).max(2560),
3310
+ did: didSchema.optional(),
3311
+ entityRef: uriSchema.optional()
3312
+ }).passthrough();
3308
3313
  var selfLabelsSchema = z.object({
3309
3314
  $type: z.literal("com.atproto.label.defs#selfLabels").optional(),
3310
3315
  values: z.array(z.object({ val: z.string() }))