@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.
- package/dist/index.cjs +29 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -3
- package/dist/index.d.ts +28 -3
- package/dist/index.js +28 -2
- package/dist/index.js.map +1 -1
- package/dist/{profile-investment-CmiQxk5C.d.cts → profile-investment-CIG7Hy8g.d.cts} +16 -1
- package/dist/{profile-investment-CmiQxk5C.d.ts → profile-investment-CIG7Hy8g.d.ts} +16 -1
- package/dist/publishing/index.cjs +5 -0
- package/dist/publishing/index.cjs.map +1 -1
- package/dist/publishing/index.js +5 -0
- package/dist/publishing/index.js.map +1 -1
- package/dist/query/fetchers/index.cjs +5 -0
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.js +5 -0
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +5 -0
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.js +5 -0
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/schemas/index.cjs +6 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +6 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/write/index.cjs +7 -2
- package/dist/schemas/write/index.cjs.map +1 -1
- package/dist/schemas/write/index.js +7 -2
- package/dist/schemas/write/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3307,6 +3307,11 @@ var externalRecordRefSchema = zod.z.object({
|
|
|
3307
3307
|
uri: atUriSchema,
|
|
3308
3308
|
cid: cidSchema.optional()
|
|
3309
3309
|
});
|
|
3310
|
+
zod.z.object({
|
|
3311
|
+
name: zod.z.string().min(1).refine(maxGraphemes(256)).max(2560),
|
|
3312
|
+
did: didSchema.optional(),
|
|
3313
|
+
entityRef: uriSchema.optional()
|
|
3314
|
+
}).passthrough();
|
|
3310
3315
|
var selfLabelsSchema = zod.z.object({
|
|
3311
3316
|
$type: zod.z.literal("com.atproto.label.defs#selfLabels").optional(),
|
|
3312
3317
|
values: zod.z.array(zod.z.object({ val: zod.z.string() }))
|