@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.js';
|
|
2
|
-
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-
|
|
2
|
+
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-C8aHEPw4.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { f as OrgNotificationEmailRequestInput, b as OrgDomainChallengeRequestInput, O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, d as OrgDomainVerifyRequestInput } from './org-settings-CmaSX5ZI.js';
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.cjs';
|
|
2
|
-
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-
|
|
2
|
+
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-C8aHEPw4.cjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { f as OrgNotificationEmailRequestInput, b as OrgDomainChallengeRequestInput, O as OrgClaimRequestInput, h as OrgProfileUpdateRequestInput, d as OrgDomainVerifyRequestInput } from './org-settings-CmaSX5ZI.cjs';
|
|
5
5
|
|
|
@@ -1202,6 +1202,14 @@ var EntitySelectResponseSchema = zod.z.object({
|
|
|
1202
1202
|
kind: zod.z.string(),
|
|
1203
1203
|
canonicalName: zod.z.string(),
|
|
1204
1204
|
domain: zod.z.string().nullable(),
|
|
1205
|
+
/**
|
|
1206
|
+
* The entity's website, gated to sources trustworthy enough to prefill into a
|
|
1207
|
+
* record the user signs. Narrower than `domain`, which is a display value and
|
|
1208
|
+
* may come from a crawl. Null when the entity has no such source.
|
|
1209
|
+
*/
|
|
1210
|
+
website: httpUrlNullable.default(null),
|
|
1211
|
+
/** Which tier `website` came from. Crawled is never an accepted source. */
|
|
1212
|
+
websiteTier: zod.z.enum(["org", "curated"]).nullable().default(null),
|
|
1205
1213
|
entityRef: httpUrlNullable
|
|
1206
1214
|
});
|
|
1207
1215
|
var EntityImportSearchResponseSchema = zod.z.object({
|