@sap/artifact-management 1.2.0 → 1.6.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 (172) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/README.md +28 -1
  3. package/dist/src/cp/CFProjectBuilder.js +27 -1
  4. package/dist/src/cp/CFProjectBuilder.js.map +1 -1
  5. package/dist/src/cp/LaunchpadPageGenerator.js +9 -0
  6. package/dist/src/cp/LaunchpadPageGenerator.js.map +1 -1
  7. package/dist/src/cp/templates/assets/launchpad.css +7 -0
  8. package/dist/src/cp/templates/assets/preview.css +4 -0
  9. package/dist/src/cp/templates/file-templates/launchpadPage-template.html +1 -1
  10. package/dist/src/plugins/cap/generators/templates/mta-cap-srv-template.yaml +2 -0
  11. package/dist/src/plugins/cap/generators/templates/mta-cap-template.yaml +1 -1
  12. package/dist/src/plugins/cap/readers/CapModuleReader.js +67 -37
  13. package/dist/src/plugins/cap/readers/CapModuleReader.js.map +1 -1
  14. package/dist/src/plugins/cap/readers/CapProjectReader.js +1 -1
  15. package/dist/src/plugins/cap/readers/CapProjectReader.js.map +1 -1
  16. package/dist/src/plugins/ui5/generators/UI5ModuleGenerator.js +1 -0
  17. package/dist/src/plugins/ui5/generators/UI5ModuleGenerator.js.map +1 -1
  18. package/dist/src/plugins/ui5/readers/UI5ModuleReader.js +7 -5
  19. package/dist/src/plugins/ui5/readers/UI5ModuleReader.js.map +1 -1
  20. package/dist/src/plugins/workflow/readers/WorkflowModuleParser.js +7 -31
  21. package/dist/src/plugins/workflow/readers/WorkflowModuleParser.js.map +1 -1
  22. package/dist/src/plugins/workflow/readers/WorkflowModuleReader.js +14 -15
  23. package/dist/src/plugins/workflow/readers/WorkflowModuleReader.js.map +1 -1
  24. package/dist/src/plugins/xsuaa/InfoList.js +4 -4
  25. package/dist/src/plugins/xsuaa/InfoList.js.map +1 -1
  26. package/dist/src/plugins/xsuaa/readers/XsSecurityModuleReader.js +18 -15
  27. package/dist/src/plugins/xsuaa/readers/XsSecurityModuleReader.js.map +1 -1
  28. package/dist/src/project-api/LocalFileSystemWatchManager.js +2 -0
  29. package/dist/src/project-api/LocalFileSystemWatchManager.js.map +1 -1
  30. package/dist/src/project-api/ModuleInstance.js +2 -1
  31. package/dist/src/project-api/ModuleInstance.js.map +1 -1
  32. package/dist/src/project-api/ProjectCLI.js +26 -1
  33. package/dist/src/project-api/ProjectCLI.js.map +1 -1
  34. package/dist/src/project-api/ProjectEntityInstance.js +1 -1
  35. package/dist/src/project-api/ProjectEntityInstance.js.map +1 -1
  36. package/dist/src/project-api/ProjectImpl.js +55 -14
  37. package/dist/src/project-api/ProjectImpl.js.map +1 -1
  38. package/dist/src/project-api/ProjectInstance.js +2 -2
  39. package/dist/src/project-api/ProjectInstance.js.map +1 -1
  40. package/dist/src/project-api/ProjectModulesInstance.js +2 -1
  41. package/dist/src/project-api/ProjectModulesInstance.js.map +1 -1
  42. package/dist/tsconfig.tsbuildinfo +203 -124
  43. package/dist/types/src/cp/CFProjectBuilder.d.ts +4 -1
  44. package/dist/types/src/cp/LaunchpadPageGenerator.d.ts +10 -1
  45. package/dist/types/src/cp/OverviewPageGenerator.d.ts +1 -1
  46. package/dist/types/src/definitions/BuildFactory.d.ts +1 -1
  47. package/dist/types/src/definitions/PluginFactory.d.ts +1 -1
  48. package/dist/types/src/index.d.ts +1 -1
  49. package/dist/types/src/mta-generator/MtaBuilder.d.ts +1 -1
  50. package/dist/types/src/plugins/cap/CapRun.d.ts +1 -1
  51. package/dist/types/src/plugins/cap/generators/CapDbModuleGenerator.d.ts +1 -1
  52. package/dist/types/src/plugins/cap/generators/CapDestinationModuleGenerator.d.ts +1 -1
  53. package/dist/types/src/plugins/cap/generators/CapLaunchpadGenerator.d.ts +1 -1
  54. package/dist/types/src/plugins/cap/generators/CapModuleGenerator.d.ts +1 -1
  55. package/dist/types/src/plugins/cap/generators/CapProjectGenerator.d.ts +1 -1
  56. package/dist/types/src/plugins/cap/generators/CapServiceModuleGenerator.d.ts +1 -1
  57. package/dist/types/src/plugins/cap/generators/CapUIDeployerGenerator.d.ts +1 -1
  58. package/dist/types/src/plugins/cap/index.d.ts +1 -1
  59. package/dist/types/src/plugins/cap/readers/CapModuleReader.d.ts +3 -1
  60. package/dist/types/src/plugins/cap/readers/CapProjectReader.d.ts +1 -1
  61. package/dist/types/src/plugins/ui5/generators/UI5ModuleGenerator.d.ts +1 -1
  62. package/dist/types/src/plugins/ui5/index.d.ts +1 -1
  63. package/dist/types/src/plugins/ui5/readers/UI5ModuleReader.d.ts +1 -1
  64. package/dist/types/src/plugins/workflow/generators/WorkflowModuleGenerator.d.ts +1 -1
  65. package/dist/types/src/plugins/workflow/index.d.ts +1 -1
  66. package/dist/types/src/plugins/workflow/readers/WorkflowModuleParser.d.ts +3 -3
  67. package/dist/types/src/plugins/workflow/readers/WorkflowModuleReader.d.ts +1 -1
  68. package/dist/types/src/plugins/xsuaa/InfoList.d.ts +2 -2
  69. package/dist/types/src/plugins/xsuaa/generators/XsSecurityModuleManifestGenerator.d.ts +1 -1
  70. package/dist/types/src/plugins/xsuaa/index.d.ts +1 -1
  71. package/dist/types/src/plugins/xsuaa/readers/XsSecurityModuleReader.d.ts +3 -15
  72. package/dist/types/src/project/ProjectBuilder.d.ts +2 -0
  73. package/dist/types/src/project-api/AutoBuilder.d.ts +1 -1
  74. package/dist/types/src/project-api/ItemSetInstance.d.ts +1 -1
  75. package/dist/types/src/project-api/ItemWatcher.d.ts +1 -1
  76. package/dist/types/src/project-api/ItemWatcherApi.d.ts +1 -1
  77. package/dist/types/src/project-api/LocalFileSystemWatchManager.d.ts +1 -1
  78. package/dist/types/src/project-api/MessageUtil.d.ts +1 -1
  79. package/dist/types/src/project-api/ModuleInstance.d.ts +2 -2
  80. package/dist/types/src/project-api/ProjectApi.d.ts +11 -1
  81. package/dist/types/src/project-api/ProjectEntityInstance.d.ts +1 -1
  82. package/dist/types/src/project-api/ProjectImpl.d.ts +8 -2
  83. package/dist/types/src/project-api/ProjectInstance.d.ts +1 -1
  84. package/dist/types/src/project-api/ProjectModulesInstance.d.ts +1 -1
  85. package/dist/types/src/project-api/WorkspaceApi.d.ts +1 -1
  86. package/dist/types/src/project-api/WorkspaceImpl.d.ts +1 -1
  87. package/node_modules/@sap/artifact-management-base/dist/src/commons/ProjectFileSystem.js +2 -2
  88. package/node_modules/@sap/artifact-management-base/dist/src/commons/ProjectFileSystem.js.map +1 -1
  89. package/node_modules/@sap/artifact-management-base/dist/src/commons/StateMessage.js +5 -1
  90. package/node_modules/@sap/artifact-management-base/dist/src/commons/StateMessage.js.map +1 -1
  91. package/node_modules/@sap/artifact-management-base/dist/src/project/ProjectWrapper.js +6 -3
  92. package/node_modules/@sap/artifact-management-base/dist/src/project/ProjectWrapper.js.map +1 -1
  93. package/node_modules/@sap/artifact-management-base/dist/tsconfig.tsbuildinfo +22 -40
  94. package/node_modules/@sap/artifact-management-base/dist/types/src/commons/ProjectFileSystem.d.ts +1 -1
  95. package/node_modules/@sap/artifact-management-base/dist/types/src/commons/StateMessage.d.ts +1 -1
  96. package/node_modules/@sap/artifact-management-base/dist/types/src/project/Item.d.ts +1 -1
  97. package/node_modules/@sap/artifact-management-base/dist/types/src/project/ModuleData.d.ts +1 -2
  98. package/node_modules/@sap/artifact-management-base/dist/types/src/project/ProjectData.d.ts +1 -2
  99. package/node_modules/@sap/artifact-management-base/package.json +12 -14
  100. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MDKTaskUIReader.js +2 -1
  101. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MDKTaskUIReader.js.map +1 -1
  102. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkModuleReader.js +1 -1
  103. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkModuleReader.js.map +1 -1
  104. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkPageReader.js +1 -1
  105. package/node_modules/@sap/artifact-management-mdkplugin/dist/src/readers/MdkPageReader.js.map +1 -1
  106. package/node_modules/@sap/artifact-management-mdkplugin/dist/tsconfig.tsbuildinfo +16 -28
  107. package/node_modules/@sap/artifact-management-mdkplugin/package.json +5 -7
  108. package/package.json +16 -19
  109. package/dist/types/node_modules/@sap/artifact-management-base-types/LICENSE +0 -38
  110. package/dist/types/node_modules/@sap/artifact-management-base-types/README.md +0 -5
  111. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/FileSystemFactory.d.ts +0 -7
  112. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/NodeFileSystem.d.ts +0 -19
  113. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/ProjectFileSystem.d.ts +0 -41
  114. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/PropertyFile.d.ts +0 -12
  115. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/StateMessage.d.ts +0 -12
  116. package/dist/types/node_modules/@sap/artifact-management-base-types/src/commons/VSCodeFileSystem.d.ts +0 -18
  117. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/CapApi.d.ts +0 -26
  118. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/DestinationData.d.ts +0 -18
  119. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/NameFactory.d.ts +0 -22
  120. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/RunUI.d.ts +0 -23
  121. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/Service.d.ts +0 -10
  122. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/UI5ManifestHelper.d.ts +0 -9
  123. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/UI5RunUI.d.ts +0 -8
  124. package/dist/types/node_modules/@sap/artifact-management-base-types/src/cp/UIManifest.d.ts +0 -67
  125. package/dist/types/node_modules/@sap/artifact-management-base-types/src/definitions/ItemType.d.ts +0 -30
  126. package/dist/types/node_modules/@sap/artifact-management-base-types/src/definitions/ModuleType.d.ts +0 -13
  127. package/dist/types/node_modules/@sap/artifact-management-base-types/src/definitions/PluginError.d.ts +0 -3
  128. package/dist/types/node_modules/@sap/artifact-management-base-types/src/definitions/ProjectType.d.ts +0 -8
  129. package/dist/types/node_modules/@sap/artifact-management-base-types/src/definitions/Tag.d.ts +0 -29
  130. package/dist/types/node_modules/@sap/artifact-management-base-types/src/fs/FastGlobFileSystemAdapter.d.ts +0 -5
  131. package/dist/types/node_modules/@sap/artifact-management-base-types/src/fs/gitIgnoreFileFilter.d.ts +0 -2
  132. package/dist/types/node_modules/@sap/artifact-management-base-types/src/index.d.ts +0 -55
  133. package/dist/types/node_modules/@sap/artifact-management-base-types/src/logging/ConsoleLogger.d.ts +0 -25
  134. package/dist/types/node_modules/@sap/artifact-management-base-types/src/logging/LoggerManager.d.ts +0 -3
  135. package/dist/types/node_modules/@sap/artifact-management-base-types/src/logging/ProjectAPILogger.d.ts +0 -18
  136. package/dist/types/node_modules/@sap/artifact-management-base-types/src/logging/noop-logger.d.ts +0 -8
  137. package/dist/types/node_modules/@sap/artifact-management-base-types/src/mta-generator/MtaTemplate.d.ts +0 -3
  138. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ErrorWithLocation.d.ts +0 -11
  139. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/IProjectInstance.d.ts +0 -7
  140. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/Item.d.ts +0 -57
  141. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ItemFilter.d.ts +0 -18
  142. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ItemLink.d.ts +0 -24
  143. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ItemReader.d.ts +0 -13
  144. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/Message.d.ts +0 -11
  145. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/Module.d.ts +0 -21
  146. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ModuleAutoBuilder.d.ts +0 -14
  147. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ModuleData.d.ts +0 -27
  148. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ModuleGeneratorContext.d.ts +0 -16
  149. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ModuleManifestGenerator.d.ts +0 -12
  150. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ModuleReader.d.ts +0 -43
  151. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/NodePackage.d.ts +0 -19
  152. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/Plugin.d.ts +0 -76
  153. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/PluginEntryTypes.d.ts +0 -15
  154. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/Project.d.ts +0 -5
  155. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectData.d.ts +0 -39
  156. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectManifestGenerator.d.ts +0 -28
  157. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectReader.d.ts +0 -29
  158. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectReaderHelper.d.ts +0 -10
  159. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectRunner.d.ts +0 -14
  160. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/ProjectWrapper.d.ts +0 -14
  161. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/TemplateInfo.d.ts +0 -6
  162. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project/UI5ModuleManifestGenerator.d.ts +0 -6
  163. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project-api/FileSystemWatchManager.d.ts +0 -26
  164. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project-api/ItemFilterImpl.d.ts +0 -13
  165. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project-api/ItemFilterInterface.d.ts +0 -4
  166. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project-api/ItemFilterMatchAlwaysImpl.d.ts +0 -5
  167. package/dist/types/node_modules/@sap/artifact-management-base-types/src/project-api/ProjectEntityReader.d.ts +0 -40
  168. package/dist/types/node_modules/@sap/artifact-management-base-types/src/util/NPMUtil.d.ts +0 -10
  169. package/dist/types/node_modules/@sap/artifact-management-base-types/src/util/TestUtil.d.ts +0 -3
  170. package/dist/types/node_modules/@sap/artifact-management-base-types/src/util/Types.d.ts +0 -1
  171. package/dist/types/node_modules/@sap/artifact-management-base-types/src/util/Util.d.ts +0 -11
  172. package/dist/types/node_modules/@sap/artifact-management-base-types/src/util/makeType.d.ts +0 -6
@@ -517,23 +517,23 @@
517
517
  "affectsGlobalScope": false
518
518
  },
519
519
  "../node_modules/fast-glob/out/types/index.d.ts": {
520
- "version": "4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd",
521
- "signature": "4498108732bcb5b7000ff9cdc011058b4155e985271ac3f926468acfed0c79dd",
520
+ "version": "e175549fe57dbff5cd68c1a5ccf33717584d7db9afb8ec216fd2c0daa3b06931",
521
+ "signature": "e175549fe57dbff5cd68c1a5ccf33717584d7db9afb8ec216fd2c0daa3b06931",
522
522
  "affectsGlobalScope": false
523
523
  },
524
524
  "../node_modules/fast-glob/out/settings.d.ts": {
525
- "version": "36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6",
526
- "signature": "36d7b72ed8f35f9e21cc223c06697eca0d4699178fc59cfd3a310e2983fd0fd6",
525
+ "version": "ea68c312e1eb9b48f7064a8dda348594769ba8f9c8596315827c559734a60205",
526
+ "signature": "ea68c312e1eb9b48f7064a8dda348594769ba8f9c8596315827c559734a60205",
527
527
  "affectsGlobalScope": false
528
528
  },
529
529
  "../node_modules/fast-glob/out/managers/tasks.d.ts": {
530
- "version": "8ef499f8b856beca668333ffd33b7a29a83641cbe18c9ad8f25d2748efdf4f0f",
531
- "signature": "8ef499f8b856beca668333ffd33b7a29a83641cbe18c9ad8f25d2748efdf4f0f",
530
+ "version": "6ddb5fb4476ca702ecff9e5ff0295cde6ce138d71f817da65e118a2a3c534106",
531
+ "signature": "6ddb5fb4476ca702ecff9e5ff0295cde6ce138d71f817da65e118a2a3c534106",
532
532
  "affectsGlobalScope": false
533
533
  },
534
534
  "../node_modules/fast-glob/out/index.d.ts": {
535
- "version": "51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d",
536
- "signature": "51bfe35171efe121cefb2501a6cd674c367d541c4c8b0ae639c126adcc84f37d",
535
+ "version": "6dfff2e65f10158f5a868e642a2e74d2d1bd76f15291552f389f2b8c829a9a86",
536
+ "signature": "6dfff2e65f10158f5a868e642a2e74d2d1bd76f15291552f389f2b8c829a9a86",
537
537
  "affectsGlobalScope": false
538
538
  },
539
539
  "../src/fs/FastGlobFileSystemAdapter.ts": {
@@ -602,8 +602,8 @@
602
602
  "affectsGlobalScope": false
603
603
  },
604
604
  "../src/commons/ProjectFileSystem.ts": {
605
- "version": "e82ef3d859651832d553ef5474714bd8646884c60949e77865654e114d966d3c",
606
- "signature": "aa4e756844b0bbe0a3f45c5dfdd4926aee517c40d49ac875dfbee8cc72345ca5",
605
+ "version": "08fd1106490dd95cbd75000300631da1c14a264ab222f04599d3b23371b69e33",
606
+ "signature": "3211c97a3bec820a772c1df41727370a7cea58f1476d6d3ad57bb213c278d125",
607
607
  "affectsGlobalScope": false
608
608
  },
609
609
  "../src/project-api/ProjectEntityReader.ts": {
@@ -622,8 +622,8 @@
622
622
  "affectsGlobalScope": false
623
623
  },
624
624
  "../src/project/Item.ts": {
625
- "version": "8047be36ea37a1e045c258b819424b26778b17e7a4a0481fa5c4d9ff256e3055",
626
- "signature": "6bddc6d3925e6285a9a7242138814b39543083450d4f29a693d3c52ce428fbfb",
625
+ "version": "d8ecc444aad2ab658e377aaad57e26b60e6cafff67d210bb7ef07ab063f6160d",
626
+ "signature": "4e02ae8f917e878fb9edc70419ac6a19da236fb45489219e71b142c12cd5f1e0",
627
627
  "affectsGlobalScope": false
628
628
  },
629
629
  "../src/project/ItemReader.ts": {
@@ -631,14 +631,9 @@
631
631
  "signature": "90b643fc54f8cf9769d1c1abb058903a656c3f4d1da684f400afbcd5bcb5327b",
632
632
  "affectsGlobalScope": false
633
633
  },
634
- "../src/commons/StateMessage.ts": {
635
- "version": "832e370f5194ab962bc92c9bdf4971c124f4e423db7ff5f9fe29acfe4c58c967",
636
- "signature": "cc345de5f299c6ed1a2382f433ff271306be8d95e6606095f93095210dbc1bc2",
637
- "affectsGlobalScope": false
638
- },
639
634
  "../src/project/ModuleData.ts": {
640
- "version": "86900c9a535b753b9c1e25732609cfff6559abf42e61ea03bdb022048662d14f",
641
- "signature": "bdc82a95cbe3ca5f0d775f9f839c4670c7b0b707962d4713b8ceb89842e91265",
635
+ "version": "32164d18b32bc90a0a992d758e60dcb3e265a6c04dd70438599fa79a389f92ba",
636
+ "signature": "953cabaf6d53bf29a5e3f0f2209afe59de025ad56f123fa57b24a924814e0c19",
642
637
  "affectsGlobalScope": false
643
638
  },
644
639
  "../src/project/PluginEntryTypes.ts": {
@@ -652,8 +647,8 @@
652
647
  "affectsGlobalScope": false
653
648
  },
654
649
  "../src/project/ProjectData.ts": {
655
- "version": "3b58d1f27a52cdec5fbb234911f6d9ca315aa21d628fe68056602803651e309e",
656
- "signature": "97c3dbf1ef297f46cd82aebb4ed32fd03149c39534682fab4e8c8ddc3a0e0fe6",
650
+ "version": "08de8b19bebd03416e14a7c6a0b477730369acc05e3dc9485662d61636777a6e",
651
+ "signature": "5973c52bb8ed98cf3c266da4ac62659f4c48df75689854165d47bc0da5c4a5f6",
657
652
  "affectsGlobalScope": false
658
653
  },
659
654
  "../src/project/ProjectReader.ts": {
@@ -737,7 +732,7 @@
737
732
  "affectsGlobalScope": false
738
733
  },
739
734
  "../src/project/ProjectWrapper.ts": {
740
- "version": "bf1125b235fc934dab53a2d388f09907c3a5e142e9b35b029d14ab72a74ef859",
735
+ "version": "d996d16cb06b0f06288d68d590a89b53a78bb62f767a44889760761ab322c0ff",
741
736
  "signature": "39058a9c4306bbd7dd0a3ac19c031d87b4a2292aed89719368d35a498b30b595",
742
737
  "affectsGlobalScope": false
743
738
  },
@@ -846,6 +841,11 @@
846
841
  "signature": "92bf3ad51d496f2c68fc3e4ea1b6f2cf27bd224aabcddac2e7aa4bca3ab2e674",
847
842
  "affectsGlobalScope": false
848
843
  },
844
+ "../src/commons/StateMessage.ts": {
845
+ "version": "36bc3246fba79fbcd4425c92c8145a68c08d5eeb29fbfa0d849be238d0f79a52",
846
+ "signature": "16a6f9040464476ef7307c1bffb235c9e4a827ae3c70c86b5bdb0bce65aee87a",
847
+ "affectsGlobalScope": false
848
+ },
849
849
  "../src/index.ts": {
850
850
  "version": "bfe4e3621885e12d94f9bb5b5582de5706e525cb1a51185f166670ecdfeddae6",
851
851
  "signature": "a42c3f4c5acdb2780ceda9482a68bb2e261c8603ee70e0c2fa5f68b53be5f624",
@@ -961,11 +961,6 @@
961
961
  "signature": "0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4",
962
962
  "affectsGlobalScope": false
963
963
  },
964
- "../node_modules/@types/json5/index.d.ts": {
965
- "version": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
966
- "signature": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
967
- "affectsGlobalScope": false
968
- },
969
964
  "../node_modules/@types/jsonwebtoken/index.d.ts": {
970
965
  "version": "7aa2c4361d1f3243c262813fec18366e89578c527f44b1ec60fdc8fc7977d551",
971
966
  "signature": "7aa2c4361d1f3243c262813fec18366e89578c527f44b1ec60fdc8fc7977d551",
@@ -1736,9 +1731,6 @@
1736
1731
  "../src/project/IProjectInstance.ts",
1737
1732
  "../src/util/Types.ts"
1738
1733
  ],
1739
- "../src/project/ModuleData.ts": [
1740
- "../src/commons/StateMessage.ts"
1741
- ],
1742
1734
  "../src/project/ModuleGeneratorContext.ts": [
1743
1735
  "../src/commons/ProjectFileSystem.ts",
1744
1736
  "../src/cp/NameFactory.ts",
@@ -1775,9 +1767,6 @@
1775
1767
  "../src/project/Module.ts",
1776
1768
  "../src/project/ProjectData.ts"
1777
1769
  ],
1778
- "../src/project/ProjectData.ts": [
1779
- "../src/commons/StateMessage.ts"
1780
- ],
1781
1770
  "../src/project/ProjectManifestGenerator.ts": [
1782
1771
  "../src/cp/Service.ts",
1783
1772
  "../src/definitions/ProjectType.ts",
@@ -2481,9 +2470,6 @@
2481
2470
  "../src/project/IProjectInstance.ts",
2482
2471
  "../src/util/Types.ts"
2483
2472
  ],
2484
- "../src/project/ModuleData.ts": [
2485
- "../src/commons/StateMessage.ts"
2486
- ],
2487
2473
  "../src/project/ModuleGeneratorContext.ts": [
2488
2474
  "../src/commons/ProjectFileSystem.ts",
2489
2475
  "../src/cp/NameFactory.ts",
@@ -2520,9 +2506,6 @@
2520
2506
  "../src/project/Module.ts",
2521
2507
  "../src/project/ProjectData.ts"
2522
2508
  ],
2523
- "../src/project/ProjectData.ts": [
2524
- "../src/commons/StateMessage.ts"
2525
- ],
2526
2509
  "../src/project/ProjectManifestGenerator.ts": [
2527
2510
  "../src/cp/Service.ts",
2528
2511
  "../src/definitions/ProjectType.ts",
@@ -2593,7 +2576,6 @@
2593
2576
  "../node_modules/@types/glob/index.d.ts",
2594
2577
  "../node_modules/@types/js-yaml/index.d.ts",
2595
2578
  "../node_modules/@types/json-schema/index.d.ts",
2596
- "../node_modules/@types/json5/index.d.ts",
2597
2579
  "../node_modules/@types/jsonwebtoken/index.d.ts",
2598
2580
  "../node_modules/@types/lodash/common/array.d.ts",
2599
2581
  "../node_modules/@types/lodash/common/collection.d.ts",
@@ -14,7 +14,7 @@ export default class ProjectFileSystem {
14
14
  path(...paths: string[]): string;
15
15
  relativeToRoot(...paths: string[]): string;
16
16
  relativeToRootFromAbsolutePath(...paths: string[]): string;
17
- readYaml(path: string): Promise<string | object | undefined>;
17
+ readYaml(path: string): Promise<any>;
18
18
  getNewInstance(basePath: string, rootPath?: string): ProjectFileSystem;
19
19
  readJson(path: string): Promise<any>;
20
20
  writeJSON(path: string, obj: any): Promise<void>;
@@ -9,5 +9,5 @@ export declare class Info {
9
9
  code: string;
10
10
  description: string;
11
11
  } | Error, moduleType?: string): Info;
12
- getStateMessages(): StateMessage[] | undefined;
12
+ getStateMessages(): {} | undefined;
13
13
  }
@@ -48,7 +48,7 @@ export default interface Item {
48
48
  * Provides additional information for the item
49
49
  *
50
50
  */
51
- info?: unknown;
51
+ info?: any;
52
52
  /**
53
53
  * Boolean to indicate if a service is defined within the project or in an external project.
54
54
  * true indicates service is defined in an external project, false is for within the project.
@@ -1,4 +1,3 @@
1
- import { StateMessage } from '../commons/StateMessage';
2
1
  /**
3
2
  * Modules organize content of a specific type, for example Fiori Element UIs or CAP service definitions, in a project.
4
3
  * Modules are always associated with one directory.
@@ -23,5 +22,5 @@ export default interface ModuleData {
23
22
  /**
24
23
  * Info messages
25
24
  */
26
- info?: StateMessage[];
25
+ info?: any;
27
26
  }
@@ -1,4 +1,3 @@
1
- import { StateMessage } from '../commons/StateMessage';
2
1
  export default interface ProjectData {
3
2
  /**
4
3
  * Project type
@@ -35,5 +34,5 @@ export default interface ProjectData {
35
34
  /**
36
35
  * Info messages
37
36
  */
38
- info?: StateMessage[];
37
+ info?: any;
39
38
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/artifact-management-base",
3
- "version": "1.2.0",
3
+ "version": "1.6.0",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "files": [
@@ -9,7 +9,7 @@
9
9
  "scripts": {
10
10
  "bootstrap": "lerna bootstrap",
11
11
  "build": "npm run compile && npm run copy-templates && npm run copy-types",
12
- "test": "npm run test-unit",
12
+ "test": "npm run lint && npm run test-unit",
13
13
  "test-unit": "bash ../../bin/run_unit_tests.sh",
14
14
  "clean": "rm -rf ./dist ./node_modules ./build ./out && rm -rf tsconfig.tsbuildinfo",
15
15
  "circular-deps": "./node_modules/madge/bin/cli.js --warning --circular --extensions ts src/.",
@@ -18,7 +18,6 @@
18
18
  "copy-types": "gulp --gulpfile ./gulpfile.js copyTypes && bash ../../bin/update_types_version.sh",
19
19
  "lint": "eslint 'src/**/*.ts?(x)' --quiet",
20
20
  "lint-fix": "eslint 'src/**/*.ts?(x)' --quiet --fix",
21
- "premake-module": "npm run lint && npm run test",
22
21
  "make-module": "gulp --gulpfile ./gulpfile.js makeNodeModule",
23
22
  "postmake-module": "bash ../../bin/post_build_check.sh",
24
23
  "create-packages": "bash ../../bin/create_node_module.sh"
@@ -58,21 +57,20 @@
58
57
  "typescript": "4.1.6"
59
58
  },
60
59
  "dependencies": {
61
- "ajv": "7.0.3",
62
- "arg": "5.0.0",
63
- "async": "3.2.0",
60
+ "ajv": "8.8.1",
61
+ "arg": "5.0.1",
62
+ "async": "3.2.2",
64
63
  "chokidar": "3.5.2",
65
64
  "ejs": "3.1.6 ",
66
- "fast-glob": "3.2.5",
67
- "glob": "7.1.6",
68
- "ignore": "5.1.8",
69
- "js-yaml": "3.14.0",
65
+ "fast-glob": "3.2.7",
66
+ "glob": "7.2.0",
67
+ "ignore": "5.1.9",
68
+ "js-yaml": "4.1.0",
70
69
  "lodash": "4.17.21",
71
- "micromatch": "4.0.2",
72
- "node-watch": "0.7.1",
73
- "optional-require": "1.0.3",
70
+ "micromatch": "4.0.4",
71
+ "node-watch": "0.7.2",
72
+ "optional-require": "1.1.8",
74
73
  "parse-gitignore": "1.0.1",
75
- "tsconfig-paths": "3.11.0",
76
74
  "vscode-jsonrpc": "6.0.0",
77
75
  "vscode-languageserver-types": "3.16.0",
78
76
  "winston": "3.3.3",
@@ -32,7 +32,8 @@ class MDKTaskUIReader extends MdkItemReader_1.default {
32
32
  throw new Error(this.E_INVAL_INVO);
33
33
  }
34
34
  const [file, type] = this.getFileAndType(idx);
35
- const name = 'TaskUI';
35
+ const relativePath = this.readUtils.fs.relativeToRoot();
36
+ const name = this.pathToName(relativePath);
36
37
  const ref = this.readUtils.fs.relativeToRoot(file);
37
38
  const path = this.readUtils.fs.relativeToRoot('Web/MDKModule');
38
39
  return {
@@ -1 +1 @@
1
- {"version":3,"file":"MDKTaskUIReader.js","sourceRoot":"","sources":["../../../src/readers/MDKTaskUIReader.ts"],"names":[],"mappings":";;;;;;AAAA,oEAA4C;AAC5C,4EAAiF;AAEpE,QAAA,mBAAmB,GAAG,CAAC,eAAe,CAAC,CAAC;AACrD,MAAqB,eAAgB,SAAQ,uBAAa;IAA1D;;QAEI,gBAAW,GAAG,mCAAQ,CAAC,SAAS,CAAC;QACjC,UAAK,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3B,SAAI,GAAG,CAAC,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,MAAM,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;QACvC,oBAAe,GAAG;YACd,oBAAoB,EAAE,2BAAmB;YAEzC,IAAI,EAAE,KAAK,EAAC,OAAyE,EAAoB,EAAE;gBACvG,IAAI,OAAO,CAAC,SAAS,KAAK,UAAU,EAAE;oBAClC,OAAO,KAAK,CAAC;iBAChB;gBACD,MAAM,WAAW,GAAG,MAAM,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC;gBAC/D,IAAI,WAAW,IAAI,WAAW,CAAC,IAAI,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE;oBAC9D,OAAO,IAAI,CAAC;iBACf;gBACD,OAAO,KAAK,CAAC;YACjB,CAAC;SACJ,CAAC;IAaN,CAAC;IAZa,KAAK,CAAC,UAAU,CAAC,GAAQ,EAAE,GAAW;QAC5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACtC;QACD,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QAC9C,MAAM,IAAI,GAAG,QAAQ,CAAC;QACtB,MAAM,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QACnD,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC;QAC/D,OAAO;YACH,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI;SACzC,CAAC;IACN,CAAC;CACJ;AA/BD,kCA+BC"}
1
+ {"version":3,"file":"MDKTaskUIReader.js","sourceRoot":"","sources":["../../../src/readers/MDKTaskUIReader.ts"],"names":[],"mappings":";;;;;;AAAA,oEAA4C;AAC5C,4EAAiF;AAEpE,QAAA,mBAAmB,GAAG,CAAC,eAAe,CAAC,CAAC;AACrD,MAAqB,eAAgB,SAAQ,uBAAa;IAA1D;;QAEI,gBAAW,GAAG,mCAAQ,CAAC,SAAS,CAAC;QACjC,UAAK,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3B,SAAI,GAAG,CAAC,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,MAAM,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;QACvC,oBAAe,GAAG;YACd,oBAAoB,EAAE,2BAAmB;YAEzC,IAAI,EAAE,KAAK,EAAC,OAAyE,EAAoB,EAAE;gBACvG,IAAI,OAAO,CAAC,SAAS,KAAK,UAAU,EAAE;oBAClC,OAAO,KAAK,CAAC;iBAChB;gBACD,MAAM,WAAW,GAAG,MAAM,OAAO,CAAC,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC;gBAC/D,IAAI,WAAW,IAAI,WAAW,CAAC,IAAI,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE;oBAC9D,OAAO,IAAI,CAAC;iBACf;gBACD,OAAO,KAAK,CAAC;YACjB,CAAC;SACJ,CAAC;IAcN,CAAC;IAba,KAAK,CAAC,UAAU,CAAC,GAAQ,EAAE,GAAW;QAC5C,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACtC;QACD,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QAC9C,MAAM,YAAY,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,EAAE,CAAC;QACxD,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;QAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QACnD,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC;QAC/D,OAAO;YACH,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI;SACzC,CAAC;IACN,CAAC;CACJ;AAhCD,kCAgCC"}
@@ -55,7 +55,7 @@ class MdkModuleReader extends artifact_management_base_1.ModuleReader {
55
55
  tags: mdkTags,
56
56
  };
57
57
  if (!app._Name) {
58
- module.info = [InfoList_1.InfoList.ERR_APPLICATION_NAME_UNDEFINED];
58
+ module.info = { 'errors': [InfoList_1.InfoList.ERR_APPLICATION_NAME_UNDEFINED] };
59
59
  }
60
60
  return module;
61
61
  }
@@ -1 +1 @@
1
- {"version":3,"file":"MdkModuleReader.js","sourceRoot":"","sources":["../../../src/readers/MdkModuleReader.ts"],"names":[],"mappings":";;;;;AAAA,4EAAwI;AAExI,oEAA4C;AAC5C,0EAAkD;AAClD,kFAA0D;AAC1D,wEAAgD;AAChD,wEAAgD;AAChD,oEAA4C;AAC5C,sEAA8C;AAC9C,oEAA4C;AAC5C,sEAA8C;AAC9C,wEAAgD;AAChD,0CAAuC;AAEvC,MAAqB,eAAgB,SAAQ,uCAAY;IAAzD;;QAUI,oBAAe,GAAG;YACd,oBAAoB,EAAE,CAAC,iBAAiB,CAAC;SAC5C,CAAC;QAEF,gBAAW,GAAG;YACV,IAAI,uBAAa;YACjB,IAAI,uBAAa;YACjB,IAAI,wBAAc;YAClB,IAAI,wBAAc;YAClB,IAAI,uBAAa;YACjB,IAAI,0BAAgB;YACpB,IAAI,yBAAe;YACnB,IAAI,yBAAe;YACnB,IAAI,8BAAoB;YACxB,IAAI,yBAAe;SACtB,CAAC;QAEF,SAAI,GAAG,CAAC,8BAAG,CAAC,MAAM,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;IAwBjC,CAAC;IAjDG,OAAO;QACH,OAAO,qCAAU,CAAC,GAAG,CAAC;IAC1B,CAAC;IAED,qBAAqB;QACjB,OAAO,6CAAkB,CAAC,YAAY,CAAC;IAC3C,CAAC;IAqBD,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,EAA6B;QACxC,MAAM,GAAG,GAAoB,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;QAClE,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QAE7C,MAAM,WAAW,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC;QACvD,IAAI,WAAW,IAAI,WAAW,CAAC,IAAI,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE;YAC9D,OAAO,CAAC,IAAI,CAAC,8BAAG,CAAC,MAAM,CAAC,CAAC;SAC5B;QAED,MAAM,MAAM,GAAe;YACvB,IAAI,EAAE,qCAAU,CAAC,GAAG;YACpB,IAAI,EAAE,GAAG,CAAC,KAAK;YACf,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE;YACzB,IAAI,EAAE,OAAO;SAChB,CAAC;QAEF,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE;YACZ,MAAM,CAAC,IAAI,GAAG,CAAC,mBAAQ,CAAC,8BAA8B,CAAC,CAAC;SAC3D;QAED,OAAO,MAAM,CAAC;IAClB,CAAC;CACJ;AAnDD,kCAmDC"}
1
+ {"version":3,"file":"MdkModuleReader.js","sourceRoot":"","sources":["../../../src/readers/MdkModuleReader.ts"],"names":[],"mappings":";;;;;AAAA,4EAAwI;AAExI,oEAA4C;AAC5C,0EAAkD;AAClD,kFAA0D;AAC1D,wEAAgD;AAChD,wEAAgD;AAChD,oEAA4C;AAC5C,sEAA8C;AAC9C,oEAA4C;AAC5C,sEAA8C;AAC9C,wEAAgD;AAChD,0CAAuC;AAEvC,MAAqB,eAAgB,SAAQ,uCAAY;IAAzD;;QAUI,oBAAe,GAAG;YACd,oBAAoB,EAAE,CAAC,iBAAiB,CAAC;SAC5C,CAAC;QAEF,gBAAW,GAAG;YACV,IAAI,uBAAa;YACjB,IAAI,uBAAa;YACjB,IAAI,wBAAc;YAClB,IAAI,wBAAc;YAClB,IAAI,uBAAa;YACjB,IAAI,0BAAgB;YACpB,IAAI,yBAAe;YACnB,IAAI,yBAAe;YACnB,IAAI,8BAAoB;YACxB,IAAI,yBAAe;SACtB,CAAC;QAEF,SAAI,GAAG,CAAC,8BAAG,CAAC,MAAM,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;IAwBjC,CAAC;IAjDG,OAAO;QACH,OAAO,qCAAU,CAAC,GAAG,CAAC;IAC1B,CAAC;IAED,qBAAqB;QACjB,OAAO,6CAAkB,CAAC,YAAY,CAAC;IAC3C,CAAC;IAqBD,KAAK,CAAC,IAAI,CAAC,EAAE,EAAE,EAA6B;QACxC,MAAM,GAAG,GAAoB,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC;QAClE,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QAE7C,MAAM,WAAW,GAAG,MAAM,EAAE,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC;QACvD,IAAI,WAAW,IAAI,WAAW,CAAC,IAAI,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,EAAE;YAC9D,OAAO,CAAC,IAAI,CAAC,8BAAG,CAAC,MAAM,CAAC,CAAC;SAC5B;QAED,MAAM,MAAM,GAAe;YACvB,IAAI,EAAE,qCAAU,CAAC,GAAG;YACpB,IAAI,EAAE,GAAG,CAAC,KAAK;YACf,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE;YACzB,IAAI,EAAE,OAAO;SAChB,CAAC;QAEF,IAAI,CAAC,GAAG,CAAC,KAAK,EAAE;YACZ,MAAM,CAAC,IAAI,GAAG,EAAC,QAAQ,EAAE,CAAC,mBAAQ,CAAC,8BAA8B,CAAC,EAAC,CAAC;SACvE;QAED,OAAO,MAAM,CAAC;IAClB,CAAC;CACJ;AAnDD,kCAmDC"}
@@ -25,7 +25,7 @@ class MdkPageReader extends MdkItemReader_1.default {
25
25
  const name = (page ? page._Name : undefined) || this.pathToName(file);
26
26
  const item = { type, ref: path, name, path, tags: this.tags };
27
27
  if (!page) {
28
- item.info = [InfoList_1.InfoList.ERR_CORRUPT_FILE];
28
+ item.info = { 'errors': [InfoList_1.InfoList.ERR_CORRUPT_FILE] };
29
29
  }
30
30
  ;
31
31
  return item;
@@ -1 +1 @@
1
- {"version":3,"file":"MdkPageReader.js","sourceRoot":"","sources":["../../../src/readers/MdkPageReader.ts"],"names":[],"mappings":";;;;;;AAAA,4EAAoE;AACpE,oEAA4C;AAE5C,0CAAuC;AAE1B,QAAA,iBAAiB,GAAG,CAAC,WAAW,CAAC,CAAC;AAE/C,MAAqB,aAAc,SAAQ,uBAAa;IAAxD;;QACI,gBAAW,GAAG,mCAAQ,CAAC,OAAO,CAAC;QAC/B,UAAK,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3B,SAAI,GAAG,CAAC,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,EAAE,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;QAC7C,oBAAe,GAAG,EAAE,oBAAoB,EAAE,yBAAiB,EAAE,CAAC;IAelE,CAAC;IAda,KAAK,CAAC,UAAU,CAAC,IAAa,EAAE,GAAW;QACjD,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACtC;QACD,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QAC9C,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QAEpD,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtE,MAAM,IAAI,GAAS,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC;QACpE,IAAI,CAAC,IAAI,EAAE;YACP,IAAI,CAAC,IAAI,GAAG,CAAC,mBAAQ,CAAC,gBAAgB,CAAC,CAAC;SAC3C;QAAA,CAAC;QACF,OAAO,IAAI,CAAC;IAChB,CAAC;CACJ;AAnBD,gCAmBC"}
1
+ {"version":3,"file":"MdkPageReader.js","sourceRoot":"","sources":["../../../src/readers/MdkPageReader.ts"],"names":[],"mappings":";;;;;;AAAA,4EAAoE;AACpE,oEAA4C;AAE5C,0CAAuC;AAE1B,QAAA,iBAAiB,GAAG,CAAC,WAAW,CAAC,CAAC;AAE/C,MAAqB,aAAc,SAAQ,uBAAa;IAAxD;;QACI,gBAAW,GAAG,mCAAQ,CAAC,OAAO,CAAC;QAC/B,UAAK,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAC3B,SAAI,GAAG,CAAC,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,IAAI,EAAE,8BAAG,CAAC,EAAE,EAAE,8BAAG,CAAC,GAAG,CAAC,CAAC;QAC7C,oBAAe,GAAG,EAAE,oBAAoB,EAAE,yBAAiB,EAAE,CAAC;IAelE,CAAC;IAda,KAAK,CAAC,UAAU,CAAC,IAAa,EAAE,GAAW;QACjD,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE;YACjB,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;SACtC;QACD,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,GAAG,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QAC9C,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QAEpD,MAAM,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtE,MAAM,IAAI,GAAS,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,CAAC;QACpE,IAAI,CAAC,IAAI,EAAE;YACP,IAAI,CAAC,IAAI,GAAG,EAAC,QAAQ,EAAE,CAAC,mBAAQ,CAAC,gBAAgB,CAAC,EAAC,CAAC;SACvD;QAAA,CAAC;QACF,OAAO,IAAI,CAAC;IAChB,CAAC;CACJ;AAnBD,gCAmBC"}
@@ -237,8 +237,8 @@
237
237
  "affectsGlobalScope": false
238
238
  },
239
239
  "../../artifact-management-base/dist/types/src/commons/ProjectFileSystem.d.ts": {
240
- "version": "aa4e756844b0bbe0a3f45c5dfdd4926aee517c40d49ac875dfbee8cc72345ca5",
241
- "signature": "aa4e756844b0bbe0a3f45c5dfdd4926aee517c40d49ac875dfbee8cc72345ca5",
240
+ "version": "3211c97a3bec820a772c1df41727370a7cea58f1476d6d3ad57bb213c278d125",
241
+ "signature": "3211c97a3bec820a772c1df41727370a7cea58f1476d6d3ad57bb213c278d125",
242
242
  "affectsGlobalScope": false
243
243
  },
244
244
  "../../artifact-management-base/dist/types/src/project-api/ProjectEntityReader.d.ts": {
@@ -257,8 +257,8 @@
257
257
  "affectsGlobalScope": false
258
258
  },
259
259
  "../../artifact-management-base/dist/types/src/project/Item.d.ts": {
260
- "version": "6bddc6d3925e6285a9a7242138814b39543083450d4f29a693d3c52ce428fbfb",
261
- "signature": "6bddc6d3925e6285a9a7242138814b39543083450d4f29a693d3c52ce428fbfb",
260
+ "version": "4e02ae8f917e878fb9edc70419ac6a19da236fb45489219e71b142c12cd5f1e0",
261
+ "signature": "4e02ae8f917e878fb9edc70419ac6a19da236fb45489219e71b142c12cd5f1e0",
262
262
  "affectsGlobalScope": false
263
263
  },
264
264
  "../../artifact-management-base/dist/types/src/project/ItemReader.d.ts": {
@@ -266,14 +266,9 @@
266
266
  "signature": "90b643fc54f8cf9769d1c1abb058903a656c3f4d1da684f400afbcd5bcb5327b",
267
267
  "affectsGlobalScope": false
268
268
  },
269
- "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts": {
270
- "version": "cc345de5f299c6ed1a2382f433ff271306be8d95e6606095f93095210dbc1bc2",
271
- "signature": "cc345de5f299c6ed1a2382f433ff271306be8d95e6606095f93095210dbc1bc2",
272
- "affectsGlobalScope": false
273
- },
274
269
  "../../artifact-management-base/dist/types/src/project/ModuleData.d.ts": {
275
- "version": "bdc82a95cbe3ca5f0d775f9f839c4670c7b0b707962d4713b8ceb89842e91265",
276
- "signature": "bdc82a95cbe3ca5f0d775f9f839c4670c7b0b707962d4713b8ceb89842e91265",
270
+ "version": "953cabaf6d53bf29a5e3f0f2209afe59de025ad56f123fa57b24a924814e0c19",
271
+ "signature": "953cabaf6d53bf29a5e3f0f2209afe59de025ad56f123fa57b24a924814e0c19",
277
272
  "affectsGlobalScope": false
278
273
  },
279
274
  "../../artifact-management-base/dist/types/src/project/PluginEntryTypes.d.ts": {
@@ -287,8 +282,8 @@
287
282
  "affectsGlobalScope": false
288
283
  },
289
284
  "../../artifact-management-base/dist/types/src/project/ProjectData.d.ts": {
290
- "version": "97c3dbf1ef297f46cd82aebb4ed32fd03149c39534682fab4e8c8ddc3a0e0fe6",
291
- "signature": "97c3dbf1ef297f46cd82aebb4ed32fd03149c39534682fab4e8c8ddc3a0e0fe6",
285
+ "version": "5973c52bb8ed98cf3c266da4ac62659f4c48df75689854165d47bc0da5c4a5f6",
286
+ "signature": "5973c52bb8ed98cf3c266da4ac62659f4c48df75689854165d47bc0da5c4a5f6",
292
287
  "affectsGlobalScope": false
293
288
  },
294
289
  "../../artifact-management-base/dist/types/src/project/ProjectReader.d.ts": {
@@ -736,6 +731,11 @@
736
731
  "signature": "92bf3ad51d496f2c68fc3e4ea1b6f2cf27bd224aabcddac2e7aa4bca3ab2e674",
737
732
  "affectsGlobalScope": false
738
733
  },
734
+ "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts": {
735
+ "version": "16a6f9040464476ef7307c1bffb235c9e4a827ae3c70c86b5bdb0bce65aee87a",
736
+ "signature": "16a6f9040464476ef7307c1bffb235c9e4a827ae3c70c86b5bdb0bce65aee87a",
737
+ "affectsGlobalScope": false
738
+ },
739
739
  "../../artifact-management-base/dist/types/src/index.d.ts": {
740
740
  "version": "a42c3f4c5acdb2780ceda9482a68bb2e261c8603ee70e0c2fa5f68b53be5f624",
741
741
  "signature": "a42c3f4c5acdb2780ceda9482a68bb2e261c8603ee70e0c2fa5f68b53be5f624",
@@ -772,7 +772,7 @@
772
772
  "affectsGlobalScope": false
773
773
  },
774
774
  "../src/readers/MdkPageReader.ts": {
775
- "version": "9bb68dc24c5f222a05655550c1341b56fef825ed51823d2547c9325d748b2351",
775
+ "version": "7426e02190f98476082760803c265eb4a8bb2cacd5c0878c1a452ad243a930af",
776
776
  "signature": "3be2f97dca214eba773c0b57601555f6fdc9f6dbcb7bc1b87f011553acd00ffd",
777
777
  "affectsGlobalScope": false
778
778
  },
@@ -817,12 +817,12 @@
817
817
  "affectsGlobalScope": false
818
818
  },
819
819
  "../src/readers/MDKTaskUIReader.ts": {
820
- "version": "79222308c5ec656b4da84c2f0b5b7f6c0efa5882e315d33d0fbcf12023d73509",
820
+ "version": "4a685a16c9ed314a5cd9591471819ed6107a9393f4b67b443a83160cc0980257",
821
821
  "signature": "71a4e4b4492a625114a2fa9695f31f62b5a1fed0cd973971d0bcbc01d7d25295",
822
822
  "affectsGlobalScope": false
823
823
  },
824
824
  "../src/readers/MdkModuleReader.ts": {
825
- "version": "18208f2a348e816ef4a2c18ae7b8330eb99a9e7a9df135713866fda86b7a7db3",
825
+ "version": "e3220929260286a4e3aff464cd3b04ac60fe02eb4c51c26af4cce8c2ac668376",
826
826
  "signature": "fb995a10fd6df3d4612ee0ff52734ebbbd5898afc56557a82bca85f8aa048c40",
827
827
  "affectsGlobalScope": false
828
828
  },
@@ -1065,9 +1065,6 @@
1065
1065
  "../../artifact-management-base/dist/types/src/project/IProjectInstance.d.ts",
1066
1066
  "../../artifact-management-base/dist/types/src/util/Types.d.ts"
1067
1067
  ],
1068
- "../../artifact-management-base/dist/types/src/project/ModuleData.d.ts": [
1069
- "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts"
1070
- ],
1071
1068
  "../../artifact-management-base/dist/types/src/project/ModuleGeneratorContext.d.ts": [
1072
1069
  "../../artifact-management-base/dist/types/src/commons/ProjectFileSystem.d.ts",
1073
1070
  "../../artifact-management-base/dist/types/src/cp/NameFactory.d.ts",
@@ -1104,9 +1101,6 @@
1104
1101
  "../../artifact-management-base/dist/types/src/project/Module.d.ts",
1105
1102
  "../../artifact-management-base/dist/types/src/project/ProjectData.d.ts"
1106
1103
  ],
1107
- "../../artifact-management-base/dist/types/src/project/ProjectData.d.ts": [
1108
- "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts"
1109
- ],
1110
1104
  "../../artifact-management-base/dist/types/src/project/ProjectManifestGenerator.d.ts": [
1111
1105
  "../../artifact-management-base/dist/types/src/cp/Service.d.ts",
1112
1106
  "../../artifact-management-base/dist/types/src/definitions/ProjectType.d.ts",
@@ -1563,9 +1557,6 @@
1563
1557
  "../../artifact-management-base/dist/types/src/project/IProjectInstance.d.ts",
1564
1558
  "../../artifact-management-base/dist/types/src/util/Types.d.ts"
1565
1559
  ],
1566
- "../../artifact-management-base/dist/types/src/project/ModuleData.d.ts": [
1567
- "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts"
1568
- ],
1569
1560
  "../../artifact-management-base/dist/types/src/project/ModuleGeneratorContext.d.ts": [
1570
1561
  "../../artifact-management-base/dist/types/src/commons/ProjectFileSystem.d.ts",
1571
1562
  "../../artifact-management-base/dist/types/src/cp/NameFactory.d.ts",
@@ -1602,9 +1593,6 @@
1602
1593
  "../../artifact-management-base/dist/types/src/project/Module.d.ts",
1603
1594
  "../../artifact-management-base/dist/types/src/project/ProjectData.d.ts"
1604
1595
  ],
1605
- "../../artifact-management-base/dist/types/src/project/ProjectData.d.ts": [
1606
- "../../artifact-management-base/dist/types/src/commons/StateMessage.d.ts"
1607
- ],
1608
1596
  "../../artifact-management-base/dist/types/src/project/ProjectManifestGenerator.d.ts": [
1609
1597
  "../../artifact-management-base/dist/types/src/cp/Service.d.ts",
1610
1598
  "../../artifact-management-base/dist/types/src/definitions/ProjectType.d.ts",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/artifact-management-mdkplugin",
3
- "version": "1.2.0",
3
+ "version": "1.6.0",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "files": [
@@ -9,7 +9,7 @@
9
9
  "scripts": {
10
10
  "bootstrap": "lerna bootstrap",
11
11
  "build": "npm run compile && npm run copy-templates && npm run copy-types",
12
- "test": "npm run test-unit",
12
+ "test": "npm run lint && npm run test-unit",
13
13
  "test-unit": "bash ../../bin/run_unit_tests.sh",
14
14
  "clean": "rm -rf ./dist ./node_modules ./build ./out && rm -rf tsconfig.tsbuildinfo",
15
15
  "circular-deps": "./node_modules/madge/bin/cli.js --warning --circular --extensions ts src/.",
@@ -18,18 +18,16 @@
18
18
  "copy-types": "gulp --gulpfile ./gulpfile.js copyTypes && bash ../../bin/update_types_version.sh",
19
19
  "lint": "eslint 'src/**/*.ts?(x)' --quiet",
20
20
  "lint-fix": "eslint 'src/**/*.ts?(x)' --quiet --fix",
21
- "premake-module": "npm run lint && npm run test",
22
21
  "make-module": "gulp --gulpfile ./gulpfile.js makeNodeModule",
23
22
  "postmake-module": "bash ../../bin/post_build_check.sh",
24
23
  "env": "env",
25
- "pack": "webpack --config webpack.config.js",
26
24
  "create-packages": "bash ../../bin/create_node_module.sh"
27
25
  },
28
26
  "dependencies": {
29
- "@sap/artifact-management-base": "1.2.0",
27
+ "@sap/artifact-management-base": "1.6.0",
30
28
  "@sap/cds": "5.1.5",
31
- "fast-glob": "3.2.5",
32
- "glob": "7.1.6",
29
+ "fast-glob": "3.2.7",
30
+ "glob": "7.2.0",
33
31
  "sinon": "9.2.2"
34
32
  },
35
33
  "devDependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sap/artifact-management",
3
- "version": "1.2.0",
3
+ "version": "1.6.0",
4
4
  "main": "dist/src/index.js",
5
5
  "types": "dist/types/src/index.d.ts",
6
6
  "files": [
@@ -8,8 +8,8 @@
8
8
  ],
9
9
  "scripts": {
10
10
  "bootstrap": "lerna bootstrap",
11
- "build": "npm run compile && npm run modify-types-import && npm run copy-templates && npm run copy-types",
12
- "test": "npm run test-unit",
11
+ "build": "npm run compile && npm run copy-templates && npm run copy-types",
12
+ "test": "npm run lint && npm run test-unit",
13
13
  "test-unit": "bash ../../bin/run_unit_tests.sh",
14
14
  "clean": "rm -rf ./dist ./node_modules ./build ./out && rm -rf tsconfig.tsbuildinfo",
15
15
  "circular-deps": "./node_modules/madge/bin/cli.js --warning --circular --extensions ts src/.",
@@ -22,31 +22,28 @@
22
22
  "postmake-module": "bash ../../bin/post_build_check.sh",
23
23
  "env": "env",
24
24
  "create-packages": "bash ../../bin/create_node_module.sh",
25
- "build:webpack": "webpack --config webpack.config.js",
26
- "modify-types-import": "cd types && npm i && cd .. && gulp --gulpfile ./gulpfile.js modifyTypesImport"
25
+ "build:webpack": "webpack --config webpack.config.js"
27
26
  },
28
27
  "bin": {
29
28
  "dev-project": "dist/src/project-api/ProjectCLI.js"
30
29
  },
31
30
  "dependencies": {
32
- "@sap/artifact-management-base": "1.2.0",
33
- "@sap/artifact-management-base-types": "^1.1.2",
34
- "@sap/artifact-management-mdkplugin": "1.2.0",
35
- "ajv": "7.0.3",
36
- "arg": "5.0.0",
37
- "async": "3.2.0",
31
+ "@sap/artifact-management-base": "1.6.0",
32
+ "@sap/artifact-management-mdkplugin": "1.6.0",
33
+ "ajv": "8.8.1",
34
+ "arg": "5.0.1",
35
+ "async": "3.2.2",
38
36
  "chokidar": "3.5.2",
39
37
  "ejs": "3.1.6 ",
40
- "fast-glob": "3.2.5",
41
- "glob": "7.1.6",
42
- "ignore": "5.1.8",
43
- "js-yaml": "3.14.0",
38
+ "fast-glob": "3.2.7",
39
+ "glob": "7.2.0",
40
+ "ignore": "5.1.9",
41
+ "js-yaml": "4.1.0",
44
42
  "lodash": "4.17.21",
45
- "micromatch": "4.0.2",
46
- "node-watch": "0.7.1",
47
- "optional-require": "1.0.3",
43
+ "micromatch": "4.0.4",
44
+ "node-watch": "0.7.2",
45
+ "optional-require": "1.1.8",
48
46
  "parse-gitignore": "1.0.1",
49
- "tsconfig-paths": "3.11.0",
50
47
  "vscode-jsonrpc": "6.0.0",
51
48
  "vscode-languageserver-types": "3.16.0",
52
49
  "winston": "3.3.3",
@@ -1,38 +0,0 @@
1
- SAP DEVELOPER LICENSE AGREEMENT
2
-
3
- Version 3.1
4
-
5
- Please scroll down and read the following Developer License Agreement carefully ("Developer Agreement"). By clicking "I Accept" or by attempting to download, or install, or use the SAP software and other materials that accompany this Developer Agreement ("SAP Materials"), You agree that this Developer Agreement forms a legally binding agreement between You ("You" or "Your") and SAP SE, for and on behalf of itself and its subsidiaries and affiliates (as defined in Section 15 of the German Stock Corporation Act) and You agree to be bound by all of the terms and conditions stated in this Developer Agreement. If You are trying to access or download the SAP Materials on behalf of Your employer or as a consultant or agent of a third party (either "Your Company"), You represent and warrant that You have the authority to act on behalf of and bind Your Company to the terms of this Developer Agreement and everywhere in this Developer Agreement that refers to 'You' or 'Your' shall also include Your Company. If You do not agree to these terms, do not click "I Accept", and do not attempt to access or use the SAP Materials.
6
-
7
- 1. LICENSE: SAP grants You a non-exclusive, non-transferable, non-sublicensable, revocable, limited use license to copy, reproduce and distribute the application programming interfaces ("API"), documentation, plug-ins, templates, scripts and sample code ("Tools") on a desktop, laptop, tablet, smart phone, or other appropriate computer device that You own or control (any, a "Computer") to create new applications ("Customer Applications"). You agree that the Customer Applications will not: (a) unreasonably impair, degrade or reduce the performance or security of any SAP software applications, services or related technology ("Software"); (b) enable the bypassing or circumventing of SAP's license restrictions and/or provide users with access to the Software to which such users are not licensed; (c) render or provide, without prior written consent from SAP, any information concerning SAP software license terms, Software, or any other information related to SAP products; or (d) permit mass data extraction from an SAP product to a non-SAP product, including use, modification, saving or other processing of such data in the non-SAP product. In exchange for the right to develop Customer Applications under this Agreement, You covenant not to assert any Intellectual Property Rights in Customer Applications created by You against any SAP product, service, or future SAP development.
8
-
9
- 2. INTELLECTUAL PROPERTY: (a) SAP or its licensors retain all ownership and intellectual property rights in the APIs, Tools and Software. You may not: a) remove or modify any marks or proprietary notices of SAP, b) provide or make the APIs, Tools or Software available to any third party, c) assign this Developer Agreement or give or transfer the APIs, Tools or Software or an interest in them to another individual or entity, d) decompile, disassemble or reverse engineer (except to the extent permitted by applicable law) the APIs Tools or Software, (e) create derivative works of or based on the APIs, Tools or Software, (f) use any SAP name, trademark or logo, or (g) use the APIs or Tools to modify existing Software or other SAP product functionality or to access the Software or other SAP products' source code or metadata.
10
- (b) Subject to SAP's underlying rights in any part of the APIs, Tools or Software, You retain all ownership and intellectual property rights in Your Customer Applications.
11
-
12
- 3. FREE AND OPEN SOURCE COMPONENTS: The SAP Materials may include certain third party free or open source components ("FOSS Components"). You may have additional rights in such FOSS Components that are provided by the third party licensors of those components.
13
-
14
- 4. THIRD PARTY DEPENDENCIES: The SAP Materials may require certain third party software dependencies ("Dependencies") for the use or operation of such SAP Materials. These dependencies may be identified by SAP in Maven POM files, product documentation or by other means. SAP does not grant You any rights in or to such Dependencies under this Developer Agreement. You are solely responsible for the acquisition, installation and use of Dependencies. SAP DOES NOT MAKE ANY REPRESENTATIONS OR WARRANTIES IN RESPECT OF DEPENDENCIES, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND OF FITNESS FOR A PARTICULAR PURPOSE. IN PARTICULAR, SAP DOES NOT WARRANT THAT DEPENDENCIES WILL BE AVAILABLE, ERROR FREE, INTEROPERABLE WITH THE SAP MATERIALS, SUITABLE FOR ANY PARTICULAR PURPOSE OR NON-INFRINGING. YOU ASSUME ALL RISKS ASSOCIATED WITH THE USE OF DEPENDENCIES, INCLUDING WITHOUT LIMITATION RISKS RELATING TO QUALITY, AVAILABILITY, PERFORMANCE, DATA LOSS, UTILITY IN A PRODUCTION ENVIRONMENT, AND NON-INFRINGEMENT. IN NO EVENT WILL SAP BE LIABLE DIRECTLY OR INDIRECTLY IN RESPECT OF ANY USE OF DEPENDENCIES BY YOU.
15
-
16
-
17
- 5. WARRANTY:
18
- a) If You are located outside the US or Canada: AS THE API AND TOOLS ARE PROVIDED TO YOU FREE OF CHARGE, SAP DOES NOT GUARANTEE OR WARRANT ANY FEATURES OR QUALITIES OF THE TOOLS OR API OR GIVE ANY UNDERTAKING WITH REGARD TO ANY OTHER QUALITY. NO SUCH WARRANTY OR UNDERTAKING SHALL BE IMPLIED BY YOU FROM ANY DESCRIPTION IN THE API OR TOOLS OR ANY AVAILABLE DOCUMENTATION OR ANY OTHER COMMUNICATION OR ADVERTISEMENT. IN PARTICULAR, SAP DOES NOT WARRANT THAT THE SOFTWARE WILL BE AVAILABLE UNINTERRUPTED, ERROR FREE, OR PERMANENTLY AVAILABLE. FOR THE TOOLS AND API ALL WARRANTY CLAIMS ARE SUBJECT TO THE LIMITATION OF LIABILITY STIPULATED IN SECTION 4 BELOW.
19
- b) If You are located in the US or Canada: THE API AND TOOLS ARE LICENSED TO YOU "AS IS", WITHOUT ANY WARRANTY, ESCROW, TRAINING, MAINTENANCE, OR SERVICE OBLIGATIONS WHATSOEVER ON THE PART OF SAP. SAP MAKES NO EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS OF SALE OF ANY TYPE WHATSOEVER, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND OF FITNESS FOR A PARTICULAR PURPOSE. IN PARTICULAR, SAP DOES NOT WARRANT THAT THE SOFTWARE WILL BE AVAILABLE UNINTERRUPTED, ERROR FREE, OR PERMANENTLY AVAILABLE. YOU ASSUME ALL RISKS ASSOCIATED WITH THE USE OF THE API AND TOOLS, INCLUDING WITHOUT LIMITATION RISKS RELATING TO QUALITY, AVAILABILITY, PERFORMANCE, DATA LOSS, AND UTILITY IN A PRODUCTION ENVIRONMENT.
20
-
21
- 6. LIMITATION OF LIABILITY:
22
- a) If You are located outside the US or Canada: IRRESPECTIVE OF THE LEGAL REASONS, SAP SHALL ONLY BE LIABLE FOR DAMAGES UNDER THIS AGREEMENT IF SUCH DAMAGE (I) CAN BE CLAIMED UNDER THE GERMAN PRODUCT LIABILITY ACT OR (II) IS CAUSED BY INTENTIONAL MISCONDUCT OF SAP OR (III) CONSISTS OF PERSONAL INJURY. IN ALL OTHER CASES, NEITHER SAP NOR ITS EMPLOYEES, AGENTS AND SUBCONTRACTORS SHALL BE LIABLE FOR ANY KIND OF DAMAGE OR CLAIMS HEREUNDER.
23
- b) If You are located in the US or Canada: IN NO EVENT SHALL SAP BE LIABLE TO YOU, YOUR COMPANY OR TO ANY THIRD PARTY FOR ANY DAMAGES IN AN AMOUNT IN EXCESS OF $100 ARISING IN CONNECTION WITH YOUR USE OF OR INABILITY TO USE THE TOOLS OR API OR IN CONNECTION WITH SAP'S PROVISION OF OR FAILURE TO PROVIDE SERVICES PERTAINING TO THE TOOLS OR API, OR AS A RESULT OF ANY DEFECT IN THE API OR TOOLS. THIS DISCLAIMER OF LIABILITY SHALL APPLY REGARDLESS OF THE FORM OF ACTION THAT MAY BE BROUGHT AGAINST SAP, WHETHER IN CONTRACT OR TORT, INCLUDING WITHOUT LIMITATION ANY ACTION FOR NEGLIGENCE. YOUR SOLE REMEDY IN THE EVENT OF BREACH OF THIS DEVELOPER AGREEMENT BY SAP OR FOR ANY OTHER CLAIM RELATED TO THE API OR TOOLS SHALL BE TERMINATION OF THIS AGREEMENT. NOTWITHSTANDING ANYTHING TO THE CONTRARY HEREIN, UNDER NO CIRCUMSTANCES SHALL SAP AND ITS LICENSORS BE LIABLE TO YOU OR ANY OTHER PERSON OR ENTITY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR INDIRECT DAMAGES, LOSS OF GOOD WILL OR BUSINESS PROFITS, WORK STOPPAGE, DATA LOSS, COMPUTER FAILURE OR MALFUNCTION, ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSS, OR EXEMPLARY OR PUNITIVE DAMAGES.
24
-
25
- 7. INDEMNITY: You will fully indemnify, hold harmless and defend SAP against law suits based on any claim: (a) that any Customer Application created by You infringes or misappropriates any patent, copyright, trademark, trade secrets, or other proprietary rights of a third party, or (b) related to Your alleged violation of the terms of this Developer Agreement.
26
-
27
- 8. EXPORT: The Tools and API are subject to German, EU and US export control regulations. You confirm that: a) You will not use the Tools or API for, and will not allow the Tools or API to be used for, any purposes prohibited by German, EU and US law, including, without limitation, for the development, design, manufacture or production of nuclear, chemical or biological weapons of mass destruction; b) You are not located in Cuba, Iran, Sudan, Iraq, North Korea, Syria, nor any other country to which the United States has prohibited export or that has been designated by the U.S. Government as a "terrorist supporting" country (any, an "US Embargoed Country"); c) You are not a citizen, national or resident of, and are not under the control of, a US Embargoed Country; d) You will not download or otherwise export or re-export the API or Tools, directly or indirectly, to a US Embargoed Country nor to citizens, nationals or residents of a US Embargoed Country; e) You are not listed on the United States Department of Treasury lists of Specially Designated Nationals, Specially Designated Terrorists, and Specially Designated Narcotic Traffickers, nor listed on the United States Department of Commerce Table of Denial Orders or any other U.S. government list of prohibited or restricted parties and f) You will not download or otherwise export or re-export the API or Tools , directly or indirectly, to persons on the above-mentioned lists.
28
-
29
- 9. SUPPORT: Other than what is made available on the SAP Community Website (SCN) by SAP at its sole discretion and by SCN members, SAP does not offer support for the API or Tools which are the subject of this Developer Agreement.
30
-
31
- 10. TERM AND TERMINATION: You may terminate this Developer Agreement by destroying all copies of the API and Tools on Your Computer(s). SAP may terminate Your license to use the API and Tools immediately if You fail to comply with any of the terms of this Developer Agreement, or, for SAP's convenience by providing you with ten (10) day's written notice of termination (including email). In case of termination or expiration of this Developer Agreement, You must destroy all copies of the API and Tools immediately. In the event Your Company or any of the intellectual property you create using the API, Tools or Software are acquired (by merger, purchase of stock, assets or intellectual property or exclusive license), or You become employed, by a direct competitor of SAP, then this Development Agreement and all licenses granted in this Developer Agreement shall immediately terminate upon the date of such acquisition.
32
-
33
- 11. LAW/VENUE:
34
- a) If You are located outside the US or Canada: This Developer Agreement is governed by and construed in accordance with the laws of the Germany. You and SAP agree to submit to the exclusive jurisdiction of, and venue in, the courts of Karlsruhe in Germany in any dispute arising out of or relating to this Developer Agreement.
35
- b) If You are located in the US or Canada: This Developer Agreement shall be governed by and construed under the Commonwealth of Pennsylvania law without reference to its conflicts of law principles. In the event of any conflicts between foreign law, rules, and regulations, and United States of America law, rules, and regulations, United States of America law, rules, and regulations shall prevail and govern. The United Nations Convention on Contracts for the International Sale of Goods shall not apply to this Developer Agreement. The Uniform Computer Information Transactions Act as enacted shall not apply.
36
-
37
- 12. MISCELLANEOUS: This Developer Agreement is the complete agreement for the API and Tools licensed (including reference to information/documentation contained in a URL). This Developer Agreement supersedes all prior or contemporaneous agreements or representations with regards to the subject matter of this Developer Agreement. If any term of this Developer Agreement is found to be invalid or unenforceable, the surviving provisions shall remain effective. SAP's failure to enforce any right or provisions stipulated in this Developer Agreement will not constitute a waiver of such provision, or any other provision of this Developer Agreement.
38
-
@@ -1,5 +0,0 @@
1
- # Introduction
2
- This package contains type definitions for [artifact-management-base](https://www.npmjs.com/package/@sap/artifact-management-base).
3
-
4
- # Usage
5
- npm i @sap/artifact-management-base-types