@singi-labs/sifa-sdk 0.10.16 → 0.10.18

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.
@@ -374,6 +374,24 @@ function unhideKeytraceClaim(config, rkey, options = {}) {
374
374
  );
375
375
  }
376
376
 
377
+ // src/query/fetchers/marque-domains.ts
378
+ function revealMarqueDomain(config, domain, options = {}) {
379
+ return apiWrite(
380
+ config,
381
+ `/api/profile/marque-domains/${encodeURIComponent(domain)}/reveal`,
382
+ "POST",
383
+ options
384
+ );
385
+ }
386
+ function unrevealMarqueDomain(config, domain, options = {}) {
387
+ return apiWrite(
388
+ config,
389
+ `/api/profile/marque-domains/${encodeURIComponent(domain)}/reveal`,
390
+ "DELETE",
391
+ options
392
+ );
393
+ }
394
+
377
395
  // src/query/fetchers/publications.ts
378
396
  function hideOrcidPublication(config, putCode, options = {}) {
379
397
  return apiWrite(config, `/api/profile/orcid-publications/${putCode}/hide`, "POST", options);
@@ -1204,6 +1222,7 @@ exports.removeFeatureAllowlist = removeFeatureAllowlist;
1204
1222
  exports.resetProfile = resetProfile;
1205
1223
  exports.resolveQuotedPosts = resolveQuotedPosts;
1206
1224
  exports.retractRoadmapVote = retractRoadmapVote;
1225
+ exports.revealMarqueDomain = revealMarqueDomain;
1207
1226
  exports.searchSkills = searchSkills;
1208
1227
  exports.setExternalAccountPrimary = setExternalAccountPrimary;
1209
1228
  exports.setPositionPrimary = setPositionPrimary;
@@ -1215,6 +1234,7 @@ exports.unhideProfileItem = unhideProfileItem;
1215
1234
  exports.unhideSifaPublication = unhideSifaPublication;
1216
1235
  exports.unhideStandardPublication = unhideStandardPublication;
1217
1236
  exports.unlinkSkillFromPosition = unlinkSkillFromPosition;
1237
+ exports.unrevealMarqueDomain = unrevealMarqueDomain;
1218
1238
  exports.unsetExternalAccountPrimary = unsetExternalAccountPrimary;
1219
1239
  exports.unsetPositionPrimary = unsetPositionPrimary;
1220
1240
  exports.updateEducation = updateEducation;