@singi-labs/sifa-sdk 0.12.28 → 0.12.30
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-DdY7S5nN.d.cts → adult-content-BHIB4rxu.d.cts} +8 -0
- package/dist/{adult-content-DdY7S5nN.d.ts → adult-content-BHIB4rxu.d.ts} +8 -0
- package/dist/{index-ipyzSVry.d.cts → index-C95t5Gg5.d.cts} +2 -2
- package/dist/{index-wMuFhu7d.d.ts → index-CZAG8uku.d.ts} +3 -3
- package/dist/{index-ZXWW6RsR.d.cts → index-O2oJHRq0.d.cts} +3 -3
- package/dist/{index-B6GHpvcg.d.ts → index-ZoAKneCP.d.ts} +2 -2
- package/dist/index.cjs +33 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -4
- package/dist/index.d.ts +14 -4
- package/dist/index.js +33 -2
- package/dist/index.js.map +1 -1
- package/dist/{org-Dme1VvNa.d.cts → org-DWAqK-TV.d.cts} +1 -1
- package/dist/{org-CLRdUB1W.d.ts → org-Octhy3vS.d.ts} +1 -1
- package/dist/{profile-summary-DjRf3Snf.d.cts → profile-summary-DsaEk_GD.d.cts} +1 -1
- package/dist/{profile-summary-B9SuY-EU.d.ts → profile-summary-sWTKu58A.d.ts} +1 -1
- package/dist/query/fetchers/index.cjs +4 -1
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +4 -4
- package/dist/query/fetchers/index.d.ts +4 -4
- package/dist/query/fetchers/index.js +4 -1
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +4 -1
- 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 +4 -1
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +4 -1
- 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 +4 -1
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +1 -0
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +4 -1
- package/dist/schemas/index.d.ts +4 -1
- package/dist/schemas/index.js +1 -0
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/write/index.cjs +40 -1
- package/dist/schemas/write/index.cjs.map +1 -1
- package/dist/schemas/write/index.d.cts +1 -0
- package/dist/schemas/write/index.d.ts +1 -0
- package/dist/schemas/write/index.js +40 -1
- package/dist/schemas/write/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-
|
|
1
|
+
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.cjs';
|
|
2
2
|
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-D2ZV8Eaj.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';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-
|
|
1
|
+
import { E as ExternalAccount, S as SkillSuggestion, a as ActivityLabel } from './adult-content-BHIB4rxu.js';
|
|
2
2
|
import { F as FollowFeedPage, a as FollowProfileItem, b as FeatureAllowlistEntry, c as FeatureFlag } from './feed-D2ZV8Eaj.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';
|
|
@@ -1080,7 +1080,10 @@ async function castRoadmapVote(config, key, options = {}) {
|
|
|
1080
1080
|
try {
|
|
1081
1081
|
const res = await fetchFn(url, {
|
|
1082
1082
|
method: "POST",
|
|
1083
|
-
|
|
1083
|
+
// No body: the item key is in the URL. Do NOT declare a JSON content-type
|
|
1084
|
+
// for an empty body — Fastify rejects that with a 400 before the handler
|
|
1085
|
+
// runs. Only forward caller-provided headers.
|
|
1086
|
+
...options.headers ? { headers: options.headers } : {},
|
|
1084
1087
|
credentials: options.credentials ?? "include",
|
|
1085
1088
|
signal: options.signal ?? AbortSignal.timeout(options.timeoutMs ?? 1e4)
|
|
1086
1089
|
});
|