@singi-labs/sifa-sdk 0.19.43 → 0.19.45

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 (579) hide show
  1. package/dist/atproto/index.js +9 -3
  2. package/dist/atproto/index.js.map +1 -1
  3. package/dist/badge/index.js +5 -141
  4. package/dist/badge/index.js.map +1 -1
  5. package/dist/cards/adult-content.js +14 -0
  6. package/dist/cards/adult-content.js.map +1 -0
  7. package/dist/cards/app-url-patterns.js +369 -0
  8. package/dist/cards/app-url-patterns.js.map +1 -0
  9. package/dist/cards/index.js +24 -0
  10. package/dist/cards/index.js.map +1 -0
  11. package/dist/cards/resolve-card-url.js +198 -0
  12. package/dist/cards/resolve-card-url.js.map +1 -0
  13. package/dist/cards/visibility.js +45 -0
  14. package/dist/cards/visibility.js.map +1 -0
  15. package/dist/flags/index.js +4 -3
  16. package/dist/flags/index.js.map +1 -1
  17. package/dist/format/collapse-contributors.js +19 -0
  18. package/dist/format/collapse-contributors.js.map +1 -0
  19. package/dist/format/company-name.js +61 -0
  20. package/dist/format/company-name.js.map +1 -0
  21. package/dist/format/compare-text.js +9 -0
  22. package/dist/format/compare-text.js.map +1 -0
  23. package/dist/format/doi.js +8 -0
  24. package/dist/format/doi.js.map +1 -0
  25. package/dist/format/embed.js +131 -0
  26. package/dist/format/embed.js.map +1 -0
  27. package/dist/format/endorsement-context.js +35 -0
  28. package/dist/format/endorsement-context.js.map +1 -0
  29. package/dist/format/format-display-url.js +42 -0
  30. package/dist/format/format-display-url.js.map +1 -0
  31. package/dist/format/format-duration.js +13 -0
  32. package/dist/format/format-duration.js.map +1 -0
  33. package/dist/format/format-time.js +30 -0
  34. package/dist/format/format-time.js.map +1 -0
  35. package/dist/format/handle-utils.js +19 -0
  36. package/dist/format/handle-utils.js.map +1 -0
  37. package/dist/format/index.js +100 -0
  38. package/dist/format/index.js.map +1 -0
  39. package/dist/format/location-segments.js +29 -0
  40. package/dist/format/location-segments.js.map +1 -0
  41. package/dist/format/location-utils.js +42 -0
  42. package/dist/format/location-utils.js.map +1 -0
  43. package/dist/format/meta-description.js +35 -0
  44. package/dist/format/meta-description.js.map +1 -0
  45. package/dist/format/normalize-company-key.js +12 -0
  46. package/dist/format/normalize-company-key.js.map +1 -0
  47. package/dist/format/normalize-legal-form.js +71 -0
  48. package/dist/format/normalize-legal-form.js.map +1 -0
  49. package/dist/format/pds-utils.js +73 -0
  50. package/dist/format/pds-utils.js.map +1 -0
  51. package/dist/format/sort-by-date.js +39 -0
  52. package/dist/format/sort-by-date.js.map +1 -0
  53. package/dist/format/summarize-deliveries.js +37 -0
  54. package/dist/format/summarize-deliveries.js.map +1 -0
  55. package/dist/format/talk-slug.js +21 -0
  56. package/dist/format/talk-slug.js.map +1 -0
  57. package/dist/format/text-sanitize.js +29 -0
  58. package/dist/format/text-sanitize.js.map +1 -0
  59. package/dist/format/text-truncate.js +14 -0
  60. package/dist/format/text-truncate.js.map +1 -0
  61. package/dist/format/time-utils.js +19 -0
  62. package/dist/format/time-utils.js.map +1 -0
  63. package/dist/format/timeline.js +29 -0
  64. package/dist/format/timeline.js.map +1 -0
  65. package/dist/format/wcag-contrast.js +34 -0
  66. package/dist/format/wcag-contrast.js.map +1 -0
  67. package/dist/import/index.js +22 -0
  68. package/dist/import/index.js.map +1 -0
  69. package/dist/import/presentation-csv.js +116 -0
  70. package/dist/import/presentation-csv.js.map +1 -0
  71. package/dist/index.cjs +8 -1
  72. package/dist/index.cjs.map +1 -1
  73. package/dist/index.d.cts +11 -1
  74. package/dist/index.d.ts +11 -1
  75. package/dist/index.js +675 -7080
  76. package/dist/index.js.map +1 -1
  77. package/dist/jev/index.js +18 -5
  78. package/dist/jev/index.js.map +1 -1
  79. package/dist/jsonld/index.cjs.map +1 -1
  80. package/dist/jsonld/index.js +30 -987
  81. package/dist/jsonld/index.js.map +1 -1
  82. package/dist/jsonld/profile.js +222 -0
  83. package/dist/jsonld/profile.js.map +1 -0
  84. package/dist/jsonld/terms.js +496 -0
  85. package/dist/jsonld/terms.js.map +1 -0
  86. package/dist/jsonld/url.js +17 -0
  87. package/dist/jsonld/url.js.map +1 -0
  88. package/dist/jsonld/works-graph.js +41 -0
  89. package/dist/jsonld/works-graph.js.map +1 -0
  90. package/dist/jsonld/works.js +178 -0
  91. package/dist/jsonld/works.js.map +1 -0
  92. package/dist/logic/actor-identity.js +8 -0
  93. package/dist/logic/actor-identity.js.map +1 -0
  94. package/dist/logic/agent-ref.js +24 -0
  95. package/dist/logic/agent-ref.js.map +1 -0
  96. package/dist/logic/company-page-indexable.js +23 -0
  97. package/dist/logic/company-page-indexable.js.map +1 -0
  98. package/dist/logic/date-lookahead.js +31 -0
  99. package/dist/logic/date-lookahead.js.map +1 -0
  100. package/dist/logic/domain-detect.js +43 -0
  101. package/dist/logic/domain-detect.js.map +1 -0
  102. package/dist/logic/entity-disambiguation.js +24 -0
  103. package/dist/logic/entity-disambiguation.js.map +1 -0
  104. package/dist/logic/entity-ref-anchor.js +33 -0
  105. package/dist/logic/entity-ref-anchor.js.map +1 -0
  106. package/dist/logic/index.js +91 -0
  107. package/dist/logic/index.js.map +1 -0
  108. package/dist/logic/org-floor.js +66 -0
  109. package/dist/logic/org-floor.js.map +1 -0
  110. package/dist/logic/primary-item.js +9 -0
  111. package/dist/logic/primary-item.js.map +1 -0
  112. package/dist/logic/primary-position.js +16 -0
  113. package/dist/logic/primary-position.js.map +1 -0
  114. package/dist/logic/profile-completeness.js +21 -0
  115. package/dist/logic/profile-completeness.js.map +1 -0
  116. package/dist/logic/profile-dimensions.js +50 -0
  117. package/dist/logic/profile-dimensions.js.map +1 -0
  118. package/dist/logic/profile-summary.js +23 -0
  119. package/dist/logic/profile-summary.js.map +1 -0
  120. package/dist/logic/pseudo-employer.js +34 -0
  121. package/dist/logic/pseudo-employer.js.map +1 -0
  122. package/dist/logic/recent-activity.js +10 -0
  123. package/dist/logic/recent-activity.js.map +1 -0
  124. package/dist/logic/self-app.js +10 -0
  125. package/dist/logic/self-app.js.map +1 -0
  126. package/dist/{org-BCrvebcf.d.ts → org-CxTEjjrm.d.ts} +1 -1
  127. package/dist/{org-settings-C73Sin5E.d.ts → org-settings-BShvhyFp.d.ts} +1 -1
  128. package/dist/profile/headline-role-dedupe.js +12 -0
  129. package/dist/profile/headline-role-dedupe.js.map +1 -0
  130. package/dist/profile/highlights.js +200 -0
  131. package/dist/profile/highlights.js.map +1 -0
  132. package/dist/profile/index.js +66 -0
  133. package/dist/profile/index.js.map +1 -0
  134. package/dist/profile/involvement-grouping.js +31 -0
  135. package/dist/profile/involvement-grouping.js.map +1 -0
  136. package/dist/profile/language-sort.js +24 -0
  137. package/dist/profile/language-sort.js.map +1 -0
  138. package/dist/profile/publication-versions.js +98 -0
  139. package/dist/profile/publication-versions.js.map +1 -0
  140. package/dist/profile/range-sort.js +14 -0
  141. package/dist/profile/range-sort.js.map +1 -0
  142. package/dist/profile/section-model.js +122 -0
  143. package/dist/profile/section-model.js.map +1 -0
  144. package/dist/profile/section-sorts.js +33 -0
  145. package/dist/profile/section-sorts.js.map +1 -0
  146. package/dist/publishers/index.js +16 -0
  147. package/dist/publishers/index.js.map +1 -0
  148. package/dist/publishers/registry.js +87 -0
  149. package/dist/publishers/registry.js.map +1 -0
  150. package/dist/publishing/index.js +46 -184
  151. package/dist/publishing/index.js.map +1 -1
  152. package/dist/publishing/linkblog.js +42 -0
  153. package/dist/publishing/linkblog.js.map +1 -0
  154. package/dist/publishing/registry.js +32 -0
  155. package/dist/publishing/registry.js.map +1 -0
  156. package/dist/publishing/schemas.js +74 -0
  157. package/dist/publishing/schemas.js.map +1 -0
  158. package/dist/publishing/types.js +32 -0
  159. package/dist/publishing/types.js.map +1 -0
  160. package/dist/query/client.js +119 -0
  161. package/dist/query/client.js.map +1 -0
  162. package/dist/query/config.js +23 -0
  163. package/dist/query/config.js.map +1 -0
  164. package/dist/query/fetchers/accounts.js +29 -0
  165. package/dist/query/fetchers/accounts.js.map +1 -0
  166. package/dist/query/fetchers/activity-items-hide.js +31 -0
  167. package/dist/query/fetchers/activity-items-hide.js.map +1 -0
  168. package/dist/query/fetchers/activity.js +61 -0
  169. package/dist/query/fetchers/activity.js.map +1 -0
  170. package/dist/query/fetchers/actor.js +30 -0
  171. package/dist/query/fetchers/actor.js.map +1 -0
  172. package/dist/query/fetchers/admin-feature-allowlists.js +41 -0
  173. package/dist/query/fetchers/admin-feature-allowlists.js.map +1 -0
  174. package/dist/query/fetchers/admin-review-queues.js +30 -0
  175. package/dist/query/fetchers/admin-review-queues.js.map +1 -0
  176. package/dist/query/fetchers/apps.js +31 -0
  177. package/dist/query/fetchers/apps.js.map +1 -0
  178. package/dist/query/fetchers/bsky-preferences.js +55 -0
  179. package/dist/query/fetchers/bsky-preferences.js.map +1 -0
  180. package/dist/query/fetchers/confirmations.js +55 -0
  181. package/dist/query/fetchers/confirmations.js.map +1 -0
  182. package/dist/query/fetchers/destructive.js +34 -0
  183. package/dist/query/fetchers/destructive.js.map +1 -0
  184. package/dist/query/fetchers/discovery.js +67 -0
  185. package/dist/query/fetchers/discovery.js.map +1 -0
  186. package/dist/query/fetchers/education.js +23 -0
  187. package/dist/query/fetchers/education.js.map +1 -0
  188. package/dist/query/fetchers/endorsement-inbox.js +36 -0
  189. package/dist/query/fetchers/endorsement-inbox.js.map +1 -0
  190. package/dist/query/fetchers/endorsement.js +23 -0
  191. package/dist/query/fetchers/endorsement.js.map +1 -0
  192. package/dist/query/fetchers/endorsements.js +20 -0
  193. package/dist/query/fetchers/endorsements.js.map +1 -0
  194. package/dist/query/fetchers/entities.js +65 -0
  195. package/dist/query/fetchers/entities.js.map +1 -0
  196. package/dist/query/fetchers/external-accounts.js +74 -0
  197. package/dist/query/fetchers/external-accounts.js.map +1 -0
  198. package/dist/query/fetchers/follow-extras.js +38 -0
  199. package/dist/query/fetchers/follow-extras.js.map +1 -0
  200. package/dist/query/fetchers/follow.js +105 -0
  201. package/dist/query/fetchers/follow.js.map +1 -0
  202. package/dist/query/fetchers/get-profile-view.js +21 -0
  203. package/dist/query/fetchers/get-profile-view.js.map +1 -0
  204. package/dist/query/fetchers/github-prs.js +45 -0
  205. package/dist/query/fetchers/github-prs.js.map +1 -0
  206. package/dist/query/fetchers/inbox.js +29 -0
  207. package/dist/query/fetchers/inbox.js.map +1 -0
  208. package/dist/query/fetchers/index.d.ts +2 -2
  209. package/dist/query/fetchers/index.js +360 -2045
  210. package/dist/query/fetchers/index.js.map +1 -1
  211. package/dist/query/fetchers/investments.js +18 -0
  212. package/dist/query/fetchers/investments.js.map +1 -0
  213. package/dist/query/fetchers/keytrace-claims.js +23 -0
  214. package/dist/query/fetchers/keytrace-claims.js.map +1 -0
  215. package/dist/query/fetchers/marque-domains.js +23 -0
  216. package/dist/query/fetchers/marque-domains.js.map +1 -0
  217. package/dist/query/fetchers/network-map.js +36 -0
  218. package/dist/query/fetchers/network-map.js.map +1 -0
  219. package/dist/query/fetchers/org.js +48 -0
  220. package/dist/query/fetchers/org.js.map +1 -0
  221. package/dist/query/fetchers/positions.js +77 -0
  222. package/dist/query/fetchers/positions.js.map +1 -0
  223. package/dist/query/fetchers/profile-completeness.js +45 -0
  224. package/dist/query/fetchers/profile-completeness.js.map +1 -0
  225. package/dist/query/fetchers/profile-items-hide.js +36 -0
  226. package/dist/query/fetchers/profile-items-hide.js.map +1 -0
  227. package/dist/query/fetchers/profile-locations.js +23 -0
  228. package/dist/query/fetchers/profile-locations.js.map +1 -0
  229. package/dist/query/fetchers/profile-mutations.js +82 -0
  230. package/dist/query/fetchers/profile-mutations.js.map +1 -0
  231. package/dist/query/fetchers/profile-summary.js +14 -0
  232. package/dist/query/fetchers/profile-summary.js.map +1 -0
  233. package/dist/query/fetchers/profile.js +31 -0
  234. package/dist/query/fetchers/profile.js.map +1 -0
  235. package/dist/query/fetchers/publications.js +66 -0
  236. package/dist/query/fetchers/publications.js.map +1 -0
  237. package/dist/query/fetchers/quoted-posts.js +40 -0
  238. package/dist/query/fetchers/quoted-posts.js.map +1 -0
  239. package/dist/query/fetchers/reactions.js +85 -0
  240. package/dist/query/fetchers/reactions.js.map +1 -0
  241. package/dist/query/fetchers/received-endorsements.js +20 -0
  242. package/dist/query/fetchers/received-endorsements.js.map +1 -0
  243. package/dist/query/fetchers/reciprocity.js +23 -0
  244. package/dist/query/fetchers/reciprocity.js.map +1 -0
  245. package/dist/query/fetchers/records.js +27 -0
  246. package/dist/query/fetchers/records.js.map +1 -0
  247. package/dist/query/fetchers/repo-inventory.js +23 -0
  248. package/dist/query/fetchers/repo-inventory.js.map +1 -0
  249. package/dist/query/fetchers/roadmap.js +73 -0
  250. package/dist/query/fetchers/roadmap.js.map +1 -0
  251. package/dist/query/fetchers/rpg.js +36 -0
  252. package/dist/query/fetchers/rpg.js.map +1 -0
  253. package/dist/query/fetchers/search.js +78 -0
  254. package/dist/query/fetchers/search.js.map +1 -0
  255. package/dist/query/fetchers/section-primary.js +23 -0
  256. package/dist/query/fetchers/section-primary.js.map +1 -0
  257. package/dist/query/fetchers/skills.js +30 -0
  258. package/dist/query/fetchers/skills.js.map +1 -0
  259. package/dist/query/fetchers/speakers.js +42 -0
  260. package/dist/query/fetchers/speakers.js.map +1 -0
  261. package/dist/query/fetchers/stats.js +16 -0
  262. package/dist/query/fetchers/stats.js.map +1 -0
  263. package/dist/query/fetchers/stream.js +30 -0
  264. package/dist/query/fetchers/stream.js.map +1 -0
  265. package/dist/query/fetchers/unlinked-positions.js +30 -0
  266. package/dist/query/fetchers/unlinked-positions.js.map +1 -0
  267. package/dist/query/hooks/index.d.ts +3 -3
  268. package/dist/query/hooks/index.js +283 -3555
  269. package/dist/query/hooks/index.js.map +1 -1
  270. package/dist/query/hooks/use-accounts.js +19 -0
  271. package/dist/query/hooks/use-accounts.js.map +1 -0
  272. package/dist/query/hooks/use-activity-items-hide.js +52 -0
  273. package/dist/query/hooks/use-activity-items-hide.js.map +1 -0
  274. package/dist/query/hooks/use-activity.js +44 -0
  275. package/dist/query/hooks/use-activity.js.map +1 -0
  276. package/dist/query/hooks/use-admin-review-queues.js +21 -0
  277. package/dist/query/hooks/use-admin-review-queues.js.map +1 -0
  278. package/dist/query/hooks/use-apps.js +31 -0
  279. package/dist/query/hooks/use-apps.js.map +1 -0
  280. package/dist/query/hooks/use-bsky-content-prefs.js +45 -0
  281. package/dist/query/hooks/use-bsky-content-prefs.js.map +1 -0
  282. package/dist/query/hooks/use-confirmations.js +121 -0
  283. package/dist/query/hooks/use-confirmations.js.map +1 -0
  284. package/dist/query/hooks/use-create-position.js +28 -0
  285. package/dist/query/hooks/use-create-position.js.map +1 -0
  286. package/dist/query/hooks/use-destructive.js +63 -0
  287. package/dist/query/hooks/use-destructive.js.map +1 -0
  288. package/dist/query/hooks/use-discovery.js +53 -0
  289. package/dist/query/hooks/use-discovery.js.map +1 -0
  290. package/dist/query/hooks/use-education-mutations.js +67 -0
  291. package/dist/query/hooks/use-education-mutations.js.map +1 -0
  292. package/dist/query/hooks/use-endorsement-inbox.js +80 -0
  293. package/dist/query/hooks/use-endorsement-inbox.js.map +1 -0
  294. package/dist/query/hooks/use-endorsement-mutations.js +33 -0
  295. package/dist/query/hooks/use-endorsement-mutations.js.map +1 -0
  296. package/dist/query/hooks/use-endorsement.js +20 -0
  297. package/dist/query/hooks/use-endorsement.js.map +1 -0
  298. package/dist/query/hooks/use-entity-search.js +73 -0
  299. package/dist/query/hooks/use-entity-search.js.map +1 -0
  300. package/dist/query/hooks/use-external-accounts.js +143 -0
  301. package/dist/query/hooks/use-external-accounts.js.map +1 -0
  302. package/dist/query/hooks/use-feature-allowlist.js +104 -0
  303. package/dist/query/hooks/use-feature-allowlist.js.map +1 -0
  304. package/dist/query/hooks/use-follow-extras.js +38 -0
  305. package/dist/query/hooks/use-follow-extras.js.map +1 -0
  306. package/dist/query/hooks/use-follow.js +113 -0
  307. package/dist/query/hooks/use-follow.js.map +1 -0
  308. package/dist/query/hooks/use-get-profile-view.js +20 -0
  309. package/dist/query/hooks/use-get-profile-view.js.map +1 -0
  310. package/dist/query/hooks/use-github-prs.js +21 -0
  311. package/dist/query/hooks/use-github-prs.js.map +1 -0
  312. package/dist/query/hooks/use-inbox.js +19 -0
  313. package/dist/query/hooks/use-inbox.js.map +1 -0
  314. package/dist/query/hooks/use-investment-mutations.js +65 -0
  315. package/dist/query/hooks/use-investment-mutations.js.map +1 -0
  316. package/dist/query/hooks/use-keytrace-claims.js +50 -0
  317. package/dist/query/hooks/use-keytrace-claims.js.map +1 -0
  318. package/dist/query/hooks/use-location-mutations.js +71 -0
  319. package/dist/query/hooks/use-location-mutations.js.map +1 -0
  320. package/dist/query/hooks/use-marque-domains.js +50 -0
  321. package/dist/query/hooks/use-marque-domains.js.map +1 -0
  322. package/dist/query/hooks/use-org-claim.js +29 -0
  323. package/dist/query/hooks/use-org-claim.js.map +1 -0
  324. package/dist/query/hooks/use-org-domains.js +28 -0
  325. package/dist/query/hooks/use-org-domains.js.map +1 -0
  326. package/dist/query/hooks/use-org-notification-emails.js +28 -0
  327. package/dist/query/hooks/use-org-notification-emails.js.map +1 -0
  328. package/dist/query/hooks/use-org-profile-settings.js +29 -0
  329. package/dist/query/hooks/use-org-profile-settings.js.map +1 -0
  330. package/dist/query/hooks/use-org-profile.js +21 -0
  331. package/dist/query/hooks/use-org-profile.js.map +1 -0
  332. package/dist/query/hooks/use-position-mutations.js +128 -0
  333. package/dist/query/hooks/use-position-mutations.js.map +1 -0
  334. package/dist/query/hooks/use-profile-completeness.js +21 -0
  335. package/dist/query/hooks/use-profile-completeness.js.map +1 -0
  336. package/dist/query/hooks/use-profile-items-hide.js +53 -0
  337. package/dist/query/hooks/use-profile-items-hide.js.map +1 -0
  338. package/dist/query/hooks/use-profile-mutations.js +143 -0
  339. package/dist/query/hooks/use-profile-mutations.js.map +1 -0
  340. package/dist/query/hooks/use-profile.js +30 -0
  341. package/dist/query/hooks/use-profile.js.map +1 -0
  342. package/dist/query/hooks/use-publication-mutations.js +90 -0
  343. package/dist/query/hooks/use-publication-mutations.js.map +1 -0
  344. package/dist/query/hooks/use-reaction-mutations.js +48 -0
  345. package/dist/query/hooks/use-reaction-mutations.js.map +1 -0
  346. package/dist/query/hooks/use-reactions.js +32 -0
  347. package/dist/query/hooks/use-reactions.js.map +1 -0
  348. package/dist/query/hooks/use-received-endorsements.js +23 -0
  349. package/dist/query/hooks/use-received-endorsements.js.map +1 -0
  350. package/dist/query/hooks/use-reciprocity.js +19 -0
  351. package/dist/query/hooks/use-reciprocity.js.map +1 -0
  352. package/dist/query/hooks/use-record-mutations.js +67 -0
  353. package/dist/query/hooks/use-record-mutations.js.map +1 -0
  354. package/dist/query/hooks/use-repo-inventory.js +43 -0
  355. package/dist/query/hooks/use-repo-inventory.js.map +1 -0
  356. package/dist/query/hooks/use-roadmap-mutations.js +51 -0
  357. package/dist/query/hooks/use-roadmap-mutations.js.map +1 -0
  358. package/dist/query/hooks/use-roadmap.js +31 -0
  359. package/dist/query/hooks/use-roadmap.js.map +1 -0
  360. package/dist/query/hooks/use-search.js +63 -0
  361. package/dist/query/hooks/use-search.js.map +1 -0
  362. package/dist/query/hooks/use-section-primary-mutations.js +53 -0
  363. package/dist/query/hooks/use-section-primary-mutations.js.map +1 -0
  364. package/dist/query/hooks/use-skill-mutations.js +91 -0
  365. package/dist/query/hooks/use-skill-mutations.js.map +1 -0
  366. package/dist/query/hooks/use-stats.js +19 -0
  367. package/dist/query/hooks/use-stats.js.map +1 -0
  368. package/dist/query/hooks/use-stream.js +20 -0
  369. package/dist/query/hooks/use-stream.js.map +1 -0
  370. package/dist/query/hooks/use-unlinked-positions.js +45 -0
  371. package/dist/query/hooks/use-unlinked-positions.js.map +1 -0
  372. package/dist/query/index.d.ts +4 -4
  373. package/dist/query/index.js +685 -3744
  374. package/dist/query/index.js.map +1 -1
  375. package/dist/query/keys.js +138 -0
  376. package/dist/query/keys.js.map +1 -0
  377. package/dist/repo/groups.js +81 -0
  378. package/dist/repo/groups.js.map +1 -0
  379. package/dist/repo/index.js +9 -0
  380. package/dist/repo/index.js.map +1 -0
  381. package/dist/repo/labels.js +121 -0
  382. package/dist/repo/labels.js.map +1 -0
  383. package/dist/repo/types.js +1 -0
  384. package/dist/repo/types.js.map +1 -0
  385. package/dist/resume/index.js +5 -179
  386. package/dist/resume/index.js.map +1 -1
  387. package/dist/resume/json-resume.js +153 -0
  388. package/dist/resume/json-resume.js.map +1 -0
  389. package/dist/roadmap/index.js +101 -0
  390. package/dist/roadmap/index.js.map +1 -0
  391. package/dist/rpg/catalog.js +101 -0
  392. package/dist/rpg/catalog.js.map +1 -0
  393. package/dist/rpg/index.js +13 -116
  394. package/dist/rpg/index.js.map +1 -1
  395. package/dist/rpg/unlocks.js +21 -0
  396. package/dist/rpg/unlocks.js.map +1 -0
  397. package/dist/schemas/blob-ref.js +12 -0
  398. package/dist/schemas/blob-ref.js.map +1 -0
  399. package/dist/schemas/confirmation.js +23 -0
  400. package/dist/schemas/confirmation.js.map +1 -0
  401. package/dist/schemas/endorsement-confirmation.js +18 -0
  402. package/dist/schemas/endorsement-confirmation.js.map +1 -0
  403. package/dist/schemas/endorsement.js +19 -0
  404. package/dist/schemas/endorsement.js.map +1 -0
  405. package/dist/schemas/entity.js +74 -0
  406. package/dist/schemas/entity.js.map +1 -0
  407. package/dist/schemas/feed.js +73 -0
  408. package/dist/schemas/feed.js.map +1 -0
  409. package/dist/schemas/follow-profile.js +32 -0
  410. package/dist/schemas/follow-profile.js.map +1 -0
  411. package/dist/schemas/graph-follow.js +19 -0
  412. package/dist/schemas/graph-follow.js.map +1 -0
  413. package/dist/schemas/index.js +164 -629
  414. package/dist/schemas/index.js.map +1 -1
  415. package/dist/schemas/org-employment-attestation.js +28 -0
  416. package/dist/schemas/org-employment-attestation.js.map +1 -0
  417. package/dist/schemas/org-profile.js +64 -0
  418. package/dist/schemas/org-profile.js.map +1 -0
  419. package/dist/schemas/profile-certification.js +28 -0
  420. package/dist/schemas/profile-certification.js.map +1 -0
  421. package/dist/schemas/profile-course.js +32 -0
  422. package/dist/schemas/profile-course.js.map +1 -0
  423. package/dist/schemas/profile-education.js +33 -0
  424. package/dist/schemas/profile-education.js.map +1 -0
  425. package/dist/schemas/profile-external-account.js +15 -0
  426. package/dist/schemas/profile-external-account.js.map +1 -0
  427. package/dist/schemas/profile-honor.js +18 -0
  428. package/dist/schemas/profile-honor.js.map +1 -0
  429. package/dist/schemas/profile-investment.js +48 -0
  430. package/dist/schemas/profile-investment.js.map +1 -0
  431. package/dist/schemas/profile-involvement.js +47 -0
  432. package/dist/schemas/profile-involvement.js.map +1 -0
  433. package/dist/schemas/profile-language.js +12 -0
  434. package/dist/schemas/profile-language.js.map +1 -0
  435. package/dist/schemas/profile-position.js +42 -0
  436. package/dist/schemas/profile-position.js.map +1 -0
  437. package/dist/schemas/profile-presentation-delivery.js +38 -0
  438. package/dist/schemas/profile-presentation-delivery.js.map +1 -0
  439. package/dist/schemas/profile-presentation.js +36 -0
  440. package/dist/schemas/profile-presentation.js.map +1 -0
  441. package/dist/schemas/profile-project.js +48 -0
  442. package/dist/schemas/profile-project.js.map +1 -0
  443. package/dist/schemas/profile-publication.js +30 -0
  444. package/dist/schemas/profile-publication.js.map +1 -0
  445. package/dist/schemas/profile-self.js +22 -0
  446. package/dist/schemas/profile-self.js.map +1 -0
  447. package/dist/schemas/profile-skill.js +13 -0
  448. package/dist/schemas/profile-skill.js.map +1 -0
  449. package/dist/schemas/profile-volunteering.js +20 -0
  450. package/dist/schemas/profile-volunteering.js.map +1 -0
  451. package/dist/schemas/shared.js +56 -0
  452. package/dist/schemas/shared.js.map +1 -0
  453. package/dist/schemas/write/certification.js +16 -0
  454. package/dist/schemas/write/certification.js.map +1 -0
  455. package/dist/schemas/write/course.js +36 -0
  456. package/dist/schemas/write/course.js.map +1 -0
  457. package/dist/schemas/write/education.js +18 -0
  458. package/dist/schemas/write/education.js.map +1 -0
  459. package/dist/schemas/write/external-account.js +13 -0
  460. package/dist/schemas/write/external-account.js.map +1 -0
  461. package/dist/schemas/write/honor.js +14 -0
  462. package/dist/schemas/write/honor.js.map +1 -0
  463. package/dist/schemas/write/index.d.ts +1 -1
  464. package/dist/schemas/write/index.js +89 -593
  465. package/dist/schemas/write/index.js.map +1 -1
  466. package/dist/schemas/write/investment.js +32 -0
  467. package/dist/schemas/write/investment.js.map +1 -0
  468. package/dist/schemas/write/involvement.js +34 -0
  469. package/dist/schemas/write/involvement.js.map +1 -0
  470. package/dist/schemas/write/language.js +10 -0
  471. package/dist/schemas/write/language.js.map +1 -0
  472. package/dist/schemas/write/org-claim.js +56 -0
  473. package/dist/schemas/write/org-claim.js.map +1 -0
  474. package/dist/schemas/write/org-employment-attestation.js +19 -0
  475. package/dist/schemas/write/org-employment-attestation.js.map +1 -0
  476. package/dist/schemas/write/org-profile.js +54 -0
  477. package/dist/schemas/write/org-profile.js.map +1 -0
  478. package/dist/schemas/write/org-settings.js +81 -0
  479. package/dist/schemas/write/org-settings.js.map +1 -0
  480. package/dist/schemas/write/position.js +24 -0
  481. package/dist/schemas/write/position.js.map +1 -0
  482. package/dist/schemas/write/presentation-delivery.js +34 -0
  483. package/dist/schemas/write/presentation-delivery.js.map +1 -0
  484. package/dist/schemas/write/presentation.js +23 -0
  485. package/dist/schemas/write/presentation.js.map +1 -0
  486. package/dist/schemas/write/profile-location.js +21 -0
  487. package/dist/schemas/write/profile-location.js.map +1 -0
  488. package/dist/schemas/write/profile-self.js +27 -0
  489. package/dist/schemas/write/profile-self.js.map +1 -0
  490. package/dist/schemas/write/project.js +27 -0
  491. package/dist/schemas/write/project.js.map +1 -0
  492. package/dist/schemas/write/publication.js +41 -0
  493. package/dist/schemas/write/publication.js.map +1 -0
  494. package/dist/schemas/write/shared.js +96 -0
  495. package/dist/schemas/write/shared.js.map +1 -0
  496. package/dist/schemas/write/skill.js +18 -0
  497. package/dist/schemas/write/skill.js.map +1 -0
  498. package/dist/schemas/write/volunteering.js +16 -0
  499. package/dist/schemas/write/volunteering.js.map +1 -0
  500. package/dist/stream/activity-item.js +1 -0
  501. package/dist/stream/activity-item.js.map +1 -0
  502. package/dist/stream/index.js +49 -0
  503. package/dist/stream/index.js.map +1 -0
  504. package/dist/stream/stream-card-vm-schema.js +265 -0
  505. package/dist/stream/stream-card-vm-schema.js.map +1 -0
  506. package/dist/stream/stream-card-vm.js +1 -0
  507. package/dist/stream/stream-card-vm.js.map +1 -0
  508. package/dist/stream/to-stream-card-vm.js +793 -0
  509. package/dist/stream/to-stream-card-vm.js.map +1 -0
  510. package/dist/stream/two-tier.js +30 -0
  511. package/dist/stream/two-tier.js.map +1 -0
  512. package/dist/stream/verbs.js +120 -0
  513. package/dist/stream/verbs.js.map +1 -0
  514. package/dist/taxonomy/activity-tiers.js +956 -0
  515. package/dist/taxonomy/activity-tiers.js.map +1 -0
  516. package/dist/taxonomy/app-categories.js +42 -0
  517. package/dist/taxonomy/app-categories.js.map +1 -0
  518. package/dist/taxonomy/app-category-map.js +166 -0
  519. package/dist/taxonomy/app-category-map.js.map +1 -0
  520. package/dist/taxonomy/artifact-link-kind.js +29 -0
  521. package/dist/taxonomy/artifact-link-kind.js.map +1 -0
  522. package/dist/taxonomy/calendar-event.js +28 -0
  523. package/dist/taxonomy/calendar-event.js.map +1 -0
  524. package/dist/taxonomy/continents.js +215 -0
  525. package/dist/taxonomy/continents.js.map +1 -0
  526. package/dist/taxonomy/countries.js +203 -0
  527. package/dist/taxonomy/countries.js.map +1 -0
  528. package/dist/taxonomy/course-role.js +37 -0
  529. package/dist/taxonomy/course-role.js.map +1 -0
  530. package/dist/taxonomy/employment-type.js +82 -0
  531. package/dist/taxonomy/employment-type.js.map +1 -0
  532. package/dist/taxonomy/eqf-level.js +59 -0
  533. package/dist/taxonomy/eqf-level.js.map +1 -0
  534. package/dist/taxonomy/index.js +263 -0
  535. package/dist/taxonomy/index.js.map +1 -0
  536. package/dist/taxonomy/industry-taxonomy.js +281 -0
  537. package/dist/taxonomy/industry-taxonomy.js.map +1 -0
  538. package/dist/taxonomy/investment.js +54 -0
  539. package/dist/taxonomy/investment.js.map +1 -0
  540. package/dist/taxonomy/involvement-kind.js +30 -0
  541. package/dist/taxonomy/involvement-kind.js.map +1 -0
  542. package/dist/taxonomy/open-to.js +128 -0
  543. package/dist/taxonomy/open-to.js.map +1 -0
  544. package/dist/taxonomy/platforms.js +56 -0
  545. package/dist/taxonomy/platforms.js.map +1 -0
  546. package/dist/taxonomy/presentation-link-type.js +22 -0
  547. package/dist/taxonomy/presentation-link-type.js.map +1 -0
  548. package/dist/taxonomy/presentation-role.js +21 -0
  549. package/dist/taxonomy/presentation-role.js.map +1 -0
  550. package/dist/taxonomy/publication-type.js +54 -0
  551. package/dist/taxonomy/publication-type.js.map +1 -0
  552. package/dist/taxonomy/relational.js +25 -0
  553. package/dist/taxonomy/relational.js.map +1 -0
  554. package/dist/taxonomy/search-filter-defs.js +66 -0
  555. package/dist/taxonomy/search-filter-defs.js.map +1 -0
  556. package/dist/taxonomy/skill-categories.js +28 -0
  557. package/dist/taxonomy/skill-categories.js.map +1 -0
  558. package/dist/taxonomy/skill-display-groups.js +12 -0
  559. package/dist/taxonomy/skill-display-groups.js.map +1 -0
  560. package/dist/taxonomy/skill-grouping.js +90 -0
  561. package/dist/taxonomy/skill-grouping.js.map +1 -0
  562. package/dist/taxonomy/verification-providers.js +69 -0
  563. package/dist/taxonomy/verification-providers.js.map +1 -0
  564. package/dist/taxonomy/workplace-type.js +38 -0
  565. package/dist/taxonomy/workplace-type.js.map +1 -0
  566. package/dist/tokens/colors.js +11 -0
  567. package/dist/tokens/colors.js.map +1 -0
  568. package/dist/tokens/icons.js +15 -0
  569. package/dist/tokens/icons.js.map +1 -0
  570. package/dist/tokens/index.js +10 -39
  571. package/dist/tokens/index.js.map +1 -1
  572. package/dist/tokens/typography.js +23 -0
  573. package/dist/tokens/typography.js.map +1 -0
  574. package/dist/types/index.js +10 -0
  575. package/dist/types/index.js.map +1 -0
  576. package/dist/types/profile-view.js +1 -0
  577. package/dist/types/profile-view.js.map +1 -0
  578. package/dist/{use-org-notification-emails-0hjt-dEw.d.ts → use-org-notification-emails-CWWi1D8t.d.ts} +2 -2
  579. package/package.json +4 -3
@@ -0,0 +1,59 @@
1
+ // src/taxonomy/eqf-level.ts
2
+ var EQF_LEVEL_OPTIONS = [
3
+ { value: 1, label: "Primary education" },
4
+ { value: 2, label: "Lower secondary" },
5
+ { value: 3, label: "Vocational or partial upper secondary" },
6
+ { value: 4, label: "Upper secondary" },
7
+ { value: 5, label: "Associate or short-cycle degree" },
8
+ { value: 6, label: "Bachelor" },
9
+ { value: 7, label: "Master" },
10
+ { value: 8, label: "Doctorate" }
11
+ ];
12
+ var EQF_LEVEL_LABELS = Object.fromEntries(
13
+ EQF_LEVEL_OPTIONS.map((o) => [o.value, o.label])
14
+ );
15
+ function readEqfLevel(value) {
16
+ return Number.isInteger(value) && value >= 1 && value <= 8 ? value : void 0;
17
+ }
18
+ function getEqfLevelLabel(level) {
19
+ const valid = readEqfLevel(level);
20
+ return valid === void 0 ? void 0 : EQF_LEVEL_LABELS[valid];
21
+ }
22
+ function getEducationLevelDisplay(edu) {
23
+ const label = getEqfLevelLabel(edu.eqfLevel);
24
+ if (!label || !edu.degree) return label;
25
+ const named = new RegExp(`\\b${label}(?:['\u2019]?s)?\\b`, "i");
26
+ return named.test(edu.degree) ? void 0 : label;
27
+ }
28
+ var DEGREE_RULES = [
29
+ [
30
+ 7,
31
+ /\b(doctor of (medicine|dental \w+|pharmacy|veterinary \w+)|juris doctor|doctoraal|drs|md|jd|dds|dmd|pharmd|dvm)\b/
32
+ ],
33
+ [
34
+ 8,
35
+ /\b(phd|dphil|doctorate|doctoral|doctoraat|doctor|dr|edd|dba|dsc|scd|habilitation|promotie)\b/
36
+ ],
37
+ [7, /\b(masters?|msc|ma|ms|mba|mphil|meng|mres|mfa|mpa|mph|llm|ir|mr)\b/],
38
+ [6, /\b(bachelors?|bsc|ba|bs|beng|bba|bfa|llb|undergraduate|hbo)\b/],
39
+ [5, /\b(associates?|associate degree|hnd|hnc|foundation degree)\b/],
40
+ [
41
+ 4,
42
+ /\b(high school|secondary school|vwo|havo|abitur|a levels?|matura|international baccalaureate|ged)\b/
43
+ ]
44
+ ];
45
+ function suggestEqfLevelFromDegree(degree) {
46
+ if (!degree) return void 0;
47
+ const text = degree.toLowerCase().replace(/['’.]/g, "").replace(/[-_/()]/g, " ").replace(/\s+/g, " ").trim();
48
+ if (!text) return void 0;
49
+ return DEGREE_RULES.find(([, re]) => re.test(text))?.[0];
50
+ }
51
+ export {
52
+ EQF_LEVEL_LABELS,
53
+ EQF_LEVEL_OPTIONS,
54
+ getEducationLevelDisplay,
55
+ getEqfLevelLabel,
56
+ readEqfLevel,
57
+ suggestEqfLevelFromDegree
58
+ };
59
+ //# sourceMappingURL=eqf-level.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/taxonomy/eqf-level.ts"],"sourcesContent":["/**\n * Education level taxonomy. Mirrors `id.sifa.profile.education#eqfLevel` from\n * sifa-lexicons: an integer on the European Qualifications Framework, 1 to 8\n * (6 bachelor, 7 master, 8 doctoral). Labels are plain language; EQF numbers\n * are never shown to users.\n */\n\nexport type EqfLevel = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;\n\nexport interface EqfLevelOption {\n value: EqfLevel;\n label: string;\n}\n\nexport const EQF_LEVEL_OPTIONS: EqfLevelOption[] = [\n { value: 1, label: 'Primary education' },\n { value: 2, label: 'Lower secondary' },\n { value: 3, label: 'Vocational or partial upper secondary' },\n { value: 4, label: 'Upper secondary' },\n { value: 5, label: 'Associate or short-cycle degree' },\n { value: 6, label: 'Bachelor' },\n { value: 7, label: 'Master' },\n { value: 8, label: 'Doctorate' },\n];\n\nexport const EQF_LEVEL_LABELS: Record<EqfLevel, string> = Object.fromEntries(\n EQF_LEVEL_OPTIONS.map((o) => [o.value, o.label]),\n) as Record<EqfLevel, string>;\n\n/** Narrow an untrusted value (e.g. from a PDS record) to a valid EQF level. */\nexport function readEqfLevel(value: unknown): EqfLevel | undefined {\n return Number.isInteger(value) && (value as number) >= 1 && (value as number) <= 8\n ? (value as EqfLevel)\n : undefined;\n}\n\n/** Plain-language label for an EQF level, or undefined when absent or invalid. */\nexport function getEqfLevelLabel(level: number | undefined | null): string | undefined {\n const valid = readEqfLevel(level);\n return valid === undefined ? undefined : EQF_LEVEL_LABELS[valid];\n}\n\n/**\n * The level label to show next to an education entry's degree text, or\n * undefined when there is no valid level or the degree text already names it\n * (\"Master of Arts\" needs no \"Master\"). With no degree text at all, the label\n * stands in for it. One rule for every surface that shows education (#594).\n */\nexport function getEducationLevelDisplay(edu: {\n degree?: string;\n eqfLevel?: number;\n}): string | undefined {\n const label = getEqfLevelLabel(edu.eqfLevel);\n if (!label || !edu.degree) return label;\n // Whole words only, so \"Mastering\" or a field of study never hides it.\n const named = new RegExp(`\\\\b${label}(?:['’]?s)?\\\\b`, 'i');\n return named.test(edu.degree) ? undefined : label;\n}\n\n// First match wins. Order matters: the master-level \"doctor\" titles (Doctor of\n// Medicine, Juris Doctor, Dutch doctoraal / drs.) must be checked before the\n// generic doctorate rule, which would otherwise claim them.\nconst DEGREE_RULES: [EqfLevel, RegExp][] = [\n [\n 7,\n /\\b(doctor of (medicine|dental \\w+|pharmacy|veterinary \\w+)|juris doctor|doctoraal|drs|md|jd|dds|dmd|pharmd|dvm)\\b/,\n ],\n [\n 8,\n /\\b(phd|dphil|doctorate|doctoral|doctoraat|doctor|dr|edd|dba|dsc|scd|habilitation|promotie)\\b/,\n ],\n [7, /\\b(masters?|msc|ma|ms|mba|mphil|meng|mres|mfa|mpa|mph|llm|ir|mr)\\b/],\n [6, /\\b(bachelors?|bsc|ba|bs|beng|bba|bfa|llb|undergraduate|hbo)\\b/],\n [5, /\\b(associates?|associate degree|hnd|hnc|foundation degree)\\b/],\n [\n 4,\n /\\b(high school|secondary school|vwo|havo|abitur|a levels?|matura|international baccalaureate|ged)\\b/,\n ],\n];\n\n/**\n * Suggest an EQF level from a free-text degree (\"PhD\", \"Dr.\", \"doctoraat\",\n * \"MSc\", \"BSc\", ...). Returns undefined when the text does not clearly name a\n * level. A suggestion only: callers must let the user confirm it before it is\n * written to their repo.\n */\nexport function suggestEqfLevelFromDegree(degree: string | undefined | null): EqfLevel | undefined {\n if (!degree) return undefined;\n const text = degree\n .toLowerCase()\n .replace(/['’.]/g, '')\n .replace(/[-_/()]/g, ' ')\n .replace(/\\s+/g, ' ')\n .trim();\n if (!text) return undefined;\n return DEGREE_RULES.find(([, re]) => re.test(text))?.[0];\n}\n"],"mappings":";AAcO,IAAM,oBAAsC;AAAA,EACjD,EAAE,OAAO,GAAG,OAAO,oBAAoB;AAAA,EACvC,EAAE,OAAO,GAAG,OAAO,kBAAkB;AAAA,EACrC,EAAE,OAAO,GAAG,OAAO,wCAAwC;AAAA,EAC3D,EAAE,OAAO,GAAG,OAAO,kBAAkB;AAAA,EACrC,EAAE,OAAO,GAAG,OAAO,kCAAkC;AAAA,EACrD,EAAE,OAAO,GAAG,OAAO,WAAW;AAAA,EAC9B,EAAE,OAAO,GAAG,OAAO,SAAS;AAAA,EAC5B,EAAE,OAAO,GAAG,OAAO,YAAY;AACjC;AAEO,IAAM,mBAA6C,OAAO;AAAA,EAC/D,kBAAkB,IAAI,CAAC,MAAM,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC;AACjD;AAGO,SAAS,aAAa,OAAsC;AACjE,SAAO,OAAO,UAAU,KAAK,KAAM,SAAoB,KAAM,SAAoB,IAC5E,QACD;AACN;AAGO,SAAS,iBAAiB,OAAsD;AACrF,QAAM,QAAQ,aAAa,KAAK;AAChC,SAAO,UAAU,SAAY,SAAY,iBAAiB,KAAK;AACjE;AAQO,SAAS,yBAAyB,KAGlB;AACrB,QAAM,QAAQ,iBAAiB,IAAI,QAAQ;AAC3C,MAAI,CAAC,SAAS,CAAC,IAAI,OAAQ,QAAO;AAElC,QAAM,QAAQ,IAAI,OAAO,MAAM,KAAK,uBAAkB,GAAG;AACzD,SAAO,MAAM,KAAK,IAAI,MAAM,IAAI,SAAY;AAC9C;AAKA,IAAM,eAAqC;AAAA,EACzC;AAAA,IACE;AAAA,IACA;AAAA,EACF;AAAA,EACA;AAAA,IACE;AAAA,IACA;AAAA,EACF;AAAA,EACA,CAAC,GAAG,oEAAoE;AAAA,EACxE,CAAC,GAAG,+DAA+D;AAAA,EACnE,CAAC,GAAG,8DAA8D;AAAA,EAClE;AAAA,IACE;AAAA,IACA;AAAA,EACF;AACF;AAQO,SAAS,0BAA0B,QAAyD;AACjG,MAAI,CAAC,OAAQ,QAAO;AACpB,QAAM,OAAO,OACV,YAAY,EACZ,QAAQ,UAAU,EAAE,EACpB,QAAQ,YAAY,GAAG,EACvB,QAAQ,QAAQ,GAAG,EACnB,KAAK;AACR,MAAI,CAAC,KAAM,QAAO;AAClB,SAAO,aAAa,KAAK,CAAC,CAAC,EAAE,EAAE,MAAM,GAAG,KAAK,IAAI,CAAC,IAAI,CAAC;AACzD;","names":[]}
@@ -0,0 +1,263 @@
1
+ // src/taxonomy/index.ts
2
+ import { CONTINENTS, getContinent } from "./continents.js";
3
+ import { COUNTRIES } from "./countries.js";
4
+ import {
5
+ EQF_LEVEL_LABELS,
6
+ EQF_LEVEL_OPTIONS,
7
+ getEducationLevelDisplay,
8
+ getEqfLevelLabel,
9
+ readEqfLevel,
10
+ suggestEqfLevelFromDegree
11
+ } from "./eqf-level.js";
12
+ import {
13
+ COMPANY_OPTIONAL_EMPLOYMENT_TYPES,
14
+ EMPLOYMENT_TYPE_GROUPS,
15
+ EMPLOYMENT_TYPE_LABELS,
16
+ ON_BEHALF_OF_EMPLOYMENT_TYPES,
17
+ getEmploymentTypeLabel,
18
+ isCompanyRequired,
19
+ isOnBehalfOfApplicable
20
+ } from "./employment-type.js";
21
+ import {
22
+ INDUSTRY_OPTIONS,
23
+ INDUSTRY_LABELS,
24
+ findIndustry,
25
+ getIndustryLabel,
26
+ getIndustryLabelKey
27
+ } from "./industry-taxonomy.js";
28
+ import {
29
+ OPEN_TO_OPTIONS,
30
+ OPEN_TO_TOKENS,
31
+ OPEN_TO_TOKEN_TO_VALUE,
32
+ OPEN_TO_VALUE_TO_TOKEN,
33
+ OPEN_TO_TOKEN_LABELS,
34
+ OPEN_TO_GROUP_LABELS,
35
+ OPEN_TO_LEGACY_VALUE_ALIASES,
36
+ getOpenToLabelKey,
37
+ normalizeOpenTo,
38
+ openToTokenToValue,
39
+ openToValueToToken
40
+ } from "./open-to.js";
41
+ import {
42
+ SEARCH_FILTER_DEFS
43
+ } from "./search-filter-defs.js";
44
+ import {
45
+ WORKPLACE_TYPE_LABELS,
46
+ WORKPLACE_TYPE_OPTIONS,
47
+ WORKPLACE_TYPE_LEGACY_ALIASES,
48
+ getWorkplaceTypeLabel,
49
+ normalizeWorkplaceTypes
50
+ } from "./workplace-type.js";
51
+ import {
52
+ PLATFORM_LABELS,
53
+ PLATFORM_OPTIONS,
54
+ getFaviconUrl,
55
+ getPlatformLabel,
56
+ isKnownPlatform,
57
+ normalizePlatformId
58
+ } from "./platforms.js";
59
+ import {
60
+ CATEGORY_LABELS,
61
+ normalizeSkillCategory,
62
+ CATEGORY_ORDER,
63
+ SKILL_CATEGORIES
64
+ } from "./skill-categories.js";
65
+ import {
66
+ dedupeSkills,
67
+ groupSkillsByCategory,
68
+ groupSkillsBySubCategory
69
+ } from "./skill-grouping.js";
70
+ import {
71
+ groupSkillsForDisplay
72
+ } from "./skill-display-groups.js";
73
+ import {
74
+ APP_CATEGORIES,
75
+ APP_CATEGORY_IDS,
76
+ getAppCategoryIcon,
77
+ isAppCategory
78
+ } from "./app-categories.js";
79
+ import {
80
+ APP_CATEGORY_MAP,
81
+ categoryForApp,
82
+ isKnownAppId
83
+ } from "./app-category-map.js";
84
+ import {
85
+ ACTIVITY_TIERS,
86
+ getActivityTaxonomyVersion,
87
+ getActivityTier,
88
+ getLexiconEntry,
89
+ getTierMeta
90
+ } from "./activity-tiers.js";
91
+ import { isRelationalActivity } from "./relational.js";
92
+ import {
93
+ PRESENTATION_ROLE_LABELS,
94
+ PRESENTATION_ROLE_OPTIONS,
95
+ getPresentationRoleLabel
96
+ } from "./presentation-role.js";
97
+ import {
98
+ PUBLICATION_TYPE_LABELS,
99
+ PUBLICATION_TYPE_OPTIONS,
100
+ getPublicationTypeLabel
101
+ } from "./publication-type.js";
102
+ import {
103
+ PRESENTATION_LINK_TYPE_LABELS,
104
+ PRESENTATION_LINK_TYPE_OPTIONS,
105
+ getPresentationLinkTypeLabel
106
+ } from "./presentation-link-type.js";
107
+ import {
108
+ CALENDAR_EVENT_MODE_LABELS,
109
+ CALENDAR_EVENT_STATUS_LABELS,
110
+ getCalendarEventModeLabel,
111
+ getCalendarEventStatusLabel
112
+ } from "./calendar-event.js";
113
+ import {
114
+ INVOLVEMENT_KIND_HEADINGS,
115
+ INVOLVEMENT_KIND_LABELS,
116
+ INVOLVEMENT_KIND_OPTIONS,
117
+ getInvolvementKindHeading,
118
+ getInvolvementKindLabel
119
+ } from "./involvement-kind.js";
120
+ import {
121
+ COURSE_ROLE_OPTIONS,
122
+ COURSE_ROLE_LABELS,
123
+ COURSE_ROLE_TAKEN,
124
+ COURSE_ROLE_TAUGHT,
125
+ COURSE_ROLE_TEACHING_ASSISTANT,
126
+ getCourseRoleLabel,
127
+ isTeachingCourse,
128
+ splitCoursesByRole
129
+ } from "./course-role.js";
130
+ import {
131
+ ARTIFACT_LINK_KIND_LABELS,
132
+ ARTIFACT_LINK_KIND_OPTIONS,
133
+ getArtifactLinkKindLabel
134
+ } from "./artifact-link-kind.js";
135
+ import {
136
+ VERIFICATION_PROVIDERS,
137
+ getVerificationProvider,
138
+ isKnownVerificationProvider,
139
+ resolveVerifierProvider,
140
+ primaryVerification
141
+ } from "./verification-providers.js";
142
+ import {
143
+ INVESTMENT_ROLE_OPTIONS,
144
+ INVESTMENT_ROLE_LABELS,
145
+ INVESTMENT_STAGE_OPTIONS,
146
+ INVESTMENT_STAGE_LABELS,
147
+ INVESTMENT_STATUS_OPTIONS,
148
+ INVESTMENT_STATUS_LABELS,
149
+ getInvestmentRoleLabel,
150
+ getInvestmentStageLabel,
151
+ getInvestmentStatusLabel
152
+ } from "./investment.js";
153
+ export {
154
+ ACTIVITY_TIERS,
155
+ APP_CATEGORIES,
156
+ APP_CATEGORY_IDS,
157
+ APP_CATEGORY_MAP,
158
+ ARTIFACT_LINK_KIND_LABELS,
159
+ ARTIFACT_LINK_KIND_OPTIONS,
160
+ CALENDAR_EVENT_MODE_LABELS,
161
+ CALENDAR_EVENT_STATUS_LABELS,
162
+ CATEGORY_LABELS,
163
+ CATEGORY_ORDER,
164
+ COMPANY_OPTIONAL_EMPLOYMENT_TYPES,
165
+ CONTINENTS,
166
+ COUNTRIES,
167
+ COURSE_ROLE_LABELS,
168
+ COURSE_ROLE_OPTIONS,
169
+ COURSE_ROLE_TAKEN,
170
+ COURSE_ROLE_TAUGHT,
171
+ COURSE_ROLE_TEACHING_ASSISTANT,
172
+ EMPLOYMENT_TYPE_GROUPS,
173
+ EMPLOYMENT_TYPE_LABELS,
174
+ EQF_LEVEL_LABELS,
175
+ EQF_LEVEL_OPTIONS,
176
+ INDUSTRY_LABELS,
177
+ INDUSTRY_OPTIONS,
178
+ INVESTMENT_ROLE_LABELS,
179
+ INVESTMENT_ROLE_OPTIONS,
180
+ INVESTMENT_STAGE_LABELS,
181
+ INVESTMENT_STAGE_OPTIONS,
182
+ INVESTMENT_STATUS_LABELS,
183
+ INVESTMENT_STATUS_OPTIONS,
184
+ INVOLVEMENT_KIND_HEADINGS,
185
+ INVOLVEMENT_KIND_LABELS,
186
+ INVOLVEMENT_KIND_OPTIONS,
187
+ ON_BEHALF_OF_EMPLOYMENT_TYPES,
188
+ OPEN_TO_GROUP_LABELS,
189
+ OPEN_TO_LEGACY_VALUE_ALIASES,
190
+ OPEN_TO_OPTIONS,
191
+ OPEN_TO_TOKENS,
192
+ OPEN_TO_TOKEN_LABELS,
193
+ OPEN_TO_TOKEN_TO_VALUE,
194
+ OPEN_TO_VALUE_TO_TOKEN,
195
+ PLATFORM_LABELS,
196
+ PLATFORM_OPTIONS,
197
+ PRESENTATION_LINK_TYPE_LABELS,
198
+ PRESENTATION_LINK_TYPE_OPTIONS,
199
+ PRESENTATION_ROLE_LABELS,
200
+ PRESENTATION_ROLE_OPTIONS,
201
+ PUBLICATION_TYPE_LABELS,
202
+ PUBLICATION_TYPE_OPTIONS,
203
+ SEARCH_FILTER_DEFS,
204
+ SKILL_CATEGORIES,
205
+ VERIFICATION_PROVIDERS,
206
+ WORKPLACE_TYPE_LABELS,
207
+ WORKPLACE_TYPE_LEGACY_ALIASES,
208
+ WORKPLACE_TYPE_OPTIONS,
209
+ categoryForApp,
210
+ dedupeSkills,
211
+ findIndustry,
212
+ getActivityTaxonomyVersion,
213
+ getActivityTier,
214
+ getAppCategoryIcon,
215
+ getArtifactLinkKindLabel,
216
+ getCalendarEventModeLabel,
217
+ getCalendarEventStatusLabel,
218
+ getContinent,
219
+ getCourseRoleLabel,
220
+ getEducationLevelDisplay,
221
+ getEmploymentTypeLabel,
222
+ getEqfLevelLabel,
223
+ getFaviconUrl,
224
+ getIndustryLabel,
225
+ getIndustryLabelKey,
226
+ getInvestmentRoleLabel,
227
+ getInvestmentStageLabel,
228
+ getInvestmentStatusLabel,
229
+ getInvolvementKindHeading,
230
+ getInvolvementKindLabel,
231
+ getLexiconEntry,
232
+ getOpenToLabelKey,
233
+ getPlatformLabel,
234
+ getPresentationLinkTypeLabel,
235
+ getPresentationRoleLabel,
236
+ getPublicationTypeLabel,
237
+ getTierMeta,
238
+ getVerificationProvider,
239
+ getWorkplaceTypeLabel,
240
+ groupSkillsByCategory,
241
+ groupSkillsBySubCategory,
242
+ groupSkillsForDisplay,
243
+ isAppCategory,
244
+ isCompanyRequired,
245
+ isKnownAppId,
246
+ isKnownPlatform,
247
+ isKnownVerificationProvider,
248
+ isOnBehalfOfApplicable,
249
+ isRelationalActivity,
250
+ isTeachingCourse,
251
+ normalizeOpenTo,
252
+ normalizePlatformId,
253
+ normalizeSkillCategory,
254
+ normalizeWorkplaceTypes,
255
+ openToTokenToValue,
256
+ openToValueToToken,
257
+ primaryVerification,
258
+ readEqfLevel,
259
+ resolveVerifierProvider,
260
+ splitCoursesByRole,
261
+ suggestEqfLevelFromDegree
262
+ };
263
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/taxonomy/index.ts"],"sourcesContent":["export { CONTINENTS, getContinent, type ContinentCode } from './continents.js';\nexport { COUNTRIES } from './countries.js';\nexport {\n EQF_LEVEL_LABELS,\n EQF_LEVEL_OPTIONS,\n getEducationLevelDisplay,\n getEqfLevelLabel,\n readEqfLevel,\n suggestEqfLevelFromDegree,\n type EqfLevel,\n type EqfLevelOption,\n} from './eqf-level.js';\nexport {\n COMPANY_OPTIONAL_EMPLOYMENT_TYPES,\n EMPLOYMENT_TYPE_GROUPS,\n EMPLOYMENT_TYPE_LABELS,\n ON_BEHALF_OF_EMPLOYMENT_TYPES,\n getEmploymentTypeLabel,\n isCompanyRequired,\n isOnBehalfOfApplicable,\n type EmploymentTypeGroup,\n type EmploymentTypeOption,\n} from './employment-type.js';\nexport {\n INDUSTRY_OPTIONS,\n INDUSTRY_LABELS,\n findIndustry,\n getIndustryLabel,\n getIndustryLabelKey,\n type IndustryOption,\n} from './industry-taxonomy.js';\nexport {\n OPEN_TO_OPTIONS,\n OPEN_TO_TOKENS,\n OPEN_TO_TOKEN_TO_VALUE,\n OPEN_TO_VALUE_TO_TOKEN,\n OPEN_TO_TOKEN_LABELS,\n OPEN_TO_GROUP_LABELS,\n OPEN_TO_LEGACY_VALUE_ALIASES,\n getOpenToLabelKey,\n normalizeOpenTo,\n openToTokenToValue,\n openToValueToToken,\n type OpenToGroup,\n type OpenToOption,\n} from './open-to.js';\nexport {\n SEARCH_FILTER_DEFS,\n type SearchFilterControl,\n type SearchFilterDef,\n type SearchFilterOptionSource,\n} from './search-filter-defs.js';\nexport {\n WORKPLACE_TYPE_LABELS,\n WORKPLACE_TYPE_OPTIONS,\n WORKPLACE_TYPE_LEGACY_ALIASES,\n getWorkplaceTypeLabel,\n normalizeWorkplaceTypes,\n type WorkplaceTypeOption,\n} from './workplace-type.js';\nexport {\n PLATFORM_LABELS,\n PLATFORM_OPTIONS,\n getFaviconUrl,\n getPlatformLabel,\n isKnownPlatform,\n normalizePlatformId,\n type PlatformId,\n} from './platforms.js';\nexport {\n CATEGORY_LABELS,\n normalizeSkillCategory,\n CATEGORY_ORDER,\n SKILL_CATEGORIES,\n type SkillCategory,\n} from './skill-categories.js';\nexport {\n dedupeSkills,\n groupSkillsByCategory,\n groupSkillsBySubCategory,\n type MergedProfileSkill,\n} from './skill-grouping.js';\nexport {\n groupSkillsForDisplay,\n type SkillDisplayGroups,\n type SkillDisplayGroupsOptions,\n} from './skill-display-groups.js';\nexport {\n APP_CATEGORIES,\n APP_CATEGORY_IDS,\n getAppCategoryIcon,\n isAppCategory,\n type AppCategoryId,\n} from './app-categories.js';\nexport {\n APP_CATEGORY_MAP,\n categoryForApp,\n isKnownAppId,\n type KnownAppId,\n} from './app-category-map.js';\nexport {\n ACTIVITY_TIERS,\n getActivityTaxonomyVersion,\n getActivityTier,\n getLexiconEntry,\n getTierMeta,\n type ActivityTaxonomy,\n type ActivityTier,\n type LexiconEntry,\n type TierMeta,\n} from './activity-tiers.js';\nexport { isRelationalActivity } from './relational.js';\nexport {\n PRESENTATION_ROLE_LABELS,\n PRESENTATION_ROLE_OPTIONS,\n getPresentationRoleLabel,\n type PresentationRoleOption,\n} from './presentation-role.js';\nexport {\n PUBLICATION_TYPE_LABELS,\n PUBLICATION_TYPE_OPTIONS,\n getPublicationTypeLabel,\n type PublicationTypeOption,\n} from './publication-type.js';\nexport {\n PRESENTATION_LINK_TYPE_LABELS,\n PRESENTATION_LINK_TYPE_OPTIONS,\n getPresentationLinkTypeLabel,\n type PresentationLinkTypeOption,\n} from './presentation-link-type.js';\nexport {\n CALENDAR_EVENT_MODE_LABELS,\n CALENDAR_EVENT_STATUS_LABELS,\n getCalendarEventModeLabel,\n getCalendarEventStatusLabel,\n} from './calendar-event.js';\nexport {\n INVOLVEMENT_KIND_HEADINGS,\n INVOLVEMENT_KIND_LABELS,\n INVOLVEMENT_KIND_OPTIONS,\n getInvolvementKindHeading,\n getInvolvementKindLabel,\n type InvolvementKindOption,\n} from './involvement-kind.js';\nexport {\n COURSE_ROLE_OPTIONS,\n COURSE_ROLE_LABELS,\n COURSE_ROLE_TAKEN,\n COURSE_ROLE_TAUGHT,\n COURSE_ROLE_TEACHING_ASSISTANT,\n getCourseRoleLabel,\n isTeachingCourse,\n splitCoursesByRole,\n type CourseRoleOption,\n} from './course-role.js';\nexport {\n ARTIFACT_LINK_KIND_LABELS,\n ARTIFACT_LINK_KIND_OPTIONS,\n getArtifactLinkKindLabel,\n type ArtifactLinkKindOption,\n} from './artifact-link-kind.js';\nexport {\n VERIFICATION_PROVIDERS,\n getVerificationProvider,\n isKnownVerificationProvider,\n resolveVerifierProvider,\n primaryVerification,\n type AccountVerification,\n type VerificationProvider,\n type VerificationProviderId,\n type VerificationSource,\n} from './verification-providers.js';\nexport {\n INVESTMENT_ROLE_OPTIONS,\n INVESTMENT_ROLE_LABELS,\n INVESTMENT_STAGE_OPTIONS,\n INVESTMENT_STAGE_LABELS,\n INVESTMENT_STATUS_OPTIONS,\n INVESTMENT_STATUS_LABELS,\n getInvestmentRoleLabel,\n getInvestmentStageLabel,\n getInvestmentStatusLabel,\n type InvestmentOption,\n} from './investment.js';\n"],"mappings":";AAAA,SAAS,YAAY,oBAAwC;AAC7D,SAAS,iBAAiB;AAC1B;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAGK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAGK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAGK;AACP;AAAA,EACE;AAAA,OAIK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,OAGK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAKK;AACP,SAAS,4BAA4B;AACrC;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,OAEK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAKK;AACP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OAEK;","names":[]}
@@ -0,0 +1,281 @@
1
+ // src/taxonomy/industry-taxonomy.ts
2
+ var INDUSTRY_OPTIONS = [
3
+ {
4
+ value: "id.sifa.defs#industryTechnology",
5
+ labelKey: "industryTechnology",
6
+ domains: [
7
+ { value: "id.sifa.defs#domainSoftwareEngineering", labelKey: "domainSoftwareEngineering" },
8
+ { value: "id.sifa.defs#domainDataScience", labelKey: "domainDataScience" },
9
+ { value: "id.sifa.defs#domainCybersecurity", labelKey: "domainCybersecurity" },
10
+ { value: "id.sifa.defs#domainDevops", labelKey: "domainDevops" },
11
+ { value: "id.sifa.defs#domainProductDesign", labelKey: "domainProductDesign" },
12
+ { value: "id.sifa.defs#domainGameDev", labelKey: "domainGameDev" }
13
+ ]
14
+ },
15
+ {
16
+ value: "id.sifa.defs#industryFinance",
17
+ labelKey: "industryFinance",
18
+ domains: [
19
+ { value: "id.sifa.defs#domainBanking", labelKey: "domainBanking" },
20
+ { value: "id.sifa.defs#domainFintech", labelKey: "domainFintech" },
21
+ { value: "id.sifa.defs#domainInsurance", labelKey: "domainInsurance" },
22
+ { value: "id.sifa.defs#domainInvestmentMgmt", labelKey: "domainInvestmentMgmt" }
23
+ ]
24
+ },
25
+ {
26
+ value: "id.sifa.defs#industryHealthcare",
27
+ labelKey: "industryHealthcare",
28
+ domains: [
29
+ { value: "id.sifa.defs#domainClinicalResearch", labelKey: "domainClinicalResearch" },
30
+ { value: "id.sifa.defs#domainHealthtech", labelKey: "domainHealthtech" },
31
+ { value: "id.sifa.defs#domainPharma", labelKey: "domainPharma" }
32
+ ]
33
+ },
34
+ {
35
+ value: "id.sifa.defs#industryEducation",
36
+ labelKey: "industryEducation",
37
+ domains: [
38
+ { value: "id.sifa.defs#domainHigherEd", labelKey: "domainHigherEd" },
39
+ { value: "id.sifa.defs#domainEdtech", labelKey: "domainEdtech" },
40
+ { value: "id.sifa.defs#domainPrimarySecondary", labelKey: "domainPrimarySecondary" }
41
+ ]
42
+ },
43
+ {
44
+ value: "id.sifa.defs#industryMedia",
45
+ labelKey: "industryMedia",
46
+ domains: [
47
+ { value: "id.sifa.defs#domainJournalism", labelKey: "domainJournalism" },
48
+ { value: "id.sifa.defs#domainFilmVideo", labelKey: "domainFilmVideo" },
49
+ { value: "id.sifa.defs#domainGaming", labelKey: "domainGaming" },
50
+ { value: "id.sifa.defs#domainAdvertising", labelKey: "domainAdvertising" }
51
+ ]
52
+ },
53
+ {
54
+ value: "id.sifa.defs#industryRetail",
55
+ labelKey: "industryRetail",
56
+ domains: [
57
+ { value: "id.sifa.defs#domainEcommerce", labelKey: "domainEcommerce" },
58
+ { value: "id.sifa.defs#domainSupplyChain", labelKey: "domainSupplyChain" }
59
+ ]
60
+ },
61
+ {
62
+ value: "id.sifa.defs#industryManufacturing",
63
+ labelKey: "industryManufacturing",
64
+ domains: [
65
+ { value: "id.sifa.defs#domainAutomotive", labelKey: "domainAutomotive" },
66
+ { value: "id.sifa.defs#domainAerospace", labelKey: "domainAerospace" },
67
+ { value: "id.sifa.defs#domainHardware", labelKey: "domainHardware" }
68
+ ]
69
+ },
70
+ {
71
+ value: "id.sifa.defs#industryEnergy",
72
+ labelKey: "industryEnergy",
73
+ domains: [
74
+ { value: "id.sifa.defs#domainRenewables", labelKey: "domainRenewables" },
75
+ { value: "id.sifa.defs#domainOilGas", labelKey: "domainOilGas" },
76
+ { value: "id.sifa.defs#domainClimateTech", labelKey: "domainClimateTech" }
77
+ ]
78
+ },
79
+ {
80
+ value: "id.sifa.defs#industryGovernment",
81
+ labelKey: "industryGovernment",
82
+ domains: [
83
+ { value: "id.sifa.defs#domainPublicPolicy", labelKey: "domainPublicPolicy" },
84
+ { value: "id.sifa.defs#domainDefense", labelKey: "domainDefense" }
85
+ ]
86
+ },
87
+ {
88
+ value: "id.sifa.defs#industryLegal",
89
+ labelKey: "industryLegal",
90
+ domains: [
91
+ { value: "id.sifa.defs#domainIpLaw", labelKey: "domainIpLaw" },
92
+ { value: "id.sifa.defs#domainCompliance", labelKey: "domainCompliance" }
93
+ ]
94
+ },
95
+ {
96
+ value: "id.sifa.defs#industryConsulting",
97
+ labelKey: "industryConsulting",
98
+ domains: [
99
+ { value: "id.sifa.defs#domainManagementConsulting", labelKey: "domainManagementConsulting" },
100
+ { value: "id.sifa.defs#domainDevrel", labelKey: "domainDevrel" },
101
+ { value: "id.sifa.defs#domainHrRecruitment", labelKey: "domainHrRecruitment" }
102
+ ]
103
+ },
104
+ {
105
+ value: "id.sifa.defs#industryNonprofit",
106
+ labelKey: "industryNonprofit",
107
+ domains: [
108
+ { value: "id.sifa.defs#domainHumanRights", labelKey: "domainHumanRights" },
109
+ { value: "id.sifa.defs#domainOpenSource", labelKey: "domainOpenSource" }
110
+ ]
111
+ },
112
+ {
113
+ value: "id.sifa.defs#industryRealEstate",
114
+ labelKey: "industryRealEstate",
115
+ domains: [{ value: "id.sifa.defs#domainProptech", labelKey: "domainProptech" }]
116
+ },
117
+ {
118
+ value: "id.sifa.defs#industryTransport",
119
+ labelKey: "industryTransport",
120
+ domains: [
121
+ { value: "id.sifa.defs#domainAutonomousVehicles", labelKey: "domainAutonomousVehicles" },
122
+ { value: "id.sifa.defs#domainLogistics", labelKey: "domainLogistics" }
123
+ ]
124
+ },
125
+ {
126
+ value: "id.sifa.defs#industryAgriculture",
127
+ labelKey: "industryAgriculture",
128
+ domains: [
129
+ { value: "id.sifa.defs#domainAgritech", labelKey: "domainAgritech" },
130
+ { value: "id.sifa.defs#domainFoodTech", labelKey: "domainFoodTech" }
131
+ ]
132
+ },
133
+ {
134
+ value: "id.sifa.defs#industryHospitality",
135
+ labelKey: "industryHospitality",
136
+ domains: [
137
+ { value: "id.sifa.defs#domainHotels", labelKey: "domainHotels" },
138
+ { value: "id.sifa.defs#domainTravelTourism", labelKey: "domainTravelTourism" },
139
+ { value: "id.sifa.defs#domainFoodBeverage", labelKey: "domainFoodBeverage" }
140
+ ]
141
+ },
142
+ {
143
+ value: "id.sifa.defs#industryTelecom",
144
+ labelKey: "industryTelecom",
145
+ domains: [
146
+ { value: "id.sifa.defs#domainNetworkInfra", labelKey: "domainNetworkInfra" },
147
+ { value: "id.sifa.defs#domainMobileServices", labelKey: "domainMobileServices" }
148
+ ]
149
+ },
150
+ {
151
+ value: "id.sifa.defs#industryMining",
152
+ labelKey: "industryMining",
153
+ domains: [
154
+ { value: "id.sifa.defs#domainExtraction", labelKey: "domainExtraction" },
155
+ { value: "id.sifa.defs#domainGeological", labelKey: "domainGeological" }
156
+ ]
157
+ },
158
+ {
159
+ value: "id.sifa.defs#industryFashion",
160
+ labelKey: "industryFashion",
161
+ domains: [
162
+ { value: "id.sifa.defs#domainFashionDesign", labelKey: "domainFashionDesign" },
163
+ { value: "id.sifa.defs#domainTextileManufacturing", labelKey: "domainTextileManufacturing" }
164
+ ]
165
+ },
166
+ {
167
+ value: "id.sifa.defs#industryMaritime",
168
+ labelKey: "industryMaritime",
169
+ domains: [
170
+ { value: "id.sifa.defs#domainShipping", labelKey: "domainShipping" },
171
+ { value: "id.sifa.defs#domainPortOperations", labelKey: "domainPortOperations" },
172
+ { value: "id.sifa.defs#domainNavalArchitecture", labelKey: "domainNavalArchitecture" }
173
+ ]
174
+ },
175
+ {
176
+ value: "id.sifa.defs#industryOther",
177
+ labelKey: "industryOther",
178
+ domains: []
179
+ }
180
+ ];
181
+ function findIndustry(value) {
182
+ if (!value) return void 0;
183
+ return INDUSTRY_OPTIONS.find((i) => i.value === value);
184
+ }
185
+ function getIndustryLabelKey(value) {
186
+ for (const industry of INDUSTRY_OPTIONS) {
187
+ if (industry.value === value) return industry.labelKey;
188
+ for (const domain of industry.domains) {
189
+ if (domain.value === value) return domain.labelKey;
190
+ }
191
+ }
192
+ return value;
193
+ }
194
+ var INDUSTRY_LABELS = {
195
+ industryTechnology: "Technology",
196
+ domainSoftwareEngineering: "Software Engineering",
197
+ domainDataScience: "Data Science & ML",
198
+ domainCybersecurity: "Cybersecurity",
199
+ domainDevops: "DevOps & Infrastructure",
200
+ domainProductDesign: "Product & UX Design",
201
+ domainGameDev: "Game Development",
202
+ industryFinance: "Finance & Banking",
203
+ domainBanking: "Banking",
204
+ domainFintech: "Fintech",
205
+ domainInsurance: "Insurance",
206
+ domainInvestmentMgmt: "Investment Management",
207
+ industryHealthcare: "Healthcare & Life Sciences",
208
+ domainClinicalResearch: "Clinical Research",
209
+ domainHealthtech: "Health Technology",
210
+ domainPharma: "Pharmaceuticals",
211
+ industryEducation: "Education & Research",
212
+ domainHigherEd: "Higher Education",
213
+ domainEdtech: "Education Technology",
214
+ domainPrimarySecondary: "Primary & Secondary Education",
215
+ industryMedia: "Media & Entertainment",
216
+ domainJournalism: "Journalism",
217
+ domainFilmVideo: "Film & Video",
218
+ domainGaming: "Gaming & Interactive Media",
219
+ domainAdvertising: "Advertising & Marketing",
220
+ industryRetail: "Retail & E-commerce",
221
+ domainEcommerce: "E-commerce",
222
+ domainSupplyChain: "Supply Chain & Fulfillment",
223
+ industryManufacturing: "Manufacturing & Engineering",
224
+ domainAutomotive: "Automotive",
225
+ domainAerospace: "Aerospace & Defense",
226
+ domainHardware: "Hardware & Electronics",
227
+ industryEnergy: "Energy & Environment",
228
+ domainRenewables: "Renewable Energy",
229
+ domainOilGas: "Oil & Gas",
230
+ domainClimateTech: "Climate Tech",
231
+ industryGovernment: "Government & Public Sector",
232
+ domainPublicPolicy: "Public Policy",
233
+ domainDefense: "Defense & Intelligence",
234
+ industryLegal: "Legal",
235
+ domainIpLaw: "Intellectual Property",
236
+ domainCompliance: "Compliance & Regulatory",
237
+ industryConsulting: "Consulting & Professional Services",
238
+ domainManagementConsulting: "Management Consulting",
239
+ domainDevrel: "Developer Relations",
240
+ domainHrRecruitment: "HR & Recruitment",
241
+ industryNonprofit: "Non-profit & Social Impact",
242
+ domainHumanRights: "Human Rights",
243
+ domainOpenSource: "Open Source",
244
+ industryRealEstate: "Real Estate & Construction",
245
+ domainProptech: "Property Technology",
246
+ industryTransport: "Transportation & Logistics",
247
+ domainAutonomousVehicles: "Autonomous Vehicles",
248
+ domainLogistics: "Logistics & Warehousing",
249
+ industryAgriculture: "Agriculture & Food",
250
+ domainAgritech: "Agricultural Technology",
251
+ domainFoodTech: "Food Technology & Processing",
252
+ industryHospitality: "Hospitality & Tourism",
253
+ domainHotels: "Hotels & Accommodation",
254
+ domainTravelTourism: "Travel & Tourism",
255
+ domainFoodBeverage: "Food & Beverage",
256
+ industryTelecom: "Telecommunications",
257
+ domainNetworkInfra: "Network Infrastructure",
258
+ domainMobileServices: "Mobile & Wireless Services",
259
+ industryMining: "Mining & Resources",
260
+ domainExtraction: "Extraction & Processing",
261
+ domainGeological: "Geological Services",
262
+ industryFashion: "Fashion & Textiles",
263
+ domainFashionDesign: "Fashion Design",
264
+ domainTextileManufacturing: "Textile Manufacturing",
265
+ industryMaritime: "Maritime & Shipping",
266
+ domainShipping: "Shipping & Freight",
267
+ domainPortOperations: "Port & Terminal Operations",
268
+ domainNavalArchitecture: "Naval Architecture & Marine Engineering",
269
+ industryOther: "Other"
270
+ };
271
+ function getIndustryLabel(value) {
272
+ return INDUSTRY_LABELS[getIndustryLabelKey(value)] ?? value;
273
+ }
274
+ export {
275
+ INDUSTRY_LABELS,
276
+ INDUSTRY_OPTIONS,
277
+ findIndustry,
278
+ getIndustryLabel,
279
+ getIndustryLabelKey
280
+ };
281
+ //# sourceMappingURL=industry-taxonomy.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/taxonomy/industry-taxonomy.ts"],"sourcesContent":["/** Two-level industry/domain taxonomy for profile classification. */\n\nexport interface IndustryOption {\n value: string;\n labelKey: string;\n domains: { value: string; labelKey: string }[];\n}\n\nexport const INDUSTRY_OPTIONS: IndustryOption[] = [\n {\n value: 'id.sifa.defs#industryTechnology',\n labelKey: 'industryTechnology',\n domains: [\n { value: 'id.sifa.defs#domainSoftwareEngineering', labelKey: 'domainSoftwareEngineering' },\n { value: 'id.sifa.defs#domainDataScience', labelKey: 'domainDataScience' },\n { value: 'id.sifa.defs#domainCybersecurity', labelKey: 'domainCybersecurity' },\n { value: 'id.sifa.defs#domainDevops', labelKey: 'domainDevops' },\n { value: 'id.sifa.defs#domainProductDesign', labelKey: 'domainProductDesign' },\n { value: 'id.sifa.defs#domainGameDev', labelKey: 'domainGameDev' },\n ],\n },\n {\n value: 'id.sifa.defs#industryFinance',\n labelKey: 'industryFinance',\n domains: [\n { value: 'id.sifa.defs#domainBanking', labelKey: 'domainBanking' },\n { value: 'id.sifa.defs#domainFintech', labelKey: 'domainFintech' },\n { value: 'id.sifa.defs#domainInsurance', labelKey: 'domainInsurance' },\n { value: 'id.sifa.defs#domainInvestmentMgmt', labelKey: 'domainInvestmentMgmt' },\n ],\n },\n {\n value: 'id.sifa.defs#industryHealthcare',\n labelKey: 'industryHealthcare',\n domains: [\n { value: 'id.sifa.defs#domainClinicalResearch', labelKey: 'domainClinicalResearch' },\n { value: 'id.sifa.defs#domainHealthtech', labelKey: 'domainHealthtech' },\n { value: 'id.sifa.defs#domainPharma', labelKey: 'domainPharma' },\n ],\n },\n {\n value: 'id.sifa.defs#industryEducation',\n labelKey: 'industryEducation',\n domains: [\n { value: 'id.sifa.defs#domainHigherEd', labelKey: 'domainHigherEd' },\n { value: 'id.sifa.defs#domainEdtech', labelKey: 'domainEdtech' },\n { value: 'id.sifa.defs#domainPrimarySecondary', labelKey: 'domainPrimarySecondary' },\n ],\n },\n {\n value: 'id.sifa.defs#industryMedia',\n labelKey: 'industryMedia',\n domains: [\n { value: 'id.sifa.defs#domainJournalism', labelKey: 'domainJournalism' },\n { value: 'id.sifa.defs#domainFilmVideo', labelKey: 'domainFilmVideo' },\n { value: 'id.sifa.defs#domainGaming', labelKey: 'domainGaming' },\n { value: 'id.sifa.defs#domainAdvertising', labelKey: 'domainAdvertising' },\n ],\n },\n {\n value: 'id.sifa.defs#industryRetail',\n labelKey: 'industryRetail',\n domains: [\n { value: 'id.sifa.defs#domainEcommerce', labelKey: 'domainEcommerce' },\n { value: 'id.sifa.defs#domainSupplyChain', labelKey: 'domainSupplyChain' },\n ],\n },\n {\n value: 'id.sifa.defs#industryManufacturing',\n labelKey: 'industryManufacturing',\n domains: [\n { value: 'id.sifa.defs#domainAutomotive', labelKey: 'domainAutomotive' },\n { value: 'id.sifa.defs#domainAerospace', labelKey: 'domainAerospace' },\n { value: 'id.sifa.defs#domainHardware', labelKey: 'domainHardware' },\n ],\n },\n {\n value: 'id.sifa.defs#industryEnergy',\n labelKey: 'industryEnergy',\n domains: [\n { value: 'id.sifa.defs#domainRenewables', labelKey: 'domainRenewables' },\n { value: 'id.sifa.defs#domainOilGas', labelKey: 'domainOilGas' },\n { value: 'id.sifa.defs#domainClimateTech', labelKey: 'domainClimateTech' },\n ],\n },\n {\n value: 'id.sifa.defs#industryGovernment',\n labelKey: 'industryGovernment',\n domains: [\n { value: 'id.sifa.defs#domainPublicPolicy', labelKey: 'domainPublicPolicy' },\n { value: 'id.sifa.defs#domainDefense', labelKey: 'domainDefense' },\n ],\n },\n {\n value: 'id.sifa.defs#industryLegal',\n labelKey: 'industryLegal',\n domains: [\n { value: 'id.sifa.defs#domainIpLaw', labelKey: 'domainIpLaw' },\n { value: 'id.sifa.defs#domainCompliance', labelKey: 'domainCompliance' },\n ],\n },\n {\n value: 'id.sifa.defs#industryConsulting',\n labelKey: 'industryConsulting',\n domains: [\n { value: 'id.sifa.defs#domainManagementConsulting', labelKey: 'domainManagementConsulting' },\n { value: 'id.sifa.defs#domainDevrel', labelKey: 'domainDevrel' },\n { value: 'id.sifa.defs#domainHrRecruitment', labelKey: 'domainHrRecruitment' },\n ],\n },\n {\n value: 'id.sifa.defs#industryNonprofit',\n labelKey: 'industryNonprofit',\n domains: [\n { value: 'id.sifa.defs#domainHumanRights', labelKey: 'domainHumanRights' },\n { value: 'id.sifa.defs#domainOpenSource', labelKey: 'domainOpenSource' },\n ],\n },\n {\n value: 'id.sifa.defs#industryRealEstate',\n labelKey: 'industryRealEstate',\n domains: [{ value: 'id.sifa.defs#domainProptech', labelKey: 'domainProptech' }],\n },\n {\n value: 'id.sifa.defs#industryTransport',\n labelKey: 'industryTransport',\n domains: [\n { value: 'id.sifa.defs#domainAutonomousVehicles', labelKey: 'domainAutonomousVehicles' },\n { value: 'id.sifa.defs#domainLogistics', labelKey: 'domainLogistics' },\n ],\n },\n {\n value: 'id.sifa.defs#industryAgriculture',\n labelKey: 'industryAgriculture',\n domains: [\n { value: 'id.sifa.defs#domainAgritech', labelKey: 'domainAgritech' },\n { value: 'id.sifa.defs#domainFoodTech', labelKey: 'domainFoodTech' },\n ],\n },\n {\n value: 'id.sifa.defs#industryHospitality',\n labelKey: 'industryHospitality',\n domains: [\n { value: 'id.sifa.defs#domainHotels', labelKey: 'domainHotels' },\n { value: 'id.sifa.defs#domainTravelTourism', labelKey: 'domainTravelTourism' },\n { value: 'id.sifa.defs#domainFoodBeverage', labelKey: 'domainFoodBeverage' },\n ],\n },\n {\n value: 'id.sifa.defs#industryTelecom',\n labelKey: 'industryTelecom',\n domains: [\n { value: 'id.sifa.defs#domainNetworkInfra', labelKey: 'domainNetworkInfra' },\n { value: 'id.sifa.defs#domainMobileServices', labelKey: 'domainMobileServices' },\n ],\n },\n {\n value: 'id.sifa.defs#industryMining',\n labelKey: 'industryMining',\n domains: [\n { value: 'id.sifa.defs#domainExtraction', labelKey: 'domainExtraction' },\n { value: 'id.sifa.defs#domainGeological', labelKey: 'domainGeological' },\n ],\n },\n {\n value: 'id.sifa.defs#industryFashion',\n labelKey: 'industryFashion',\n domains: [\n { value: 'id.sifa.defs#domainFashionDesign', labelKey: 'domainFashionDesign' },\n { value: 'id.sifa.defs#domainTextileManufacturing', labelKey: 'domainTextileManufacturing' },\n ],\n },\n {\n value: 'id.sifa.defs#industryMaritime',\n labelKey: 'industryMaritime',\n domains: [\n { value: 'id.sifa.defs#domainShipping', labelKey: 'domainShipping' },\n { value: 'id.sifa.defs#domainPortOperations', labelKey: 'domainPortOperations' },\n { value: 'id.sifa.defs#domainNavalArchitecture', labelKey: 'domainNavalArchitecture' },\n ],\n },\n {\n value: 'id.sifa.defs#industryOther',\n labelKey: 'industryOther',\n domains: [],\n },\n];\n\n/** Find the industry option for a given industry value. */\nexport function findIndustry(value: string | undefined | null): IndustryOption | undefined {\n if (!value) return undefined;\n return INDUSTRY_OPTIONS.find((i) => i.value === value);\n}\n\n/** Get the label key for an industry or domain token, falling back to the raw value. */\nexport function getIndustryLabelKey(value: string): string {\n for (const industry of INDUSTRY_OPTIONS) {\n if (industry.value === value) return industry.labelKey;\n for (const domain of industry.domains) {\n if (domain.value === value) return domain.labelKey;\n }\n }\n return value;\n}\n\n/**\n * Literal English labels for every industry and domain `labelKey`. Canonical for\n * consumers without an i18n layer (the mobile app). Web can keep resolving the\n * `labelKey` through next-intl; the `profileEdit.<labelKey>` English MUST match\n * these strings so the two never drift.\n */\nexport const INDUSTRY_LABELS: Record<string, string> = {\n industryTechnology: 'Technology',\n domainSoftwareEngineering: 'Software Engineering',\n domainDataScience: 'Data Science & ML',\n domainCybersecurity: 'Cybersecurity',\n domainDevops: 'DevOps & Infrastructure',\n domainProductDesign: 'Product & UX Design',\n domainGameDev: 'Game Development',\n industryFinance: 'Finance & Banking',\n domainBanking: 'Banking',\n domainFintech: 'Fintech',\n domainInsurance: 'Insurance',\n domainInvestmentMgmt: 'Investment Management',\n industryHealthcare: 'Healthcare & Life Sciences',\n domainClinicalResearch: 'Clinical Research',\n domainHealthtech: 'Health Technology',\n domainPharma: 'Pharmaceuticals',\n industryEducation: 'Education & Research',\n domainHigherEd: 'Higher Education',\n domainEdtech: 'Education Technology',\n domainPrimarySecondary: 'Primary & Secondary Education',\n industryMedia: 'Media & Entertainment',\n domainJournalism: 'Journalism',\n domainFilmVideo: 'Film & Video',\n domainGaming: 'Gaming & Interactive Media',\n domainAdvertising: 'Advertising & Marketing',\n industryRetail: 'Retail & E-commerce',\n domainEcommerce: 'E-commerce',\n domainSupplyChain: 'Supply Chain & Fulfillment',\n industryManufacturing: 'Manufacturing & Engineering',\n domainAutomotive: 'Automotive',\n domainAerospace: 'Aerospace & Defense',\n domainHardware: 'Hardware & Electronics',\n industryEnergy: 'Energy & Environment',\n domainRenewables: 'Renewable Energy',\n domainOilGas: 'Oil & Gas',\n domainClimateTech: 'Climate Tech',\n industryGovernment: 'Government & Public Sector',\n domainPublicPolicy: 'Public Policy',\n domainDefense: 'Defense & Intelligence',\n industryLegal: 'Legal',\n domainIpLaw: 'Intellectual Property',\n domainCompliance: 'Compliance & Regulatory',\n industryConsulting: 'Consulting & Professional Services',\n domainManagementConsulting: 'Management Consulting',\n domainDevrel: 'Developer Relations',\n domainHrRecruitment: 'HR & Recruitment',\n industryNonprofit: 'Non-profit & Social Impact',\n domainHumanRights: 'Human Rights',\n domainOpenSource: 'Open Source',\n industryRealEstate: 'Real Estate & Construction',\n domainProptech: 'Property Technology',\n industryTransport: 'Transportation & Logistics',\n domainAutonomousVehicles: 'Autonomous Vehicles',\n domainLogistics: 'Logistics & Warehousing',\n industryAgriculture: 'Agriculture & Food',\n domainAgritech: 'Agricultural Technology',\n domainFoodTech: 'Food Technology & Processing',\n industryHospitality: 'Hospitality & Tourism',\n domainHotels: 'Hotels & Accommodation',\n domainTravelTourism: 'Travel & Tourism',\n domainFoodBeverage: 'Food & Beverage',\n industryTelecom: 'Telecommunications',\n domainNetworkInfra: 'Network Infrastructure',\n domainMobileServices: 'Mobile & Wireless Services',\n industryMining: 'Mining & Resources',\n domainExtraction: 'Extraction & Processing',\n domainGeological: 'Geological Services',\n industryFashion: 'Fashion & Textiles',\n domainFashionDesign: 'Fashion Design',\n domainTextileManufacturing: 'Textile Manufacturing',\n industryMaritime: 'Maritime & Shipping',\n domainShipping: 'Shipping & Freight',\n domainPortOperations: 'Port & Terminal Operations',\n domainNavalArchitecture: 'Naval Architecture & Marine Engineering',\n industryOther: 'Other',\n};\n\n/** Resolve an industry or domain lex value to its literal English label (falls back to the raw value). */\nexport function getIndustryLabel(value: string): string {\n return INDUSTRY_LABELS[getIndustryLabelKey(value)] ?? value;\n}\n"],"mappings":"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","names":[]}