@microsoft/agents-hosting-dialogs 0.1.49

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 (325) hide show
  1. package/dist/index.js +20 -0
  2. package/dist/src/agentComponent.d.ts +18 -0
  3. package/dist/src/agentComponent.js +55 -0
  4. package/dist/src/agentComponent.js.map +1 -0
  5. package/dist/src/agentStateSet.d.ts +48 -0
  6. package/dist/src/agentStateSet.js +66 -0
  7. package/dist/src/agentStateSet.js.map +1 -0
  8. package/dist/src/choices/choice.d.ts +14 -0
  9. package/dist/src/choices/choice.js +7 -0
  10. package/dist/src/choices/choice.js.map +1 -0
  11. package/dist/src/choices/choiceFactory.d.ts +81 -0
  12. package/dist/src/choices/choiceFactory.js +133 -0
  13. package/dist/src/choices/choiceFactory.js.map +1 -0
  14. package/dist/src/choices/findChoices.d.ts +28 -0
  15. package/dist/src/choices/findChoices.js +46 -0
  16. package/dist/src/choices/findChoices.js.map +1 -0
  17. package/dist/src/choices/findValues.d.ts +36 -0
  18. package/dist/src/choices/findValues.js +129 -0
  19. package/dist/src/choices/findValues.js.map +1 -0
  20. package/dist/src/choices/index.d.ts +11 -0
  21. package/dist/src/choices/index.js +28 -0
  22. package/dist/src/choices/index.js.map +1 -0
  23. package/dist/src/choices/modelResult.d.ts +11 -0
  24. package/dist/src/choices/modelResult.js +3 -0
  25. package/dist/src/choices/modelResult.js.map +1 -0
  26. package/dist/src/choices/recognizeChoices.d.ts +16 -0
  27. package/dist/src/choices/recognizeChoices.js +81 -0
  28. package/dist/src/choices/recognizeChoices.js.map +1 -0
  29. package/dist/src/choices/tokenizer.d.ts +25 -0
  30. package/dist/src/choices/tokenizer.js +73 -0
  31. package/dist/src/choices/tokenizer.js.map +1 -0
  32. package/dist/src/componentDialog.d.ts +178 -0
  33. package/dist/src/componentDialog.js +252 -0
  34. package/dist/src/componentDialog.js.map +1 -0
  35. package/dist/src/componentRegistration.d.ts +22 -0
  36. package/dist/src/componentRegistration.js +32 -0
  37. package/dist/src/componentRegistration.js.map +1 -0
  38. package/dist/src/configurable.d.ts +22 -0
  39. package/dist/src/configurable.js +60 -0
  40. package/dist/src/configurable.js.map +1 -0
  41. package/dist/src/configuration.d.ts +11 -0
  42. package/dist/src/configuration.js +17 -0
  43. package/dist/src/configuration.js.map +1 -0
  44. package/dist/src/converter.d.ts +13 -0
  45. package/dist/src/converter.js +7 -0
  46. package/dist/src/converter.js.map +1 -0
  47. package/dist/src/dialog.d.ts +184 -0
  48. package/dist/src/dialog.js +201 -0
  49. package/dist/src/dialog.js.map +1 -0
  50. package/dist/src/dialogContainer.d.ts +61 -0
  51. package/dist/src/dialogContainer.js +82 -0
  52. package/dist/src/dialogContainer.js.map +1 -0
  53. package/dist/src/dialogContext.d.ts +272 -0
  54. package/dist/src/dialogContext.js +444 -0
  55. package/dist/src/dialogContext.js.map +1 -0
  56. package/dist/src/dialogContextError.d.ts +27 -0
  57. package/dist/src/dialogContextError.js +39 -0
  58. package/dist/src/dialogContextError.js.map +1 -0
  59. package/dist/src/dialogEvent.d.ts +20 -0
  60. package/dist/src/dialogEvent.js +3 -0
  61. package/dist/src/dialogEvent.js.map +1 -0
  62. package/dist/src/dialogEvents.d.ts +15 -0
  63. package/dist/src/dialogEvents.js +20 -0
  64. package/dist/src/dialogEvents.js.map +1 -0
  65. package/dist/src/dialogHelper.d.ts +32 -0
  66. package/dist/src/dialogHelper.js +116 -0
  67. package/dist/src/dialogHelper.js.map +1 -0
  68. package/dist/src/dialogInstance.d.ts +30 -0
  69. package/dist/src/dialogInstance.js +3 -0
  70. package/dist/src/dialogInstance.js.map +1 -0
  71. package/dist/src/dialogManager.d.ts +73 -0
  72. package/dist/src/dialogManager.js +156 -0
  73. package/dist/src/dialogManager.js.map +1 -0
  74. package/dist/src/dialogReason.d.ts +35 -0
  75. package/dist/src/dialogReason.js +40 -0
  76. package/dist/src/dialogReason.js.map +1 -0
  77. package/dist/src/dialogSet.d.ts +85 -0
  78. package/dist/src/dialogSet.js +138 -0
  79. package/dist/src/dialogSet.js.map +1 -0
  80. package/dist/src/dialogTurnResult.d.ts +34 -0
  81. package/dist/src/dialogTurnResult.js +3 -0
  82. package/dist/src/dialogTurnResult.js.map +1 -0
  83. package/dist/src/dialogTurnStateConstants.d.ts +12 -0
  84. package/dist/src/dialogTurnStateConstants.js +17 -0
  85. package/dist/src/dialogTurnStateConstants.js.map +1 -0
  86. package/dist/src/dialogTurnStatus.d.ts +34 -0
  87. package/dist/src/dialogTurnStatus.js +39 -0
  88. package/dist/src/dialogTurnStatus.js.map +1 -0
  89. package/dist/src/dialogsAgentComponent.d.ts +17 -0
  90. package/dist/src/dialogsAgentComponent.js +65 -0
  91. package/dist/src/dialogsAgentComponent.js.map +1 -0
  92. package/dist/src/dialogsComponentRegistration.d.ts +28 -0
  93. package/dist/src/dialogsComponentRegistration.js +45 -0
  94. package/dist/src/dialogsComponentRegistration.js.map +1 -0
  95. package/dist/src/i18n.d.ts +15 -0
  96. package/dist/src/i18n.js +28 -0
  97. package/dist/src/i18n.js.map +1 -0
  98. package/dist/src/index.d.ts +29 -0
  99. package/dist/src/index.js +48 -0
  100. package/dist/src/index.js.map +1 -0
  101. package/dist/src/intentScore.d.ts +11 -0
  102. package/dist/src/intentScore.js +3 -0
  103. package/dist/src/intentScore.js.map +1 -0
  104. package/dist/src/memory/componentMemoryScopes.d.ts +18 -0
  105. package/dist/src/memory/componentMemoryScopes.js +54 -0
  106. package/dist/src/memory/componentMemoryScopes.js.map +1 -0
  107. package/dist/src/memory/componentPathResolvers.d.ts +18 -0
  108. package/dist/src/memory/componentPathResolvers.js +52 -0
  109. package/dist/src/memory/componentPathResolvers.js.map +1 -0
  110. package/dist/src/memory/dialogPath.d.ts +17 -0
  111. package/dist/src/memory/dialogPath.js +30 -0
  112. package/dist/src/memory/dialogPath.js.map +1 -0
  113. package/dist/src/memory/dialogStateManager.d.ts +156 -0
  114. package/dist/src/memory/dialogStateManager.js +598 -0
  115. package/dist/src/memory/dialogStateManager.js.map +1 -0
  116. package/dist/src/memory/index.d.ts +12 -0
  117. package/dist/src/memory/index.js +29 -0
  118. package/dist/src/memory/index.js.map +1 -0
  119. package/dist/src/memory/pathResolvers/aliasPathResolver.d.ts +25 -0
  120. package/dist/src/memory/pathResolvers/aliasPathResolver.js +37 -0
  121. package/dist/src/memory/pathResolvers/aliasPathResolver.js.map +1 -0
  122. package/dist/src/memory/pathResolvers/atAtPathResolver.d.ts +11 -0
  123. package/dist/src/memory/pathResolvers/atAtPathResolver.js +18 -0
  124. package/dist/src/memory/pathResolvers/atAtPathResolver.js.map +1 -0
  125. package/dist/src/memory/pathResolvers/atPathResolver.d.ts +20 -0
  126. package/dist/src/memory/pathResolvers/atPathResolver.js +46 -0
  127. package/dist/src/memory/pathResolvers/atPathResolver.js.map +1 -0
  128. package/dist/src/memory/pathResolvers/dollarPathResolver.d.ts +11 -0
  129. package/dist/src/memory/pathResolvers/dollarPathResolver.js +18 -0
  130. package/dist/src/memory/pathResolvers/dollarPathResolver.js.map +1 -0
  131. package/dist/src/memory/pathResolvers/hashPathResolver.d.ts +11 -0
  132. package/dist/src/memory/pathResolvers/hashPathResolver.js +18 -0
  133. package/dist/src/memory/pathResolvers/hashPathResolver.js.map +1 -0
  134. package/dist/src/memory/pathResolvers/index.d.ts +11 -0
  135. package/dist/src/memory/pathResolvers/index.js +28 -0
  136. package/dist/src/memory/pathResolvers/index.js.map +1 -0
  137. package/dist/src/memory/pathResolvers/pathResolver.d.ts +13 -0
  138. package/dist/src/memory/pathResolvers/pathResolver.js +7 -0
  139. package/dist/src/memory/pathResolvers/pathResolver.js.map +1 -0
  140. package/dist/src/memory/pathResolvers/percentPathResolver.d.ts +11 -0
  141. package/dist/src/memory/pathResolvers/percentPathResolver.js +18 -0
  142. package/dist/src/memory/pathResolvers/percentPathResolver.js.map +1 -0
  143. package/dist/src/memory/scopePath.d.ts +18 -0
  144. package/dist/src/memory/scopePath.js +23 -0
  145. package/dist/src/memory/scopePath.js.map +1 -0
  146. package/dist/src/memory/scopes/agentStateMemoryScope.d.ts +53 -0
  147. package/dist/src/memory/scopes/agentStateMemoryScope.js +82 -0
  148. package/dist/src/memory/scopes/agentStateMemoryScope.js.map +1 -0
  149. package/dist/src/memory/scopes/classMemoryScope.d.ts +29 -0
  150. package/dist/src/memory/scopes/classMemoryScope.js +65 -0
  151. package/dist/src/memory/scopes/classMemoryScope.js.map +1 -0
  152. package/dist/src/memory/scopes/conversationMemoryScope.d.ts +15 -0
  153. package/dist/src/memory/scopes/conversationMemoryScope.js +23 -0
  154. package/dist/src/memory/scopes/conversationMemoryScope.js.map +1 -0
  155. package/dist/src/memory/scopes/dialogClassMemoryScope.d.ts +19 -0
  156. package/dist/src/memory/scopes/dialogClassMemoryScope.js +42 -0
  157. package/dist/src/memory/scopes/dialogClassMemoryScope.js.map +1 -0
  158. package/dist/src/memory/scopes/dialogContextMemoryScope.d.ts +19 -0
  159. package/dist/src/memory/scopes/dialogContextMemoryScope.js +48 -0
  160. package/dist/src/memory/scopes/dialogContextMemoryScope.js.map +1 -0
  161. package/dist/src/memory/scopes/dialogMemoryScope.d.ts +32 -0
  162. package/dist/src/memory/scopes/dialogMemoryScope.js +74 -0
  163. package/dist/src/memory/scopes/dialogMemoryScope.js.map +1 -0
  164. package/dist/src/memory/scopes/index.d.ts +15 -0
  165. package/dist/src/memory/scopes/index.js +32 -0
  166. package/dist/src/memory/scopes/index.js.map +1 -0
  167. package/dist/src/memory/scopes/memoryScope.d.ts +52 -0
  168. package/dist/src/memory/scopes/memoryScope.js +54 -0
  169. package/dist/src/memory/scopes/memoryScope.js.map +1 -0
  170. package/dist/src/memory/scopes/settingsMemoryScope.d.ts +68 -0
  171. package/dist/src/memory/scopes/settingsMemoryScope.js +216 -0
  172. package/dist/src/memory/scopes/settingsMemoryScope.js.map +1 -0
  173. package/dist/src/memory/scopes/thisMemoryScope.d.ts +26 -0
  174. package/dist/src/memory/scopes/thisMemoryScope.js +43 -0
  175. package/dist/src/memory/scopes/thisMemoryScope.js.map +1 -0
  176. package/dist/src/memory/scopes/turnMemoryScope.d.ts +29 -0
  177. package/dist/src/memory/scopes/turnMemoryScope.js +52 -0
  178. package/dist/src/memory/scopes/turnMemoryScope.js.map +1 -0
  179. package/dist/src/memory/scopes/userMemoryScope.d.ts +15 -0
  180. package/dist/src/memory/scopes/userMemoryScope.js +23 -0
  181. package/dist/src/memory/scopes/userMemoryScope.js.map +1 -0
  182. package/dist/src/memory/turnPath.d.ts +21 -0
  183. package/dist/src/memory/turnPath.js +38 -0
  184. package/dist/src/memory/turnPath.js.map +1 -0
  185. package/dist/src/prompts/activityPrompt.d.ts +101 -0
  186. package/dist/src/prompts/activityPrompt.js +166 -0
  187. package/dist/src/prompts/activityPrompt.js.map +1 -0
  188. package/dist/src/prompts/attachmentPrompt.d.ts +37 -0
  189. package/dist/src/prompts/attachmentPrompt.js +55 -0
  190. package/dist/src/prompts/attachmentPrompt.js.map +1 -0
  191. package/dist/src/prompts/choicePrompt.d.ts +83 -0
  192. package/dist/src/prompts/choicePrompt.js +116 -0
  193. package/dist/src/prompts/choicePrompt.js.map +1 -0
  194. package/dist/src/prompts/confirmPrompt.d.ts +82 -0
  195. package/dist/src/prompts/confirmPrompt.js +163 -0
  196. package/dist/src/prompts/confirmPrompt.js.map +1 -0
  197. package/dist/src/prompts/datetimePrompt.d.ts +65 -0
  198. package/dist/src/prompts/datetimePrompt.js +109 -0
  199. package/dist/src/prompts/datetimePrompt.js.map +1 -0
  200. package/dist/src/prompts/index.d.ts +13 -0
  201. package/dist/src/prompts/index.js +30 -0
  202. package/dist/src/prompts/index.js.map +1 -0
  203. package/dist/src/prompts/numberPrompt.d.ts +55 -0
  204. package/dist/src/prompts/numberPrompt.js +134 -0
  205. package/dist/src/prompts/numberPrompt.js.map +1 -0
  206. package/dist/src/prompts/prompt.d.ts +256 -0
  207. package/dist/src/prompts/prompt.js +260 -0
  208. package/dist/src/prompts/prompt.js.map +1 -0
  209. package/dist/src/prompts/promptCultureModels.d.ts +72 -0
  210. package/dist/src/prompts/promptCultureModels.js +123 -0
  211. package/dist/src/prompts/promptCultureModels.js.map +1 -0
  212. package/dist/src/prompts/textPrompt.d.ts +54 -0
  213. package/dist/src/prompts/textPrompt.js +72 -0
  214. package/dist/src/prompts/textPrompt.js.map +1 -0
  215. package/dist/src/recognizer.d.ts +43 -0
  216. package/dist/src/recognizer.js +104 -0
  217. package/dist/src/recognizer.js.map +1 -0
  218. package/dist/src/recognizerResult.d.ts +19 -0
  219. package/dist/src/recognizerResult.js +24 -0
  220. package/dist/src/recognizerResult.js.map +1 -0
  221. package/dist/src/serviceCollection.d.ts +112 -0
  222. package/dist/src/serviceCollection.js +209 -0
  223. package/dist/src/serviceCollection.js.map +1 -0
  224. package/dist/src/stringUtils.d.ts +36 -0
  225. package/dist/src/stringUtils.js +62 -0
  226. package/dist/src/stringUtils.js.map +1 -0
  227. package/dist/src/template.d.ts +18 -0
  228. package/dist/src/template.js +7 -0
  229. package/dist/src/template.js.map +1 -0
  230. package/dist/src/waterfallDialog.d.ts +101 -0
  231. package/dist/src/waterfallDialog.js +179 -0
  232. package/dist/src/waterfallDialog.js.map +1 -0
  233. package/dist/src/waterfallStepContext.d.ts +71 -0
  234. package/dist/src/waterfallStepContext.js +78 -0
  235. package/dist/src/waterfallStepContext.js.map +1 -0
  236. package/package.json +49 -0
  237. package/src/agentComponent.ts +23 -0
  238. package/src/agentStateSet.ts +75 -0
  239. package/src/choices/choice.ts +16 -0
  240. package/src/choices/choiceFactory.ts +189 -0
  241. package/src/choices/findChoices.ts +70 -0
  242. package/src/choices/findValues.ts +179 -0
  243. package/src/choices/index.ts +11 -0
  244. package/src/choices/modelResult.ts +11 -0
  245. package/src/choices/recognizeChoices.ts +94 -0
  246. package/src/choices/tokenizer.ts +93 -0
  247. package/src/componentDialog.ts +306 -0
  248. package/src/componentRegistration.ts +30 -0
  249. package/src/configurable.ts +55 -0
  250. package/src/configuration.ts +22 -0
  251. package/src/converter.ts +15 -0
  252. package/src/dialog.ts +243 -0
  253. package/src/dialogContainer.ts +90 -0
  254. package/src/dialogContext.ts +607 -0
  255. package/src/dialogContextError.ts +50 -0
  256. package/src/dialogEvent.ts +23 -0
  257. package/src/dialogEvents.ts +16 -0
  258. package/src/dialogHelper.ts +154 -0
  259. package/src/dialogInstance.ts +32 -0
  260. package/src/dialogManager.ts +202 -0
  261. package/src/dialogReason.ts +40 -0
  262. package/src/dialogSet.ts +168 -0
  263. package/src/dialogTurnResult.ts +37 -0
  264. package/src/dialogTurnStateConstants.ts +13 -0
  265. package/src/dialogTurnStatus.ts +38 -0
  266. package/src/dialogsAgentComponent.ts +71 -0
  267. package/src/dialogsComponentRegistration.ts +49 -0
  268. package/src/i18n.ts +17 -0
  269. package/src/index.ts +31 -0
  270. package/src/intentScore.ts +11 -0
  271. package/src/memory/componentMemoryScopes.ts +28 -0
  272. package/src/memory/componentPathResolvers.ts +29 -0
  273. package/src/memory/dialogPath.ts +33 -0
  274. package/src/memory/dialogStateManager.ts +661 -0
  275. package/src/memory/index.ts +12 -0
  276. package/src/memory/pathResolvers/aliasPathResolver.ts +44 -0
  277. package/src/memory/pathResolvers/atAtPathResolver.ts +14 -0
  278. package/src/memory/pathResolvers/atPathResolver.ts +45 -0
  279. package/src/memory/pathResolvers/dollarPathResolver.ts +14 -0
  280. package/src/memory/pathResolvers/hashPathResolver.ts +14 -0
  281. package/src/memory/pathResolvers/index.ts +11 -0
  282. package/src/memory/pathResolvers/pathResolver.ts +14 -0
  283. package/src/memory/pathResolvers/percentPathResolver.ts +14 -0
  284. package/src/memory/scopePath.ts +19 -0
  285. package/src/memory/scopes/agentStateMemoryScope.ts +92 -0
  286. package/src/memory/scopes/classMemoryScope.ts +71 -0
  287. package/src/memory/scopes/conversationMemoryScope.ts +19 -0
  288. package/src/memory/scopes/dialogClassMemoryScope.ts +43 -0
  289. package/src/memory/scopes/dialogContextMemoryScope.ts +51 -0
  290. package/src/memory/scopes/dialogMemoryScope.ts +79 -0
  291. package/src/memory/scopes/index.ts +15 -0
  292. package/src/memory/scopes/memoryScope.ts +70 -0
  293. package/src/memory/scopes/settingsMemoryScope.ts +239 -0
  294. package/src/memory/scopes/thisMemoryScope.ts +44 -0
  295. package/src/memory/scopes/turnMemoryScope.ts +54 -0
  296. package/src/memory/scopes/userMemoryScope.ts +19 -0
  297. package/src/memory/turnPath.ts +45 -0
  298. package/src/prompts/activityPrompt.ts +202 -0
  299. package/src/prompts/attachmentPrompt.ts +62 -0
  300. package/src/prompts/choicePrompt.ts +176 -0
  301. package/src/prompts/confirmPrompt.ts +182 -0
  302. package/src/prompts/datetimePrompt.ts +110 -0
  303. package/src/prompts/index.ts +13 -0
  304. package/src/prompts/numberPrompt.ts +117 -0
  305. package/src/prompts/prompt.ts +459 -0
  306. package/src/prompts/promptCultureModels.ts +178 -0
  307. package/src/prompts/textPrompt.ts +82 -0
  308. package/src/recognizer.ts +127 -0
  309. package/src/recognizerResult.ts +37 -0
  310. package/src/serviceCollection.ts +305 -0
  311. package/src/stringUtils.ts +62 -0
  312. package/src/template.ts +20 -0
  313. package/src/waterfallDialog.ts +215 -0
  314. package/src/waterfallStepContext.ts +96 -0
  315. package/vendor/cldr-data/README.md +5 -0
  316. package/vendor/cldr-data/main/de/numbers.json +156 -0
  317. package/vendor/cldr-data/main/en/numbers.json +159 -0
  318. package/vendor/cldr-data/main/es/numbers.json +156 -0
  319. package/vendor/cldr-data/main/fr/numbers.json +157 -0
  320. package/vendor/cldr-data/main/ja/numbers.json +120 -0
  321. package/vendor/cldr-data/main/nl/numbers.json +156 -0
  322. package/vendor/cldr-data/main/pt/numbers.json +156 -0
  323. package/vendor/cldr-data/main/zh/numbers.json +214 -0
  324. package/vendor/cldr-data/supplemental/likelySubtags.json +1844 -0
  325. package/vendor/cldr-data/supplemental/numberingSystems.json +343 -0
@@ -0,0 +1,343 @@
1
+ {
2
+ "supplemental": {
3
+ "version": {
4
+ "_number": "$Revision: 14872 $",
5
+ "_unicodeVersion": "12.1.0",
6
+ "_cldrVersion": "35.1"
7
+ },
8
+ "numberingSystems": {
9
+ "adlm": {
10
+ "_digits": "𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙",
11
+ "_type": "numeric"
12
+ },
13
+ "ahom": {
14
+ "_digits": "𑜰𑜱𑜲𑜳𑜴𑜵𑜶𑜷𑜸𑜹",
15
+ "_type": "numeric"
16
+ },
17
+ "arab": {
18
+ "_digits": "٠١٢٣٤٥٦٧٨٩",
19
+ "_type": "numeric"
20
+ },
21
+ "arabext": {
22
+ "_digits": "۰۱۲۳۴۵۶۷۸۹",
23
+ "_type": "numeric"
24
+ },
25
+ "armn": {
26
+ "_rules": "armenian-upper",
27
+ "_type": "algorithmic"
28
+ },
29
+ "armnlow": {
30
+ "_rules": "armenian-lower",
31
+ "_type": "algorithmic"
32
+ },
33
+ "bali": {
34
+ "_digits": "᭐᭑᭒᭓᭔᭕᭖᭗᭘᭙",
35
+ "_type": "numeric"
36
+ },
37
+ "beng": {
38
+ "_digits": "০১২৩৪৫৬৭৮৯",
39
+ "_type": "numeric"
40
+ },
41
+ "bhks": {
42
+ "_digits": "𑱐𑱑𑱒𑱓𑱔𑱕𑱖𑱗𑱘𑱙",
43
+ "_type": "numeric"
44
+ },
45
+ "brah": {
46
+ "_digits": "𑁦𑁧𑁨𑁩𑁪𑁫𑁬𑁭𑁮𑁯",
47
+ "_type": "numeric"
48
+ },
49
+ "cakm": {
50
+ "_digits": "𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿",
51
+ "_type": "numeric"
52
+ },
53
+ "cham": {
54
+ "_digits": "꩐꩑꩒꩓꩔꩕꩖꩗꩘꩙",
55
+ "_type": "numeric"
56
+ },
57
+ "cyrl": {
58
+ "_rules": "cyrillic-lower",
59
+ "_type": "algorithmic"
60
+ },
61
+ "deva": {
62
+ "_digits": "०१२३४५६७८९",
63
+ "_type": "numeric"
64
+ },
65
+ "ethi": {
66
+ "_rules": "ethiopic",
67
+ "_type": "algorithmic"
68
+ },
69
+ "fullwide": {
70
+ "_digits": "0123456789",
71
+ "_type": "numeric"
72
+ },
73
+ "geor": {
74
+ "_rules": "georgian",
75
+ "_type": "algorithmic"
76
+ },
77
+ "gong": {
78
+ "_digits": "𑶠𑶡𑶢𑶣𑶤𑶥𑶦𑶧𑶨𑶩",
79
+ "_type": "numeric"
80
+ },
81
+ "gonm": {
82
+ "_digits": "𑵐𑵑𑵒𑵓𑵔𑵕𑵖𑵗𑵘𑵙",
83
+ "_type": "numeric"
84
+ },
85
+ "grek": {
86
+ "_rules": "greek-upper",
87
+ "_type": "algorithmic"
88
+ },
89
+ "greklow": {
90
+ "_rules": "greek-lower",
91
+ "_type": "algorithmic"
92
+ },
93
+ "gujr": {
94
+ "_digits": "૦૧૨૩૪૫૬૭૮૯",
95
+ "_type": "numeric"
96
+ },
97
+ "guru": {
98
+ "_digits": "੦੧੨੩੪੫੬੭੮੯",
99
+ "_type": "numeric"
100
+ },
101
+ "hanidays": {
102
+ "_rules": "zh/SpelloutRules/spellout-numbering-days",
103
+ "_type": "algorithmic"
104
+ },
105
+ "hanidec": {
106
+ "_digits": "〇一二三四五六七八九",
107
+ "_type": "numeric"
108
+ },
109
+ "hans": {
110
+ "_rules": "zh/SpelloutRules/spellout-cardinal",
111
+ "_type": "algorithmic"
112
+ },
113
+ "hansfin": {
114
+ "_rules": "zh/SpelloutRules/spellout-cardinal-financial",
115
+ "_type": "algorithmic"
116
+ },
117
+ "hant": {
118
+ "_rules": "zh_Hant/SpelloutRules/spellout-cardinal",
119
+ "_type": "algorithmic"
120
+ },
121
+ "hantfin": {
122
+ "_rules": "zh_Hant/SpelloutRules/spellout-cardinal-financial",
123
+ "_type": "algorithmic"
124
+ },
125
+ "hebr": {
126
+ "_rules": "hebrew",
127
+ "_type": "algorithmic"
128
+ },
129
+ "hmng": {
130
+ "_digits": "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
131
+ "_type": "numeric"
132
+ },
133
+ "hmnp": {
134
+ "_digits": "𞅀𞅁𞅂𞅃𞅄𞅅𞅆𞅇𞅈𞅉",
135
+ "_type": "numeric"
136
+ },
137
+ "java": {
138
+ "_digits": "꧐꧑꧒꧓꧔꧕꧖꧗꧘꧙",
139
+ "_type": "numeric"
140
+ },
141
+ "jpan": {
142
+ "_rules": "ja/SpelloutRules/spellout-cardinal",
143
+ "_type": "algorithmic"
144
+ },
145
+ "jpanfin": {
146
+ "_rules": "ja/SpelloutRules/spellout-cardinal-financial",
147
+ "_type": "algorithmic"
148
+ },
149
+ "jpanyear": {
150
+ "_rules": "ja/SpelloutRules/spellout-numbering-year-latn",
151
+ "_type": "algorithmic"
152
+ },
153
+ "kali": {
154
+ "_digits": "꤀꤁꤂꤃꤄꤅꤆꤇꤈꤉",
155
+ "_type": "numeric"
156
+ },
157
+ "khmr": {
158
+ "_digits": "០១២៣៤៥៦៧៨៩",
159
+ "_type": "numeric"
160
+ },
161
+ "knda": {
162
+ "_digits": "೦೧೨೩೪೫೬೭೮೯",
163
+ "_type": "numeric"
164
+ },
165
+ "lana": {
166
+ "_digits": "᪀᪁᪂᪃᪄᪅᪆᪇᪈᪉",
167
+ "_type": "numeric"
168
+ },
169
+ "lanatham": {
170
+ "_digits": "᪐᪑᪒᪓᪔᪕᪖᪗᪘᪙",
171
+ "_type": "numeric"
172
+ },
173
+ "laoo": {
174
+ "_digits": "໐໑໒໓໔໕໖໗໘໙",
175
+ "_type": "numeric"
176
+ },
177
+ "latn": {
178
+ "_digits": "0123456789",
179
+ "_type": "numeric"
180
+ },
181
+ "lepc": {
182
+ "_digits": "᱀᱁᱂᱃᱄᱅᱆᱇᱈᱉",
183
+ "_type": "numeric"
184
+ },
185
+ "limb": {
186
+ "_digits": "᥆᥇᥈᥉᥊᥋᥌᥍᥎᥏",
187
+ "_type": "numeric"
188
+ },
189
+ "mathbold": {
190
+ "_digits": "𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗",
191
+ "_type": "numeric"
192
+ },
193
+ "mathdbl": {
194
+ "_digits": "𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡",
195
+ "_type": "numeric"
196
+ },
197
+ "mathmono": {
198
+ "_digits": "𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿",
199
+ "_type": "numeric"
200
+ },
201
+ "mathsanb": {
202
+ "_digits": "𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵",
203
+ "_type": "numeric"
204
+ },
205
+ "mathsans": {
206
+ "_digits": "𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫",
207
+ "_type": "numeric"
208
+ },
209
+ "mlym": {
210
+ "_digits": "൦൧൨൩൪൫൬൭൮൯",
211
+ "_type": "numeric"
212
+ },
213
+ "modi": {
214
+ "_digits": "𑙐𑙑𑙒𑙓𑙔𑙕𑙖𑙗𑙘𑙙",
215
+ "_type": "numeric"
216
+ },
217
+ "mong": {
218
+ "_digits": "᠐᠑᠒᠓᠔᠕᠖᠗᠘᠙",
219
+ "_type": "numeric"
220
+ },
221
+ "mroo": {
222
+ "_digits": "𖩠𖩡𖩢𖩣𖩤𖩥𖩦𖩧𖩨𖩩",
223
+ "_type": "numeric"
224
+ },
225
+ "mtei": {
226
+ "_digits": "꯰꯱꯲꯳꯴꯵꯶꯷꯸꯹",
227
+ "_type": "numeric"
228
+ },
229
+ "mymr": {
230
+ "_digits": "၀၁၂၃၄၅၆၇၈၉",
231
+ "_type": "numeric"
232
+ },
233
+ "mymrshan": {
234
+ "_digits": "႐႑႒႓႔႕႖႗႘႙",
235
+ "_type": "numeric"
236
+ },
237
+ "mymrtlng": {
238
+ "_digits": "꧰꧱꧲꧳꧴꧵꧶꧷꧸꧹",
239
+ "_type": "numeric"
240
+ },
241
+ "newa": {
242
+ "_digits": "𑑐𑑑𑑒𑑓𑑔𑑕𑑖𑑗𑑘𑑙",
243
+ "_type": "numeric"
244
+ },
245
+ "nkoo": {
246
+ "_digits": "߀߁߂߃߄߅߆߇߈߉",
247
+ "_type": "numeric"
248
+ },
249
+ "olck": {
250
+ "_digits": "᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙",
251
+ "_type": "numeric"
252
+ },
253
+ "orya": {
254
+ "_digits": "୦୧୨୩୪୫୬୭୮୯",
255
+ "_type": "numeric"
256
+ },
257
+ "osma": {
258
+ "_digits": "𐒠𐒡𐒢𐒣𐒤𐒥𐒦𐒧𐒨𐒩",
259
+ "_type": "numeric"
260
+ },
261
+ "rohg": {
262
+ "_digits": "𐴰𐴱𐴲𐴳𐴴𐴵𐴶𐴷𐴸𐴹",
263
+ "_type": "numeric"
264
+ },
265
+ "roman": {
266
+ "_rules": "roman-upper",
267
+ "_type": "algorithmic"
268
+ },
269
+ "romanlow": {
270
+ "_rules": "roman-lower",
271
+ "_type": "algorithmic"
272
+ },
273
+ "saur": {
274
+ "_digits": "꣐꣑꣒꣓꣔꣕꣖꣗꣘꣙",
275
+ "_type": "numeric"
276
+ },
277
+ "shrd": {
278
+ "_digits": "𑇐𑇑𑇒𑇓𑇔𑇕𑇖𑇗𑇘𑇙",
279
+ "_type": "numeric"
280
+ },
281
+ "sind": {
282
+ "_digits": "𑋰𑋱𑋲𑋳𑋴𑋵𑋶𑋷𑋸𑋹",
283
+ "_type": "numeric"
284
+ },
285
+ "sinh": {
286
+ "_digits": "෦෧෨෩෪෫෬෭෮෯",
287
+ "_type": "numeric"
288
+ },
289
+ "sora": {
290
+ "_digits": "𑃰𑃱𑃲𑃳𑃴𑃵𑃶𑃷𑃸𑃹",
291
+ "_type": "numeric"
292
+ },
293
+ "sund": {
294
+ "_digits": "᮰᮱᮲᮳᮴᮵᮶᮷᮸᮹",
295
+ "_type": "numeric"
296
+ },
297
+ "takr": {
298
+ "_digits": "𑛀𑛁𑛂𑛃𑛄𑛅𑛆𑛇𑛈𑛉",
299
+ "_type": "numeric"
300
+ },
301
+ "talu": {
302
+ "_digits": "᧐᧑᧒᧓᧔᧕᧖᧗᧘᧙",
303
+ "_type": "numeric"
304
+ },
305
+ "taml": {
306
+ "_rules": "tamil",
307
+ "_type": "algorithmic"
308
+ },
309
+ "tamldec": {
310
+ "_digits": "௦௧௨௩௪௫௬௭௮௯",
311
+ "_type": "numeric"
312
+ },
313
+ "telu": {
314
+ "_digits": "౦౧౨౩౪౫౬౭౮౯",
315
+ "_type": "numeric"
316
+ },
317
+ "thai": {
318
+ "_digits": "๐๑๒๓๔๕๖๗๘๙",
319
+ "_type": "numeric"
320
+ },
321
+ "tibt": {
322
+ "_digits": "༠༡༢༣༤༥༦༧༨༩",
323
+ "_type": "numeric"
324
+ },
325
+ "tirh": {
326
+ "_digits": "𑓐𑓑𑓒𑓓𑓔𑓕𑓖𑓗𑓘𑓙",
327
+ "_type": "numeric"
328
+ },
329
+ "vaii": {
330
+ "_digits": "꘠꘡꘢꘣꘤꘥꘦꘧꘨꘩",
331
+ "_type": "numeric"
332
+ },
333
+ "wara": {
334
+ "_digits": "𑣠𑣡𑣢𑣣𑣤𑣥𑣦𑣧𑣨𑣩",
335
+ "_type": "numeric"
336
+ },
337
+ "wcho": {
338
+ "_digits": "𞋰𞋱𞋲𞋳𞋴𞋵𞋶𞋷𞋸𞋹",
339
+ "_type": "numeric"
340
+ }
341
+ }
342
+ }
343
+ }