@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.
- package/lib/{auth → common/auth}/LanguageWeaverAuthentication.d.ts +2 -2
- package/lib/{auth → common/auth}/LanguageWeaverAuthentication.js +1 -1
- package/lib/common/auth/LanguageWeaverAuthentication.js.map +1 -0
- package/lib/{auth → common/auth}/domain/SelfInformation.d.ts +0 -0
- package/lib/{auth → common/auth}/domain/SelfInformation.js +0 -0
- package/lib/common/auth/domain/SelfInformation.js.map +1 -0
- package/lib/{auth → common/auth}/domain/Token.d.ts +0 -0
- package/lib/{auth → common/auth}/domain/Token.js +0 -0
- package/lib/common/auth/domain/Token.js.map +1 -0
- package/lib/{auth → common/auth}/domain/UserSelfInformation.d.ts +0 -0
- package/lib/{auth → common/auth}/domain/UserSelfInformation.js +0 -0
- package/lib/common/auth/domain/UserSelfInformation.js.map +1 -0
- package/lib/common/configurations/ClientConfiguration.d.ts +1 -1
- package/lib/common/configurations/TokenConfiguration.d.ts +2 -2
- package/lib/common/constants/ApprovalStatus.d.ts +7 -0
- package/lib/common/constants/ApprovalStatus.js +20 -0
- package/lib/common/constants/ApprovalStatus.js.map +1 -0
- package/lib/common/constants/FeedbackCategory.d.ts +4 -0
- package/lib/common/constants/FeedbackCategory.js +9 -0
- package/lib/common/constants/FeedbackCategory.js.map +1 -0
- package/lib/common/constants/FeedbackComment.d.ts +10 -0
- package/lib/common/constants/FeedbackComment.js +15 -0
- package/lib/common/constants/FeedbackComment.js.map +1 -0
- package/lib/common/constants/FileExtensions.d.ts +1 -1
- package/lib/common/constants/FileExtensions.js +1 -1
- package/lib/common/constants/FileExtensions.js.map +1 -1
- package/lib/{translation/common → common/constants}/Format.d.ts +0 -0
- package/lib/{translation/common → common/constants}/Format.js +0 -0
- package/lib/common/constants/Format.js.map +1 -0
- package/lib/common/constants/Order.d.ts +4 -0
- package/lib/common/constants/Order.js +9 -0
- package/lib/common/constants/Order.js.map +1 -0
- package/lib/{translation/common → common/constants}/Product.d.ts +0 -0
- package/lib/{translation/common → common/constants}/Product.js +0 -0
- package/lib/common/constants/Product.js.map +1 -0
- package/lib/{translation/common → common/constants}/Regions.d.ts +0 -0
- package/lib/{translation/common → common/constants}/Regions.js +0 -0
- package/lib/common/constants/Regions.js.map +1 -0
- package/lib/{translation/common → common/constants}/Statuses.d.ts +0 -0
- package/lib/{translation/common → common/constants}/Statuses.js +0 -0
- package/lib/common/constants/Statuses.js.map +1 -0
- package/lib/common/constants/TranslationConstants.d.ts +6 -0
- package/lib/common/constants/TranslationConstants.js +8 -2
- package/lib/common/constants/TranslationConstants.js.map +1 -1
- package/lib/common/{requests → external/communication}/RestClient.d.ts +1 -1
- package/lib/common/{requests → external/communication}/RestClient.js +5 -12
- package/lib/common/external/communication/RestClient.js.map +1 -0
- package/lib/common/utils/HttpUtils.d.ts +1 -1
- package/lib/common/utils/HttpUtils.js +1 -1
- package/lib/common/utils/HttpUtils.js.map +1 -1
- package/lib/common/utils/Utils.d.ts +2 -2
- package/lib/common/utils/Utils.js +1 -1
- package/lib/common/utils/Utils.js.map +1 -1
- package/lib/index.d.ts +57 -39
- package/lib/index.js +74 -38
- package/lib/index.js.map +1 -1
- package/lib/translation/common/LanguageWeaverClient.d.ts +18 -0
- package/lib/{LanguageWeaverClient.js → translation/common/LanguageWeaverClient.js} +0 -0
- package/lib/translation/common/LanguageWeaverClient.js.map +1 -0
- package/lib/{SdkFactory.d.ts → translation/common/SdkFactory.d.ts} +2 -2
- package/lib/{SdkFactory.js → translation/common/SdkFactory.js} +5 -5
- package/lib/translation/common/SdkFactory.js.map +1 -0
- package/lib/translation/common/cloud/CloudLanguageWeaverClient.d.ts +68 -0
- package/lib/{CloudLanguageWeaverClient.js → translation/common/cloud/CloudLanguageWeaverClient.js} +53 -29
- package/lib/translation/common/cloud/CloudLanguageWeaverClient.js.map +1 -0
- package/lib/translation/common/edge/EdgeLanguageWeaverClient.d.ts +67 -0
- package/lib/{EdgeLanguageWeaverClient.js → translation/common/edge/EdgeLanguageWeaverClient.js} +56 -26
- package/lib/translation/common/edge/EdgeLanguageWeaverClient.js.map +1 -0
- package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.d.ts +2 -0
- package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.js +24 -0
- package/lib/translation/common/edge/utils/EdgeLanguagePairUtil.js.map +1 -0
- package/lib/translation/common/result/PaginatedListResult.d.ts +11 -0
- package/lib/translation/common/result/PaginatedListResult.js +39 -0
- package/lib/translation/common/result/PaginatedListResult.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.d.ts +63 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.js +286 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApiModel.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.d.ts +35 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.js +119 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackApproval.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.d.ts +6 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.js +20 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackImprovement.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.d.ts +11 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.js +60 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackListResponse.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackRating.d.ts +10 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackRating.js +34 -0
- package/lib/translation/feedback/cloud/api/CloudFeedbackRating.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.d.ts +25 -0
- package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.js +111 -0
- package/lib/translation/feedback/cloud/api/CloudFilterFeedbackApiRequest.js.map +1 -0
- package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.d.ts +26 -0
- package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.js +89 -0
- package/lib/translation/feedback/cloud/api/CloudTranslationFeedback.js.map +1 -0
- package/lib/translation/feedback/cloud/model/CloudAuditData.d.ts +21 -0
- package/lib/translation/feedback/cloud/model/CloudAuditData.js +90 -0
- package/lib/translation/feedback/cloud/model/CloudAuditData.js.map +1 -0
- package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.d.ts +4 -0
- package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.js +9 -0
- package/lib/translation/feedback/cloud/model/CloudFeedbackSortCriteria.js.map +1 -0
- package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.d.ts +10 -0
- package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.js +29 -0
- package/lib/translation/feedback/cloud/request/CloudFeedbackSortRequest.js.map +1 -0
- package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.d.ts +14 -0
- package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.js +60 -0
- package/lib/translation/feedback/cloud/request/CloudFilterFeedbackRequest.js.map +1 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.d.ts +7 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.js +42 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackListResult.js.map +1 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackResult.d.ts +25 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackResult.js +100 -0
- package/lib/translation/feedback/cloud/result/CloudFeedbackResult.js.map +1 -0
- package/lib/translation/feedback/cloud/service/CloudFeedbackService.d.ts +20 -0
- package/lib/translation/feedback/cloud/service/CloudFeedbackService.js +97 -0
- package/lib/translation/feedback/cloud/service/CloudFeedbackService.js.map +1 -0
- package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.d.ts +5 -0
- package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.js +36 -0
- package/lib/translation/feedback/cloud/validators/CloudFeedbackValidator.js.map +1 -0
- package/lib/translation/feedback/common/model/AuditData.d.ts +14 -0
- package/lib/translation/feedback/common/model/AuditData.js +49 -0
- package/lib/translation/feedback/common/model/AuditData.js.map +1 -0
- package/lib/translation/feedback/common/request/FilterFeedbackRequest.d.ts +15 -0
- package/lib/translation/feedback/common/request/FilterFeedbackRequest.js +49 -0
- package/lib/translation/feedback/common/request/FilterFeedbackRequest.js.map +1 -0
- package/lib/translation/feedback/common/result/FeedbackCommonResult.d.ts +30 -0
- package/lib/translation/feedback/common/result/FeedbackCommonResult.js +100 -0
- package/lib/translation/feedback/common/result/FeedbackCommonResult.js.map +1 -0
- package/lib/translation/feedback/common/result/FeedbackListResult.d.ts +7 -0
- package/lib/translation/feedback/common/result/FeedbackListResult.js +42 -0
- package/lib/translation/feedback/common/result/FeedbackListResult.js.map +1 -0
- package/lib/translation/feedback/common/result/FeedbackResult.d.ts +12 -0
- package/lib/translation/feedback/common/result/FeedbackResult.js +59 -0
- package/lib/translation/feedback/common/result/FeedbackResult.js.map +1 -0
- package/lib/translation/feedback/common/validators/FeedbackValidator.d.ts +2 -0
- package/lib/translation/feedback/common/validators/FeedbackValidator.js +9 -0
- package/lib/translation/feedback/common/validators/FeedbackValidator.js.map +1 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.d.ts +39 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.js +162 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackApiModel.js.map +1 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.d.ts +22 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.js +86 -0
- package/lib/translation/feedback/edge/api/EdgeFeedbackListResponse.js.map +1 -0
- package/lib/translation/feedback/edge/api/Timestamps.d.ts +11 -0
- package/lib/translation/feedback/edge/api/Timestamps.js +39 -0
- package/lib/translation/feedback/edge/api/Timestamps.js.map +1 -0
- package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.d.ts +31 -0
- package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.js +122 -0
- package/lib/translation/feedback/edge/request/EdgeFilterFeedbackRequest.js.map +1 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.d.ts +10 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.js +52 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackListResult.js.map +1 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackResult.d.ts +6 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackResult.js +40 -0
- package/lib/translation/feedback/edge/result/EdgeFeedbackResult.js.map +1 -0
- package/lib/translation/feedback/edge/service/EdgeFeedbackService.d.ts +17 -0
- package/lib/translation/feedback/edge/service/EdgeFeedbackService.js +119 -0
- package/lib/translation/feedback/edge/service/EdgeFeedbackService.js.map +1 -0
- package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.d.ts +3 -0
- package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.js +30 -0
- package/lib/translation/feedback/edge/validators/EdgeFeedbackValidator.js.map +1 -0
- package/lib/translation/translate/{response/cloud → cloud/api}/CloudDictionaryResponse.d.ts +0 -0
- package/lib/translation/translate/{response/cloud → cloud/api}/CloudDictionaryResponse.js +0 -0
- package/lib/translation/translate/cloud/api/CloudDictionaryResponse.js.map +1 -0
- package/lib/translation/translate/{response/cloud → cloud/api}/CloudLanguagePair.d.ts +0 -0
- package/lib/translation/translate/{response/cloud → cloud/api}/CloudLanguagePair.js +0 -0
- package/lib/translation/translate/cloud/api/CloudLanguagePair.js.map +1 -0
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateBatchFileRequest.d.ts +1 -1
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateBatchFileRequest.js +1 -1
- package/lib/translation/translate/cloud/request/CloudTranslateBatchFileRequest.js.map +1 -0
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateFileRequest.d.ts +1 -1
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateFileRequest.js +1 -1
- package/lib/translation/translate/cloud/request/CloudTranslateFileRequest.js.map +1 -0
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateTextRequest.d.ts +1 -1
- package/lib/translation/translate/{request/cloud → cloud/request}/CloudTranslateTextRequest.js +1 -1
- package/lib/translation/translate/cloud/request/CloudTranslateTextRequest.js.map +1 -0
- package/lib/translation/translate/cloud/result/CloudDictionariesResult.d.ts +10 -0
- package/lib/translation/translate/cloud/result/CloudDictionariesResult.js +50 -0
- package/lib/translation/translate/cloud/result/CloudDictionariesResult.js.map +1 -0
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.d.ts +1 -1
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.js +0 -0
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudLanguagePairsResult.js.map +1 -1
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationBatchFileResult.d.ts +1 -1
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationBatchFileResult.js +1 -1
- package/lib/translation/translate/cloud/result/CloudTranslationBatchFileResult.js.map +1 -0
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.d.ts +3 -3
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.js +1 -1
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationFileResult.js.map +1 -1
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.d.ts +2 -2
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.js +0 -0
- package/lib/translation/translate/{result/cloud → cloud/result}/CloudTranslationTextResult.js.map +1 -1
- package/lib/translation/translate/{response → common/api}/AsyncTranslationResponse.d.ts +0 -0
- package/lib/translation/translate/{response → common/api}/AsyncTranslationResponse.js +0 -0
- package/lib/translation/translate/common/api/AsyncTranslationResponse.js.map +1 -0
- package/lib/translation/translate/{response → common/api}/DictionaryResponse.d.ts +0 -0
- package/lib/translation/translate/{response → common/api}/DictionaryResponse.js +0 -0
- package/lib/translation/translate/common/api/DictionaryResponse.js.map +1 -0
- package/lib/translation/translate/{response → common/api}/LanguagePair.d.ts +0 -0
- package/lib/translation/translate/{response → common/api}/LanguagePair.js +0 -0
- package/lib/translation/translate/common/api/LanguagePair.js.map +1 -0
- package/lib/translation/translate/{response → common/api}/TranslationStatistics.d.ts +0 -0
- package/lib/translation/translate/{response → common/api}/TranslationStatistics.js +0 -0
- package/lib/translation/translate/common/api/TranslationStatistics.js.map +1 -0
- package/lib/translation/translate/{response/StatusTranslationResponse.d.ts → common/api/TranslationStatusResponse.d.ts} +2 -2
- package/lib/translation/translate/{response/StatusTranslationResponse.js → common/api/TranslationStatusResponse.js} +10 -10
- package/lib/translation/translate/common/api/TranslationStatusResponse.js.map +1 -0
- package/lib/translation/translate/{request → common/request}/TranslateBatchFileRequest.d.ts +0 -0
- package/lib/translation/translate/{request → common/request}/TranslateBatchFileRequest.js +0 -0
- package/lib/translation/translate/common/request/TranslateBatchFileRequest.js.map +1 -0
- package/lib/translation/translate/{request → common/request}/TranslateFileRequest.d.ts +0 -0
- package/lib/translation/translate/{request → common/request}/TranslateFileRequest.js +0 -0
- package/lib/translation/translate/common/request/TranslateFileRequest.js.map +1 -0
- package/lib/translation/translate/{request → common/request}/TranslateRequest.d.ts +1 -1
- package/lib/translation/translate/{request → common/request}/TranslateRequest.js +0 -0
- package/lib/translation/translate/common/request/TranslateRequest.js.map +1 -0
- package/lib/translation/translate/{request → common/request}/TranslateTextRequest.d.ts +0 -0
- package/lib/translation/translate/{request → common/request}/TranslateTextRequest.js +0 -0
- package/lib/translation/translate/common/request/TranslateTextRequest.js.map +1 -0
- package/lib/translation/translate/common/result/DictionariesResult.d.ts +7 -0
- package/lib/translation/translate/common/result/DictionariesResult.js +40 -0
- package/lib/translation/translate/common/result/DictionariesResult.js.map +1 -0
- package/lib/translation/translate/{result → common/result}/LanguagePairsResult.d.ts +1 -1
- package/lib/translation/translate/{result → common/result}/LanguagePairsResult.js +0 -0
- package/lib/translation/translate/common/result/LanguagePairsResult.js.map +1 -0
- package/lib/translation/translate/{result → common/result}/TranslateTextResult.d.ts +0 -0
- package/lib/translation/translate/{result → common/result}/TranslateTextResult.js +0 -0
- package/lib/translation/translate/common/result/TranslateTextResult.js.map +1 -0
- package/lib/translation/translate/{result → common/result}/TranslationBatchFileResult.d.ts +0 -0
- package/lib/translation/translate/{result → common/result}/TranslationBatchFileResult.js +0 -0
- package/lib/translation/translate/common/result/TranslationBatchFileResult.js.map +1 -0
- package/lib/translation/translate/{result → common/result}/TranslationFileResult.d.ts +0 -0
- package/lib/translation/translate/{result → common/result}/TranslationFileResult.js +0 -0
- package/lib/translation/translate/common/result/TranslationFileResult.js.map +1 -0
- package/lib/translation/translate/{utils → common/utils}/TranslateFileUtil.d.ts +0 -0
- package/lib/translation/translate/{utils → common/utils}/TranslateFileUtil.js +2 -2
- package/lib/translation/translate/common/utils/TranslateFileUtil.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.js +0 -0
- package/lib/translation/translate/edge/api/EdgeAsyncTranslationResponse.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeDictionaryResponse.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeDictionaryResponse.js +0 -0
- package/lib/translation/translate/edge/api/EdgeDictionaryResponse.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeLanguagePair.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeLanguagePair.js +0 -0
- package/lib/translation/translate/edge/api/EdgeLanguagePair.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.js +0 -0
- package/lib/translation/translate/edge/api/EdgeStatusTranslationResponse.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/MemberPair.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/MemberPair.js +0 -0
- package/lib/translation/translate/edge/api/MemberPair.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/Profile.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/Profile.js +0 -0
- package/lib/translation/translate/edge/api/Profile.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/Result.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/Result.js +0 -0
- package/lib/translation/translate/edge/api/Result.js.map +1 -0
- package/lib/translation/translate/{response/edge → edge/api}/Timestamps.d.ts +0 -0
- package/lib/translation/translate/{response/edge → edge/api}/Timestamps.js +0 -0
- package/lib/translation/translate/edge/api/Timestamps.js.map +1 -0
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.d.ts +2 -2
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js +1 -1
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js.map +1 -1
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.d.ts +2 -2
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.js +1 -1
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.js.map +1 -1
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.d.ts +2 -2
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.js +1 -1
- package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.js.map +1 -1
- package/lib/translation/translate/edge/result/EdgeDictionariesResult.d.ts +10 -0
- package/lib/translation/translate/edge/result/EdgeDictionariesResult.js +50 -0
- package/lib/translation/translate/edge/result/EdgeDictionariesResult.js.map +1 -0
- package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.d.ts +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.js +0 -0
- package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.js.map +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationBatchFileResult.d.ts +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationBatchFileResult.js +1 -1
- package/lib/translation/translate/edge/result/EdgeTranslationBatchFileResult.js.map +1 -0
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.d.ts +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.js +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.js.map +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationTextResult.d.ts +1 -1
- package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationTextResult.js +1 -1
- package/lib/translation/translate/edge/result/EdgeTranslationTextResult.js.map +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -3
- package/lib/CloudLanguageWeaverClient.d.ts +0 -61
- package/lib/CloudLanguageWeaverClient.js.map +0 -1
- package/lib/EdgeLanguageWeaverClient.d.ts +0 -60
- package/lib/EdgeLanguageWeaverClient.js.map +0 -1
- package/lib/LanguageWeaverClient.d.ts +0 -15
- package/lib/LanguageWeaverClient.js.map +0 -1
- package/lib/SdkFactory.js.map +0 -1
- package/lib/auth/LanguageWeaverAuthentication.js.map +0 -1
- package/lib/auth/domain/SelfInformation.js.map +0 -1
- package/lib/auth/domain/Token.js.map +0 -1
- package/lib/auth/domain/UserSelfInformation.js.map +0 -1
- package/lib/common/requests/RestClient.js.map +0 -1
- package/lib/translation/common/Format.js.map +0 -1
- package/lib/translation/common/Product.js.map +0 -1
- package/lib/translation/common/Regions.js.map +0 -1
- package/lib/translation/common/Statuses.js.map +0 -1
- package/lib/translation/translate/request/TranslateBatchFileRequest.js.map +0 -1
- package/lib/translation/translate/request/TranslateFileRequest.js.map +0 -1
- package/lib/translation/translate/request/TranslateRequest.js.map +0 -1
- package/lib/translation/translate/request/TranslateTextRequest.js.map +0 -1
- package/lib/translation/translate/request/cloud/CloudTranslateBatchFileRequest.js.map +0 -1
- package/lib/translation/translate/request/cloud/CloudTranslateFileRequest.js.map +0 -1
- package/lib/translation/translate/request/cloud/CloudTranslateTextRequest.js.map +0 -1
- package/lib/translation/translate/response/AsyncTranslationResponse.js.map +0 -1
- package/lib/translation/translate/response/DictionaryResponse.js.map +0 -1
- package/lib/translation/translate/response/LanguagePair.js.map +0 -1
- package/lib/translation/translate/response/StatusTranslationResponse.js.map +0 -1
- package/lib/translation/translate/response/TranslationStatistics.js.map +0 -1
- package/lib/translation/translate/response/cloud/CloudDictionaryResponse.js.map +0 -1
- package/lib/translation/translate/response/cloud/CloudLanguagePair.js.map +0 -1
- package/lib/translation/translate/response/edge/EdgeAsyncTranslationResponse.js.map +0 -1
- package/lib/translation/translate/response/edge/EdgeDictionaryResponse.js.map +0 -1
- package/lib/translation/translate/response/edge/EdgeLanguagePair.js.map +0 -1
- package/lib/translation/translate/response/edge/EdgeStatusTranslationResponse.js.map +0 -1
- package/lib/translation/translate/response/edge/MemberPair.js.map +0 -1
- package/lib/translation/translate/response/edge/Profile.js.map +0 -1
- package/lib/translation/translate/response/edge/Result.js.map +0 -1
- package/lib/translation/translate/response/edge/Timestamps.js.map +0 -1
- package/lib/translation/translate/result/DictionariesResult.d.ts +0 -6
- package/lib/translation/translate/result/DictionariesResult.js +0 -19
- package/lib/translation/translate/result/DictionariesResult.js.map +0 -1
- package/lib/translation/translate/result/LanguagePairsResult.js.map +0 -1
- package/lib/translation/translate/result/TranslateTextResult.js.map +0 -1
- package/lib/translation/translate/result/TranslationBatchFileResult.js.map +0 -1
- package/lib/translation/translate/result/TranslationFileResult.js.map +0 -1
- package/lib/translation/translate/result/cloud/CloudDictionariesResult.d.ts +0 -18
- package/lib/translation/translate/result/cloud/CloudDictionariesResult.js +0 -59
- package/lib/translation/translate/result/cloud/CloudDictionariesResult.js.map +0 -1
- package/lib/translation/translate/result/cloud/CloudTranslationBatchFileResult.js.map +0 -1
- package/lib/translation/translate/result/edge/EdgeDictionariesResult.d.ts +0 -18
- package/lib/translation/translate/result/edge/EdgeDictionariesResult.js +0 -59
- package/lib/translation/translate/result/edge/EdgeDictionariesResult.js.map +0 -1
- package/lib/translation/translate/result/edge/EdgeTranslationBatchFileResult.js.map +0 -1
- package/lib/translation/translate/result/edge/EdgeTranslationTextResult.js.map +0 -1
- 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
|
|
4
|
-
function
|
|
3
|
+
var TranslationStatusResponse = /** @class */ (function () {
|
|
4
|
+
function TranslationStatusResponse() {
|
|
5
5
|
}
|
|
6
|
-
Object.defineProperty(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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
|
|
56
|
+
return TranslationStatusResponse;
|
|
57
57
|
}());
|
|
58
|
-
exports.default =
|
|
59
|
-
//# sourceMappingURL=
|
|
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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
@@ -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("
|
|
45
|
-
var TranslationConstants_1 = require("
|
|
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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6BAAoC;AAGpC,yEAAmD;AACnD,0FAW2D;AAGpD,IAAM,wCAAwC,GAAG,UACpD,yBAAoD;;;;gBAEpD,IAAI,CAAC,yBAAyB,CAAC,KAAK,EAAE;oBAClC,sBAAO,eAAK,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,yDAAkC,CAAC,CAAC,CAAC,6DAAsC,EAAC;iBAC1G;qBAEG,eAAK,CAAC,SAAS,EAAE,EAAjB,wBAAiB;gBACjB,sBAAO,2BAA2B,CAAC,yBAAyB,CAAC,KAAK,CAAC,EAAC;oBAE7D,qBAAM,uCAAuC,CAAC,yBAAyB,CAAC,EAAA;oBAA/E,sBAAO,SAAwE,EAAC;;;KAEvF,CAAC;AAZW,QAAA,wCAAwC,4CAYnD;AAEK,IAAM,mCAAmC,GAAG,UAAC,oBAA0C;IAC1F,IAAI,CAAC,oBAAoB,CAAC,KAAK,EAAE;QAC7B,OAAO,wDAAiC,CAAC;KAC5C;IAED,IAAI,eAAK,CAAC,SAAS,EAAE,EAAE;QACnB,OAAO,0BAA0B,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;KACjE;SAAM;QACH,OAAO,uCAAuC,CAAC,oBAAoB,CAAC,CAAC;KACxE;AACL,CAAC,CAAC;AAVW,QAAA,mCAAmC,uCAU9C;AAEF,IAAM,cAAc,GAAG,UAAC,KAAU;IAC9B,OAAO,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,KAAK,CAAC,UAAC,KAAK,IAAK,OAAA,KAAK,YAAY,IAAI,EAArB,CAAqB,CAAC,CAAC;AACrG,CAAC,CAAC;AAEF,IAAM,2BAA2B,GAAG,UAAC,KAAkC;IACnE,IAAI,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,cAAc,CAAC,KAAK,CAAC,EAAE;QAC7D,IAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,UAAC,IAAI,IAAK,OAAA,eAAK,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,0CAAmB,EAA7C,CAA6C,CAAC,CAAC;QAEtF,OAAO,SAAS,CAAC,CAAC,CAAC,wBAAwB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;KACjE;SAAM;QACH,OAAO,gEAAyC,CAAC;KACpD;AACL,CAAC,CAAC;AAEF,IAAM,uCAAuC,GAAG,UAAO,yBAAoD;;;;;qBACnG,CAAA,OAAO,yBAAyB,CAAC,KAAK,KAAK,QAAQ,CAAA,EAAnD,wBAAmD;gBACrC,qBAAM,6BAA6B,CAAC,yBAAyB,CAAC,KAAK,CAAC,EAAA;;gBAA5E,KAAK,GAAG,SAAoE;gBAElF,IAAI,KAAK,EAAE;oBACP,sBAAO,KAAK,EAAC;iBAChB;;oBAED,sBAAO,oEAA6C,EAAC;;gBAGnD,WAAW,GAAG,uBAAuB,CAAC,yBAAyB,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;gBAEvF,IAAI,WAAW,EAAE;oBACb,sBAAO,WAAW,EAAC;iBACtB;;;;KACJ,CAAC;AAEF,IAAM,6BAA6B,GAAG,UAAO,KAAa;;;;;gBAChD,uBAAuB,GAAG,eAAK,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC;gBAEnE,IAAI,uBAAuB,EAAE;oBACzB,sBAAO,uBAAuB,EAAC;iBAClC;gBAEK,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;gBACnB,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;gBACvB,YAAY,GAAG,eAAK,CAAC,eAAe,CAAC,KAAK,CAAC,CAAC;;;;gBAEhC,qBAAM,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,EAAA;;gBAA/C,KAAK,GAAG,SAAuC;gBAErD,IAAI,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE;oBACzB,sBAAO,yDAAkC,EAAC;iBAC7C;gBAEK,SAAS,GAAG,KAAK,CAAC,IAAI,CACxB,UAAC,IAAY,IAAK,OAAA,eAAK,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC,GAAG,0CAAmB,EAAtE,CAAsE,CAC3F,CAAC;gBAEF,sBAAO,SAAS,CAAC,CAAC,CAAC,wBAAwB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,EAAC;;;gBAE9D,sBAAO,6DAAsC,EAAC;;;;KAErD,CAAC;AAEF,IAAM,0BAA0B,GAAG,UAAC,SAAoC;IACpE,IAAI,SAAS,YAAY,IAAI,EAAE;QAC3B,IAAM,QAAQ,GAAG,eAAK,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;QAE9C,OAAO,QAAQ,GAAG,0CAAmB,CAAC,CAAC,CAAC,wBAAwB,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;KACtF;SAAM;QACH,OAAO,+DAAwC,CAAC;KACnD;AACL,CAAC,CAAC;AAEF,IAAM,uCAAuC,GAAG,UAAC,oBAA0C;IACvF,IAAI,OAAO,oBAAoB,CAAC,KAAK,KAAK,QAAQ,EAAE;QAChD,IAAM,UAAU,GAAG,uBAAuB,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;QAEvE,IAAI,UAAU,EAAE;YACZ,OAAO,UAAU,CAAC;SACrB;KACJ;SAAM;QACH,OAAO,+DAAwC,CAAC;KACnD;IAED,IAAM,cAAc,GAAG,uBAAuB,CAAC,oBAAoB,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;IAErF,IAAI,cAAc,EAAE;QAChB,OAAO,cAAc,CAAC;KACzB;IAED,IAAM,eAAe,GAAG,kBAAkB,CAAC,oBAAoB,CAAC,CAAC;IAEjE,IAAI,eAAe,EAAE;QACjB,OAAO,eAAe,CAAC;KAC1B;AACL,CAAC,CAAC;AAEF,IAAM,uBAAuB,GAAG,UAAC,SAAiB;IAC9C,IAAM,wBAAwB,GAAG,eAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAEnE,IAAI,wBAAwB,EAAE;QAC1B,OAAO,wBAAwB,CAAC;KACnC;IAED,IAAM,QAAQ,GAAG,eAAK,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC;IAE9C,IAAI,QAAQ,GAAG,0CAAmB,EAAE;QAChC,OAAO,wBAAwB,CAAC,SAAS,CAAC,CAAC;KAC9C;AACL,CAAC,CAAC;AAEF,IAAM,uBAAuB,GAAG,UAAC,WAAmB;IAChD,IAAI,WAAW,EAAE;QACb,OAAO,eAAK,CAAC,qBAAqB,CAAC,WAAW,CAAC,CAAC;KACnD;SAAM;QACH,OAAO,8DAAuC,CAAC;KAClD;AACL,CAAC,CAAC;AAEK,IAAM,2BAA2B,GAAG,UAAC,oBAA0C;IAClF,IAAI,oBAAoB,CAAC,KAAK,EAAE;QAC5B,IAAM,cAAc,GAAW,eAAK,CAAC,YAAY,CAAC,oBAAoB,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAM,uBAAuB,GAAW,IAAA,0BAAkB,EAAC,cAAc,CAAC,CAAC;QAC3E,IAAM,qBAAqB,GAAW,eAAK,CAAC,YAAY,CAAC,oBAAoB,CAAC,UAAU,IAAI,EAAE,CAAC,CAAC;QAEhG,OAAO,uBAAuB,KAAK,qBAAqB;YACpD,CAAC,CAAC,mCAA4B,qBAAqB,kCAAwB,cAAc,uCAA6B,uBAAuB,MAAG;YAChJ,CAAC,CAAC,EAAE,CAAC;KACZ;SAAM;QACH,OAAO,wDAAiC,CAAC;KAC5C;AACL,CAAC,CAAC;AAZW,QAAA,2BAA2B,+BAYtC;AAEF,IAAM,kBAAkB,GAAG,UAAC,oBAA0C;IAClE,IAAI,oBAAoB,CAAC,UAAU,EAAE;QACjC,OAAO,IAAA,mCAA2B,EAAC,oBAAoB,CAAC,CAAC;KAC5D;AACL,CAAC,CAAC;AAEK,IAAM,kBAAkB,GAAG,UAAC,cAAsB;IACrD,IAAM,SAAS,GAAuB,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,IAAI,CACjE,UAAC,GAAG,IAAK,OAAA,GAAG,KAAK,cAAc,CAAC,WAAW,EAAE,EAApC,CAAoC,CAChD,CAAC;IAEF,OAAO,SAAS,CAAC,CAAC,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC;AACjE,CAAC,CAAC;AANW,QAAA,kBAAkB,sBAM7B;AAEK,IAAM,sBAAsB,GAAG,UAAC,QAAa,EAAE,OAA6B;IAC/E,IAAM,qBAAqB,GACvB,QAAQ;QACR,QAAQ,CAAC,OAAO;QAChB,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,UAAC,UAAU,IAAK,OAAA,UAAU,CAAC,WAAW,EAAE,KAAK,qBAAqB,EAAlD,CAAkD,CAAC,CAAC;IAE3G,IAAI,qBAAqB,EAAE;QACvB,IAAM,wBAAwB,GAAG,QAAQ,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC;QAEzE,OAAO,wBAAwB,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;KAC7F;SAAM;QACH,IAAM,YAAY,GAAG,eAAK,CAAC,eAAe,CAAC,OAAO,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC;QAChE,IAAM,aAAa,GAAG,eAAK,CAAC,YAAY,CAAC,OAAO,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC;QAE9D,OAAO,YAAY,GAAG,GAAG,GAAG,IAAA,SAAM,GAAE,GAAG,GAAG,GAAG,IAAA,0BAAkB,EAAC,aAAa,CAAC,CAAC;KAClF;AACL,CAAC,CAAC;AAhBW,QAAA,sBAAsB,0BAgBjC;AAEK,IAAM,iCAAiC,GAAG,UAC7C,OAAkC;;;;;qBAI9B,eAAK,CAAC,SAAS,EAAE,EAAjB,wBAAiB;gBACjB,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC;;;qBACf,CAAA,OAAO,OAAO,CAAC,KAAK,KAAK,QAAQ,CAAA,EAAjC,wBAAiC;gBAClC,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;gBACjB,qBAAM,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAA;;gBAAhD,KAAK,GAAG,SAAwC,CAAC;gBACjD,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,UAAC,QAAgB;oBAC/B,kCAAkC;oBAClC,OAAA,eAAK,CAAC,WAAW,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC;gBAA1C,CAA0C,CAC7C,CAAC;;oBAGN,sBAAO,KAAK,EAAC;;;KAChB,CAAC;AAjBW,QAAA,iCAAiC,qCAiB5C;AAEF,IAAM,wBAAwB,GAAG,UAAC,SAAwB;IACtD,OAAO,qBAAc,eAAK,CAAC,WAAW,CAAC,SAAS,CAAC,gDAAsC,0CAAmB,WAAQ,CAAC;AACvH,CAAC,CAAC;AAEF;;;;;GAKG;AACH,IAAM,aAAa,GAA2B;IAC1C,GAAG,EAAE,MAAM;IACX,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,KAAK;IACX,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,KAAK;IACV,GAAG,EAAE,EAAE;CACV,CAAC"}
|
package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.d.ts
RENAMED
|
File without changes
|
package/lib/translation/translate/{response/edge → edge/api}/EdgeAsyncTranslationResponse.js
RENAMED
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.d.ts
RENAMED
|
File without changes
|
package/lib/translation/translate/{response/edge → edge/api}/EdgeStatusTranslationResponse.js
RENAMED
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
|
File without changes
|
|
File without changes
|
|
@@ -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"}
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import TranslateBatchFileRequest from '
|
|
2
|
-
import { Format } from '
|
|
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;
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js
RENAMED
|
@@ -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("
|
|
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() {
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateBatchFileRequest.js.map
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeTranslateBatchFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/
|
|
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"}
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import TranslateFileRequest from '
|
|
2
|
-
import { Format } from '
|
|
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("
|
|
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() {
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateFileRequest.js.map
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeTranslateFileRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/
|
|
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"}
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.d.ts
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import TranslateTextRequest from '
|
|
2
|
-
import { Format } from '
|
|
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("
|
|
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() {
|
package/lib/translation/translate/{request/edge → edge/request}/EdgeTranslateTextRequest.js.map
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeTranslateTextRequest.js","sourceRoot":"","sources":["../../../../../src/translation/translate/request/
|
|
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"}
|
|
File without changes
|
package/lib/translation/translate/{result/edge → edge/result}/EdgeLanguagePairsResult.js.map
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeLanguagePairsResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/result/
|
|
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"}
|
package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationBatchFileResult.js
RENAMED
|
@@ -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("
|
|
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"}
|
package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.d.ts
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import TranslationFileResult from '
|
|
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("
|
|
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() {
|
package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationFileResult.js.map
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeTranslationFileResult.js","sourceRoot":"","sources":["../../../../../src/translation/translate/result/
|
|
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"}
|
package/lib/translation/translate/{result/edge → edge/result}/EdgeTranslationTextResult.d.ts
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import TranslateTextResult from '
|
|
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("
|
|
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.
|
|
1
|
+
export declare const VERSION = "1.1.0";
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@language-weaver/lw-sdk-js",
|
|
3
|
-
"version": "1.
|
|
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",
|