@language-weaver/lw-sdk-js 1.0.0 → 1.1.0

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 (342) hide show
  1. package/lib/{auth → common/auth}/LanguageWeaverAuthentication.d.ts +2 -2
  2. package/lib/{auth → common/auth}/LanguageWeaverAuthentication.js +1 -1
  3. package/lib/common/auth/LanguageWeaverAuthentication.js.map +1 -0
  4. package/lib/{auth → common/auth}/domain/SelfInformation.d.ts +0 -0
  5. package/lib/{auth → common/auth}/domain/SelfInformation.js +0 -0
  6. package/lib/common/auth/domain/SelfInformation.js.map +1 -0
  7. package/lib/{auth → common/auth}/domain/Token.d.ts +0 -0
  8. package/lib/{auth → common/auth}/domain/Token.js +0 -0
  9. package/lib/common/auth/domain/Token.js.map +1 -0
  10. package/lib/{auth → common/auth}/domain/UserSelfInformation.d.ts +0 -0
  11. package/lib/{auth → common/auth}/domain/UserSelfInformation.js +0 -0
  12. package/lib/common/auth/domain/UserSelfInformation.js.map +1 -0
  13. package/lib/common/configurations/ClientConfiguration.d.ts +1 -1
  14. package/lib/common/configurations/TokenConfiguration.d.ts +2 -2
  15. package/lib/common/constants/ApprovalStatus.d.ts +7 -0
  16. package/lib/common/constants/ApprovalStatus.js +20 -0
  17. package/lib/common/constants/ApprovalStatus.js.map +1 -0
  18. package/lib/common/constants/FeedbackCategory.d.ts +4 -0
  19. package/lib/common/constants/FeedbackCategory.js +9 -0
  20. package/lib/common/constants/FeedbackCategory.js.map +1 -0
  21. package/lib/common/constants/FeedbackComment.d.ts +10 -0
  22. package/lib/common/constants/FeedbackComment.js +15 -0
  23. package/lib/common/constants/FeedbackComment.js.map +1 -0
  24. package/lib/common/constants/FileExtensions.d.ts +1 -1
  25. package/lib/common/constants/FileExtensions.js +1 -1
  26. package/lib/common/constants/FileExtensions.js.map +1 -1
  27. package/lib/{translation/common → common/constants}/Format.d.ts +0 -0
  28. package/lib/{translation/common → common/constants}/Format.js +0 -0
  29. package/lib/common/constants/Format.js.map +1 -0
  30. package/lib/common/constants/Order.d.ts +4 -0
  31. package/lib/common/constants/Order.js +9 -0
  32. package/lib/common/constants/Order.js.map +1 -0
  33. package/lib/{translation/common → common/constants}/Product.d.ts +0 -0
  34. package/lib/{translation/common → common/constants}/Product.js +0 -0
  35. package/lib/common/constants/Product.js.map +1 -0
  36. package/lib/{translation/common → common/constants}/Regions.d.ts +0 -0
  37. package/lib/{translation/common → common/constants}/Regions.js +0 -0
  38. package/lib/common/constants/Regions.js.map +1 -0
  39. package/lib/{translation/common → common/constants}/Statuses.d.ts +0 -0
  40. package/lib/{translation/common → common/constants}/Statuses.js +0 -0
  41. package/lib/common/constants/Statuses.js.map +1 -0
  42. package/lib/common/constants/TranslationConstants.d.ts +6 -0
  43. package/lib/common/constants/TranslationConstants.js +8 -2
  44. package/lib/common/constants/TranslationConstants.js.map +1 -1
  45. package/lib/common/{requests → external/communication}/RestClient.d.ts +1 -1
  46. package/lib/common/{requests → external/communication}/RestClient.js +5 -12
  47. package/lib/common/external/communication/RestClient.js.map +1 -0
  48. package/lib/common/utils/HttpUtils.d.ts +1 -1
  49. package/lib/common/utils/HttpUtils.js +1 -1
  50. package/lib/common/utils/HttpUtils.js.map +1 -1
  51. package/lib/common/utils/Utils.d.ts +2 -2
  52. package/lib/common/utils/Utils.js +1 -1
  53. package/lib/common/utils/Utils.js.map +1 -1
  54. package/lib/index.d.ts +57 -39
  55. package/lib/index.js +74 -38
  56. package/lib/index.js.map +1 -1
  57. package/lib/translation/common/LanguageWeaverClient.d.ts +18 -0
  58. package/lib/{LanguageWeaverClient.js → translation/common/LanguageWeaverClient.js} +0 -0
  59. package/lib/translation/common/LanguageWeaverClient.js.map +1 -0
  60. package/lib/{SdkFactory.d.ts → translation/common/SdkFactory.d.ts} +2 -2
  61. package/lib/{SdkFactory.js → translation/common/SdkFactory.js} +5 -5
  62. package/lib/translation/common/SdkFactory.js.map +1 -0
  63. package/lib/translation/common/cloud/CloudLanguageWeaverClient.d.ts +68 -0
  64. package/lib/{CloudLanguageWeaverClient.js → translation/common/cloud/CloudLanguageWeaverClient.js} +53 -29
  65. package/lib/translation/common/cloud/CloudLanguageWeaverClient.js.map +1 -0
  66. package/lib/translation/common/edge/EdgeLanguageWeaverClient.d.ts +67 -0
  67. package/lib/{EdgeLanguageWeaverClient.js → translation/common/edge/EdgeLanguageWeaverClient.js} +56 -26
  68. package/lib/translation/common/edge/EdgeLanguageWeaverClient.js.map +1 -0
  69. package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.d.ts +2 -0
  70. package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.js +24 -0
  71. package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.js.map +1 -0
  72. package/lib/translation/common/result/PaginatedListResult.d.ts +11 -0
  73. package/lib/translation/common/result/PaginatedListResult.js +39 -0
  74. package/lib/translation/common/result/PaginatedListResult.js.map +1 -0
  75. package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.d.ts +63 -0
  76. package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.js +286 -0
  77. package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.js.map +1 -0
  78. package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.d.ts +35 -0
  79. package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.js +119 -0
  80. package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.js.map +1 -0
  81. package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.d.ts +6 -0
  82. package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.js +20 -0
  83. package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.js.map +1 -0
  84. package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.d.ts +11 -0
  85. package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.js +60 -0
  86. package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.js.map +1 -0
  87. package/lib/translation/feedback/cloud/api/CloudFeedbackRating.d.ts +10 -0
  88. package/lib/translation/feedback/cloud/api/CloudFeedbackRating.js +34 -0
  89. package/lib/translation/feedback/cloud/api/CloudFeedbackRating.js.map +1 -0
  90. package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.d.ts +25 -0
  91. package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.js +111 -0
  92. package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.js.map +1 -0
  93. package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.d.ts +26 -0
  94. package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.js +89 -0
  95. package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.js.map +1 -0
  96. package/lib/translation/feedback/cloud/model/CloudAuditData.d.ts +21 -0
  97. package/lib/translation/feedback/cloud/model/CloudAuditData.js +90 -0
  98. package/lib/translation/feedback/cloud/model/CloudAuditData.js.map +1 -0
  99. package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.d.ts +4 -0
  100. package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.js +9 -0
  101. package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.js.map +1 -0
  102. package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.d.ts +10 -0
  103. package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.js +29 -0
  104. package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.js.map +1 -0
  105. package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.d.ts +14 -0
  106. package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.js +60 -0
  107. package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.js.map +1 -0
  108. package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.d.ts +7 -0
  109. package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.js +42 -0
  110. package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.js.map +1 -0
  111. package/lib/translation/feedback/cloud/result/CloudFeedbackResult.d.ts +25 -0
  112. package/lib/translation/feedback/cloud/result/CloudFeedbackResult.js +100 -0
  113. package/lib/translation/feedback/cloud/result/CloudFeedbackResult.js.map +1 -0
  114. package/lib/translation/feedback/cloud/service/CloudFeedbackService.d.ts +20 -0
  115. package/lib/translation/feedback/cloud/service/CloudFeedbackService.js +97 -0
  116. package/lib/translation/feedback/cloud/service/CloudFeedbackService.js.map +1 -0
  117. package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.d.ts +5 -0
  118. package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.js +36 -0
  119. package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.js.map +1 -0
  120. package/lib/translation/feedback/common/model/AuditData.d.ts +14 -0
  121. package/lib/translation/feedback/common/model/AuditData.js +49 -0
  122. package/lib/translation/feedback/common/model/AuditData.js.map +1 -0
  123. package/lib/translation/feedback/common/request/FilterFeedbackRequest.d.ts +15 -0
  124. package/lib/translation/feedback/common/request/FilterFeedbackRequest.js +49 -0
  125. package/lib/translation/feedback/common/request/FilterFeedbackRequest.js.map +1 -0
  126. package/lib/translation/feedback/common/result/FeedbackCommonResult.d.ts +30 -0
  127. package/lib/translation/feedback/common/result/FeedbackCommonResult.js +100 -0
  128. package/lib/translation/feedback/common/result/FeedbackCommonResult.js.map +1 -0
  129. package/lib/translation/feedback/common/result/FeedbackListResult.d.ts +7 -0
  130. package/lib/translation/feedback/common/result/FeedbackListResult.js +42 -0
  131. package/lib/translation/feedback/common/result/FeedbackListResult.js.map +1 -0
  132. package/lib/translation/feedback/common/result/FeedbackResult.d.ts +12 -0
  133. package/lib/translation/feedback/common/result/FeedbackResult.js +59 -0
  134. package/lib/translation/feedback/common/result/FeedbackResult.js.map +1 -0
  135. package/lib/translation/feedback/common/validators/FeedbackValidator.d.ts +2 -0
  136. package/lib/translation/feedback/common/validators/FeedbackValidator.js +9 -0
  137. package/lib/translation/feedback/common/validators/FeedbackValidator.js.map +1 -0
  138. package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.d.ts +39 -0
  139. package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.js +162 -0
  140. package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.js.map +1 -0
  141. package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.d.ts +22 -0
  142. package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.js +86 -0
  143. package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.js.map +1 -0
  144. package/lib/translation/feedback/edge/api/Timestamps.d.ts +11 -0
  145. package/lib/translation/feedback/edge/api/Timestamps.js +39 -0
  146. package/lib/translation/feedback/edge/api/Timestamps.js.map +1 -0
  147. package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.d.ts +31 -0
  148. package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.js +122 -0
  149. package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.js.map +1 -0
  150. package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.d.ts +10 -0
  151. package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.js +52 -0
  152. package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.js.map +1 -0
  153. package/lib/translation/feedback/edge/result/EdgeFeedbackResult.d.ts +6 -0
  154. package/lib/translation/feedback/edge/result/EdgeFeedbackResult.js +40 -0
  155. package/lib/translation/feedback/edge/result/EdgeFeedbackResult.js.map +1 -0
  156. package/lib/translation/feedback/edge/service/EdgeFeedbackService.d.ts +17 -0
  157. package/lib/translation/feedback/edge/service/EdgeFeedbackService.js +119 -0
  158. package/lib/translation/feedback/edge/service/EdgeFeedbackService.js.map +1 -0
  159. package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.d.ts +3 -0
  160. package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.js +30 -0
  161. package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.js.map +1 -0
  162. package/lib/translation/translate/{response/cloud → cloud/api}/CloudDictionaryResponse.d.ts +0 -0
  163. package/lib/translation/translate/{response/cloud → cloud/api}/CloudDictionaryResponse.js +0 -0
  164. package/lib/translation/translate/cloud/api/CloudDictionaryResponse.js.map +1 -0
  165. package/lib/translation/translate/{response/cloud → cloud/api}/CloudLanguagePair.d.ts +0 -0
  166. package/lib/translation/translate/{response/cloud → cloud/api}/CloudLanguagePair.js +0 -0
  167. package/lib/translation/translate/cloud/api/CloudLanguagePair.js.map +1 -0
  168. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateBatchFileRequest.d.ts +1 -1
  169. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateBatchFileRequest.js +1 -1
  170. package/lib/translation/translate/cloud/request/CloudTranslateBatchFileRequest.js.map +1 -0
  171. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateFileRequest.d.ts +1 -1
  172. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateFileRequest.js +1 -1
  173. package/lib/translation/translate/cloud/request/CloudTranslateFileRequest.js.map +1 -0
  174. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateTextRequest.d.ts +1 -1
  175. package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateTextRequest.js +1 -1
  176. package/lib/translation/translate/cloud/request/CloudTranslateTextRequest.js.map +1 -0
  177. package/lib/translation/translate/cloud/result/CloudDictionariesResult.d.ts +10 -0
  178. package/lib/translation/translate/cloud/result/CloudDictionariesResult.js +50 -0
  179. package/lib/translation/translate/cloud/result/CloudDictionariesResult.js.map +1 -0
  180. package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.d.ts +1 -1
  181. package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.js +0 -0
  182. package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.js.map +1 -1
  183. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationBatchFileResult.d.ts +1 -1
  184. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationBatchFileResult.js +1 -1
  185. package/lib/translation/translate/cloud/result/CloudTranslationBatchFileResult.js.map +1 -0
  186. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.d.ts +3 -3
  187. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.js +1 -1
  188. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.js.map +1 -1
  189. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.d.ts +2 -2
  190. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.js +0 -0
  191. package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.js.map +1 -1
  192. package/lib/translation/translate/{response → common/api}/AsyncTranslationResponse.d.ts +0 -0
  193. package/lib/translation/translate/{response → common/api}/AsyncTranslationResponse.js +0 -0
  194. package/lib/translation/translate/common/api/AsyncTranslationResponse.js.map +1 -0
  195. package/lib/translation/translate/{response → common/api}/DictionaryResponse.d.ts +0 -0
  196. package/lib/translation/translate/{response → common/api}/DictionaryResponse.js +0 -0
  197. package/lib/translation/translate/common/api/DictionaryResponse.js.map +1 -0
  198. package/lib/translation/translate/{response → common/api}/LanguagePair.d.ts +0 -0
  199. package/lib/translation/translate/{response → common/api}/LanguagePair.js +0 -0
  200. package/lib/translation/translate/common/api/LanguagePair.js.map +1 -0
  201. package/lib/translation/translate/{response → common/api}/TranslationStatistics.d.ts +0 -0
  202. package/lib/translation/translate/{response → common/api}/TranslationStatistics.js +0 -0
  203. package/lib/translation/translate/common/api/TranslationStatistics.js.map +1 -0
  204. package/lib/translation/translate/{response/StatusTranslationResponse.d.ts → common/api/TranslationStatusResponse.d.ts} +2 -2
  205. package/lib/translation/translate/{response/StatusTranslationResponse.js → common/api/TranslationStatusResponse.js} +10 -10
  206. package/lib/translation/translate/common/api/TranslationStatusResponse.js.map +1 -0
  207. package/lib/translation/translate/{request → common/request}/TranslateBatchFileRequest.d.ts +0 -0
  208. package/lib/translation/translate/{request → common/request}/TranslateBatchFileRequest.js +0 -0
  209. package/lib/translation/translate/common/request/TranslateBatchFileRequest.js.map +1 -0
  210. package/lib/translation/translate/{request → common/request}/TranslateFileRequest.d.ts +0 -0
  211. package/lib/translation/translate/{request → common/request}/TranslateFileRequest.js +0 -0
  212. package/lib/translation/translate/common/request/TranslateFileRequest.js.map +1 -0
  213. package/lib/translation/translate/{request → common/request}/TranslateRequest.d.ts +1 -1
  214. package/lib/translation/translate/{request → common/request}/TranslateRequest.js +0 -0
  215. package/lib/translation/translate/common/request/TranslateRequest.js.map +1 -0
  216. package/lib/translation/translate/{request → common/request}/TranslateTextRequest.d.ts +0 -0
  217. package/lib/translation/translate/{request → common/request}/TranslateTextRequest.js +0 -0
  218. package/lib/translation/translate/common/request/TranslateTextRequest.js.map +1 -0
  219. package/lib/translation/translate/common/result/DictionariesResult.d.ts +7 -0
  220. package/lib/translation/translate/common/result/DictionariesResult.js +40 -0
  221. package/lib/translation/translate/common/result/DictionariesResult.js.map +1 -0
  222. package/lib/translation/translate/{result → common/result}/LanguagePairsResult.d.ts +1 -1
  223. package/lib/translation/translate/{result → common/result}/LanguagePairsResult.js +0 -0
  224. package/lib/translation/translate/common/result/LanguagePairsResult.js.map +1 -0
  225. package/lib/translation/translate/{result → common/result}/TranslateTextResult.d.ts +0 -0
  226. package/lib/translation/translate/{result → common/result}/TranslateTextResult.js +0 -0
  227. package/lib/translation/translate/common/result/TranslateTextResult.js.map +1 -0
  228. package/lib/translation/translate/{result → common/result}/TranslationBatchFileResult.d.ts +0 -0
  229. package/lib/translation/translate/{result → common/result}/TranslationBatchFileResult.js +0 -0
  230. package/lib/translation/translate/common/result/TranslationBatchFileResult.js.map +1 -0
  231. package/lib/translation/translate/{result → common/result}/TranslationFileResult.d.ts +0 -0
  232. package/lib/translation/translate/{result → common/result}/TranslationFileResult.js +0 -0
  233. package/lib/translation/translate/common/result/TranslationFileResult.js.map +1 -0
  234. package/lib/translation/translate/{utils → common/utils}/TranslateFileUtil.d.ts +0 -0
  235. package/lib/translation/translate/{utils → common/utils}/TranslateFileUtil.js +2 -2
  236. package/lib/translation/translate/common/utils/TranslateFileUtil.js.map +1 -0
  237. package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.d.ts +0 -0
  238. package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.js +0 -0
  239. package/lib/translation/translate/edge/api/EdgeAsyncTranslationResponse.js.map +1 -0
  240. package/lib/translation/translate/{response/edge → edge/api}/EdgeDictionaryResponse.d.ts +0 -0
  241. package/lib/translation/translate/{response/edge → edge/api}/EdgeDictionaryResponse.js +0 -0
  242. package/lib/translation/translate/edge/api/EdgeDictionaryResponse.js.map +1 -0
  243. package/lib/translation/translate/{response/edge → edge/api}/EdgeLanguagePair.d.ts +0 -0
  244. package/lib/translation/translate/{response/edge → edge/api}/EdgeLanguagePair.js +0 -0
  245. package/lib/translation/translate/edge/api/EdgeLanguagePair.js.map +1 -0
  246. package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.d.ts +0 -0
  247. package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.js +0 -0
  248. package/lib/translation/translate/edge/api/EdgeStatusTranslationResponse.js.map +1 -0
  249. package/lib/translation/translate/{response/edge → edge/api}/MemberPair.d.ts +0 -0
  250. package/lib/translation/translate/{response/edge → edge/api}/MemberPair.js +0 -0
  251. package/lib/translation/translate/edge/api/MemberPair.js.map +1 -0
  252. package/lib/translation/translate/{response/edge → edge/api}/Profile.d.ts +0 -0
  253. package/lib/translation/translate/{response/edge → edge/api}/Profile.js +0 -0
  254. package/lib/translation/translate/edge/api/Profile.js.map +1 -0
  255. package/lib/translation/translate/{response/edge → edge/api}/Result.d.ts +0 -0
  256. package/lib/translation/translate/{response/edge → edge/api}/Result.js +0 -0
  257. package/lib/translation/translate/edge/api/Result.js.map +1 -0
  258. package/lib/translation/translate/{response/edge → edge/api}/Timestamps.d.ts +0 -0
  259. package/lib/translation/translate/{response/edge → edge/api}/Timestamps.js +0 -0
  260. package/lib/translation/translate/edge/api/Timestamps.js.map +1 -0
  261. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.d.ts +2 -2
  262. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js +1 -1
  263. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js.map +1 -1
  264. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.d.ts +2 -2
  265. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.js +1 -1
  266. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.js.map +1 -1
  267. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.d.ts +2 -2
  268. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.js +1 -1
  269. package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.js.map +1 -1
  270. package/lib/translation/translate/edge/result/EdgeDictionariesResult.d.ts +10 -0
  271. package/lib/translation/translate/edge/result/EdgeDictionariesResult.js +50 -0
  272. package/lib/translation/translate/edge/result/EdgeDictionariesResult.js.map +1 -0
  273. package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.d.ts +1 -1
  274. package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.js +0 -0
  275. package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.js.map +1 -1
  276. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationBatchFileResult.d.ts +1 -1
  277. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationBatchFileResult.js +1 -1
  278. package/lib/translation/translate/edge/result/EdgeTranslationBatchFileResult.js.map +1 -0
  279. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.d.ts +1 -1
  280. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.js +1 -1
  281. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.js.map +1 -1
  282. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationTextResult.d.ts +1 -1
  283. package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationTextResult.js +1 -1
  284. package/lib/translation/translate/edge/result/EdgeTranslationTextResult.js.map +1 -0
  285. package/lib/version.d.ts +1 -1
  286. package/lib/version.js +1 -1
  287. package/package.json +4 -3
  288. package/lib/CloudLanguageWeaverClient.d.ts +0 -61
  289. package/lib/CloudLanguageWeaverClient.js.map +0 -1
  290. package/lib/EdgeLanguageWeaverClient.d.ts +0 -60
  291. package/lib/EdgeLanguageWeaverClient.js.map +0 -1
  292. package/lib/LanguageWeaverClient.d.ts +0 -15
  293. package/lib/LanguageWeaverClient.js.map +0 -1
  294. package/lib/SdkFactory.js.map +0 -1
  295. package/lib/auth/LanguageWeaverAuthentication.js.map +0 -1
  296. package/lib/auth/domain/SelfInformation.js.map +0 -1
  297. package/lib/auth/domain/Token.js.map +0 -1
  298. package/lib/auth/domain/UserSelfInformation.js.map +0 -1
  299. package/lib/common/requests/RestClient.js.map +0 -1
  300. package/lib/translation/common/Format.js.map +0 -1
  301. package/lib/translation/common/Product.js.map +0 -1
  302. package/lib/translation/common/Regions.js.map +0 -1
  303. package/lib/translation/common/Statuses.js.map +0 -1
  304. package/lib/translation/translate/request/TranslateBatchFileRequest.js.map +0 -1
  305. package/lib/translation/translate/request/TranslateFileRequest.js.map +0 -1
  306. package/lib/translation/translate/request/TranslateRequest.js.map +0 -1
  307. package/lib/translation/translate/request/TranslateTextRequest.js.map +0 -1
  308. package/lib/translation/translate/request/cloud/CloudTranslateBatchFileRequest.js.map +0 -1
  309. package/lib/translation/translate/request/cloud/CloudTranslateFileRequest.js.map +0 -1
  310. package/lib/translation/translate/request/cloud/CloudTranslateTextRequest.js.map +0 -1
  311. package/lib/translation/translate/response/AsyncTranslationResponse.js.map +0 -1
  312. package/lib/translation/translate/response/DictionaryResponse.js.map +0 -1
  313. package/lib/translation/translate/response/LanguagePair.js.map +0 -1
  314. package/lib/translation/translate/response/StatusTranslationResponse.js.map +0 -1
  315. package/lib/translation/translate/response/TranslationStatistics.js.map +0 -1
  316. package/lib/translation/translate/response/cloud/CloudDictionaryResponse.js.map +0 -1
  317. package/lib/translation/translate/response/cloud/CloudLanguagePair.js.map +0 -1
  318. package/lib/translation/translate/response/edge/EdgeAsyncTranslationResponse.js.map +0 -1
  319. package/lib/translation/translate/response/edge/EdgeDictionaryResponse.js.map +0 -1
  320. package/lib/translation/translate/response/edge/EdgeLanguagePair.js.map +0 -1
  321. package/lib/translation/translate/response/edge/EdgeStatusTranslationResponse.js.map +0 -1
  322. package/lib/translation/translate/response/edge/MemberPair.js.map +0 -1
  323. package/lib/translation/translate/response/edge/Profile.js.map +0 -1
  324. package/lib/translation/translate/response/edge/Result.js.map +0 -1
  325. package/lib/translation/translate/response/edge/Timestamps.js.map +0 -1
  326. package/lib/translation/translate/result/DictionariesResult.d.ts +0 -6
  327. package/lib/translation/translate/result/DictionariesResult.js +0 -19
  328. package/lib/translation/translate/result/DictionariesResult.js.map +0 -1
  329. package/lib/translation/translate/result/LanguagePairsResult.js.map +0 -1
  330. package/lib/translation/translate/result/TranslateTextResult.js.map +0 -1
  331. package/lib/translation/translate/result/TranslationBatchFileResult.js.map +0 -1
  332. package/lib/translation/translate/result/TranslationFileResult.js.map +0 -1
  333. package/lib/translation/translate/result/cloud/CloudDictionariesResult.d.ts +0 -18
  334. package/lib/translation/translate/result/cloud/CloudDictionariesResult.js +0 -59
  335. package/lib/translation/translate/result/cloud/CloudDictionariesResult.js.map +0 -1
  336. package/lib/translation/translate/result/cloud/CloudTranslationBatchFileResult.js.map +0 -1
  337. package/lib/translation/translate/result/edge/EdgeDictionariesResult.d.ts +0 -18
  338. package/lib/translation/translate/result/edge/EdgeDictionariesResult.js +0 -59
  339. package/lib/translation/translate/result/edge/EdgeDictionariesResult.js.map +0 -1
  340. package/lib/translation/translate/result/edge/EdgeTranslationBatchFileResult.js.map +0 -1
  341. package/lib/translation/translate/result/edge/EdgeTranslationTextResult.js.map +0 -1
  342. package/lib/translation/translate/utils/TranslateFileUtil.js.map +0 -1
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var StatusTranslationResponse = /** @class */ (function () {
4
- function StatusTranslationResponse() {
3
+ var TranslationStatusResponse = /** @class */ (function () {
4
+ function TranslationStatusResponse() {
5
5
  }
6
- Object.defineProperty(StatusTranslationResponse.prototype, "translationStatus", {
6
+ Object.defineProperty(TranslationStatusResponse.prototype, "translationStatus", {
7
7
  get: function () {
8
8
  return this._translationStatus;
9
9
  },
@@ -13,7 +13,7 @@ var StatusTranslationResponse = /** @class */ (function () {
13
13
  enumerable: false,
14
14
  configurable: true
15
15
  });
16
- Object.defineProperty(StatusTranslationResponse.prototype, "inputFormat", {
16
+ Object.defineProperty(TranslationStatusResponse.prototype, "inputFormat", {
17
17
  get: function () {
18
18
  return this._inputFormat;
19
19
  },
@@ -23,7 +23,7 @@ var StatusTranslationResponse = /** @class */ (function () {
23
23
  enumerable: false,
24
24
  configurable: true
25
25
  });
26
- Object.defineProperty(StatusTranslationResponse.prototype, "outputFormat", {
26
+ Object.defineProperty(TranslationStatusResponse.prototype, "outputFormat", {
27
27
  get: function () {
28
28
  return this._outputFormat;
29
29
  },
@@ -33,7 +33,7 @@ var StatusTranslationResponse = /** @class */ (function () {
33
33
  enumerable: false,
34
34
  configurable: true
35
35
  });
36
- Object.defineProperty(StatusTranslationResponse.prototype, "translationStats", {
36
+ Object.defineProperty(TranslationStatusResponse.prototype, "translationStats", {
37
37
  get: function () {
38
38
  return this._translationStats;
39
39
  },
@@ -43,7 +43,7 @@ var StatusTranslationResponse = /** @class */ (function () {
43
43
  enumerable: false,
44
44
  configurable: true
45
45
  });
46
- Object.defineProperty(StatusTranslationResponse.prototype, "errors", {
46
+ Object.defineProperty(TranslationStatusResponse.prototype, "errors", {
47
47
  get: function () {
48
48
  return this._errors;
49
49
  },
@@ -53,7 +53,7 @@ var StatusTranslationResponse = /** @class */ (function () {
53
53
  enumerable: false,
54
54
  configurable: true
55
55
  });
56
- return StatusTranslationResponse;
56
+ return TranslationStatusResponse;
57
57
  }());
58
- exports.default = StatusTranslationResponse;
59
- //# sourceMappingURL=StatusTranslationResponse.js.map
58
+ exports.default = TranslationStatusResponse;
59
+ //# sourceMappingURL=TranslationStatusResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationStatusResponse.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/api/TranslationStatusResponse.ts"],"names":[],"mappings":";;AAGA;IAAA;IA8CA,CAAC;IAvCG,sBAAI,wDAAiB;aAArB;YACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;QACnC,CAAC;aAED,UAAsB,KAAyB;YAC3C,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC;QACpC,CAAC;;;OAJA;IAMD,sBAAI,kDAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAAyB;YACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAMD,sBAAI,mDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,uDAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAwC;YACzD,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,6CAAM;aAAV;YACI,OAAO,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAED,UAAW,KAAkC;YACzC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACzB,CAAC;;;OAJA;IAKL,gCAAC;AAAD,CAAC,AA9CD,IA8CC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateBatchFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/request/TranslateBatchFileRequest.ts"],"names":[],"mappings":";;AAAA;;;;;;EAME;AACF;IAAA;IA8DA,CAAC;IAtDG,sBAAI,uDAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,uDAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,4CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,gDAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyB;YACnC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC5B,CAAC;;;OAJA;IAKD,sBAAI,4CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAkC;YACxC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,mDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAA2B;YACxC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,iDAAa,GAAb,UAAc,UAAkB;QAC5B,IAAI,IAAI,CAAC,YAAY,EAAE;YACnB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACtC;aAAM;YACH,IAAI,CAAC,YAAY,GAAG,CAAC,UAAU,CAAC,CAAC;SACpC;IACL,CAAC;IACL,gCAAC;AAAD,CAAC,AA9DD,IA8DC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/request/TranslateFileRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,wEAAkD;AAElD;;;;;;;EAOE;AACF;IAAkD,wCAAgB;IAAlE;;IA4BA,CAAC;IAvBG,sBAAI,uCAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAgC;YACtC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,4CAAU;aAAd;YACI,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5B,CAAC;aAED,UAAe,KAAyB;YACpC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QAC7B,CAAC;;;OAJA;IAMD,sBAAI,2CAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyB;YACnC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC5B,CAAC;;;OAJA;IAKL,2BAAC;AAAD,CAAC,AA5BD,CAAkD,0BAAgB,GA4BjE"}
@@ -1,4 +1,4 @@
1
- import { Format } from '../../common/Format';
1
+ import { Format } from '../../../../common/constants/Format';
2
2
  export default class TranslateRequest {
3
3
  private _sourceLanguageId;
4
4
  private _targetLanguageId;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/request/TranslateRequest.ts"],"names":[],"mappings":";;AAEA;IAAA;IAsDA,CAAC;IA/CG,sBAAI,8CAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,8CAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,mCAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,yCAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAAyB;YACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAMD,sBAAI,0CAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAA2B;YACxC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,wCAAa,GAAb,UAAc,UAAkB;QAC5B,IAAI,IAAI,CAAC,YAAY,EAAE;YACnB,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;SACtC;aAAM;YACH,IAAI,CAAC,YAAY,GAAG,CAAC,UAAU,CAAC,CAAC;SACpC;IACL,CAAC;IACL,uBAAC;AAAD,CAAC,AAtDD,IAsDC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateTextRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/request/TranslateTextRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,wEAAkD;AAElD;IAAkD,wCAAgB;IAAlE;QAAA,qEAeC;QAdW,YAAM,GAAa,EAAE,CAAC;;IAclC,CAAC;IAZG,sBAAW,uCAAK;aAAhB;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAiB,KAAe;YAC5B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMM,uCAAQ,GAAf,UAAgB,OAAe;QAC3B,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QAC1B,OAAO,IAAI,CAAC,MAAM,CAAC;IACvB,CAAC;IACL,2BAAC;AAAD,CAAC,AAfD,CAAkD,0BAAgB,GAejE"}
@@ -0,0 +1,7 @@
1
+ import DictionaryResponse from '../api/DictionaryResponse';
2
+ import PaginatedListResult from '../../../common/result/PaginatedListResult';
3
+ export default class DictionariesResult extends PaginatedListResult {
4
+ private _dictionaries;
5
+ get dictionaries(): DictionaryResponse[] | undefined;
6
+ set dictionaries(value: DictionaryResponse[] | undefined);
7
+ }
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __importDefault = (this && this.__importDefault) || function (mod) {
18
+ return (mod && mod.__esModule) ? mod : { "default": mod };
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ var PaginatedListResult_1 = __importDefault(require("../../../common/result/PaginatedListResult"));
22
+ var DictionariesResult = /** @class */ (function (_super) {
23
+ __extends(DictionariesResult, _super);
24
+ function DictionariesResult() {
25
+ return _super !== null && _super.apply(this, arguments) || this;
26
+ }
27
+ Object.defineProperty(DictionariesResult.prototype, "dictionaries", {
28
+ get: function () {
29
+ return this._dictionaries;
30
+ },
31
+ set: function (value) {
32
+ this._dictionaries = value;
33
+ },
34
+ enumerable: false,
35
+ configurable: true
36
+ });
37
+ return DictionariesResult;
38
+ }(PaginatedListResult_1.default));
39
+ exports.default = DictionariesResult;
40
+ //# sourceMappingURL=DictionariesResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DictionariesResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/result/DictionariesResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AACA,mGAA6E;AAE7E;IAAgD,sCAAmB;IAAnE;;IAUA,CAAC;IAPG,sBAAI,4CAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAuC;YACpD,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAKL,yBAAC;AAAD,CAAC,AAVD,CAAgD,6BAAmB,GAUlE"}
@@ -1,4 +1,4 @@
1
- import LanguagePair from '../response/LanguagePair';
1
+ import LanguagePair from '../api/LanguagePair';
2
2
  export default class LanguagePairsResult {
3
3
  private _languagePairs;
4
4
  get languagePairs(): LanguagePair[] | undefined;
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LanguagePairsResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/result/LanguagePairsResult.ts"],"names":[],"mappings":";;AAEA;IAAA;IAUA,CAAC;IAPG,sBAAI,8CAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAiC;YAC/C,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAKL,0BAAC;AAAD,CAAC,AAVD,IAUC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateTextResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/result/TranslateTextResult.ts"],"names":[],"mappings":";;AAAA;IAAA;IAUA,CAAC;IAPG,sBAAI,4CAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAAyB;YACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAKL,0BAAC;AAAD,CAAC,AAVD,IAUC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationBatchFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/result/TranslationBatchFileResult.ts"],"names":[],"mappings":";;AAEA;IAAA;IAUA,CAAC;IAPG,sBAAI,8DAAsB;aAA1B;YACI,OAAO,IAAI,CAAC,uBAAuB,CAAC;QACxC,CAAC;aAED,UAA2B,KAA0C;YACjE,IAAI,CAAC,uBAAuB,GAAG,KAAK,CAAC;QACzC,CAAC;;;OAJA;IAKL,iCAAC;AAAD,CAAC,AAVD,IAUC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/result/TranslationFileResult.ts"],"names":[],"mappings":";;AAAA;IAAA;IA4BA,CAAC;IAvBG,sBAAI,8CAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAA8C;YAC1D,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAMD,sBAAI,2CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAMD,sBAAI,2CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,4BAAC;AAAD,CAAC,AA5BD,IA4BC"}
@@ -41,8 +41,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
41
41
  Object.defineProperty(exports, "__esModule", { value: true });
42
42
  exports.getInputFilesFromBatchFileRequest = exports.getFileNameFromHeaders = exports.getOutputExtension = exports.validateOutputFileExtension = exports.validateInputDataForFileTranslation = exports.validateInputDataForBatchFileTranslation = void 0;
43
43
  var uuid_1 = require("uuid");
44
- var Utils_1 = __importDefault(require("../../../common/utils/Utils"));
45
- var TranslationConstants_1 = require("../../../common/constants/TranslationConstants");
44
+ var Utils_1 = __importDefault(require("../../../../common/utils/Utils"));
45
+ var TranslationConstants_1 = require("../../../../common/constants/TranslationConstants");
46
46
  var validateInputDataForBatchFileTranslation = function (translateBatchFileRequest) { return __awaiter(void 0, void 0, void 0, function () {
47
47
  return __generator(this, function (_a) {
48
48
  switch (_a.label) {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslateFileUtil.js","sourceRoot":"","sources":["../../../../../src/translation/translate/common/utils/TranslateFileUtil.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeAsyncTranslationResponse.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/EdgeAsyncTranslationResponse.ts"],"names":[],"mappings":";;AAAA;IAAA;IAUA,CAAC;IAPG,sBAAI,uDAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAyB;YACvC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAKL,mCAAC;AAAD,CAAC,AAVD,IAUC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeDictionaryResponse.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/EdgeDictionaryResponse.ts"],"names":[],"mappings":";;AAAA;IAAA;IA4BA,CAAC;IAvBG,sBAAI,gDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,oDAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,oDAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAKL,6BAAC;AAAD,CAAC,AA5BD,IA4BC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeLanguagePair.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/EdgeLanguagePair.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,4DAAsC;AAEtC;IAA8C,oCAAU;IAAxD;;IAmBA,CAAC;IAfG,sBAAI,yCAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAA+B;YAC3C,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAMD,sBAAI,qCAAO;aAAX;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAAY,KAA0B;YAClC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC1B,CAAC;;;OAJA;IAKL,uBAAC;AAAD,CAAC,AAnBD,CAA8C,oBAAU,GAmBvD"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeStatusTranslationResponse.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/EdgeStatusTranslationResponse.ts"],"names":[],"mappings":";;AAIA;IAAA;IAgEA,CAAC;IAvDG,sBAAI,wDAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAyB;YACvC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAMD,sBAAI,kDAAO;aAAX;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAAY,KAA0B;YAClC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC1B,CAAC;;;OAJA;IAMD,sBAAI,iDAAM;aAAV;YACI,OAAO,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAED,UAAW,KAAyB;YAChC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACzB,CAAC;;;OAJA;IAMD,sBAAI,qDAAU;aAAd;YACI,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5B,CAAC;aAED,UAAe,KAA6B;YACxC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QAC7B,CAAC;;;OAJA;IAMD,sBAAI,uDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,gDAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,mDAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,oCAAC;AAAD,CAAC,AAhED,IAgEC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MemberPair.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/MemberPair.ts"],"names":[],"mappings":";;AAAA;IAAA;IAwFA,CAAC;IAvEG,sBAAI,sCAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,sCAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,wCAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,sCAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,wCAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAyB;YAC1C,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,8BAAM;aAAV;YACI,OAAO,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAED,UAAW,KAAyB;YAChC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACzB,CAAC;;;OAJA;IAMD,sBAAI,gCAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAMD,sBAAI,kCAAU;aAAd;YACI,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5B,CAAC;aAED,UAAe,KAAyB;YACpC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QAC7B,CAAC;;;OAJA;IAMD,sBAAI,+BAAO;aAAX;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAAY,KAAyB;YACjC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC1B,CAAC;;;OAJA;IAKL,iBAAC;AAAD,CAAC,AAxFD,IAwFC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Profile.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/Profile.ts"],"names":[],"mappings":";;AAAA;IAAA;IAyEA,CAAC;IA/DG,sBAAI,6BAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAMD,sBAAI,0BAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,mCAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,6BAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAMD,sBAAI,gCAAW;aAAf;YACI,OAAO,IAAI,CAAC,YAAY,CAAC;QAC7B,CAAC;aAED,UAAgB,KAAyB;YACrC,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC9B,CAAC;;;OAJA;IAMD,sBAAI,kCAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAA2B;YACzC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAMD,sBAAI,iCAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,sCAAiB;aAArB;YACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;QACnC,CAAC;aAED,UAAsB,KAAyB;YAC3C,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC;QACpC,CAAC;;;OAJA;IAKL,cAAC;AAAD,CAAC,AAzED,IAyEC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Result.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/Result.ts"],"names":[],"mappings":";;AAAA;IAAA;IA2FA,CAAC;IA/EG,sBAAI,qCAAiB;aAArB;YACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;QACnC,CAAC;aAED,UAAsB,KAAyB;YAC3C,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC;QACpC,CAAC;;;OAJA;IAMD,sBAAI,6BAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyB;YACnC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC5B,CAAC;;;OAJA;IAMD,sBAAI,wCAAoB;aAAxB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC;QACtC,CAAC;aAED,UAAyB,KAAyB;YAC9C,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACvC,CAAC;;;OAJA;IAMD,sBAAI,mCAAe;aAAnB;YACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;QACjC,CAAC;aAED,UAAoB,KAAyB;YACzC,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAClC,CAAC;;;OAJA;IAMD,sBAAI,wCAAoB;aAAxB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC;QACtC,CAAC;aAED,UAAyB,KAAyB;YAC9C,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACvC,CAAC;;;OAJA;IAMD,sBAAI,mCAAe;aAAnB;YACI,OAAO,IAAI,CAAC,gBAAgB,CAAC;QACjC,CAAC;aAED,UAAoB,KAAyB;YACzC,IAAI,CAAC,gBAAgB,GAAG,KAAK,CAAC;QAClC,CAAC;;;OAJA;IAMD,sBAAI,iCAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAyB;YACvC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAMD,sBAAI,8BAAU;aAAd;YACI,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5B,CAAC;aAED,UAAe,KAAyB;YACpC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QAC7B,CAAC;;;OAJA;IAMD,sBAAI,4BAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAMD,sBAAI,kCAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAKL,aAAC;AAAD,CAAC,AA3FD,IA2FC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Timestamps.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/api/Timestamps.ts"],"names":[],"mappings":";;AAAA;IAAA;IA4BA,CAAC;IAvBG,sBAAI,8BAAM;aAAV;YACI,OAAO,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAED,UAAW,KAAyB;YAChC,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC;QACzB,CAAC;;;OAJA;IAMD,sBAAI,+BAAO;aAAX;YACI,OAAO,IAAI,CAAC,QAAQ,CAAC;QACzB,CAAC;aAED,UAAY,KAAyB;YACjC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC1B,CAAC;;;OAJA;IAMD,sBAAI,4BAAI;aAAR;YACI,OAAO,IAAI,CAAC,KAAK,CAAC;QACtB,CAAC;aAED,UAAS,KAAyB;YAC9B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACvB,CAAC;;;OAJA;IAKL,iBAAC;AAAD,CAAC,AA5BD,IA4BC"}
@@ -1,5 +1,5 @@
1
- import TranslateBatchFileRequest from '../TranslateBatchFileRequest';
2
- import { Format } from '../../../common/Format';
1
+ import TranslateBatchFileRequest from '../../common/request/TranslateBatchFileRequest';
2
+ import { Format } from '../../../../common/constants/Format';
3
3
  export default class EdgeTranslateBatchFileRequest extends TranslateBatchFileRequest {
4
4
  private _languagePairId;
5
5
  private _outputFormat;
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslateBatchFileRequest_1 = __importDefault(require("../TranslateBatchFileRequest"));
21
+ var TranslateBatchFileRequest_1 = __importDefault(require("../../common/request/TranslateBatchFileRequest"));
22
22
  var EdgeTranslateBatchFileRequest = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslateBatchFileRequest, _super);
24
24
  function EdgeTranslateBatchFileRequest() {
@@ -1 +1 @@
1
- {"version":3,"file":"EdgeTranslateBatchFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/edge/EdgeTranslateBatchFileRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,2FAAqE;AAGrE;IAA2D,iDAAyB;IAApF;;IAqCA,CAAC;IA/BG,sBAAI,yDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,uDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,gDAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,mDAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,oCAAC;AAAD,CAAC,AArCD,CAA2D,mCAAyB,GAqCnF"}
1
+ {"version":3,"file":"EdgeTranslateBatchFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/request/EdgeTranslateBatchFileRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,6GAAuF;AAGvF;IAA2D,iDAAyB;IAApF;;IAqCA,CAAC;IA/BG,sBAAI,yDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,uDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,gDAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,mDAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,oCAAC;AAAD,CAAC,AArCD,CAA2D,mCAAyB,GAqCnF"}
@@ -1,5 +1,5 @@
1
- import TranslateFileRequest from '../TranslateFileRequest';
2
- import { Format } from '../../../common/Format';
1
+ import TranslateFileRequest from '../../common/request/TranslateFileRequest';
2
+ import { Format } from '../../../../common/constants/Format';
3
3
  export default class EdgeTranslateFileRequest extends TranslateFileRequest {
4
4
  private _languagePairId;
5
5
  private _outputFormat;
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslateFileRequest_1 = __importDefault(require("../TranslateFileRequest"));
21
+ var TranslateFileRequest_1 = __importDefault(require("../../common/request/TranslateFileRequest"));
22
22
  var EdgeTranslateFileRequest = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslateFileRequest, _super);
24
24
  function EdgeTranslateFileRequest() {
@@ -1 +1 @@
1
- {"version":3,"file":"EdgeTranslateFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/edge/EdgeTranslateFileRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,iFAA2D;AAG3D;IAAsD,4CAAoB;IAA1E;;IAqCA,CAAC;IA/BG,sBAAI,oDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,kDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,2CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,8CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,+BAAC;AAAD,CAAC,AArCD,CAAsD,8BAAoB,GAqCzE"}
1
+ {"version":3,"file":"EdgeTranslateFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/request/EdgeTranslateFileRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,mGAA6E;AAG7E;IAAsD,4CAAoB;IAA1E;;IAqCA,CAAC;IA/BG,sBAAI,oDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,kDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,2CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,8CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,+BAAC;AAAD,CAAC,AArCD,CAAsD,8BAAoB,GAqCzE"}
@@ -1,5 +1,5 @@
1
- import TranslateTextRequest from '../TranslateTextRequest';
2
- import { Format } from '../../../common/Format';
1
+ import TranslateTextRequest from '../../common/request/TranslateTextRequest';
2
+ import { Format } from '../../../../common/constants/Format';
3
3
  export default class EdgeTranslateTextRequest extends TranslateTextRequest {
4
4
  private _languagePairId;
5
5
  private _outputFormat;
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslateTextRequest_1 = __importDefault(require("../TranslateTextRequest"));
21
+ var TranslateTextRequest_1 = __importDefault(require("../../common/request/TranslateTextRequest"));
22
22
  var EdgeTranslateTextRequest = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslateTextRequest, _super);
24
24
  function EdgeTranslateTextRequest() {
@@ -1 +1 @@
1
- {"version":3,"file":"EdgeTranslateTextRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/edge/EdgeTranslateTextRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,iFAA2D;AAG3D;IAAsD,4CAAoB;IAA1E;;IAqCA,CAAC;IA/BG,sBAAI,oDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,kDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,2CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,8CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,+BAAC;AAAD,CAAC,AArCD,CAAsD,8BAAoB,GAqCzE"}
1
+ {"version":3,"file":"EdgeTranslateTextRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/request/EdgeTranslateTextRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,mGAA6E;AAG7E;IAAsD,4CAAoB;IAA1E;;IAqCA,CAAC;IA/BG,sBAAI,oDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,kDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAAyB;YACtC,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,2CAAK;aAAT;YACI,OAAO,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAED,UAAU,KAAyB;YAC/B,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QACxB,CAAC;;;OAJA;IAMD,sBAAI,8CAAQ;aAAZ;YACI,OAAO,IAAI,CAAC,SAAS,CAAC;QAC1B,CAAC;aAED,UAAa,KAAyB;YAClC,IAAI,CAAC,SAAS,GAAG,KAAK,CAAC;QAC3B,CAAC;;;OAJA;IAKL,+BAAC;AAAD,CAAC,AArCD,CAAsD,8BAAoB,GAqCzE"}
@@ -0,0 +1,10 @@
1
+ import EdgeDictionaryResponse from '../api/EdgeDictionaryResponse';
2
+ import PaginatedListResult from '../../../common/result/PaginatedListResult';
3
+ export default class EdgeDictionariesResult extends PaginatedListResult {
4
+ private _dictionaries;
5
+ private _totalPages;
6
+ get dictionaries(): EdgeDictionaryResponse[] | undefined;
7
+ set dictionaries(value: EdgeDictionaryResponse[] | undefined);
8
+ get totalPages(): number | undefined;
9
+ set totalPages(value: number | undefined);
10
+ }
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ if (typeof b !== "function" && b !== null)
11
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var __importDefault = (this && this.__importDefault) || function (mod) {
18
+ return (mod && mod.__esModule) ? mod : { "default": mod };
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ var PaginatedListResult_1 = __importDefault(require("../../../common/result/PaginatedListResult"));
22
+ var EdgeDictionariesResult = /** @class */ (function (_super) {
23
+ __extends(EdgeDictionariesResult, _super);
24
+ function EdgeDictionariesResult() {
25
+ return _super !== null && _super.apply(this, arguments) || this;
26
+ }
27
+ Object.defineProperty(EdgeDictionariesResult.prototype, "dictionaries", {
28
+ get: function () {
29
+ return this._dictionaries;
30
+ },
31
+ set: function (value) {
32
+ this._dictionaries = value;
33
+ },
34
+ enumerable: false,
35
+ configurable: true
36
+ });
37
+ Object.defineProperty(EdgeDictionariesResult.prototype, "totalPages", {
38
+ get: function () {
39
+ return this._totalPages;
40
+ },
41
+ set: function (value) {
42
+ this._totalPages = value;
43
+ },
44
+ enumerable: false,
45
+ configurable: true
46
+ });
47
+ return EdgeDictionariesResult;
48
+ }(PaginatedListResult_1.default));
49
+ exports.default = EdgeDictionariesResult;
50
+ //# sourceMappingURL=EdgeDictionariesResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeDictionariesResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/result/EdgeDictionariesResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AACA,mGAA6E;AAE7E;IAAoD,0CAAmB;IAAvE;;IAmBA,CAAC;IAfG,sBAAI,gDAAY;aAAhB;YACI,OAAO,IAAI,CAAC,aAAa,CAAC;QAC9B,CAAC;aAED,UAAiB,KAA2C;YACxD,IAAI,CAAC,aAAa,GAAG,KAAK,CAAC;QAC/B,CAAC;;;OAJA;IAMD,sBAAI,8CAAU;aAAd;YACI,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5B,CAAC;aAED,UAAe,KAAyB;YACpC,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QAC7B,CAAC;;;OAJA;IAKL,6BAAC;AAAD,CAAC,AAnBD,CAAoD,6BAAmB,GAmBtE"}
@@ -1,4 +1,4 @@
1
- import EdgeLanguagePair from '../../response/edge/EdgeLanguagePair';
1
+ import EdgeLanguagePair from '../api/EdgeLanguagePair';
2
2
  export default class EdgeLanguagePairsResult {
3
3
  private _languagePairs;
4
4
  get languagePairs(): EdgeLanguagePair[];
@@ -1 +1 @@
1
- {"version":3,"file":"EdgeLanguagePairsResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/result/edge/EdgeLanguagePairsResult.ts"],"names":[],"mappings":";;AAEA;IAAA;QACY,mBAAc,GAAuB,EAAE,CAAC;IASpD,CAAC;IAPG,sBAAI,kDAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAyB;YACvC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAKL,8BAAC;AAAD,CAAC,AAVD,IAUC"}
1
+ {"version":3,"file":"EdgeLanguagePairsResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/result/EdgeLanguagePairsResult.ts"],"names":[],"mappings":";;AAEA;IAAA;QACY,mBAAc,GAAuB,EAAE,CAAC;IASpD,CAAC;IAPG,sBAAI,kDAAa;aAAjB;YACI,OAAO,IAAI,CAAC,cAAc,CAAC;QAC/B,CAAC;aAED,UAAkB,KAAyB;YACvC,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAChC,CAAC;;;OAJA;IAKL,8BAAC;AAAD,CAAC,AAVD,IAUC"}
@@ -1,3 +1,3 @@
1
- import TranslationBatchFileResult from '../TranslationBatchFileResult';
1
+ import TranslationBatchFileResult from '../../common/result/TranslationBatchFileResult';
2
2
  export default class EdgeTranslationBatchFileResult extends TranslationBatchFileResult {
3
3
  }
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslationBatchFileResult_1 = __importDefault(require("../TranslationBatchFileResult"));
21
+ var TranslationBatchFileResult_1 = __importDefault(require("../../common/result/TranslationBatchFileResult"));
22
22
  var EdgeTranslationBatchFileResult = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslationBatchFileResult, _super);
24
24
  function EdgeTranslationBatchFileResult() {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeTranslationBatchFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/result/EdgeTranslationBatchFileResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,8GAAwF;AAExF;IAA4D,kDAA0B;IAAtF;;IAAwF,CAAC;IAAD,qCAAC;AAAD,CAAC,AAAzF,CAA4D,oCAA0B,GAAG"}
@@ -1,4 +1,4 @@
1
- import TranslationFileResult from '../TranslationFileResult';
1
+ import TranslationFileResult from '../../common/result/TranslationFileResult';
2
2
  export default class EdgeTranslationFileResult extends TranslationFileResult {
3
3
  private _languagePairId;
4
4
  private _requestId;
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslationFileResult_1 = __importDefault(require("../TranslationFileResult"));
21
+ var TranslationFileResult_1 = __importDefault(require("../../common/result/TranslationFileResult"));
22
22
  var EdgeTranslationFileResult = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslationFileResult, _super);
24
24
  function EdgeTranslationFileResult() {
@@ -1 +1 @@
1
- {"version":3,"file":"EdgeTranslationFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/result/edge/EdgeTranslationFileResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,mFAA6D;AAE7D;IAAuD,6CAAqB;IAA5E;;IAmBA,CAAC;IAfG,sBAAI,qDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,gDAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyB;YACnC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC5B,CAAC;;;OAJA;IAKL,gCAAC;AAAD,CAAC,AAnBD,CAAuD,+BAAqB,GAmB3E"}
1
+ {"version":3,"file":"EdgeTranslationFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/result/EdgeTranslationFileResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,oGAA8E;AAE9E;IAAuD,6CAAqB;IAA5E;;IAmBA,CAAC;IAfG,sBAAI,qDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAMD,sBAAI,gDAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyB;YACnC,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;QAC5B,CAAC;;;OAJA;IAKL,gCAAC;AAAD,CAAC,AAnBD,CAAuD,+BAAqB,GAmB3E"}
@@ -1,4 +1,4 @@
1
- import TranslateTextResult from '../TranslateTextResult';
1
+ import TranslateTextResult from '../../common/result/TranslateTextResult';
2
2
  export default class EdgeTranslationTextResult extends TranslateTextResult {
3
3
  private _languagePairId;
4
4
  get languagePairId(): string | undefined;
@@ -18,7 +18,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
18
18
  return (mod && mod.__esModule) ? mod : { "default": mod };
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- var TranslateTextResult_1 = __importDefault(require("../TranslateTextResult"));
21
+ var TranslateTextResult_1 = __importDefault(require("../../common/result/TranslateTextResult"));
22
22
  var EdgeTranslationTextResult = /** @class */ (function (_super) {
23
23
  __extends(EdgeTranslationTextResult, _super);
24
24
  function EdgeTranslationTextResult() {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EdgeTranslationTextResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/edge/result/EdgeTranslationTextResult.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA,gGAA0E;AAE1E;IAAuD,6CAAmB;IAA1E;;IAUA,CAAC;IAPG,sBAAI,qDAAc;aAAlB;YACI,OAAO,IAAI,CAAC,eAAe,CAAC;QAChC,CAAC;aAED,UAAmB,KAAyB;YACxC,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC;QACjC,CAAC;;;OAJA;IAKL,gCAAC;AAAD,CAAC,AAVD,CAAuD,6BAAmB,GAUzE"}
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.0.0";
1
+ export declare const VERSION = "1.1.0";
package/lib/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = "1.0.0";
4
+ exports.VERSION = "1.1.0";
5
5
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@language-weaver/lw-sdk-js",
3
- "version": "1.0.0",
4
- "description": "",
3
+ "version": "1.1.0",
4
+ "description": "Language Weaver SDK for JavaScript",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -25,7 +25,8 @@
25
25
  "axios": "^0.27.2",
26
26
  "fs": "^0.0.1-security",
27
27
  "jwt-decode": "^3.1.2",
28
- "uuid": "^8.3.2"
28
+ "uuid": "^8.3.2",
29
+ "moment": "^2.29.4"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@types/jest": "^28.1.4",