@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.
@@ -1855,6 +1855,11 @@ var externalRecordRefSchema = z.object({
1855
1855
  uri: atUriSchema,
1856
1856
  cid: cidSchema.optional()
1857
1857
  });
1858
+ z.object({
1859
+ name: z.string().min(1).refine(maxGraphemes(256)).max(2560),
1860
+ did: didSchema.optional(),
1861
+ entityRef: uriSchema.optional()
1862
+ }).passthrough();
1858
1863
  var selfLabelsSchema = z.object({
1859
1864
  $type: z.literal("com.atproto.label.defs#selfLabels").optional(),
1860
1865
  values: z.array(z.object({ val: z.string() }))