@singi-labs/sifa-sdk 0.11.22 → 0.11.24

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 (43) hide show
  1. package/dist/{adult-content-B6aagF8N.d.cts → adult-content-BaQjQsbN.d.cts} +78 -0
  2. package/dist/{adult-content-B6aagF8N.d.ts → adult-content-BaQjQsbN.d.ts} +78 -0
  3. package/dist/{feed-BaHtJXYR.d.cts → feed--omSiO_S.d.cts} +74 -1
  4. package/dist/{feed-BaHtJXYR.d.ts → feed--omSiO_S.d.ts} +74 -1
  5. package/dist/index-BV2QGy4u.d.ts +261 -0
  6. package/dist/index-C4UvwkKA.d.cts +261 -0
  7. package/dist/index-CHPSoiWb.d.cts +611 -0
  8. package/dist/index-Cw0Ows0u.d.ts +611 -0
  9. package/dist/index.cjs +56 -1
  10. package/dist/index.cjs.map +1 -1
  11. package/dist/index.d.cts +27 -7
  12. package/dist/index.d.ts +27 -7
  13. package/dist/index.js +53 -2
  14. package/dist/index.js.map +1 -1
  15. package/dist/{keys-D3urUnj8.d.cts → keys-BdLh1txD.d.cts} +2 -2
  16. package/dist/{keys-cT1ORNOu.d.ts → keys-Czq74eql.d.ts} +2 -2
  17. package/dist/query/fetchers/index.cjs +11 -0
  18. package/dist/query/fetchers/index.cjs.map +1 -1
  19. package/dist/query/fetchers/index.d.cts +4 -247
  20. package/dist/query/fetchers/index.d.ts +4 -247
  21. package/dist/query/fetchers/index.js +11 -0
  22. package/dist/query/fetchers/index.js.map +1 -1
  23. package/dist/query/hooks/index.cjs +11 -0
  24. package/dist/query/hooks/index.cjs.map +1 -1
  25. package/dist/query/hooks/index.d.cts +6 -558
  26. package/dist/query/hooks/index.d.ts +6 -558
  27. package/dist/query/hooks/index.js +11 -0
  28. package/dist/query/hooks/index.js.map +1 -1
  29. package/dist/query/index.cjs +47 -0
  30. package/dist/query/index.cjs.map +1 -1
  31. package/dist/query/index.d.cts +6 -6
  32. package/dist/query/index.d.ts +6 -6
  33. package/dist/query/index.js +44 -1
  34. package/dist/query/index.js.map +1 -1
  35. package/dist/schemas/index.cjs +37 -0
  36. package/dist/schemas/index.cjs.map +1 -1
  37. package/dist/schemas/index.d.cts +30 -397
  38. package/dist/schemas/index.d.ts +30 -397
  39. package/dist/schemas/index.js +32 -1
  40. package/dist/schemas/index.js.map +1 -1
  41. package/dist/shared-CHCY7Lst.d.cts +416 -0
  42. package/dist/shared-CHCY7Lst.d.ts +416 -0
  43. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
- import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-B6aagF8N.cjs';
2
- import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-BaHtJXYR.cjs';
1
+ import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BaQjQsbN.cjs';
2
+ import { y as FollowFeedPage, B as FollowProfileItem, q as FeatureAllowlistEntry, s as FeatureFlag } from './feed--omSiO_S.cjs';
3
3
 
4
4
  /**
5
5
  * Foundation HTTP client for talking to the Sifa AppView.
@@ -1,5 +1,5 @@
1
- import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-B6aagF8N.js';
2
- import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-BaHtJXYR.js';
1
+ import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BaQjQsbN.js';
2
+ import { y as FollowFeedPage, B as FollowProfileItem, q as FeatureAllowlistEntry, s as FeatureFlag } from './feed--omSiO_S.js';
3
3
 
4
4
  /**
5
5
  * Foundation HTTP client for talking to the Sifa AppView.
@@ -1137,6 +1137,17 @@ var EntitySelectResponseSchema = zod.z.object({
1137
1137
  var EntityImportSearchResponseSchema = zod.z.object({
1138
1138
  results: zod.z.array(EntitySearchResultSchema)
1139
1139
  });
1140
+ zod.z.object({
1141
+ domain: zod.z.string().min(1).max(253)
1142
+ });
1143
+ zod.z.object({
1144
+ results: zod.z.array(EntitySearchResultSchema),
1145
+ canMint: zod.z.boolean()
1146
+ });
1147
+ zod.z.object({
1148
+ result: EntitySearchResultSchema,
1149
+ pending: zod.z.boolean()
1150
+ });
1140
1151
 
1141
1152
  // src/query/fetchers/entities.ts
1142
1153
  var EMPTY_SEARCH2 = { results: [], hasMore: false };