@atlaskit/util-data-test 17.8.2 → 17.8.4

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 (627) hide show
  1. package/.eslintrc.js +6 -0
  2. package/CHANGELOG.md +12 -0
  3. package/dist/cjs/emoji/emoji-repository-usage-clear.js +1 -1
  4. package/dist/cjs/emoji/get-atlassian-emojis.js +1 -1
  5. package/dist/cjs/emoji/get-emoji-provider.js +2 -2
  6. package/dist/cjs/emoji/get-emoji-repository.js +1 -1
  7. package/dist/cjs/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  8. package/dist/cjs/emoji/get-emojis.js +1 -1
  9. package/dist/cjs/emoji/get-site-emojis.js +1 -1
  10. package/dist/cjs/emoji/get-standard-emojis.js +1 -1
  11. package/dist/cjs/emoji-test/get-test-emojis.js +1 -1
  12. package/dist/cjs/emoji-test/test-emoji-repository.js +2 -2
  13. package/dist/cjs/mention/create-mock-mention-name-resolver.js +1 -1
  14. package/dist/cjs/mention/mock-mention-name-client.js +1 -1
  15. package/dist/cjs/mention/mock-mention-resource-with-info-hints.js +1 -1
  16. package/dist/cjs/mention/mock-mention-resource.js +1 -1
  17. package/dist/cjs/mention/mock-presence-resource.js +1 -1
  18. package/dist/cjs/version.json +1 -1
  19. package/dist/es2019/emoji/emoji-repository-usage-clear.js +1 -1
  20. package/dist/es2019/emoji/get-atlassian-emojis.js +1 -1
  21. package/dist/es2019/emoji/get-emoji-provider.js +2 -2
  22. package/dist/es2019/emoji/get-emoji-repository.js +1 -1
  23. package/dist/es2019/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  24. package/dist/es2019/emoji/get-emojis.js +1 -1
  25. package/dist/es2019/emoji/get-site-emojis.js +1 -1
  26. package/dist/es2019/emoji/get-standard-emojis.js +1 -1
  27. package/dist/es2019/emoji-test/get-test-emojis.js +1 -1
  28. package/dist/es2019/emoji-test/test-emoji-repository.js +2 -2
  29. package/dist/es2019/mention/create-mock-mention-name-resolver.js +1 -1
  30. package/dist/es2019/mention/mock-mention-name-client.js +1 -1
  31. package/dist/es2019/mention/mock-mention-resource-with-info-hints.js +1 -1
  32. package/dist/es2019/mention/mock-mention-resource.js +1 -1
  33. package/dist/es2019/mention/mock-presence-resource.js +1 -1
  34. package/dist/es2019/version.json +1 -1
  35. package/dist/esm/emoji/emoji-repository-usage-clear.js +1 -1
  36. package/dist/esm/emoji/get-atlassian-emojis.js +1 -1
  37. package/dist/esm/emoji/get-emoji-provider.js +2 -2
  38. package/dist/esm/emoji/get-emoji-repository.js +1 -1
  39. package/dist/esm/emoji/get-emoji-resource-standard-atlassian.js +1 -1
  40. package/dist/esm/emoji/get-emojis.js +1 -1
  41. package/dist/esm/emoji/get-site-emojis.js +1 -1
  42. package/dist/esm/emoji/get-standard-emojis.js +1 -1
  43. package/dist/esm/emoji-test/get-test-emojis.js +1 -1
  44. package/dist/esm/emoji-test/test-emoji-repository.js +2 -2
  45. package/dist/esm/mention/create-mock-mention-name-resolver.js +1 -1
  46. package/dist/esm/mention/mock-mention-name-client.js +1 -1
  47. package/dist/esm/mention/mock-mention-resource-with-info-hints.js +1 -1
  48. package/dist/esm/mention/mock-mention-resource.js +1 -1
  49. package/dist/esm/mention/mock-presence-resource.js +1 -1
  50. package/dist/esm/version.json +1 -1
  51. package/dist/types/emoji/src/api/EmojiLoader.d.ts +13 -0
  52. package/dist/types/emoji/src/api/EmojiRepository.d.ts +72 -0
  53. package/dist/types/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
  54. package/dist/types/emoji/src/api/EmojiResource.d.ts +139 -0
  55. package/dist/types/emoji/src/api/EmojiUtils.d.ts +24 -0
  56. package/dist/types/emoji/src/api/internal/Comparators.d.ts +109 -0
  57. package/dist/types/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
  58. package/dist/types/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
  59. package/dist/types/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
  60. package/dist/types/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
  61. package/dist/types/emoji/src/api/media/TokenManager.d.ts +13 -0
  62. package/dist/types/emoji/src/components/i18n.d.ts +227 -0
  63. package/dist/types/emoji/src/components/picker/categories.d.ts +7 -0
  64. package/dist/types/emoji/src/resource.d.ts +5 -0
  65. package/dist/types/emoji/src/types.d.ts +363 -0
  66. package/dist/types/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
  67. package/dist/types/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
  68. package/dist/types/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
  69. package/dist/types/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
  70. package/dist/types/emoji/src/util/constants.d.ts +60 -0
  71. package/dist/types/emoji/src/util/image.d.ts +10 -0
  72. package/dist/types/emoji/src/util/logger.d.ts +4 -0
  73. package/dist/types/emoji/src/util/storage-available.d.ts +3 -0
  74. package/dist/types/emoji/src/util/type-helpers.d.ts +23 -0
  75. package/dist/types/emoji/src/utils.d.ts +3 -0
  76. package/dist/types/mention/src/_constants.d.ts +1 -0
  77. package/dist/types/mention/src/api/ContextMentionResource.d.ts +23 -0
  78. package/dist/types/mention/src/api/MentionNameClient.d.ts +11 -0
  79. package/dist/types/mention/src/api/MentionNameResolver.d.ts +23 -0
  80. package/dist/types/mention/src/api/MentionResource.d.ts +93 -0
  81. package/dist/types/mention/src/api/PresenceResource.d.ts +119 -0
  82. package/dist/types/mention/src/api/TeamMentionResource.d.ts +33 -0
  83. package/dist/types/mention/src/components/LockCircleIcon/index.d.ts +3 -0
  84. package/dist/types/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
  85. package/dist/types/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
  86. package/dist/types/mention/src/components/Mention/index.d.ts +31 -0
  87. package/dist/types/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
  88. package/dist/types/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
  89. package/dist/types/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
  90. package/dist/types/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
  91. package/dist/types/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
  92. package/dist/types/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
  93. package/dist/types/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
  94. package/dist/types/mention/src/components/MentionItem/index.d.ts +16 -0
  95. package/dist/types/mention/src/components/MentionItem/styles.d.ts +46 -0
  96. package/dist/types/mention/src/components/MentionList/index.d.ts +41 -0
  97. package/dist/types/mention/src/components/MentionList/styles.d.ts +8 -0
  98. package/dist/types/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
  99. package/dist/types/mention/src/components/MentionListError/index.d.ts +13 -0
  100. package/dist/types/mention/src/components/MentionListError/styles.d.ts +17 -0
  101. package/dist/types/mention/src/components/MentionPicker/index.d.ts +77 -0
  102. package/dist/types/mention/src/components/MentionPicker/styles.d.ts +12 -0
  103. package/dist/types/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
  104. package/dist/types/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
  105. package/dist/types/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
  106. package/dist/types/mention/src/components/Popup/index.d.ts +26 -0
  107. package/dist/types/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
  108. package/dist/types/mention/src/components/Scrollable/index.d.ts +11 -0
  109. package/dist/types/mention/src/components/Scrollable/styles.d.ts +5 -0
  110. package/dist/types/mention/src/components/i18n.d.ts +57 -0
  111. package/dist/types/mention/src/i18n/cs.d.ts +20 -0
  112. package/dist/types/mention/src/i18n/da.d.ts +20 -0
  113. package/dist/types/mention/src/i18n/de.d.ts +20 -0
  114. package/dist/types/mention/src/i18n/en.d.ts +20 -0
  115. package/dist/types/mention/src/i18n/en_GB.d.ts +20 -0
  116. package/dist/types/mention/src/i18n/es.d.ts +20 -0
  117. package/dist/types/mention/src/i18n/et.d.ts +20 -0
  118. package/dist/types/mention/src/i18n/fi.d.ts +20 -0
  119. package/dist/types/mention/src/i18n/fr.d.ts +20 -0
  120. package/dist/types/mention/src/i18n/hu.d.ts +20 -0
  121. package/dist/types/mention/src/i18n/is.d.ts +24 -0
  122. package/dist/types/mention/src/i18n/it.d.ts +20 -0
  123. package/dist/types/mention/src/i18n/ja.d.ts +20 -0
  124. package/dist/types/mention/src/i18n/ko.d.ts +20 -0
  125. package/dist/types/mention/src/i18n/nb.d.ts +20 -0
  126. package/dist/types/mention/src/i18n/nl.d.ts +20 -0
  127. package/dist/types/mention/src/i18n/pl.d.ts +20 -0
  128. package/dist/types/mention/src/i18n/pt_BR.d.ts +20 -0
  129. package/dist/types/mention/src/i18n/pt_PT.d.ts +20 -0
  130. package/dist/types/mention/src/i18n/ro.d.ts +24 -0
  131. package/dist/types/mention/src/i18n/ru.d.ts +20 -0
  132. package/dist/types/mention/src/i18n/sk.d.ts +20 -0
  133. package/dist/types/mention/src/i18n/sv.d.ts +20 -0
  134. package/dist/types/mention/src/i18n/th.d.ts +20 -0
  135. package/dist/types/mention/src/i18n/tr.d.ts +20 -0
  136. package/dist/types/mention/src/i18n/uk.d.ts +20 -0
  137. package/dist/types/mention/src/i18n/vi.d.ts +20 -0
  138. package/dist/types/mention/src/i18n/zh.d.ts +20 -0
  139. package/dist/types/mention/src/i18n/zh_TW.d.ts +20 -0
  140. package/dist/types/mention/src/index.d.ts +17 -0
  141. package/dist/types/mention/src/resource.d.ts +10 -0
  142. package/dist/types/mention/src/shared-styles.d.ts +5 -0
  143. package/dist/types/mention/src/types.d.ts +168 -0
  144. package/dist/types/mention/src/util/analytics.d.ts +30 -0
  145. package/dist/types/mention/src/util/i18n.d.ts +29 -0
  146. package/dist/types/mention/src/util/id.d.ts +2 -0
  147. package/dist/types/mention/src/util/index.d.ts +1 -0
  148. package/dist/types/mention/src/util/logger.d.ts +4 -0
  149. package/dist/types/mention/src/util/mouse.d.ts +8 -0
  150. package/dist/types/task-decision/src/analytics/index.d.ts +2 -0
  151. package/dist/types/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
  152. package/dist/types/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
  153. package/dist/types/task-decision/src/components/DecisionItem.d.ts +15 -0
  154. package/dist/types/task-decision/src/components/DecisionList.d.ts +9 -0
  155. package/dist/types/task-decision/src/components/Item.d.ts +25 -0
  156. package/dist/types/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
  157. package/dist/types/task-decision/src/components/TaskItem.d.ts +21 -0
  158. package/dist/types/task-decision/src/components/TaskList.d.ts +9 -0
  159. package/dist/types/task-decision/src/components/styles.d.ts +13 -0
  160. package/dist/types/task-decision/src/components/theme.d.ts +61 -0
  161. package/dist/types/task-decision/src/index.d.ts +9 -0
  162. package/dist/types/task-decision/src/type-helpers.d.ts +6 -0
  163. package/dist/types/task-decision/src/types.d.ts +160 -0
  164. package/dist/types/user-picker/src/analytics.d.ts +24 -0
  165. package/dist/types/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
  166. package/dist/types/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
  167. package/dist/types/user-picker/src/components/AvatarItemOption.d.ts +13 -0
  168. package/dist/types/user-picker/src/components/BaseUserPicker.d.ts +65 -0
  169. package/dist/types/user-picker/src/components/ClearIndicator.d.ts +6 -0
  170. package/dist/types/user-picker/src/components/CustomOption/index.d.ts +3 -0
  171. package/dist/types/user-picker/src/components/CustomOption/main.d.ts +15 -0
  172. package/dist/types/user-picker/src/components/EmailOption/index.d.ts +3 -0
  173. package/dist/types/user-picker/src/components/EmailOption/main.d.ts +18 -0
  174. package/dist/types/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
  175. package/dist/types/user-picker/src/components/ExternalUserOption/InfoIcon.d.ts +3 -0
  176. package/dist/types/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
  177. package/dist/types/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
  178. package/dist/types/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
  179. package/dist/types/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
  180. package/dist/types/user-picker/src/components/GroupOption/index.d.ts +3 -0
  181. package/dist/types/user-picker/src/components/GroupOption/main.d.ts +16 -0
  182. package/dist/types/user-picker/src/components/HighlightText.d.ts +9 -0
  183. package/dist/types/user-picker/src/components/Input.d.ts +22 -0
  184. package/dist/types/user-picker/src/components/Menu.d.ts +10 -0
  185. package/dist/types/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
  186. package/dist/types/user-picker/src/components/MultiValue.d.ts +26 -0
  187. package/dist/types/user-picker/src/components/MultiValueContainer.d.ts +30 -0
  188. package/dist/types/user-picker/src/components/Option.d.ts +14 -0
  189. package/dist/types/user-picker/src/components/PopupControl.d.ts +7 -0
  190. package/dist/types/user-picker/src/components/PopupInput.d.ts +8 -0
  191. package/dist/types/user-picker/src/components/PopupUserPicker.d.ts +39 -0
  192. package/dist/types/user-picker/src/components/SingleValue.d.ts +5 -0
  193. package/dist/types/user-picker/src/components/SingleValueContainer.d.ts +9 -0
  194. package/dist/types/user-picker/src/components/SizeableAvatar.d.ts +10 -0
  195. package/dist/types/user-picker/src/components/TeamOption/index.d.ts +3 -0
  196. package/dist/types/user-picker/src/components/TeamOption/main.d.ts +16 -0
  197. package/dist/types/user-picker/src/components/UserOption.d.ts +15 -0
  198. package/dist/types/user-picker/src/components/UserPicker.d.ts +16 -0
  199. package/dist/types/user-picker/src/components/assets/github.d.ts +2 -0
  200. package/dist/types/user-picker/src/components/assets/google.d.ts +2 -0
  201. package/dist/types/user-picker/src/components/assets/microsoft.d.ts +2 -0
  202. package/dist/types/user-picker/src/components/assets/slack.d.ts +2 -0
  203. package/dist/types/user-picker/src/components/batch.d.ts +1 -0
  204. package/dist/types/user-picker/src/components/components.d.ts +49 -0
  205. package/dist/types/user-picker/src/components/creatable.d.ts +12 -0
  206. package/dist/types/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
  207. package/dist/types/user-picker/src/components/emailValidation.d.ts +3 -0
  208. package/dist/types/user-picker/src/components/i18n.d.ts +132 -0
  209. package/dist/types/user-picker/src/components/popup.d.ts +48 -0
  210. package/dist/types/user-picker/src/components/styles.d.ts +42 -0
  211. package/dist/types/user-picker/src/components/utils.d.ts +29 -0
  212. package/dist/types/user-picker/src/i18n/cs.d.ts +35 -0
  213. package/dist/types/user-picker/src/i18n/da.d.ts +35 -0
  214. package/dist/types/user-picker/src/i18n/de.d.ts +35 -0
  215. package/dist/types/user-picker/src/i18n/en.d.ts +35 -0
  216. package/dist/types/user-picker/src/i18n/en_GB.d.ts +35 -0
  217. package/dist/types/user-picker/src/i18n/es.d.ts +35 -0
  218. package/dist/types/user-picker/src/i18n/et.d.ts +15 -0
  219. package/dist/types/user-picker/src/i18n/fi.d.ts +35 -0
  220. package/dist/types/user-picker/src/i18n/fr.d.ts +35 -0
  221. package/dist/types/user-picker/src/i18n/hu.d.ts +35 -0
  222. package/dist/types/user-picker/src/i18n/is.d.ts +7 -0
  223. package/dist/types/user-picker/src/i18n/it.d.ts +35 -0
  224. package/dist/types/user-picker/src/i18n/ja.d.ts +35 -0
  225. package/dist/types/user-picker/src/i18n/ko.d.ts +35 -0
  226. package/dist/types/user-picker/src/i18n/nb.d.ts +35 -0
  227. package/dist/types/user-picker/src/i18n/nl.d.ts +35 -0
  228. package/dist/types/user-picker/src/i18n/pl.d.ts +35 -0
  229. package/dist/types/user-picker/src/i18n/pt_BR.d.ts +35 -0
  230. package/dist/types/user-picker/src/i18n/pt_PT.d.ts +15 -0
  231. package/dist/types/user-picker/src/i18n/ro.d.ts +7 -0
  232. package/dist/types/user-picker/src/i18n/ru.d.ts +35 -0
  233. package/dist/types/user-picker/src/i18n/sk.d.ts +15 -0
  234. package/dist/types/user-picker/src/i18n/sv.d.ts +35 -0
  235. package/dist/types/user-picker/src/i18n/th.d.ts +35 -0
  236. package/dist/types/user-picker/src/i18n/tr.d.ts +35 -0
  237. package/dist/types/user-picker/src/i18n/uk.d.ts +35 -0
  238. package/dist/types/user-picker/src/i18n/vi.d.ts +35 -0
  239. package/dist/types/user-picker/src/i18n/zh.d.ts +35 -0
  240. package/dist/types/user-picker/src/i18n/zh_TW.d.ts +35 -0
  241. package/dist/types/user-picker/src/index.d.ts +7 -0
  242. package/dist/types/user-picker/src/types.d.ts +318 -0
  243. package/dist/types/user-picker/src/util/i18n-util.d.ts +11 -0
  244. package/dist/types/user-picker/src/util/ufoExperiences.d.ts +10 -0
  245. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
  246. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
  247. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
  248. package/dist/types/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
  249. package/dist/types/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
  250. package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
  251. package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
  252. package/dist/types/util-data-test/src/emoji/get-emojis.d.ts +1 -0
  253. package/dist/types/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
  254. package/dist/types/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
  255. package/dist/types/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
  256. package/dist/types/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
  257. package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
  258. package/dist/types/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
  259. package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
  260. package/dist/types/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
  261. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji/types.d.ts +1 -1
  262. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
  263. package/dist/{types-ts4.5 → types/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
  264. package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
  265. package/dist/types/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
  266. package/dist/types/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
  267. package/dist/types/util-data-test/src/logger.d.ts +4 -0
  268. package/dist/types/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
  269. package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
  270. package/dist/types/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
  271. package/dist/{types-ts4.5 → types/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
  272. package/dist/types/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
  273. package/dist/types/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
  274. package/dist/types/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
  275. package/dist/types/util-data-test/src/user-picker/ChevronRight.d.ts +3 -0
  276. package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
  277. package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
  278. package/dist/types-ts4.5/emoji/src/api/EmojiLoader.d.ts +13 -0
  279. package/dist/types-ts4.5/emoji/src/api/EmojiRepository.d.ts +72 -0
  280. package/dist/types-ts4.5/emoji/src/api/EmojiRepositoryRegex.d.ts +1 -0
  281. package/dist/types-ts4.5/emoji/src/api/EmojiResource.d.ts +139 -0
  282. package/dist/types-ts4.5/emoji/src/api/EmojiUtils.d.ts +24 -0
  283. package/dist/types-ts4.5/emoji/src/api/internal/Comparators.d.ts +109 -0
  284. package/dist/types-ts4.5/emoji/src/api/internal/UsageFrequencyTracker.d.ts +46 -0
  285. package/dist/types-ts4.5/emoji/src/api/media/MediaEmojiCache.d.ts +53 -0
  286. package/dist/types-ts4.5/emoji/src/api/media/MediaImageLoader.d.ts +21 -0
  287. package/dist/types-ts4.5/emoji/src/api/media/SiteEmojiResource.d.ts +46 -0
  288. package/dist/types-ts4.5/emoji/src/api/media/TokenManager.d.ts +13 -0
  289. package/dist/types-ts4.5/emoji/src/components/i18n.d.ts +227 -0
  290. package/dist/types-ts4.5/emoji/src/components/picker/categories.d.ts +7 -0
  291. package/dist/types-ts4.5/emoji/src/resource.d.ts +5 -0
  292. package/dist/types-ts4.5/emoji/src/types.d.ts +363 -0
  293. package/dist/types-ts4.5/emoji/src/util/DuplicateLimitedQueue.d.ts +91 -0
  294. package/dist/types-ts4.5/emoji/src/util/StoredDuplicateLimitedQueue.d.ts +46 -0
  295. package/dist/types-ts4.5/emoji/src/util/analytics/samplingUfo.d.ts +38 -0
  296. package/dist/types-ts4.5/emoji/src/util/analytics/ufoExperiences.d.ts +14 -0
  297. package/dist/types-ts4.5/emoji/src/util/constants.d.ts +60 -0
  298. package/dist/types-ts4.5/emoji/src/util/image.d.ts +10 -0
  299. package/dist/types-ts4.5/emoji/src/util/storage-available.d.ts +3 -0
  300. package/dist/types-ts4.5/emoji/src/util/type-helpers.d.ts +23 -0
  301. package/dist/types-ts4.5/emoji/src/utils.d.ts +3 -0
  302. package/dist/types-ts4.5/mention/src/_constants.d.ts +1 -0
  303. package/dist/types-ts4.5/mention/src/api/ContextMentionResource.d.ts +23 -0
  304. package/dist/types-ts4.5/mention/src/api/MentionNameClient.d.ts +11 -0
  305. package/dist/types-ts4.5/mention/src/api/MentionNameResolver.d.ts +23 -0
  306. package/dist/types-ts4.5/mention/src/api/MentionResource.d.ts +93 -0
  307. package/dist/types-ts4.5/mention/src/api/PresenceResource.d.ts +119 -0
  308. package/dist/types-ts4.5/mention/src/api/TeamMentionResource.d.ts +33 -0
  309. package/dist/types-ts4.5/mention/src/components/LockCircleIcon/index.d.ts +3 -0
  310. package/dist/types-ts4.5/mention/src/components/Mention/PrimitiveMention.d.ts +7 -0
  311. package/dist/types-ts4.5/mention/src/components/Mention/ResourcedMention.d.ts +27 -0
  312. package/dist/types-ts4.5/mention/src/components/Mention/index.d.ts +31 -0
  313. package/dist/types-ts4.5/mention/src/components/Mention/ufoExperiences.d.ts +9 -0
  314. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/TeamMentionDescriptionByline.d.ts +7 -0
  315. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/UserMentionDescriptionByline.d.ts +5 -0
  316. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/index.d.ts +5 -0
  317. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/styles.d.ts +5 -0
  318. package/dist/types-ts4.5/mention/src/components/MentionDescriptionByline/types.d.ts +4 -0
  319. package/dist/types-ts4.5/mention/src/components/MentionItem/MentionHighlightHelpers.d.ts +3 -0
  320. package/dist/types-ts4.5/mention/src/components/MentionItem/index.d.ts +16 -0
  321. package/dist/types-ts4.5/mention/src/components/MentionItem/styles.d.ts +46 -0
  322. package/dist/types-ts4.5/mention/src/components/MentionList/index.d.ts +41 -0
  323. package/dist/types-ts4.5/mention/src/components/MentionList/styles.d.ts +8 -0
  324. package/dist/types-ts4.5/mention/src/components/MentionListError/GenericErrorIllustration.d.ts +7 -0
  325. package/dist/types-ts4.5/mention/src/components/MentionListError/index.d.ts +13 -0
  326. package/dist/types-ts4.5/mention/src/components/MentionListError/styles.d.ts +17 -0
  327. package/dist/types-ts4.5/mention/src/components/MentionPicker/index.d.ts +77 -0
  328. package/dist/types-ts4.5/mention/src/components/MentionPicker/styles.d.ts +12 -0
  329. package/dist/types-ts4.5/mention/src/components/MessagesIntlProvider/index.d.ts +3 -0
  330. package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/index.d.ts +6 -0
  331. package/dist/types-ts4.5/mention/src/components/NoAccessTooltip/main.d.ts +7 -0
  332. package/dist/types-ts4.5/mention/src/components/Popup/index.d.ts +26 -0
  333. package/dist/types-ts4.5/mention/src/components/ResourcedMentionList/index.d.ts +46 -0
  334. package/dist/types-ts4.5/mention/src/components/Scrollable/index.d.ts +11 -0
  335. package/dist/types-ts4.5/mention/src/components/Scrollable/styles.d.ts +5 -0
  336. package/dist/types-ts4.5/mention/src/components/i18n.d.ts +57 -0
  337. package/dist/types-ts4.5/mention/src/i18n/cs.d.ts +20 -0
  338. package/dist/types-ts4.5/mention/src/i18n/da.d.ts +20 -0
  339. package/dist/types-ts4.5/mention/src/i18n/de.d.ts +20 -0
  340. package/dist/types-ts4.5/mention/src/i18n/en.d.ts +20 -0
  341. package/dist/types-ts4.5/mention/src/i18n/en_GB.d.ts +20 -0
  342. package/dist/types-ts4.5/mention/src/i18n/es.d.ts +20 -0
  343. package/dist/types-ts4.5/mention/src/i18n/et.d.ts +20 -0
  344. package/dist/types-ts4.5/mention/src/i18n/fi.d.ts +20 -0
  345. package/dist/types-ts4.5/mention/src/i18n/fr.d.ts +20 -0
  346. package/dist/types-ts4.5/mention/src/i18n/hu.d.ts +20 -0
  347. package/dist/types-ts4.5/mention/src/i18n/is.d.ts +24 -0
  348. package/dist/types-ts4.5/mention/src/i18n/it.d.ts +20 -0
  349. package/dist/types-ts4.5/mention/src/i18n/ja.d.ts +20 -0
  350. package/dist/types-ts4.5/mention/src/i18n/ko.d.ts +20 -0
  351. package/dist/types-ts4.5/mention/src/i18n/nb.d.ts +20 -0
  352. package/dist/types-ts4.5/mention/src/i18n/nl.d.ts +20 -0
  353. package/dist/types-ts4.5/mention/src/i18n/pl.d.ts +20 -0
  354. package/dist/types-ts4.5/mention/src/i18n/pt_BR.d.ts +20 -0
  355. package/dist/types-ts4.5/mention/src/i18n/pt_PT.d.ts +20 -0
  356. package/dist/types-ts4.5/mention/src/i18n/ro.d.ts +24 -0
  357. package/dist/types-ts4.5/mention/src/i18n/ru.d.ts +20 -0
  358. package/dist/types-ts4.5/mention/src/i18n/sk.d.ts +20 -0
  359. package/dist/types-ts4.5/mention/src/i18n/sv.d.ts +20 -0
  360. package/dist/types-ts4.5/mention/src/i18n/th.d.ts +20 -0
  361. package/dist/types-ts4.5/mention/src/i18n/tr.d.ts +20 -0
  362. package/dist/types-ts4.5/mention/src/i18n/uk.d.ts +20 -0
  363. package/dist/types-ts4.5/mention/src/i18n/vi.d.ts +20 -0
  364. package/dist/types-ts4.5/mention/src/i18n/zh.d.ts +20 -0
  365. package/dist/types-ts4.5/mention/src/i18n/zh_TW.d.ts +20 -0
  366. package/dist/types-ts4.5/mention/src/index.d.ts +17 -0
  367. package/dist/types-ts4.5/mention/src/resource.d.ts +10 -0
  368. package/dist/types-ts4.5/mention/src/shared-styles.d.ts +5 -0
  369. package/dist/types-ts4.5/mention/src/types.d.ts +168 -0
  370. package/dist/types-ts4.5/mention/src/util/analytics.d.ts +30 -0
  371. package/dist/types-ts4.5/mention/src/util/i18n.d.ts +29 -0
  372. package/dist/types-ts4.5/mention/src/util/id.d.ts +2 -0
  373. package/dist/types-ts4.5/mention/src/util/index.d.ts +1 -0
  374. package/dist/types-ts4.5/mention/src/util/mouse.d.ts +8 -0
  375. package/dist/types-ts4.5/task-decision/src/analytics/index.d.ts +2 -0
  376. package/dist/types-ts4.5/task-decision/src/api/TaskDecisionResource.d.ts +67 -0
  377. package/dist/types-ts4.5/task-decision/src/api/TaskDecisionUtils.d.ts +4 -0
  378. package/dist/types-ts4.5/task-decision/src/components/DecisionItem.d.ts +15 -0
  379. package/dist/types-ts4.5/task-decision/src/components/DecisionList.d.ts +9 -0
  380. package/dist/types-ts4.5/task-decision/src/components/Item.d.ts +25 -0
  381. package/dist/types-ts4.5/task-decision/src/components/ResourcedTaskItem.d.ts +35 -0
  382. package/dist/types-ts4.5/task-decision/src/components/TaskItem.d.ts +21 -0
  383. package/dist/types-ts4.5/task-decision/src/components/TaskList.d.ts +9 -0
  384. package/dist/types-ts4.5/task-decision/src/components/styles.d.ts +13 -0
  385. package/dist/types-ts4.5/task-decision/src/components/theme.d.ts +61 -0
  386. package/dist/types-ts4.5/task-decision/src/index.d.ts +9 -0
  387. package/dist/types-ts4.5/task-decision/src/type-helpers.d.ts +6 -0
  388. package/dist/types-ts4.5/task-decision/src/types.d.ts +160 -0
  389. package/dist/types-ts4.5/user-picker/src/analytics.d.ts +24 -0
  390. package/dist/types-ts4.5/user-picker/src/clients/UserSourceProvider.d.ts +11 -0
  391. package/dist/types-ts4.5/user-picker/src/components/AddOptionAvatar.d.ts +6 -0
  392. package/dist/types-ts4.5/user-picker/src/components/AvatarItemOption.d.ts +13 -0
  393. package/dist/types-ts4.5/user-picker/src/components/BaseUserPicker.d.ts +65 -0
  394. package/dist/types-ts4.5/user-picker/src/components/ClearIndicator.d.ts +6 -0
  395. package/dist/types-ts4.5/user-picker/src/components/CustomOption/index.d.ts +3 -0
  396. package/dist/types-ts4.5/user-picker/src/components/CustomOption/main.d.ts +15 -0
  397. package/dist/types-ts4.5/user-picker/src/components/EmailOption/index.d.ts +3 -0
  398. package/dist/types-ts4.5/user-picker/src/components/EmailOption/main.d.ts +18 -0
  399. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/ExternalAvatarItemOption.d.ts +11 -0
  400. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/SourcesTooltipContent.d.ts +6 -0
  401. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/index.d.ts +3 -0
  402. package/dist/types-ts4.5/user-picker/src/components/ExternalUserOption/main.d.ts +12 -0
  403. package/dist/types-ts4.5/user-picker/src/components/ExternalUserSourcesContainer.d.ts +15 -0
  404. package/dist/types-ts4.5/user-picker/src/components/GroupOption/index.d.ts +3 -0
  405. package/dist/types-ts4.5/user-picker/src/components/GroupOption/main.d.ts +16 -0
  406. package/dist/types-ts4.5/user-picker/src/components/HighlightText.d.ts +9 -0
  407. package/dist/types-ts4.5/user-picker/src/components/Input.d.ts +22 -0
  408. package/dist/types-ts4.5/user-picker/src/components/Menu.d.ts +10 -0
  409. package/dist/types-ts4.5/user-picker/src/components/MessagesIntlProvider.d.ts +3 -0
  410. package/dist/types-ts4.5/user-picker/src/components/MultiValue.d.ts +26 -0
  411. package/dist/types-ts4.5/user-picker/src/components/MultiValueContainer.d.ts +30 -0
  412. package/dist/types-ts4.5/user-picker/src/components/Option.d.ts +14 -0
  413. package/dist/types-ts4.5/user-picker/src/components/PopupControl.d.ts +7 -0
  414. package/dist/types-ts4.5/user-picker/src/components/PopupInput.d.ts +8 -0
  415. package/dist/types-ts4.5/user-picker/src/components/PopupUserPicker.d.ts +39 -0
  416. package/dist/types-ts4.5/user-picker/src/components/SingleValue.d.ts +5 -0
  417. package/dist/types-ts4.5/user-picker/src/components/SingleValueContainer.d.ts +9 -0
  418. package/dist/types-ts4.5/user-picker/src/components/SizeableAvatar.d.ts +10 -0
  419. package/dist/types-ts4.5/user-picker/src/components/TeamOption/index.d.ts +3 -0
  420. package/dist/types-ts4.5/user-picker/src/components/TeamOption/main.d.ts +16 -0
  421. package/dist/types-ts4.5/user-picker/src/components/UserOption.d.ts +15 -0
  422. package/dist/types-ts4.5/user-picker/src/components/UserPicker.d.ts +16 -0
  423. package/dist/types-ts4.5/user-picker/src/components/assets/github.d.ts +2 -0
  424. package/dist/types-ts4.5/user-picker/src/components/assets/google.d.ts +2 -0
  425. package/dist/types-ts4.5/user-picker/src/components/assets/microsoft.d.ts +2 -0
  426. package/dist/types-ts4.5/user-picker/src/components/assets/slack.d.ts +2 -0
  427. package/dist/types-ts4.5/user-picker/src/components/batch.d.ts +1 -0
  428. package/dist/types-ts4.5/user-picker/src/components/components.d.ts +49 -0
  429. package/dist/types-ts4.5/user-picker/src/components/creatable.d.ts +12 -0
  430. package/dist/types-ts4.5/user-picker/src/components/creatableEmailSuggestion.d.ts +19 -0
  431. package/dist/types-ts4.5/user-picker/src/components/emailValidation.d.ts +3 -0
  432. package/dist/types-ts4.5/user-picker/src/components/i18n.d.ts +132 -0
  433. package/dist/types-ts4.5/user-picker/src/components/popup.d.ts +48 -0
  434. package/dist/types-ts4.5/user-picker/src/components/styles.d.ts +42 -0
  435. package/dist/types-ts4.5/user-picker/src/components/utils.d.ts +29 -0
  436. package/dist/types-ts4.5/user-picker/src/i18n/cs.d.ts +35 -0
  437. package/dist/types-ts4.5/user-picker/src/i18n/da.d.ts +35 -0
  438. package/dist/types-ts4.5/user-picker/src/i18n/de.d.ts +35 -0
  439. package/dist/types-ts4.5/user-picker/src/i18n/en.d.ts +35 -0
  440. package/dist/types-ts4.5/user-picker/src/i18n/en_GB.d.ts +35 -0
  441. package/dist/types-ts4.5/user-picker/src/i18n/es.d.ts +35 -0
  442. package/dist/types-ts4.5/user-picker/src/i18n/et.d.ts +15 -0
  443. package/dist/types-ts4.5/user-picker/src/i18n/fi.d.ts +35 -0
  444. package/dist/types-ts4.5/user-picker/src/i18n/fr.d.ts +35 -0
  445. package/dist/types-ts4.5/user-picker/src/i18n/hu.d.ts +35 -0
  446. package/dist/types-ts4.5/user-picker/src/i18n/is.d.ts +7 -0
  447. package/dist/types-ts4.5/user-picker/src/i18n/it.d.ts +35 -0
  448. package/dist/types-ts4.5/user-picker/src/i18n/ja.d.ts +35 -0
  449. package/dist/types-ts4.5/user-picker/src/i18n/ko.d.ts +35 -0
  450. package/dist/types-ts4.5/user-picker/src/i18n/nb.d.ts +35 -0
  451. package/dist/types-ts4.5/user-picker/src/i18n/nl.d.ts +35 -0
  452. package/dist/types-ts4.5/user-picker/src/i18n/pl.d.ts +35 -0
  453. package/dist/types-ts4.5/user-picker/src/i18n/pt_BR.d.ts +35 -0
  454. package/dist/types-ts4.5/user-picker/src/i18n/pt_PT.d.ts +15 -0
  455. package/dist/types-ts4.5/user-picker/src/i18n/ro.d.ts +7 -0
  456. package/dist/types-ts4.5/user-picker/src/i18n/ru.d.ts +35 -0
  457. package/dist/types-ts4.5/user-picker/src/i18n/sk.d.ts +15 -0
  458. package/dist/types-ts4.5/user-picker/src/i18n/sv.d.ts +35 -0
  459. package/dist/types-ts4.5/user-picker/src/i18n/th.d.ts +35 -0
  460. package/dist/types-ts4.5/user-picker/src/i18n/tr.d.ts +35 -0
  461. package/dist/types-ts4.5/user-picker/src/i18n/uk.d.ts +35 -0
  462. package/dist/types-ts4.5/user-picker/src/i18n/vi.d.ts +35 -0
  463. package/dist/types-ts4.5/user-picker/src/i18n/zh.d.ts +35 -0
  464. package/dist/types-ts4.5/user-picker/src/i18n/zh_TW.d.ts +35 -0
  465. package/dist/types-ts4.5/user-picker/src/index.d.ts +7 -0
  466. package/dist/types-ts4.5/user-picker/src/types.d.ts +321 -0
  467. package/dist/types-ts4.5/user-picker/src/util/i18n-util.d.ts +11 -0
  468. package/dist/types-ts4.5/user-picker/src/util/ufoExperiences.d.ts +10 -0
  469. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-from-upload.d.ts +1 -1
  470. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-repository-usage-clear.d.ts +2 -2
  471. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/emoji-resource-usage-clear.d.ts +1 -1
  472. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-atlassian-emoji-data.d.ts +1 -1
  473. package/dist/types-ts4.5/util-data-test/src/emoji/get-atlassian-emojis.d.ts +1 -0
  474. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-provider.d.ts +1 -1
  475. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-repository.d.ts +1 -1
  476. package/dist/types-ts4.5/util-data-test/src/emoji/get-emojis.d.ts +1 -0
  477. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-site-emoji-data.d.ts +1 -1
  478. package/dist/types-ts4.5/util-data-test/src/emoji/get-site-emojis.d.ts +1 -0
  479. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-standard-emoji-data.d.ts +1 -1
  480. package/dist/types-ts4.5/util-data-test/src/emoji/get-standard-emojis.d.ts +1 -0
  481. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource-factory.d.ts +1 -1
  482. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-emoji-resource.d.ts +2 -2
  483. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource-factory.d.ts +1 -1
  484. package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/mock-non-uploading-emoji-resource.d.ts +2 -2
  485. package/dist/{types → types-ts4.5/util-data-test/src}/emoji/types.d.ts +1 -1
  486. package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/filter-to-searchable.d.ts +1 -1
  487. package/dist/{types → types-ts4.5/util-data-test/src}/emoji-test/get-test-emoji-resource-from-repository.d.ts +1 -1
  488. package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emojis.d.ts +1 -1
  489. package/dist/types-ts4.5/util-data-test/src/emoji-test/get-test-searchable-emojis.d.ts +1 -0
  490. package/dist/types-ts4.5/util-data-test/src/emoji-test/test-emoji-repository.d.ts +5 -0
  491. package/dist/types-ts4.5/util-data-test/src/logger.d.ts +4 -0
  492. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/create-mock-mention-name-resolver.d.ts +1 -1
  493. package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-name-client.d.ts +1 -1
  494. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-mention-resource-with-info-hints.d.ts +1 -1
  495. package/dist/{types → types-ts4.5/util-data-test/src}/mention/mock-mention-resource.d.ts +2 -2
  496. package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mock-presence-resource.d.ts +1 -1
  497. package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/mock-task-decision-resource.d.ts +1 -1
  498. package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/utils.d.ts +2 -2
  499. package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-custom-data.d.ts +1 -1
  500. package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-team-data.d.ts +1 -1
  501. package/package.json +3 -8
  502. package/dist/types/emoji/get-atlassian-emojis.d.ts +0 -1
  503. package/dist/types/emoji/get-emojis.d.ts +0 -1
  504. package/dist/types/emoji/get-site-emojis.d.ts +0 -1
  505. package/dist/types/emoji/get-standard-emojis.d.ts +0 -1
  506. package/dist/types/emoji-test/get-test-searchable-emojis.d.ts +0 -1
  507. package/dist/types/emoji-test/test-emoji-repository.d.ts +0 -5
  508. package/dist/types/json-data/emoji-all.json +0 -54398
  509. package/dist/types/json-data/mention-data.json +0 -393
  510. package/dist/types/json-data/presence-invalid-info.json +0 -47
  511. package/dist/types/json-data/presence-valid-info.json +0 -63
  512. package/dist/types/json-data/sample-tasks.json +0 -80
  513. package/dist/types/json-data/service-data-atlassian.json +0 -272
  514. package/dist/types/json-data/service-data-standard.json +0 -54098
  515. package/dist/types/json-data/slack-conversations-data.json +0 -476
  516. package/dist/types/json-data/slack-workspaces-data.json +0 -19
  517. package/dist/types/json-data/test-emoji-atlassian.json +0 -224
  518. package/dist/types/json-data/test-emoji-standard.json +0 -2000
  519. package/dist/types/json-data/user-picker-data.json +0 -361
  520. package/dist/types-ts4.5/emoji/get-atlassian-emojis.d.ts +0 -1
  521. package/dist/types-ts4.5/emoji/get-emojis.d.ts +0 -1
  522. package/dist/types-ts4.5/emoji/get-site-emojis.d.ts +0 -1
  523. package/dist/types-ts4.5/emoji/get-standard-emojis.d.ts +0 -1
  524. package/dist/types-ts4.5/emoji-test/get-test-searchable-emojis.d.ts +0 -1
  525. package/dist/types-ts4.5/emoji-test/test-emoji-repository.d.ts +0 -5
  526. package/dist/types-ts4.5/json-data/emoji-all.json +0 -54398
  527. package/dist/types-ts4.5/json-data/mention-data.json +0 -393
  528. package/dist/types-ts4.5/json-data/presence-invalid-info.json +0 -47
  529. package/dist/types-ts4.5/json-data/presence-valid-info.json +0 -63
  530. package/dist/types-ts4.5/json-data/sample-tasks.json +0 -80
  531. package/dist/types-ts4.5/json-data/service-data-atlassian.json +0 -272
  532. package/dist/types-ts4.5/json-data/service-data-standard.json +0 -54098
  533. package/dist/types-ts4.5/json-data/slack-conversations-data.json +0 -476
  534. package/dist/types-ts4.5/json-data/slack-workspaces-data.json +0 -19
  535. package/dist/types-ts4.5/json-data/test-emoji-atlassian.json +0 -224
  536. package/dist/types-ts4.5/json-data/test-emoji-standard.json +0 -2000
  537. package/dist/types-ts4.5/json-data/user-picker-data.json +0 -361
  538. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
  539. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
  540. /package/dist/types/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
  541. /package/dist/types/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
  542. /package/dist/types/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
  543. /package/dist/types/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
  544. /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
  545. /package/dist/types/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
  546. /package/dist/types/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
  547. /package/dist/types/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
  548. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
  549. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
  550. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
  551. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
  552. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
  553. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
  554. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
  555. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
  556. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
  557. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
  558. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
  559. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
  560. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
  561. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
  562. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
  563. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
  564. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
  565. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
  566. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
  567. /package/dist/types/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
  568. /package/dist/types/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
  569. /package/dist/types/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
  570. /package/dist/types/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
  571. /package/dist/types/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
  572. /package/dist/types/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
  573. /package/dist/types/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
  574. /package/dist/types/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
  575. /package/dist/types/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
  576. /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
  577. /package/dist/types/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
  578. /package/dist/types/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
  579. /package/dist/types/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
  580. /package/dist/types/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
  581. /package/dist/types-ts4.5/{logger.d.ts → emoji/src/util/logger.d.ts} +0 -0
  582. /package/dist/{types → types-ts4.5/mention/src/util}/logger.d.ts +0 -0
  583. /package/dist/types-ts4.5/user-picker/{ChevronRight.d.ts → src/components/ExternalUserOption/InfoIcon.d.ts} +0 -0
  584. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-standard-atlassian.d.ts +0 -0
  585. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource-usage-clear.d.ts +0 -0
  586. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/get-emoji-resource.d.ts +0 -0
  587. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/image-emoji.d.ts +0 -0
  588. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/logged-user.d.ts +0 -0
  589. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/lorem.d.ts +0 -0
  590. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-foo.d.ts +0 -0
  591. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/site-emoji-wtf.d.ts +0 -0
  592. /package/dist/types-ts4.5/{emoji → util-data-test/src/emoji}/sprite-emoji.d.ts +0 -0
  593. /package/dist/types-ts4.5/{emoji-constants → util-data-test/src/emoji-constants}/index.d.ts +0 -0
  594. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/emoji-samples.d.ts +0 -0
  595. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/expires-at.d.ts +0 -0
  596. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-non-uploading-emoji-resource.d.ts +0 -0
  597. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-emojis.d.ts +0 -0
  598. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-atlassian-service-emojis.d.ts +0 -0
  599. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-repository.d.ts +0 -0
  600. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource-non-uploading.d.ts +0 -0
  601. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-emoji-resource.d.ts +0 -0
  602. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-image-emoji.d.ts +0 -0
  603. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-media-api-token.d.ts +0 -0
  604. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-foo.d.ts +0 -0
  605. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-repository.d.ts +0 -0
  606. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emoji-wtf.d.ts +0 -0
  607. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-emojis.d.ts +0 -0
  608. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-site-service-emojis.d.ts +0 -0
  609. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-sprite-emoji.d.ts +0 -0
  610. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-emojis.d.ts +0 -0
  611. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/get-test-standard-service-emojis.d.ts +0 -0
  612. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-emoji.d.ts +0 -0
  613. /package/dist/types-ts4.5/{emoji-test → util-data-test/src/emoji-test}/media-service-emoji.d.ts +0 -0
  614. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-story-data.d.ts +0 -0
  615. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/mention-test-data.d.ts +0 -0
  616. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/presence-data.d.ts +0 -0
  617. /package/dist/types-ts4.5/{mention → util-data-test/src/mention}/utils.d.ts +0 -0
  618. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/get-mock-profilecard-client.d.ts +0 -0
  619. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/profilecard-data.d.ts +0 -0
  620. /package/dist/types-ts4.5/{profilecard → util-data-test/src/profilecard}/util.d.ts +0 -0
  621. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/index.d.ts +0 -0
  622. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-conversations-data.d.ts +0 -0
  623. /package/dist/types-ts4.5/{slack-data → util-data-test/src/slack-data}/slack-workspaces-data.d.ts +0 -0
  624. /package/dist/types-ts4.5/{task-decision → util-data-test/src/task-decision}/task-decision-story-data.d.ts +0 -0
  625. /package/dist/{types → types-ts4.5/util-data-test/src}/user-picker/ChevronRight.d.ts +0 -0
  626. /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/index.d.ts +0 -0
  627. /package/dist/types-ts4.5/{user-picker → util-data-test/src/user-picker}/user-picker-data.d.ts +0 -0
@@ -1,63 +0,0 @@
1
- {
2
- "data": {
3
- "PresenceBulk": [
4
- {
5
- "userId": "0",
6
- "state": "unavailable",
7
- "type": "product",
8
- "date": "2017-03-03T06:49:09.160Z",
9
- "message": "Away"
10
- },
11
- {
12
- "userId": "1",
13
- "state": "available",
14
- "type": "principal",
15
- "date": "2017-03-01T04:26:08.153Z",
16
- "message": ""
17
- },
18
- {
19
- "userId": "2",
20
- "state": "available",
21
- "type": "product",
22
- "date": null,
23
- "message": null
24
- },
25
- {
26
- "userId": "3",
27
- "state": "busy",
28
- "type": "product",
29
- "date": "2017-03-01T01:10:51.800Z",
30
- "message": "Away"
31
- },
32
- {
33
- "userId": "4",
34
- "state": "unavailable",
35
- "type": "principal",
36
- "date": "2017-03-12T23:02:53.193Z",
37
- "message": "On leave until 3/4"
38
- },
39
- {
40
- "userId": "5",
41
- "state": "busy",
42
- "type": "principal",
43
- "date": "2017-03-10T04:28:15.617Z",
44
- "message": "On call"
45
- },
46
- {
47
- "userId": "6",
48
- "state": "busy",
49
- "stateMetadata": "{\"focus\": {\"previousState\": \"available\",\"previousMessage\": null}}",
50
- "type": "principal",
51
- "date": "2017-11-16T06:33:39.617Z",
52
- "message": "I have things to do!"
53
- },
54
- {
55
- "userId": "7",
56
- "state": null,
57
- "type": null,
58
- "date": null,
59
- "message": null
60
- }
61
- ]
62
- }
63
- }
@@ -1,80 +0,0 @@
1
- {
2
- "tasks": [
3
- {
4
- "creationDate": "2017-07-24T05:25:38.237Z",
5
- "lastUpdateDate": "2017-07-24T05:25:38.237Z",
6
- "state": "TODO",
7
- "status": "CREATED",
8
- "localId": "t1",
9
- "parentLocalId": "c3328206-28d0-4b3a-84e9-94d26edf5a69",
10
- "objectAri": "ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003",
11
- "creatorId": "4cc5629af38fb272d40446a51f58ab71",
12
- "lastUpdaterId": "4cc5629af38fb272d40446a51f58ab71",
13
- "updatedBy": ["4cc5629af38fb272d40446a51f58ab71"],
14
- "participants": [],
15
- "dates": [
16
- "2019-09-20T04:44:00Z"
17
- ],
18
- "type": "TASK"
19
- },
20
- {
21
- "creationDate": "2017-07-24T05:25:38.237Z",
22
- "lastUpdateDate": "2017-07-24T05:25:38.237Z",
23
- "state": "DONE",
24
- "status": "CREATED",
25
- "localId": "t2",
26
- "parentLocalId": "c3328206-28d0-4b3a-84e9-94d26edf5a69",
27
- "objectAri": "ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003",
28
- "creatorId": "ed5c802ddd0ef7ec9da68da9fa51c186",
29
- "lastUpdaterId": "ed5c802ddd0ef7ec9da68da9fa51c186",
30
- "updatedBy": ["ed5c802ddd0ef7ec9da68da9fa51c186"],
31
- "participants": [],
32
- "type": "TASK"
33
- },
34
- {
35
- "creationDate": "2017-07-24T05:25:38.237Z",
36
- "lastUpdateDate": "2017-07-24T05:25:38.237Z",
37
- "state": "TODO",
38
- "status": "CREATED",
39
- "localId": "t3",
40
- "parentLocalId": "c3328206-28d0-4b3a-84e9-94d26edf5a69",
41
- "objectAri": "ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003",
42
- "creatorId": "4cc5629af38fb272d40446a51f58ab71",
43
- "lastUpdaterId": "4cc5629af38fb272d40446a51f58ab71",
44
- "updatedBy": ["4cc5629af38fb272d40446a51f58ab71"],
45
- "participants": [],
46
- "type": "TASK"
47
- },
48
- {
49
- "creationDate": "2017-07-24T05:25:38.237Z",
50
- "lastUpdateDate": "2017-07-24T05:25:38.237Z",
51
- "state": "DONE",
52
- "status": "CREATED",
53
- "localId": "t4",
54
- "parentLocalId": "c3328206-28d0-4b3a-84e9-94d26edf5a69",
55
- "objectAri": "ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003",
56
- "creatorId": "ed5c802ddd0ef7ec9da68da9fa51c186",
57
- "lastUpdaterId": "ed5c802ddd0ef7ec9da68da9fa51c186",
58
- "updatedBy": ["ed5c802ddd0ef7ec9da68da9fa51c186"],
59
- "participants": [],
60
- "type": "TASK"
61
- },
62
- {
63
- "creationDate": "2017-07-24T05:25:38.237Z",
64
- "lastUpdateDate": "2017-07-24T05:25:38.237Z",
65
- "state": "TODO",
66
- "status": "CREATED",
67
- "localId": "t5",
68
- "parentLocalId": "c3328206-28d0-4b3a-84e9-94d26edf5a69",
69
- "objectAri": "ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003",
70
- "creatorId": "4cc5629af38fb272d40446a51f58ab71",
71
- "lastUpdaterId": "4cc5629af38fb272d40446a51f58ab71",
72
- "updatedBy": ["4cc5629af38fb272d40446a51f58ab71"],
73
- "participants": [],
74
- "type": "TASK"
75
- }
76
- ],
77
- "meta": {
78
- "cursor": "DECIDED|2017-07-24T05:25:38.237Z|ari:cloud:banana:f7ebe2c0-0309-4687-b913-41d422f2110b:message/86eaefba-7030-11e7-82a6-02420aff0003|83b35593-cb98-46de-a704-b4eb9aac4b9c"
79
- }
80
- }
@@ -1,272 +0,0 @@
1
- {
2
- "emojis": [
3
- {
4
- "id": "atlassian-minus",
5
- "name": "Minus",
6
- "fallback": ":minus:",
7
- "type": "ATLASSIAN",
8
- "category": "ATLASSIAN",
9
- "order": -997,
10
- "representation": {
11
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/minus_64.png",
12
- "height": 64,
13
- "width": 64
14
- },
15
- "ascii": [
16
- "(-)"
17
- ],
18
- "searchable": true,
19
- "shortName": ":minus:"
20
- },
21
- {
22
- "id": "atlassian-blue_star",
23
- "name": "Blue Star",
24
- "fallback": ":blue_star:",
25
- "type": "ATLASSIAN",
26
- "category": "ATLASSIAN",
27
- "order": -988,
28
- "representation": {
29
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/blue_star_64.png",
30
- "height": 64,
31
- "width": 64
32
- },
33
- "ascii": [
34
- "(*b)"
35
- ],
36
- "searchable": true,
37
- "shortName": ":blue_star:"
38
- },
39
- {
40
- "id": "atlassian-light_bulb_off",
41
- "name": "Light Bulb Off",
42
- "fallback": ":light_bulb_off:",
43
- "type": "ATLASSIAN",
44
- "category": "ATLASSIAN",
45
- "order": -995,
46
- "representation": {
47
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/light_bulb_off_64.png",
48
- "height": 64,
49
- "width": 64
50
- },
51
- "ascii": [
52
- "(off)"
53
- ],
54
- "searchable": true,
55
- "shortName": ":light_bulb_off:"
56
- },
57
- {
58
- "id": "atlassian-flag_off",
59
- "name": "Flag Off",
60
- "fallback": ":flag_off:",
61
- "type": "ATLASSIAN",
62
- "category": "ATLASSIAN",
63
- "order": -993,
64
- "representation": {
65
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/flag_off_64.png",
66
- "height": 64,
67
- "width": 64
68
- },
69
- "searchable": true,
70
- "shortName": ":flag_off:"
71
- },
72
- {
73
- "id": "atlassian-plus",
74
- "name": "Plus",
75
- "fallback": ":plus:",
76
- "type": "ATLASSIAN",
77
- "category": "ATLASSIAN",
78
- "order": -998,
79
- "representation": {
80
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/plus_64.png",
81
- "height": 64,
82
- "width": 64
83
- },
84
- "ascii": [
85
- "(+)"
86
- ],
87
- "searchable": true,
88
- "shortName": ":plus:"
89
- },
90
- {
91
- "id": "atlassian-red_star",
92
- "name": "Red Star",
93
- "fallback": ":red_star:",
94
- "type": "ATLASSIAN",
95
- "category": "ATLASSIAN",
96
- "order": -986,
97
- "representation": {
98
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/red_star_64.png",
99
- "height": 64,
100
- "width": 64
101
- },
102
- "ascii": [
103
- "(*r)"
104
- ],
105
- "searchable": true,
106
- "shortName": ":red_star:"
107
- },
108
- {
109
- "id": "atlassian-check_mark",
110
- "name": "Check Mark",
111
- "fallback": ":check_mark:",
112
- "type": "ATLASSIAN",
113
- "category": "ATLASSIAN",
114
- "order": -1000,
115
- "representation": {
116
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/check_mark_64.png",
117
- "height": 64,
118
- "width": 64
119
- },
120
- "ascii": [
121
- "(/)"
122
- ],
123
- "searchable": true,
124
- "shortName": ":check_mark:"
125
- },
126
- {
127
- "id": "atlassian-light_bulb_on",
128
- "name": "Light Bulb On",
129
- "fallback": ":light_bulb_on:",
130
- "type": "ATLASSIAN",
131
- "category": "ATLASSIAN",
132
- "order": -996,
133
- "representation": {
134
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/light_bulb_on_64.png",
135
- "height": 64,
136
- "width": 64
137
- },
138
- "ascii": [
139
- "(on)"
140
- ],
141
- "searchable": true,
142
- "shortName": ":light_bulb_on:"
143
- },
144
- {
145
- "id": "atlassian-question_mark",
146
- "name": "Question Mark",
147
- "fallback": ":question_mark:",
148
- "type": "ATLASSIAN",
149
- "category": "ATLASSIAN",
150
- "order": -991,
151
- "representation": {
152
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/question_mark_64.png",
153
- "height": 64,
154
- "width": 64
155
- },
156
- "ascii": [
157
- "(?)"
158
- ],
159
- "searchable": true,
160
- "shortName": ":question_mark:"
161
- },
162
- {
163
- "id": "atlassian-cross_mark",
164
- "name": "Cross Mark",
165
- "fallback": ":cross_mark:",
166
- "type": "ATLASSIAN",
167
- "category": "ATLASSIAN",
168
- "order": -999,
169
- "representation": {
170
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/cross_mark_64.png",
171
- "height": 64,
172
- "width": 64
173
- },
174
- "ascii": [
175
- "(x)"
176
- ],
177
- "searchable": true,
178
- "shortName": ":cross_mark:"
179
- },
180
- {
181
- "id": "atlassian-yellow_star",
182
- "name": "Yellow Star",
183
- "fallback": ":yellow_star:",
184
- "type": "ATLASSIAN",
185
- "category": "ATLASSIAN",
186
- "order": -989,
187
- "representation": {
188
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/yellow_star_64.png",
189
- "height": 64,
190
- "width": 64
191
- },
192
- "ascii": [
193
- "(*)",
194
- "(*y)"
195
- ],
196
- "searchable": true,
197
- "shortName": ":yellow_star:"
198
- },
199
- {
200
- "id": "atlassian-warning",
201
- "name": "Warning",
202
- "fallback": ":warning:",
203
- "type": "ATLASSIAN",
204
- "category": "ATLASSIAN",
205
- "order": -992,
206
- "representation": {
207
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/warning_64.png",
208
- "height": 64,
209
- "width": 64
210
- },
211
- "ascii": [
212
- "(!)"
213
- ],
214
- "searchable": true,
215
- "shortName": ":warning:"
216
- },
217
- {
218
- "id": "atlassian-green_star",
219
- "name": "Green Star",
220
- "fallback": ":green_star:",
221
- "type": "ATLASSIAN",
222
- "category": "ATLASSIAN",
223
- "order": -987,
224
- "representation": {
225
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/green_star_64.png",
226
- "height": 64,
227
- "width": 64
228
- },
229
- "ascii": [
230
- "(*g)"
231
- ],
232
- "searchable": true,
233
- "shortName": ":green_star:"
234
- },
235
- {
236
- "id": "atlassian-flag_on",
237
- "name": "Flag On",
238
- "fallback": ":flag_on:",
239
- "type": "ATLASSIAN",
240
- "category": "ATLASSIAN",
241
- "order": -994,
242
- "representation": {
243
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/flag_on_64.png",
244
- "height": 64,
245
- "width": 64
246
- },
247
- "searchable": true,
248
- "shortName": ":flag_on:"
249
- },
250
- {
251
- "id": "atlassian-info",
252
- "name": "Info",
253
- "fallback": ":info:",
254
- "type": "ATLASSIAN",
255
- "category": "ATLASSIAN",
256
- "order": -990,
257
- "representation": {
258
- "imagePath": "https://pf-emoji-service--cdn.ap-southeast-2.dev.public.atl-paas.net/atlassian/info_64.png",
259
- "height": 64,
260
- "width": 64
261
- },
262
- "ascii": [
263
- "(i)"
264
- ],
265
- "searchable": true,
266
- "shortName": ":info:"
267
- }
268
- ],
269
- "meta": {
270
- "spriteSheets": {}
271
- }
272
- }