@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.
- package/dist/{adult-content-B6aagF8N.d.cts → adult-content-BaQjQsbN.d.cts} +78 -0
- package/dist/{adult-content-B6aagF8N.d.ts → adult-content-BaQjQsbN.d.ts} +78 -0
- package/dist/{feed-BaHtJXYR.d.cts → feed--omSiO_S.d.cts} +74 -1
- package/dist/{feed-BaHtJXYR.d.ts → feed--omSiO_S.d.ts} +74 -1
- package/dist/index-BV2QGy4u.d.ts +261 -0
- package/dist/index-C4UvwkKA.d.cts +261 -0
- package/dist/index-CHPSoiWb.d.cts +611 -0
- package/dist/index-Cw0Ows0u.d.ts +611 -0
- package/dist/index.cjs +56 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -7
- package/dist/index.d.ts +27 -7
- package/dist/index.js +53 -2
- package/dist/index.js.map +1 -1
- package/dist/{keys-D3urUnj8.d.cts → keys-BdLh1txD.d.cts} +2 -2
- package/dist/{keys-cT1ORNOu.d.ts → keys-Czq74eql.d.ts} +2 -2
- package/dist/query/fetchers/index.cjs +11 -0
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +4 -247
- package/dist/query/fetchers/index.d.ts +4 -247
- package/dist/query/fetchers/index.js +11 -0
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +11 -0
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.d.cts +6 -558
- package/dist/query/hooks/index.d.ts +6 -558
- package/dist/query/hooks/index.js +11 -0
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +47 -0
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +6 -6
- package/dist/query/index.d.ts +6 -6
- package/dist/query/index.js +44 -1
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +37 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +30 -397
- package/dist/schemas/index.d.ts +30 -397
- package/dist/schemas/index.js +32 -1
- package/dist/schemas/index.js.map +1 -1
- package/dist/shared-CHCY7Lst.d.cts +416 -0
- package/dist/shared-CHCY7Lst.d.ts +416 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-
|
|
2
|
-
import {
|
|
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-
|
|
2
|
-
import {
|
|
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 };
|