@singi-labs/sifa-sdk 0.12.33 → 0.12.34
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/{feed-D2ZV8Eaj.d.cts → feed-C8aHEPw4.d.cts} +5 -0
- package/dist/{feed-D2ZV8Eaj.d.ts → feed-C8aHEPw4.d.ts} +5 -0
- package/dist/{index-CtWYlM7v.d.ts → index-Bf_BI0TG.d.ts} +2 -2
- package/dist/{index-CQiMQ3NO.d.ts → index-CBx6UJvX.d.ts} +4 -2
- package/dist/{index-DhO1kFRj.d.cts → index-CEoJMzkP.d.cts} +2 -2
- package/dist/{index-D-Vlq0r4.d.cts → index-DMN5tQBL.d.cts} +4 -2
- package/dist/index.cjs +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/{org-BjiTIiWq.d.ts → org-C8LR9MpF.d.ts} +1 -1
- package/dist/{org-CcbXH1FW.d.cts → org-OFRiuRqU.d.cts} +1 -1
- package/dist/query/fetchers/index.cjs +8 -0
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +3 -3
- package/dist/query/fetchers/index.d.ts +3 -3
- package/dist/query/fetchers/index.js +8 -0
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +8 -0
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.d.cts +3 -3
- package/dist/query/hooks/index.d.ts +3 -3
- package/dist/query/hooks/index.js +8 -0
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +8 -0
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +5 -5
- package/dist/query/index.d.ts +5 -5
- package/dist/query/index.js +8 -0
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +8 -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 +8 -0
- package/dist/schemas/index.js.map +1 -1
- package/package.json +1 -1
package/dist/query/index.cjs
CHANGED
|
@@ -694,6 +694,14 @@ var EntitySelectResponseSchema = zod.z.object({
|
|
|
694
694
|
kind: zod.z.string(),
|
|
695
695
|
canonicalName: zod.z.string(),
|
|
696
696
|
domain: zod.z.string().nullable(),
|
|
697
|
+
/**
|
|
698
|
+
* The entity's website, gated to sources trustworthy enough to prefill into a
|
|
699
|
+
* record the user signs. Narrower than `domain`, which is a display value and
|
|
700
|
+
* may come from a crawl. Null when the entity has no such source.
|
|
701
|
+
*/
|
|
702
|
+
website: httpUrlNullable.default(null),
|
|
703
|
+
/** Which tier `website` came from. Crawled is never an accepted source. */
|
|
704
|
+
websiteTier: zod.z.enum(["org", "curated"]).nullable().default(null),
|
|
697
705
|
entityRef: httpUrlNullable
|
|
698
706
|
});
|
|
699
707
|
var EntityImportSearchResponseSchema = zod.z.object({
|