@singi-labs/sifa-sdk 0.18.14 → 0.18.16

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 (49) hide show
  1. package/dist/{index-DIwi3bpk.d.cts → index-E2qQbMnv.d.cts} +10 -0
  2. package/dist/{index-DIwi3bpk.d.ts → index-E2qQbMnv.d.ts} +10 -0
  3. package/dist/index.cjs +13 -1
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.d.cts +32 -7
  6. package/dist/index.d.ts +32 -7
  7. package/dist/index.js +13 -2
  8. package/dist/index.js.map +1 -1
  9. package/dist/jsonld/index.d.cts +1 -1
  10. package/dist/jsonld/index.d.ts +1 -1
  11. package/dist/{network-map-DnQvqpqi.d.ts → network-map-BYdQF1tr.d.ts} +8 -4
  12. package/dist/{network-map-8RDsXsr0.d.cts → network-map-BdDqR9-B.d.cts} +8 -4
  13. package/dist/{org-DvnZsZx9.d.ts → org-BftCzySH.d.ts} +31 -3
  14. package/dist/{org-0uCYKpq1.d.cts → org-DhAmipS-.d.cts} +31 -3
  15. package/dist/{profile-investment-CIG7Hy8g.d.cts → profile-investment-vmHROP_v.d.cts} +5 -0
  16. package/dist/{profile-investment-CIG7Hy8g.d.ts → profile-investment-vmHROP_v.d.ts} +5 -0
  17. package/dist/{profile-summary-B9EQmnC7.d.cts → profile-summary-BeiM3TmH.d.cts} +1 -1
  18. package/dist/{profile-summary-nbzILRkf.d.ts → profile-summary-CKAuwczF.d.ts} +1 -1
  19. package/dist/query/fetchers/index.cjs +26 -0
  20. package/dist/query/fetchers/index.cjs.map +1 -1
  21. package/dist/query/fetchers/index.d.cts +6 -6
  22. package/dist/query/fetchers/index.d.ts +6 -6
  23. package/dist/query/fetchers/index.js +24 -1
  24. package/dist/query/fetchers/index.js.map +1 -1
  25. package/dist/query/hooks/index.cjs +106 -24
  26. package/dist/query/hooks/index.cjs.map +1 -1
  27. package/dist/query/hooks/index.d.cts +5 -5
  28. package/dist/query/hooks/index.d.ts +5 -5
  29. package/dist/query/hooks/index.js +104 -25
  30. package/dist/query/hooks/index.js.map +1 -1
  31. package/dist/query/index.cjs +104 -23
  32. package/dist/query/index.cjs.map +1 -1
  33. package/dist/query/index.d.cts +8 -8
  34. package/dist/query/index.d.ts +8 -8
  35. package/dist/query/index.js +99 -24
  36. package/dist/query/index.js.map +1 -1
  37. package/dist/resume/index.d.cts +1 -1
  38. package/dist/resume/index.d.ts +1 -1
  39. package/dist/schemas/index.cjs +5 -0
  40. package/dist/schemas/index.cjs.map +1 -1
  41. package/dist/schemas/index.d.cts +1 -1
  42. package/dist/schemas/index.d.ts +1 -1
  43. package/dist/schemas/index.js +5 -0
  44. package/dist/schemas/index.js.map +1 -1
  45. package/dist/{types-XejLm3AA.d.cts → types-2qTC_DBy.d.cts} +6 -1
  46. package/dist/{types-DqVbTzXo.d.ts → types-CLrLfvXz.d.ts} +6 -1
  47. package/dist/{use-org-notification-emails-BL2q3Vf2.d.cts → use-org-notification-emails-CR2PDfjF.d.cts} +19 -4
  48. package/dist/{use-org-notification-emails-BznKD18w.d.ts → use-org-notification-emails-CxBtveF9.d.ts} +19 -4
  49. package/package.json +1 -1
@@ -350,6 +350,24 @@ function deleteEducation(config, rkey, options = {}) {
350
350
  return apiWrite(config, `/api/profile/education/${encodeURIComponent(rkey)}`, "DELETE", options);
351
351
  }
352
352
 
353
+ // src/query/fetchers/section-primary.ts
354
+ function setSectionPrimary(config, section, rkey, options = {}) {
355
+ return apiWrite(
356
+ config,
357
+ `/api/profile/${section}/${encodeURIComponent(rkey)}/primary`,
358
+ "PUT",
359
+ options
360
+ );
361
+ }
362
+ function unsetSectionPrimary(config, section, rkey, options = {}) {
363
+ return apiWrite(
364
+ config,
365
+ `/api/profile/${section}/${encodeURIComponent(rkey)}/primary`,
366
+ "DELETE",
367
+ options
368
+ );
369
+ }
370
+
353
371
  // src/query/fetchers/skills.ts
354
372
  function createSkill(config, data, options = {}) {
355
373
  return apiWriteCreate(config, "/api/profile/skill", data, options);
@@ -618,6 +636,9 @@ async function fetchUnlinkedPositions(config, options = {}) {
618
636
  return { positions: [] };
619
637
  }
620
638
  }
639
+ function dismissUnlinkedPosition(config, data, options = {}) {
640
+ return apiWrite(config, "/api/positions/unlinked/dismiss", "POST", { body: data, ...options });
641
+ }
621
642
 
622
643
  // src/query/fetchers/profile-completeness.ts
623
644
  var PROFILE_COMPLETENESS_SIGNALS = [
@@ -2166,6 +2187,43 @@ async function invalidateProfile3(queryClient, ownerHandleOrDid) {
2166
2187
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2167
2188
  });
2168
2189
  }
2190
+ function useSetSectionPrimary(section, ownerHandleOrDid, options) {
2191
+ const config = useSifaConfig();
2192
+ const queryClient = reactQuery.useQueryClient();
2193
+ return reactQuery.useMutation({
2194
+ // Spread first: a consumer-supplied onSuccess would otherwise replace the
2195
+ // handler below and silently drop cache invalidation (#453).
2196
+ ...options,
2197
+ mutationFn: (rkey) => setSectionPrimary(config, section, rkey),
2198
+ onSuccess: async (result, variables, onMutateResult, context) => {
2199
+ if (result.success) {
2200
+ await invalidateProfile3(queryClient, ownerHandleOrDid);
2201
+ }
2202
+ await options?.onSuccess?.(result, variables, onMutateResult, context);
2203
+ }
2204
+ });
2205
+ }
2206
+ function useUnsetSectionPrimary(section, ownerHandleOrDid, options) {
2207
+ const config = useSifaConfig();
2208
+ const queryClient = reactQuery.useQueryClient();
2209
+ return reactQuery.useMutation({
2210
+ // Spread first: a consumer-supplied onSuccess would otherwise replace the
2211
+ // handler below and silently drop cache invalidation (#453).
2212
+ ...options,
2213
+ mutationFn: (rkey) => unsetSectionPrimary(config, section, rkey),
2214
+ onSuccess: async (result, variables, onMutateResult, context) => {
2215
+ if (result.success) {
2216
+ await invalidateProfile3(queryClient, ownerHandleOrDid);
2217
+ }
2218
+ await options?.onSuccess?.(result, variables, onMutateResult, context);
2219
+ }
2220
+ });
2221
+ }
2222
+ async function invalidateProfile4(queryClient, ownerHandleOrDid) {
2223
+ await queryClient.invalidateQueries({
2224
+ queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2225
+ });
2226
+ }
2169
2227
  function useCreateSkill(ownerHandleOrDid, options) {
2170
2228
  const config = useSifaConfig();
2171
2229
  const queryClient = reactQuery.useQueryClient();
@@ -2176,7 +2234,7 @@ function useCreateSkill(ownerHandleOrDid, options) {
2176
2234
  mutationFn: (data) => createSkill(config, data),
2177
2235
  onSuccess: async (result, variables, onMutateResult, context) => {
2178
2236
  if (result.success) {
2179
- await invalidateProfile3(queryClient, ownerHandleOrDid);
2237
+ await invalidateProfile4(queryClient, ownerHandleOrDid);
2180
2238
  }
2181
2239
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2182
2240
  }
@@ -2192,7 +2250,7 @@ function useUpdateSkill(ownerHandleOrDid, options) {
2192
2250
  mutationFn: ({ rkey, data }) => updateSkill(config, rkey, data),
2193
2251
  onSuccess: async (result, variables, onMutateResult, context) => {
2194
2252
  if (result.success) {
2195
- await invalidateProfile3(queryClient, ownerHandleOrDid);
2253
+ await invalidateProfile4(queryClient, ownerHandleOrDid);
2196
2254
  }
2197
2255
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2198
2256
  }
@@ -2210,7 +2268,7 @@ function useUpdateSkillSubCategories(ownerHandleOrDid, options) {
2210
2268
  ...options,
2211
2269
  onSuccess: async (result, variables, onMutateResult, context) => {
2212
2270
  if (result.success) {
2213
- await invalidateProfile3(queryClient, ownerHandleOrDid);
2271
+ await invalidateProfile4(queryClient, ownerHandleOrDid);
2214
2272
  }
2215
2273
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2216
2274
  }
@@ -2226,13 +2284,13 @@ function useDeleteSkill(ownerHandleOrDid, options) {
2226
2284
  mutationFn: (rkey) => deleteSkill(config, rkey),
2227
2285
  onSuccess: async (result, variables, onMutateResult, context) => {
2228
2286
  if (result.success) {
2229
- await invalidateProfile3(queryClient, ownerHandleOrDid);
2287
+ await invalidateProfile4(queryClient, ownerHandleOrDid);
2230
2288
  }
2231
2289
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2232
2290
  }
2233
2291
  });
2234
2292
  }
2235
- async function invalidateProfile4(queryClient, ownerHandleOrDid) {
2293
+ async function invalidateProfile5(queryClient, ownerHandleOrDid) {
2236
2294
  await queryClient.invalidateQueries({
2237
2295
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2238
2296
  });
@@ -2247,7 +2305,7 @@ function useCreateRecord(ownerHandleOrDid, options) {
2247
2305
  mutationFn: ({ collection, data }) => createRecord(config, collection, data),
2248
2306
  onSuccess: async (result, variables, onMutateResult, context) => {
2249
2307
  if (result.success) {
2250
- await invalidateProfile4(queryClient, ownerHandleOrDid);
2308
+ await invalidateProfile5(queryClient, ownerHandleOrDid);
2251
2309
  }
2252
2310
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2253
2311
  }
@@ -2263,7 +2321,7 @@ function useUpdateRecord(ownerHandleOrDid, options) {
2263
2321
  mutationFn: ({ collection, rkey, data }) => updateRecord(config, collection, rkey, data),
2264
2322
  onSuccess: async (result, variables, onMutateResult, context) => {
2265
2323
  if (result.success) {
2266
- await invalidateProfile4(queryClient, ownerHandleOrDid);
2324
+ await invalidateProfile5(queryClient, ownerHandleOrDid);
2267
2325
  }
2268
2326
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2269
2327
  }
@@ -2279,13 +2337,13 @@ function useDeleteRecord(ownerHandleOrDid, options) {
2279
2337
  mutationFn: ({ collection, rkey }) => deleteRecord(config, collection, rkey),
2280
2338
  onSuccess: async (result, variables, onMutateResult, context) => {
2281
2339
  if (result.success) {
2282
- await invalidateProfile4(queryClient, ownerHandleOrDid);
2340
+ await invalidateProfile5(queryClient, ownerHandleOrDid);
2283
2341
  }
2284
2342
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2285
2343
  }
2286
2344
  });
2287
2345
  }
2288
- async function invalidateProfile5(queryClient, ownerHandleOrDid) {
2346
+ async function invalidateProfile6(queryClient, ownerHandleOrDid) {
2289
2347
  await queryClient.invalidateQueries({
2290
2348
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2291
2349
  });
@@ -2300,7 +2358,7 @@ function useCreateProfileLocation(ownerHandleOrDid, options) {
2300
2358
  mutationFn: (data) => createProfileLocation(config, data),
2301
2359
  onSuccess: async (result, variables, onMutateResult, context) => {
2302
2360
  if (result.success) {
2303
- await invalidateProfile5(queryClient, ownerHandleOrDid);
2361
+ await invalidateProfile6(queryClient, ownerHandleOrDid);
2304
2362
  }
2305
2363
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2306
2364
  }
@@ -2316,7 +2374,7 @@ function useUpdateProfileLocation(ownerHandleOrDid, options) {
2316
2374
  mutationFn: ({ rkey, data }) => updateProfileLocation(config, rkey, data),
2317
2375
  onSuccess: async (result, variables, onMutateResult, context) => {
2318
2376
  if (result.success) {
2319
- await invalidateProfile5(queryClient, ownerHandleOrDid);
2377
+ await invalidateProfile6(queryClient, ownerHandleOrDid);
2320
2378
  }
2321
2379
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2322
2380
  }
@@ -2332,7 +2390,7 @@ function useDeleteProfileLocation(ownerHandleOrDid, options) {
2332
2390
  mutationFn: (rkey) => deleteProfileLocation(config, rkey),
2333
2391
  onSuccess: async (result, variables, onMutateResult, context) => {
2334
2392
  if (result.success) {
2335
- await invalidateProfile5(queryClient, ownerHandleOrDid);
2393
+ await invalidateProfile6(queryClient, ownerHandleOrDid);
2336
2394
  }
2337
2395
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2338
2396
  }
@@ -2659,6 +2717,23 @@ function useUnlinkedPositions(options) {
2659
2717
  ...options
2660
2718
  });
2661
2719
  }
2720
+ function useDismissUnlinkedPosition(options) {
2721
+ const config = useSifaConfig();
2722
+ const queryClient = reactQuery.useQueryClient();
2723
+ return reactQuery.useMutation({
2724
+ // Spread first: a consumer-supplied handler would otherwise replace the
2725
+ // one below and silently drop cache invalidation (#453).
2726
+ ...options,
2727
+ mutationFn: (data) => dismissUnlinkedPosition(config, data),
2728
+ onSuccess: async (result, variables, onMutateResult, context) => {
2729
+ if (result.success) {
2730
+ await queryClient.invalidateQueries({ queryKey: sifaQueryKeys.position.unlinked() });
2731
+ await queryClient.invalidateQueries({ queryKey: sifaQueryKeys.inbox.counts() });
2732
+ }
2733
+ await options?.onSuccess?.(result, variables, onMutateResult, context);
2734
+ }
2735
+ });
2736
+ }
2662
2737
  function useProfileCompleteness(options) {
2663
2738
  const config = useSifaConfig();
2664
2739
  return reactQuery.useQuery({
@@ -2667,7 +2742,7 @@ function useProfileCompleteness(options) {
2667
2742
  ...options
2668
2743
  });
2669
2744
  }
2670
- async function invalidateProfile6(queryClient, ownerHandleOrDid) {
2745
+ async function invalidateProfile7(queryClient, ownerHandleOrDid) {
2671
2746
  await queryClient.invalidateQueries({
2672
2747
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2673
2748
  });
@@ -2682,7 +2757,7 @@ function useHideKeytraceClaim(ownerHandleOrDid, options) {
2682
2757
  mutationFn: (rkey) => hideKeytraceClaim(config, rkey),
2683
2758
  onSuccess: async (result, variables, onMutateResult, context) => {
2684
2759
  if (result.success) {
2685
- await invalidateProfile6(queryClient, ownerHandleOrDid);
2760
+ await invalidateProfile7(queryClient, ownerHandleOrDid);
2686
2761
  }
2687
2762
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2688
2763
  }
@@ -2698,13 +2773,13 @@ function useUnhideKeytraceClaim(ownerHandleOrDid, options) {
2698
2773
  mutationFn: (rkey) => unhideKeytraceClaim(config, rkey),
2699
2774
  onSuccess: async (result, variables, onMutateResult, context) => {
2700
2775
  if (result.success) {
2701
- await invalidateProfile6(queryClient, ownerHandleOrDid);
2776
+ await invalidateProfile7(queryClient, ownerHandleOrDid);
2702
2777
  }
2703
2778
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2704
2779
  }
2705
2780
  });
2706
2781
  }
2707
- async function invalidateProfile7(queryClient, ownerHandleOrDid) {
2782
+ async function invalidateProfile8(queryClient, ownerHandleOrDid) {
2708
2783
  await queryClient.invalidateQueries({
2709
2784
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2710
2785
  });
@@ -2719,7 +2794,7 @@ function useRevealMarqueDomain(ownerHandleOrDid, options) {
2719
2794
  mutationFn: (domain) => revealMarqueDomain(config, domain),
2720
2795
  onSuccess: async (result, variables, onMutateResult, context) => {
2721
2796
  if (result.success) {
2722
- await invalidateProfile7(queryClient, ownerHandleOrDid);
2797
+ await invalidateProfile8(queryClient, ownerHandleOrDid);
2723
2798
  }
2724
2799
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2725
2800
  }
@@ -2735,13 +2810,13 @@ function useUnrevealMarqueDomain(ownerHandleOrDid, options) {
2735
2810
  mutationFn: (domain) => unrevealMarqueDomain(config, domain),
2736
2811
  onSuccess: async (result, variables, onMutateResult, context) => {
2737
2812
  if (result.success) {
2738
- await invalidateProfile7(queryClient, ownerHandleOrDid);
2813
+ await invalidateProfile8(queryClient, ownerHandleOrDid);
2739
2814
  }
2740
2815
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2741
2816
  }
2742
2817
  });
2743
2818
  }
2744
- async function invalidateProfile8(queryClient, ownerHandleOrDid) {
2819
+ async function invalidateProfile9(queryClient, ownerHandleOrDid) {
2745
2820
  await queryClient.invalidateQueries({
2746
2821
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2747
2822
  });
@@ -2757,7 +2832,7 @@ function makeWriteHook(fetcher) {
2757
2832
  mutationFn: (v) => fetcher(config, v),
2758
2833
  onSuccess: async (result, variables, onMutateResult, context) => {
2759
2834
  if (result.success) {
2760
- await invalidateProfile8(queryClient, ownerHandleOrDid);
2835
+ await invalidateProfile9(queryClient, ownerHandleOrDid);
2761
2836
  }
2762
2837
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2763
2838
  }
@@ -2795,13 +2870,13 @@ function useRefreshOrcidPublications(ownerHandleOrDid, options) {
2795
2870
  mutationFn: () => refreshOrcidPublications(config),
2796
2871
  onSuccess: async (result, variables, onMutateResult, context) => {
2797
2872
  if (result.success) {
2798
- await invalidateProfile8(queryClient, ownerHandleOrDid);
2873
+ await invalidateProfile9(queryClient, ownerHandleOrDid);
2799
2874
  }
2800
2875
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2801
2876
  }
2802
2877
  });
2803
2878
  }
2804
- async function invalidateProfile9(queryClient, ownerHandleOrDid) {
2879
+ async function invalidateProfile10(queryClient, ownerHandleOrDid) {
2805
2880
  await queryClient.invalidateQueries({
2806
2881
  queryKey: sifaQueryKeys.profile.byHandle(ownerHandleOrDid)
2807
2882
  });
@@ -2814,7 +2889,7 @@ function makeWriteHook2(fetcher) {
2814
2889
  mutationFn: (v) => fetcher(config, v),
2815
2890
  onSuccess: async (result, variables, onMutateResult, context) => {
2816
2891
  if (result.success) {
2817
- await invalidateProfile9(queryClient, ownerHandleOrDid);
2892
+ await invalidateProfile10(queryClient, ownerHandleOrDid);
2818
2893
  }
2819
2894
  await options?.onSuccess?.(result, variables, onMutateResult, context);
2820
2895
  },
@@ -3660,6 +3735,7 @@ exports.deleteRepoRecords = deleteRepoRecords;
3660
3735
  exports.deleteSkill = deleteSkill;
3661
3736
  exports.dismissConfirmation = dismissConfirmation;
3662
3737
  exports.dismissEndorsement = dismissEndorsement;
3738
+ exports.dismissUnlinkedPosition = dismissUnlinkedPosition;
3663
3739
  exports.effectiveContentVisibility = effectiveContentVisibility;
3664
3740
  exports.fetchAccounts = fetchAccounts;
3665
3741
  exports.fetchActivityFeed = fetchActivityFeed;
@@ -3740,6 +3816,7 @@ exports.searchSkills = searchSkills;
3740
3816
  exports.selectEntity = selectEntity;
3741
3817
  exports.setExternalAccountPrimary = setExternalAccountPrimary;
3742
3818
  exports.setPositionPrimary = setPositionPrimary;
3819
+ exports.setSectionPrimary = setSectionPrimary;
3743
3820
  exports.shouldGateAdultMedia = shouldGateAdultMedia;
3744
3821
  exports.sifaQueryKeys = sifaQueryKeys;
3745
3822
  exports.submitOrgClaim = submitOrgClaim;
@@ -3755,6 +3832,7 @@ exports.unlinkSkillFromPosition = unlinkSkillFromPosition;
3755
3832
  exports.unrevealMarqueDomain = unrevealMarqueDomain;
3756
3833
  exports.unsetExternalAccountPrimary = unsetExternalAccountPrimary;
3757
3834
  exports.unsetPositionPrimary = unsetPositionPrimary;
3835
+ exports.unsetSectionPrimary = unsetSectionPrimary;
3758
3836
  exports.updateBskyContentLabelPrefs = updateBskyContentLabelPrefs;
3759
3837
  exports.updateEducation = updateEducation;
3760
3838
  exports.updateExternalAccount = updateExternalAccount;
@@ -3809,6 +3887,7 @@ exports.useDeleteRepoRecords = useDeleteRepoRecords;
3809
3887
  exports.useDeleteSkill = useDeleteSkill;
3810
3888
  exports.useDismissConfirmation = useDismissConfirmation;
3811
3889
  exports.useDismissEndorsement = useDismissEndorsement;
3890
+ exports.useDismissUnlinkedPosition = useDismissUnlinkedPosition;
3812
3891
  exports.useEndorsementCount = useEndorsementCount;
3813
3892
  exports.useEntitySearch = useEntitySearch;
3814
3893
  exports.useExternalAccounts = useExternalAccounts;
@@ -3865,6 +3944,7 @@ exports.useSearchProfiles = useSearchProfiles;
3865
3944
  exports.useSelectEntity = useSelectEntity;
3866
3945
  exports.useSetExternalAccountPrimary = useSetExternalAccountPrimary;
3867
3946
  exports.useSetPositionPrimary = useSetPositionPrimary;
3947
+ exports.useSetSectionPrimary = useSetSectionPrimary;
3868
3948
  exports.useSifaConfig = useSifaConfig;
3869
3949
  exports.useSimilarProfiles = useSimilarProfiles;
3870
3950
  exports.useSkillSuggestions = useSkillSuggestions;
@@ -3883,6 +3963,7 @@ exports.useUnlinkedPositions = useUnlinkedPositions;
3883
3963
  exports.useUnrevealMarqueDomain = useUnrevealMarqueDomain;
3884
3964
  exports.useUnsetExternalAccountPrimary = useUnsetExternalAccountPrimary;
3885
3965
  exports.useUnsetPositionPrimary = useUnsetPositionPrimary;
3966
+ exports.useUnsetSectionPrimary = useUnsetSectionPrimary;
3886
3967
  exports.useUpdateBskyContentLabelPrefs = useUpdateBskyContentLabelPrefs;
3887
3968
  exports.useUpdateEducation = useUpdateEducation;
3888
3969
  exports.useUpdateExternalAccount = useUpdateExternalAccount;