@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.
Files changed (39) hide show
  1. package/dist/{feed-D2ZV8Eaj.d.cts → feed-C8aHEPw4.d.cts} +5 -0
  2. package/dist/{feed-D2ZV8Eaj.d.ts → feed-C8aHEPw4.d.ts} +5 -0
  3. package/dist/{index-CtWYlM7v.d.ts → index-Bf_BI0TG.d.ts} +2 -2
  4. package/dist/{index-CQiMQ3NO.d.ts → index-CBx6UJvX.d.ts} +4 -2
  5. package/dist/{index-DhO1kFRj.d.cts → index-CEoJMzkP.d.cts} +2 -2
  6. package/dist/{index-D-Vlq0r4.d.cts → index-DMN5tQBL.d.cts} +4 -2
  7. package/dist/index.cjs +9 -1
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +2 -2
  10. package/dist/index.d.ts +2 -2
  11. package/dist/index.js +9 -1
  12. package/dist/index.js.map +1 -1
  13. package/dist/{org-BjiTIiWq.d.ts → org-C8LR9MpF.d.ts} +1 -1
  14. package/dist/{org-CcbXH1FW.d.cts → org-OFRiuRqU.d.cts} +1 -1
  15. package/dist/query/fetchers/index.cjs +8 -0
  16. package/dist/query/fetchers/index.cjs.map +1 -1
  17. package/dist/query/fetchers/index.d.cts +3 -3
  18. package/dist/query/fetchers/index.d.ts +3 -3
  19. package/dist/query/fetchers/index.js +8 -0
  20. package/dist/query/fetchers/index.js.map +1 -1
  21. package/dist/query/hooks/index.cjs +8 -0
  22. package/dist/query/hooks/index.cjs.map +1 -1
  23. package/dist/query/hooks/index.d.cts +3 -3
  24. package/dist/query/hooks/index.d.ts +3 -3
  25. package/dist/query/hooks/index.js +8 -0
  26. package/dist/query/hooks/index.js.map +1 -1
  27. package/dist/query/index.cjs +8 -0
  28. package/dist/query/index.cjs.map +1 -1
  29. package/dist/query/index.d.cts +5 -5
  30. package/dist/query/index.d.ts +5 -5
  31. package/dist/query/index.js +8 -0
  32. package/dist/query/index.js.map +1 -1
  33. package/dist/schemas/index.cjs +8 -0
  34. package/dist/schemas/index.cjs.map +1 -1
  35. package/dist/schemas/index.d.cts +1 -1
  36. package/dist/schemas/index.d.ts +1 -1
  37. package/dist/schemas/index.js +8 -0
  38. package/dist/schemas/index.js.map +1 -1
  39. package/package.json +1 -1
@@ -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({