@ui5/task-adaptation 1.3.1 → 1.3.3

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 (97) hide show
  1. package/CHANGELOG.md +9 -1
  2. package/README.md +18 -0
  3. package/dist/annotationManager.d.ts +18 -0
  4. package/dist/annotationManager.js +79 -0
  5. package/dist/annotations/comparator/comparator.d.ts +47 -0
  6. package/dist/annotations/comparator/comparator.js +283 -0
  7. package/dist/annotations/comparator/diffCase.d.ts +4 -0
  8. package/dist/annotations/comparator/diffCase.js +2 -0
  9. package/dist/annotations/comparator/interchangableCase.d.ts +25 -0
  10. package/dist/annotations/comparator/interchangableCase.js +60 -0
  11. package/dist/annotations/converter/metadataJsonReferenceUtil.d.ts +12 -0
  12. package/dist/annotations/converter/metadataJsonReferenceUtil.js +48 -0
  13. package/dist/annotations/converter/metadataJsonUtil.d.ts +30 -0
  14. package/dist/annotations/converter/metadataJsonUtil.js +70 -0
  15. package/dist/annotations/converter/ui5JsonConverter.d.ts +21 -0
  16. package/dist/annotations/converter/ui5JsonConverter.js +252 -0
  17. package/dist/annotations/converter/ui5MetadataJsonUtil.d.ts +3 -0
  18. package/dist/annotations/converter/ui5MetadataJsonUtil.js +10 -0
  19. package/dist/annotations/converter/ui5XmlConverter.d.ts +5 -0
  20. package/dist/annotations/converter/ui5XmlConverter.js +14 -0
  21. package/dist/annotations/dataSource/dataSource.d.ts +34 -0
  22. package/dist/annotations/dataSource/dataSource.js +62 -0
  23. package/dist/annotations/dataSource/dataSourceManager.d.ts +12 -0
  24. package/dist/annotations/dataSource/dataSourceManager.js +45 -0
  25. package/dist/annotations/dataSource/dataSourceOData.d.ts +17 -0
  26. package/dist/annotations/dataSource/dataSourceOData.js +45 -0
  27. package/dist/annotations/dataSource/dataSourceODataAnnotation.d.ts +6 -0
  28. package/dist/annotations/dataSource/dataSourceODataAnnotation.js +16 -0
  29. package/dist/annotations/serviceRequestor.d.ts +9 -0
  30. package/dist/annotations/serviceRequestor.js +73 -0
  31. package/dist/annotations/transformers/convertV2ToV4.d.ts +4 -0
  32. package/dist/annotations/transformers/convertV2ToV4.js +13 -0
  33. package/dist/annotations/transformers/makeAnnotationNamespaceUnique.d.ts +6 -0
  34. package/dist/annotations/transformers/makeAnnotationNamespaceUnique.js +41 -0
  35. package/dist/annotations/transformers/removeAllSchemaNodesExceptAnnotations.d.ts +4 -0
  36. package/dist/annotations/transformers/removeAllSchemaNodesExceptAnnotations.js +14 -0
  37. package/dist/annotations/transformers/transformer.d.ts +12 -0
  38. package/dist/annotations/transformers/transformer.js +2 -0
  39. package/dist/annotations/transformers/traverseReferences.d.ts +9 -0
  40. package/dist/annotations/transformers/traverseReferences.js +66 -0
  41. package/dist/appVariantManager.d.ts +12 -0
  42. package/dist/appVariantManager.js +102 -0
  43. package/dist/baseAppManager.d.ts +29 -0
  44. package/dist/baseAppManager.js +139 -0
  45. package/dist/buildStrategy.d.ts +7 -0
  46. package/dist/buildStrategy.js +19 -0
  47. package/dist/bundle.d.ts +25 -0
  48. package/dist/bundle.js +7146 -0
  49. package/dist/cache/annotationsCacheManager.d.ts +8 -0
  50. package/dist/cache/annotationsCacheManager.js +16 -0
  51. package/dist/cache/baseAppFilesCacheManager.d.ts +6 -0
  52. package/dist/cache/baseAppFilesCacheManager.js +12 -0
  53. package/dist/cache/cacheManager.d.ts +16 -0
  54. package/dist/cache/cacheManager.js +65 -0
  55. package/dist/i18nManager.d.ts +43 -0
  56. package/dist/i18nManager.js +203 -0
  57. package/dist/index.d.ts +6 -0
  58. package/dist/index.js +25 -0
  59. package/dist/model/annotationDiffStructureError.d.ts +3 -0
  60. package/dist/model/annotationDiffStructureError.js +8 -0
  61. package/dist/model/configuration.d.ts +21 -0
  62. package/dist/model/configuration.js +2 -0
  63. package/dist/model/language.d.ts +13 -0
  64. package/dist/model/language.js +37 -0
  65. package/dist/model/serverError.d.ts +3 -0
  66. package/dist/model/serverError.js +6 -0
  67. package/dist/model/types.d.ts +105 -0
  68. package/dist/model/types.js +2 -0
  69. package/dist/processors/abapProcessor.d.ts +21 -0
  70. package/dist/processors/abapProcessor.js +39 -0
  71. package/dist/processors/cfProcessor.d.ts +17 -0
  72. package/dist/processors/cfProcessor.js +45 -0
  73. package/dist/processors/processor.d.ts +7 -0
  74. package/dist/processors/processor.js +32 -0
  75. package/dist/repositories/abapProvider.d.ts +9 -0
  76. package/dist/repositories/abapProvider.js +69 -0
  77. package/dist/repositories/abapRepoManager.d.ts +11 -0
  78. package/dist/repositories/abapRepoManager.js +71 -0
  79. package/dist/repositories/html5RepoManager.d.ts +11 -0
  80. package/dist/repositories/html5RepoManager.js +87 -0
  81. package/dist/util/cfUtil.d.ts +30 -0
  82. package/dist/util/cfUtil.js +171 -0
  83. package/dist/util/commonUtil.d.ts +13 -0
  84. package/dist/util/commonUtil.js +118 -0
  85. package/dist/util/i18nMerger.d.ts +32 -0
  86. package/dist/util/i18nMerger.js +99 -0
  87. package/dist/util/requestUtil.d.ts +6 -0
  88. package/dist/util/requestUtil.js +36 -0
  89. package/dist/util/resourceUtil.d.ts +11 -0
  90. package/dist/util/resourceUtil.js +62 -0
  91. package/dist/util/urlUtil.d.ts +4 -0
  92. package/dist/util/urlUtil.js +18 -0
  93. package/dist/util/xmlUtil.d.ts +4 -0
  94. package/dist/util/xmlUtil.js +21 -0
  95. package/dist/util/zipUtil.d.ts +2 -0
  96. package/dist/util/zipUtil.js +16 -0
  97. package/package.json +8 -3

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.